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

55112 строки
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. "maine-coon": {
  2083. name: "Maine Coon",
  2084. parents: ["housecat"]
  2085. },
  2086. }
  2087. //species
  2088. function getSpeciesInfo(speciesList) {
  2089. let result = new Set();
  2090. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2091. result.add(entry)
  2092. });
  2093. return Array.from(result);
  2094. };
  2095. function getSpeciesInfoHelper(species) {
  2096. if (!speciesData[species]) {
  2097. console.warn(species + " doesn't exist");
  2098. return [];
  2099. }
  2100. if (speciesData[species].parents) {
  2101. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2102. } else {
  2103. return [species];
  2104. }
  2105. }
  2106. characterMakers.push(() => makeCharacter(
  2107. {
  2108. name: "Fen",
  2109. species: ["crux"],
  2110. description: {
  2111. title: "Bio",
  2112. text: "Very furry. Sheds on everything."
  2113. },
  2114. tags: [
  2115. "anthro",
  2116. "goo"
  2117. ]
  2118. },
  2119. {
  2120. front: {
  2121. height: math.unit(12, "feet"),
  2122. weight: math.unit(2400, "lb"),
  2123. name: "Front",
  2124. image: {
  2125. source: "./media/characters/fen/front.svg",
  2126. extra: 1804/1562,
  2127. bottom: 205/2009
  2128. },
  2129. extraAttributes: {
  2130. pawSize: {
  2131. name: "Paw Size",
  2132. power: 2,
  2133. type: "area",
  2134. base: math.unit(0.35, "m^2")
  2135. }
  2136. }
  2137. },
  2138. diving: {
  2139. height: math.unit(4.9, "meters"),
  2140. weight: math.unit(2400, "lb"),
  2141. name: "Diving",
  2142. image: {
  2143. source: "./media/characters/fen/diving.svg"
  2144. }
  2145. },
  2146. sleeby: {
  2147. height: math.unit(3.45, "meters"),
  2148. weight: math.unit(2400, "lb"),
  2149. name: "Sleeby",
  2150. image: {
  2151. source: "./media/characters/fen/sleeby.svg"
  2152. }
  2153. },
  2154. goo: {
  2155. height: math.unit(12, "feet"),
  2156. weight: math.unit(3600, "lb"),
  2157. volume: math.unit(1000, "liters"),
  2158. preyCapacity: math.unit(6, "people"),
  2159. name: "Goo",
  2160. image: {
  2161. source: "./media/characters/fen/goo.svg",
  2162. extra: 1307/1071,
  2163. bottom: 134/1441
  2164. }
  2165. },
  2166. gooNsfw: {
  2167. height: math.unit(12, "feet"),
  2168. weight: math.unit(3750, "lb"),
  2169. volume: math.unit(1000, "liters"),
  2170. preyCapacity: math.unit(6, "people"),
  2171. name: "Goo (NSFW)",
  2172. image: {
  2173. source: "./media/characters/fen/goo-nsfw.svg",
  2174. extra: 1875/1734,
  2175. bottom: 122/1997
  2176. }
  2177. },
  2178. maw: {
  2179. height: math.unit(5.03, "feet"),
  2180. name: "Maw",
  2181. image: {
  2182. source: "./media/characters/fen/maw.svg"
  2183. }
  2184. },
  2185. gooCeiling: {
  2186. height: math.unit(6.6, "feet"),
  2187. weight: math.unit(3000, "lb"),
  2188. volume: math.unit(1000, "liters"),
  2189. preyCapacity: math.unit(6, "people"),
  2190. name: "Goo (Ceiling)",
  2191. image: {
  2192. source: "./media/characters/fen/goo-ceiling.svg"
  2193. }
  2194. },
  2195. paw: {
  2196. height: math.unit(3.77, "feet"),
  2197. name: "Paw",
  2198. image: {
  2199. source: "./media/characters/fen/paw.svg"
  2200. },
  2201. extraAttributes: {
  2202. "toeSize": {
  2203. name: "Toe Size",
  2204. power: 2,
  2205. type: "area",
  2206. base: math.unit(0.02875, "m^2")
  2207. },
  2208. "pawSize": {
  2209. name: "Paw Size",
  2210. power: 2,
  2211. type: "area",
  2212. base: math.unit(0.378, "m^2")
  2213. },
  2214. }
  2215. },
  2216. tail: {
  2217. height: math.unit(12.1, "feet"),
  2218. name: "Tail",
  2219. image: {
  2220. source: "./media/characters/fen/tail.svg"
  2221. }
  2222. },
  2223. tailFull: {
  2224. height: math.unit(12.1, "feet"),
  2225. name: "Full Tail",
  2226. image: {
  2227. source: "./media/characters/fen/tail-full.svg"
  2228. }
  2229. },
  2230. back: {
  2231. height: math.unit(12, "feet"),
  2232. weight: math.unit(2400, "lb"),
  2233. name: "Back",
  2234. image: {
  2235. source: "./media/characters/fen/back.svg",
  2236. },
  2237. info: {
  2238. description: {
  2239. mode: "append",
  2240. text: "\n\nHe is not currently looking at you."
  2241. }
  2242. }
  2243. },
  2244. full: {
  2245. height: math.unit(1.85, "meter"),
  2246. weight: math.unit(3200, "lb"),
  2247. name: "Full",
  2248. image: {
  2249. source: "./media/characters/fen/full.svg",
  2250. extra: 1133/859,
  2251. bottom: 145/1278
  2252. },
  2253. info: {
  2254. description: {
  2255. mode: "append",
  2256. text: "\n\nMunch."
  2257. }
  2258. }
  2259. },
  2260. gooLounging: {
  2261. height: math.unit(4.53, "feet"),
  2262. weight: math.unit(3000, "lb"),
  2263. preyCapacity: math.unit(6, "people"),
  2264. name: "Goo (Lounging)",
  2265. image: {
  2266. source: "./media/characters/fen/goo-lounging.svg",
  2267. bottom: 116 / 613
  2268. }
  2269. },
  2270. lounging: {
  2271. height: math.unit(10.52, "feet"),
  2272. weight: math.unit(2400, "lb"),
  2273. name: "Lounging",
  2274. image: {
  2275. source: "./media/characters/fen/lounging.svg"
  2276. }
  2277. },
  2278. },
  2279. [
  2280. {
  2281. name: "Small",
  2282. height: math.unit(2.2428, "meter")
  2283. },
  2284. {
  2285. name: "Normal",
  2286. height: math.unit(12, "feet"),
  2287. default: true,
  2288. },
  2289. {
  2290. name: "Big",
  2291. height: math.unit(20, "feet")
  2292. },
  2293. {
  2294. name: "Minimacro",
  2295. height: math.unit(40, "feet"),
  2296. info: {
  2297. description: {
  2298. mode: "append",
  2299. text: "\n\nTOO DAMN BIG"
  2300. }
  2301. }
  2302. },
  2303. {
  2304. name: "Macro",
  2305. height: math.unit(100, "feet"),
  2306. info: {
  2307. description: {
  2308. mode: "append",
  2309. text: "\n\nTOO DAMN BIG"
  2310. }
  2311. }
  2312. },
  2313. {
  2314. name: "Megamacro",
  2315. height: math.unit(2, "miles")
  2316. },
  2317. {
  2318. name: "Gigamacro",
  2319. height: math.unit(10, "earths")
  2320. },
  2321. ]
  2322. ))
  2323. characterMakers.push(() => makeCharacter(
  2324. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2325. {
  2326. front: {
  2327. height: math.unit(183, "cm"),
  2328. weight: math.unit(80, "kg"),
  2329. name: "Front",
  2330. image: {
  2331. source: "./media/characters/sofia-fluttertail/front.svg",
  2332. bottom: 0.01,
  2333. extra: 2154 / 2081
  2334. }
  2335. },
  2336. frontAlt: {
  2337. height: math.unit(183, "cm"),
  2338. weight: math.unit(80, "kg"),
  2339. name: "Front (alt)",
  2340. image: {
  2341. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2342. }
  2343. },
  2344. back: {
  2345. height: math.unit(183, "cm"),
  2346. weight: math.unit(80, "kg"),
  2347. name: "Back",
  2348. image: {
  2349. source: "./media/characters/sofia-fluttertail/back.svg"
  2350. }
  2351. },
  2352. kneeling: {
  2353. height: math.unit(125, "cm"),
  2354. weight: math.unit(80, "kg"),
  2355. name: "Kneeling",
  2356. image: {
  2357. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2358. extra: 1033 / 977,
  2359. bottom: 23.7 / 1057
  2360. }
  2361. },
  2362. maw: {
  2363. height: math.unit(183 / 5, "cm"),
  2364. name: "Maw",
  2365. image: {
  2366. source: "./media/characters/sofia-fluttertail/maw.svg"
  2367. }
  2368. },
  2369. mawcloseup: {
  2370. height: math.unit(183 / 5 * 0.41, "cm"),
  2371. name: "Maw (Closeup)",
  2372. image: {
  2373. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2374. }
  2375. },
  2376. paws: {
  2377. height: math.unit(1.17, "feet"),
  2378. name: "Paws",
  2379. image: {
  2380. source: "./media/characters/sofia-fluttertail/paws.svg",
  2381. extra: 851 / 851,
  2382. bottom: 17 / 868
  2383. }
  2384. },
  2385. },
  2386. [
  2387. {
  2388. name: "Normal",
  2389. height: math.unit(1.83, "meter")
  2390. },
  2391. {
  2392. name: "Size Thief",
  2393. height: math.unit(18, "feet")
  2394. },
  2395. {
  2396. name: "50 Foot Collie",
  2397. height: math.unit(50, "feet")
  2398. },
  2399. {
  2400. name: "Macro",
  2401. height: math.unit(96, "feet"),
  2402. default: true
  2403. },
  2404. {
  2405. name: "Megamerger",
  2406. height: math.unit(650, "feet")
  2407. },
  2408. ]
  2409. ))
  2410. characterMakers.push(() => makeCharacter(
  2411. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2412. {
  2413. front: {
  2414. height: math.unit(7, "feet"),
  2415. weight: math.unit(100, "kg"),
  2416. name: "Front",
  2417. image: {
  2418. source: "./media/characters/march/front.svg",
  2419. extra: 1992/1851,
  2420. bottom: 39/2031
  2421. }
  2422. },
  2423. foot: {
  2424. height: math.unit(0.9, "feet"),
  2425. name: "Foot",
  2426. image: {
  2427. source: "./media/characters/march/foot.svg"
  2428. }
  2429. },
  2430. },
  2431. [
  2432. {
  2433. name: "Normal",
  2434. height: math.unit(7.9, "feet")
  2435. },
  2436. {
  2437. name: "Macro",
  2438. height: math.unit(220, "meters")
  2439. },
  2440. {
  2441. name: "Megamacro",
  2442. height: math.unit(2.98, "km"),
  2443. default: true
  2444. },
  2445. {
  2446. name: "Gigamacro",
  2447. height: math.unit(15963, "km")
  2448. },
  2449. {
  2450. name: "Teramacro",
  2451. height: math.unit(2980000000, "km")
  2452. },
  2453. {
  2454. name: "Examacro",
  2455. height: math.unit(250, "parsecs")
  2456. },
  2457. ]
  2458. ))
  2459. characterMakers.push(() => makeCharacter(
  2460. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2461. {
  2462. front: {
  2463. height: math.unit(6, "feet"),
  2464. weight: math.unit(60, "kg"),
  2465. name: "Front",
  2466. image: {
  2467. source: "./media/characters/noir/front.svg",
  2468. extra: 1,
  2469. bottom: 0.032
  2470. }
  2471. },
  2472. },
  2473. [
  2474. {
  2475. name: "Normal",
  2476. height: math.unit(6.6, "feet")
  2477. },
  2478. {
  2479. name: "Macro",
  2480. height: math.unit(500, "feet")
  2481. },
  2482. {
  2483. name: "Megamacro",
  2484. height: math.unit(2.5, "km"),
  2485. default: true
  2486. },
  2487. {
  2488. name: "Gigamacro",
  2489. height: math.unit(22500, "km")
  2490. },
  2491. {
  2492. name: "Teramacro",
  2493. height: math.unit(2500000000, "km")
  2494. },
  2495. {
  2496. name: "Examacro",
  2497. height: math.unit(200, "parsecs")
  2498. },
  2499. ]
  2500. ))
  2501. characterMakers.push(() => makeCharacter(
  2502. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2503. {
  2504. front: {
  2505. height: math.unit(7, "feet"),
  2506. weight: math.unit(100, "kg"),
  2507. name: "Front",
  2508. image: {
  2509. source: "./media/characters/okuri/front.svg",
  2510. extra: 739/665,
  2511. bottom: 39/778
  2512. }
  2513. },
  2514. back: {
  2515. height: math.unit(7, "feet"),
  2516. weight: math.unit(100, "kg"),
  2517. name: "Back",
  2518. image: {
  2519. source: "./media/characters/okuri/back.svg",
  2520. extra: 734/653,
  2521. bottom: 13/747
  2522. }
  2523. },
  2524. sitting: {
  2525. height: math.unit(2.95, "feet"),
  2526. weight: math.unit(100, "kg"),
  2527. name: "Sitting",
  2528. image: {
  2529. source: "./media/characters/okuri/sitting.svg",
  2530. extra: 370/318,
  2531. bottom: 99/469
  2532. }
  2533. },
  2534. },
  2535. [
  2536. {
  2537. name: "Smallest",
  2538. height: math.unit(5 + 2/12, "feet")
  2539. },
  2540. {
  2541. name: "Smaller",
  2542. height: math.unit(300, "feet")
  2543. },
  2544. {
  2545. name: "Small",
  2546. height: math.unit(1000, "feet")
  2547. },
  2548. {
  2549. name: "Macro",
  2550. height: math.unit(1, "mile")
  2551. },
  2552. {
  2553. name: "Mega Macro (Small)",
  2554. height: math.unit(20, "km")
  2555. },
  2556. {
  2557. name: "Mega Macro (Large)",
  2558. height: math.unit(600, "km")
  2559. },
  2560. {
  2561. name: "Giga Macro",
  2562. height: math.unit(10000, "km")
  2563. },
  2564. {
  2565. name: "Normal",
  2566. height: math.unit(577560, "km"),
  2567. default: true
  2568. },
  2569. {
  2570. name: "Large",
  2571. height: math.unit(4, "galaxies")
  2572. },
  2573. {
  2574. name: "Largest",
  2575. height: math.unit(15, "multiverses")
  2576. },
  2577. ]
  2578. ))
  2579. characterMakers.push(() => makeCharacter(
  2580. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2581. {
  2582. front: {
  2583. height: math.unit(7, "feet"),
  2584. weight: math.unit(100, "kg"),
  2585. name: "Front",
  2586. image: {
  2587. source: "./media/characters/manny/front.svg",
  2588. extra: 1,
  2589. bottom: 0.06
  2590. }
  2591. },
  2592. back: {
  2593. height: math.unit(7, "feet"),
  2594. weight: math.unit(100, "kg"),
  2595. name: "Back",
  2596. image: {
  2597. source: "./media/characters/manny/back.svg",
  2598. extra: 1,
  2599. bottom: 0.014
  2600. }
  2601. },
  2602. },
  2603. [
  2604. {
  2605. name: "Normal",
  2606. height: math.unit(7, "feet"),
  2607. },
  2608. {
  2609. name: "Macro",
  2610. height: math.unit(78, "feet"),
  2611. default: true
  2612. },
  2613. {
  2614. name: "Macro+",
  2615. height: math.unit(300, "meters")
  2616. },
  2617. {
  2618. name: "Macro++",
  2619. height: math.unit(2400, "meters")
  2620. },
  2621. {
  2622. name: "Megamacro",
  2623. height: math.unit(5167, "meters")
  2624. },
  2625. {
  2626. name: "Gigamacro",
  2627. height: math.unit(41769, "miles")
  2628. },
  2629. ]
  2630. ))
  2631. characterMakers.push(() => makeCharacter(
  2632. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2633. {
  2634. front: {
  2635. height: math.unit(7, "feet"),
  2636. weight: math.unit(100, "kg"),
  2637. name: "Front",
  2638. image: {
  2639. source: "./media/characters/adake/front-1.svg"
  2640. }
  2641. },
  2642. frontAlt: {
  2643. height: math.unit(7, "feet"),
  2644. weight: math.unit(100, "kg"),
  2645. name: "Front (Alt)",
  2646. image: {
  2647. source: "./media/characters/adake/front-2.svg",
  2648. extra: 1,
  2649. bottom: 0.01
  2650. }
  2651. },
  2652. back: {
  2653. height: math.unit(7, "feet"),
  2654. weight: math.unit(100, "kg"),
  2655. name: "Back",
  2656. image: {
  2657. source: "./media/characters/adake/back.svg",
  2658. }
  2659. },
  2660. kneel: {
  2661. height: math.unit(5.385, "feet"),
  2662. weight: math.unit(100, "kg"),
  2663. name: "Kneeling",
  2664. image: {
  2665. source: "./media/characters/adake/kneel.svg",
  2666. bottom: 0.052
  2667. }
  2668. },
  2669. },
  2670. [
  2671. {
  2672. name: "Normal",
  2673. height: math.unit(7, "feet"),
  2674. },
  2675. {
  2676. name: "Macro",
  2677. height: math.unit(78, "feet"),
  2678. default: true
  2679. },
  2680. {
  2681. name: "Macro+",
  2682. height: math.unit(300, "meters")
  2683. },
  2684. {
  2685. name: "Macro++",
  2686. height: math.unit(2400, "meters")
  2687. },
  2688. {
  2689. name: "Megamacro",
  2690. height: math.unit(5167, "meters")
  2691. },
  2692. {
  2693. name: "Gigamacro",
  2694. height: math.unit(41769, "miles")
  2695. },
  2696. ]
  2697. ))
  2698. characterMakers.push(() => makeCharacter(
  2699. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2700. {
  2701. front: {
  2702. height: math.unit(1.65, "meters"),
  2703. weight: math.unit(50, "kg"),
  2704. name: "Front",
  2705. image: {
  2706. source: "./media/characters/elijah/front.svg",
  2707. extra: 858 / 830,
  2708. bottom: 95.5 / 953.8559
  2709. }
  2710. },
  2711. back: {
  2712. height: math.unit(1.65, "meters"),
  2713. weight: math.unit(50, "kg"),
  2714. name: "Back",
  2715. image: {
  2716. source: "./media/characters/elijah/back.svg",
  2717. extra: 895 / 850,
  2718. bottom: 5.3 / 897.956
  2719. }
  2720. },
  2721. frontNsfw: {
  2722. height: math.unit(1.65, "meters"),
  2723. weight: math.unit(50, "kg"),
  2724. name: "Front (NSFW)",
  2725. image: {
  2726. source: "./media/characters/elijah/front-nsfw.svg",
  2727. extra: 858 / 830,
  2728. bottom: 95.5 / 953.8559
  2729. }
  2730. },
  2731. backNsfw: {
  2732. height: math.unit(1.65, "meters"),
  2733. weight: math.unit(50, "kg"),
  2734. name: "Back (NSFW)",
  2735. image: {
  2736. source: "./media/characters/elijah/back-nsfw.svg",
  2737. extra: 895 / 850,
  2738. bottom: 5.3 / 897.956
  2739. }
  2740. },
  2741. dick: {
  2742. height: math.unit(1, "feet"),
  2743. name: "Dick",
  2744. image: {
  2745. source: "./media/characters/elijah/dick.svg"
  2746. }
  2747. },
  2748. beakOpen: {
  2749. height: math.unit(1.25, "feet"),
  2750. name: "Beak (Open)",
  2751. image: {
  2752. source: "./media/characters/elijah/beak-open.svg"
  2753. }
  2754. },
  2755. beakShut: {
  2756. height: math.unit(1.25, "feet"),
  2757. name: "Beak (Shut)",
  2758. image: {
  2759. source: "./media/characters/elijah/beak-shut.svg"
  2760. }
  2761. },
  2762. footFlexing: {
  2763. height: math.unit(1.61, "feet"),
  2764. name: "Foot (Flexing)",
  2765. image: {
  2766. source: "./media/characters/elijah/foot-flexing.svg"
  2767. }
  2768. },
  2769. footStepping: {
  2770. height: math.unit(1.44, "feet"),
  2771. name: "Foot (Stepping)",
  2772. image: {
  2773. source: "./media/characters/elijah/foot-stepping.svg"
  2774. }
  2775. },
  2776. plantigradeLeg: {
  2777. height: math.unit(2.34, "feet"),
  2778. name: "Plantigrade Leg",
  2779. image: {
  2780. source: "./media/characters/elijah/plantigrade-leg.svg"
  2781. }
  2782. },
  2783. plantigradeFootLeft: {
  2784. height: math.unit(0.9, "feet"),
  2785. name: "Plantigrade Foot (Left)",
  2786. image: {
  2787. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2788. }
  2789. },
  2790. plantigradeFootRight: {
  2791. height: math.unit(0.9, "feet"),
  2792. name: "Plantigrade Foot (Right)",
  2793. image: {
  2794. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2795. }
  2796. },
  2797. },
  2798. [
  2799. {
  2800. name: "Normal",
  2801. height: math.unit(1.65, "meters")
  2802. },
  2803. {
  2804. name: "Macro",
  2805. height: math.unit(55, "meters"),
  2806. default: true
  2807. },
  2808. {
  2809. name: "Macro+",
  2810. height: math.unit(105, "meters")
  2811. },
  2812. ]
  2813. ))
  2814. characterMakers.push(() => makeCharacter(
  2815. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2816. {
  2817. front: {
  2818. height: math.unit(7 + 2/12, "feet"),
  2819. weight: math.unit(320, "kg"),
  2820. name: "Front",
  2821. image: {
  2822. source: "./media/characters/rai/front.svg",
  2823. extra: 1802/1696,
  2824. bottom: 68/1870
  2825. }
  2826. },
  2827. frontDressed: {
  2828. height: math.unit(7 + 2/12, "feet"),
  2829. weight: math.unit(320, "kg"),
  2830. name: "Front (Dressed)",
  2831. image: {
  2832. source: "./media/characters/rai/front-dressed.svg",
  2833. extra: 1802/1696,
  2834. bottom: 68/1870
  2835. }
  2836. },
  2837. side: {
  2838. height: math.unit(7 + 2/12, "feet"),
  2839. weight: math.unit(320, "kg"),
  2840. name: "Side",
  2841. image: {
  2842. source: "./media/characters/rai/side.svg",
  2843. extra: 1789/1710,
  2844. bottom: 115/1904
  2845. }
  2846. },
  2847. back: {
  2848. height: math.unit(7 + 2/12, "feet"),
  2849. weight: math.unit(320, "kg"),
  2850. name: "Back",
  2851. image: {
  2852. source: "./media/characters/rai/back.svg",
  2853. extra: 1770/1707,
  2854. bottom: 28/1798
  2855. }
  2856. },
  2857. feral: {
  2858. height: math.unit(9.5, "feet"),
  2859. weight: math.unit(640, "kg"),
  2860. name: "Feral",
  2861. image: {
  2862. source: "./media/characters/rai/feral.svg",
  2863. extra: 945/553,
  2864. bottom: 176/1121
  2865. }
  2866. },
  2867. dragon: {
  2868. height: math.unit(23, "feet"),
  2869. weight: math.unit(50000, "lb"),
  2870. name: "Dragon",
  2871. image: {
  2872. source: "./media/characters/rai/dragon.svg",
  2873. extra: 2498 / 2030,
  2874. bottom: 85.2 / 2584
  2875. }
  2876. },
  2877. maw: {
  2878. height: math.unit(1.69, "feet"),
  2879. name: "Maw",
  2880. image: {
  2881. source: "./media/characters/rai/maw.svg"
  2882. }
  2883. },
  2884. },
  2885. [
  2886. {
  2887. name: "Normal",
  2888. height: math.unit(7 + 2/12, "feet")
  2889. },
  2890. {
  2891. name: "Big",
  2892. height: math.unit(11, "feet")
  2893. },
  2894. {
  2895. name: "Macro",
  2896. height: math.unit(302, "feet"),
  2897. default: true
  2898. },
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2903. {
  2904. frontDressed: {
  2905. height: math.unit(216, "feet"),
  2906. weight: math.unit(7000000, "lb"),
  2907. name: "Front (Dressed)",
  2908. image: {
  2909. source: "./media/characters/jazzy/front-dressed.svg",
  2910. extra: 2738 / 2651,
  2911. bottom: 41.8 / 2786
  2912. }
  2913. },
  2914. backDressed: {
  2915. height: math.unit(216, "feet"),
  2916. weight: math.unit(7000000, "lb"),
  2917. name: "Back (Dressed)",
  2918. image: {
  2919. source: "./media/characters/jazzy/back-dressed.svg",
  2920. extra: 2775 / 2673,
  2921. bottom: 36.8 / 2817
  2922. }
  2923. },
  2924. front: {
  2925. height: math.unit(216, "feet"),
  2926. weight: math.unit(7000000, "lb"),
  2927. name: "Front",
  2928. image: {
  2929. source: "./media/characters/jazzy/front.svg",
  2930. extra: 2738 / 2651,
  2931. bottom: 41.8 / 2786
  2932. }
  2933. },
  2934. back: {
  2935. height: math.unit(216, "feet"),
  2936. weight: math.unit(7000000, "lb"),
  2937. name: "Back",
  2938. image: {
  2939. source: "./media/characters/jazzy/back.svg",
  2940. extra: 2775 / 2673,
  2941. bottom: 36.8 / 2817
  2942. }
  2943. },
  2944. maw: {
  2945. height: math.unit(20, "feet"),
  2946. name: "Maw",
  2947. image: {
  2948. source: "./media/characters/jazzy/maw.svg"
  2949. }
  2950. },
  2951. paws: {
  2952. height: math.unit(27.5, "feet"),
  2953. name: "Paws",
  2954. image: {
  2955. source: "./media/characters/jazzy/paws.svg"
  2956. }
  2957. },
  2958. eye: {
  2959. height: math.unit(4.4, "feet"),
  2960. name: "Eye",
  2961. image: {
  2962. source: "./media/characters/jazzy/eye.svg"
  2963. }
  2964. },
  2965. droneOffense: {
  2966. height: math.unit(9.5, "inches"),
  2967. name: "Drone (Offense)",
  2968. image: {
  2969. source: "./media/characters/jazzy/drone-offense.svg"
  2970. }
  2971. },
  2972. droneRecon: {
  2973. height: math.unit(9.5, "inches"),
  2974. name: "Drone (Recon)",
  2975. image: {
  2976. source: "./media/characters/jazzy/drone-recon.svg"
  2977. }
  2978. },
  2979. droneDefense: {
  2980. height: math.unit(9.5, "inches"),
  2981. name: "Drone (Defense)",
  2982. image: {
  2983. source: "./media/characters/jazzy/drone-defense.svg"
  2984. }
  2985. },
  2986. },
  2987. [
  2988. {
  2989. name: "Macro",
  2990. height: math.unit(216, "feet"),
  2991. default: true
  2992. },
  2993. ]
  2994. ))
  2995. characterMakers.push(() => makeCharacter(
  2996. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2997. {
  2998. front: {
  2999. height: math.unit(9 + 6/12, "feet"),
  3000. weight: math.unit(700, "lb"),
  3001. name: "Front",
  3002. image: {
  3003. source: "./media/characters/flamm/front.svg",
  3004. extra: 1751/1632,
  3005. bottom: 46/1797
  3006. }
  3007. },
  3008. buff: {
  3009. height: math.unit(9 + 6/12, "feet"),
  3010. weight: math.unit(950, "lb"),
  3011. name: "Buff",
  3012. image: {
  3013. source: "./media/characters/flamm/buff.svg",
  3014. extra: 3018/2874,
  3015. bottom: 221/3239
  3016. }
  3017. },
  3018. },
  3019. [
  3020. {
  3021. name: "Normal",
  3022. height: math.unit(9.5, "feet")
  3023. },
  3024. {
  3025. name: "Macro",
  3026. height: math.unit(200, "feet"),
  3027. default: true
  3028. },
  3029. ]
  3030. ))
  3031. characterMakers.push(() => makeCharacter(
  3032. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3033. {
  3034. front: {
  3035. height: math.unit(5 + 3/12, "feet"),
  3036. weight: math.unit(60, "kg"),
  3037. name: "Front",
  3038. image: {
  3039. source: "./media/characters/zephiro/front.svg",
  3040. extra: 1873/1761,
  3041. bottom: 147/2020
  3042. }
  3043. },
  3044. side: {
  3045. height: math.unit(5 + 3/12, "feet"),
  3046. weight: math.unit(60, "kg"),
  3047. name: "Side",
  3048. image: {
  3049. source: "./media/characters/zephiro/side.svg",
  3050. extra: 1929/1827,
  3051. bottom: 65/1994
  3052. }
  3053. },
  3054. back: {
  3055. height: math.unit(5 + 3/12, "feet"),
  3056. weight: math.unit(60, "kg"),
  3057. name: "Back",
  3058. image: {
  3059. source: "./media/characters/zephiro/back.svg",
  3060. extra: 1926/1816,
  3061. bottom: 41/1967
  3062. }
  3063. },
  3064. hand: {
  3065. height: math.unit(0.68, "feet"),
  3066. name: "Hand",
  3067. image: {
  3068. source: "./media/characters/zephiro/hand.svg"
  3069. }
  3070. },
  3071. paw: {
  3072. height: math.unit(1, "feet"),
  3073. name: "Paw",
  3074. image: {
  3075. source: "./media/characters/zephiro/paw.svg"
  3076. }
  3077. },
  3078. beans: {
  3079. height: math.unit(0.93, "feet"),
  3080. name: "Beans",
  3081. image: {
  3082. source: "./media/characters/zephiro/beans.svg"
  3083. }
  3084. },
  3085. },
  3086. [
  3087. {
  3088. name: "Micro",
  3089. height: math.unit(3, "inches")
  3090. },
  3091. {
  3092. name: "Normal",
  3093. height: math.unit(5 + 3 / 12, "feet"),
  3094. default: true
  3095. },
  3096. {
  3097. name: "Macro",
  3098. height: math.unit(118, "feet")
  3099. },
  3100. ]
  3101. ))
  3102. characterMakers.push(() => makeCharacter(
  3103. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3104. {
  3105. front: {
  3106. height: math.unit(5, "feet"),
  3107. weight: math.unit(90, "kg"),
  3108. name: "Front",
  3109. image: {
  3110. source: "./media/characters/fory/front.svg",
  3111. extra: 2862 / 2674,
  3112. bottom: 180 / 3043.8
  3113. }
  3114. },
  3115. back: {
  3116. height: math.unit(5, "feet"),
  3117. weight: math.unit(90, "kg"),
  3118. name: "Back",
  3119. image: {
  3120. source: "./media/characters/fory/back.svg",
  3121. extra: 2962 / 2791,
  3122. bottom: 106 / 3071.8
  3123. }
  3124. },
  3125. foot: {
  3126. height: math.unit(2.14, "feet"),
  3127. name: "Foot",
  3128. image: {
  3129. source: "./media/characters/fory/foot.svg"
  3130. }
  3131. },
  3132. },
  3133. [
  3134. {
  3135. name: "Normal",
  3136. height: math.unit(5, "feet")
  3137. },
  3138. {
  3139. name: "Macro",
  3140. height: math.unit(50, "feet"),
  3141. default: true
  3142. },
  3143. {
  3144. name: "Megamacro",
  3145. height: math.unit(10, "miles")
  3146. },
  3147. {
  3148. name: "Gigamacro",
  3149. height: math.unit(5, "earths")
  3150. },
  3151. ]
  3152. ))
  3153. characterMakers.push(() => makeCharacter(
  3154. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3155. {
  3156. front: {
  3157. height: math.unit(7, "feet"),
  3158. weight: math.unit(90, "kg"),
  3159. name: "Front",
  3160. image: {
  3161. source: "./media/characters/kurrikage/front.svg",
  3162. extra: 1845/1733,
  3163. bottom: 119/1964
  3164. }
  3165. },
  3166. back: {
  3167. height: math.unit(7, "feet"),
  3168. weight: math.unit(90, "kg"),
  3169. name: "Back",
  3170. image: {
  3171. source: "./media/characters/kurrikage/back.svg",
  3172. extra: 1790/1677,
  3173. bottom: 61/1851
  3174. }
  3175. },
  3176. dressed: {
  3177. height: math.unit(7, "feet"),
  3178. weight: math.unit(90, "kg"),
  3179. name: "Dressed",
  3180. image: {
  3181. source: "./media/characters/kurrikage/dressed.svg",
  3182. extra: 1845/1733,
  3183. bottom: 119/1964
  3184. }
  3185. },
  3186. foot: {
  3187. height: math.unit(1.5, "feet"),
  3188. name: "Foot",
  3189. image: {
  3190. source: "./media/characters/kurrikage/foot.svg"
  3191. }
  3192. },
  3193. staff: {
  3194. height: math.unit(6.7, "feet"),
  3195. name: "Staff",
  3196. image: {
  3197. source: "./media/characters/kurrikage/staff.svg"
  3198. }
  3199. },
  3200. peek: {
  3201. height: math.unit(1.05, "feet"),
  3202. name: "Peeking",
  3203. image: {
  3204. source: "./media/characters/kurrikage/peek.svg",
  3205. bottom: 0.08
  3206. }
  3207. },
  3208. },
  3209. [
  3210. {
  3211. name: "Normal",
  3212. height: math.unit(12, "feet"),
  3213. default: true
  3214. },
  3215. {
  3216. name: "Big",
  3217. height: math.unit(20, "feet")
  3218. },
  3219. {
  3220. name: "Macro",
  3221. height: math.unit(500, "feet")
  3222. },
  3223. {
  3224. name: "Megamacro",
  3225. height: math.unit(20, "miles")
  3226. },
  3227. ]
  3228. ))
  3229. characterMakers.push(() => makeCharacter(
  3230. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3231. {
  3232. front: {
  3233. height: math.unit(6, "feet"),
  3234. weight: math.unit(75, "kg"),
  3235. name: "Front",
  3236. image: {
  3237. source: "./media/characters/shingo/front.svg",
  3238. extra: 1900/1825,
  3239. bottom: 82/1982
  3240. }
  3241. },
  3242. side: {
  3243. height: math.unit(6, "feet"),
  3244. weight: math.unit(75, "kg"),
  3245. name: "Side",
  3246. image: {
  3247. source: "./media/characters/shingo/side.svg",
  3248. extra: 1930/1865,
  3249. bottom: 16/1946
  3250. }
  3251. },
  3252. back: {
  3253. height: math.unit(6, "feet"),
  3254. weight: math.unit(75, "kg"),
  3255. name: "Back",
  3256. image: {
  3257. source: "./media/characters/shingo/back.svg",
  3258. extra: 1922/1852,
  3259. bottom: 16/1938
  3260. }
  3261. },
  3262. frontDressed: {
  3263. height: math.unit(6, "feet"),
  3264. weight: math.unit(150, "lb"),
  3265. name: "Front-dressed",
  3266. image: {
  3267. source: "./media/characters/shingo/front-dressed.svg",
  3268. extra: 1900/1825,
  3269. bottom: 82/1982
  3270. }
  3271. },
  3272. paw: {
  3273. height: math.unit(1.29, "feet"),
  3274. name: "Paw",
  3275. image: {
  3276. source: "./media/characters/shingo/paw.svg"
  3277. }
  3278. },
  3279. hand: {
  3280. height: math.unit(1.07, "feet"),
  3281. name: "Hand",
  3282. image: {
  3283. source: "./media/characters/shingo/hand.svg"
  3284. }
  3285. },
  3286. frontAlt: {
  3287. height: math.unit(6, "feet"),
  3288. weight: math.unit(75, "kg"),
  3289. name: "Front (Alt)",
  3290. image: {
  3291. source: "./media/characters/shingo/front-alt.svg",
  3292. extra: 3511 / 3338,
  3293. bottom: 0.005
  3294. }
  3295. },
  3296. frontAlt2: {
  3297. height: math.unit(6, "feet"),
  3298. weight: math.unit(75, "kg"),
  3299. name: "Front (Alt 2)",
  3300. image: {
  3301. source: "./media/characters/shingo/front-alt-2.svg",
  3302. extra: 706/681,
  3303. bottom: 11/717
  3304. }
  3305. },
  3306. pawAlt: {
  3307. height: math.unit(1, "feet"),
  3308. name: "Paw (Alt)",
  3309. image: {
  3310. source: "./media/characters/shingo/paw-alt.svg"
  3311. }
  3312. },
  3313. },
  3314. [
  3315. {
  3316. name: "Micro",
  3317. height: math.unit(4, "inches")
  3318. },
  3319. {
  3320. name: "Normal",
  3321. height: math.unit(6, "feet"),
  3322. default: true
  3323. },
  3324. {
  3325. name: "Macro",
  3326. height: math.unit(108, "feet")
  3327. },
  3328. {
  3329. name: "Macro+",
  3330. height: math.unit(1500, "feet")
  3331. },
  3332. ]
  3333. ))
  3334. characterMakers.push(() => makeCharacter(
  3335. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3336. {
  3337. side: {
  3338. height: math.unit(6, "feet"),
  3339. weight: math.unit(75, "kg"),
  3340. name: "Side",
  3341. image: {
  3342. source: "./media/characters/aigey/side.svg"
  3343. }
  3344. },
  3345. },
  3346. [
  3347. {
  3348. name: "Macro",
  3349. height: math.unit(200, "feet"),
  3350. default: true
  3351. },
  3352. {
  3353. name: "Megamacro",
  3354. height: math.unit(100, "miles")
  3355. },
  3356. ]
  3357. )
  3358. )
  3359. characterMakers.push(() => makeCharacter(
  3360. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3361. {
  3362. front: {
  3363. height: math.unit(5 + 5 / 12, "feet"),
  3364. weight: math.unit(75, "kg"),
  3365. name: "Front",
  3366. image: {
  3367. source: "./media/characters/natasha/front.svg",
  3368. extra: 859 / 824,
  3369. bottom: 23 / 879.6
  3370. }
  3371. },
  3372. frontNsfw: {
  3373. height: math.unit(5 + 5 / 12, "feet"),
  3374. weight: math.unit(75, "kg"),
  3375. name: "Front (NSFW)",
  3376. image: {
  3377. source: "./media/characters/natasha/front-nsfw.svg",
  3378. extra: 859 / 824,
  3379. bottom: 23 / 879.6
  3380. }
  3381. },
  3382. frontErect: {
  3383. height: math.unit(5 + 5 / 12, "feet"),
  3384. weight: math.unit(75, "kg"),
  3385. name: "Front (Erect)",
  3386. image: {
  3387. source: "./media/characters/natasha/front-erect.svg",
  3388. extra: 859 / 824,
  3389. bottom: 23 / 879.6
  3390. }
  3391. },
  3392. back: {
  3393. height: math.unit(5 + 5 / 12, "feet"),
  3394. weight: math.unit(75, "kg"),
  3395. name: "Back",
  3396. image: {
  3397. source: "./media/characters/natasha/back.svg",
  3398. extra: 887.9 / 852.6,
  3399. bottom: 9.7 / 896.4
  3400. }
  3401. },
  3402. backAlt: {
  3403. height: math.unit(5 + 5 / 12, "feet"),
  3404. weight: math.unit(75, "kg"),
  3405. name: "Back (Alt)",
  3406. image: {
  3407. source: "./media/characters/natasha/back-alt.svg",
  3408. extra: 1236.7 / 1192,
  3409. bottom: 22.3 / 1258.2
  3410. }
  3411. },
  3412. dick: {
  3413. height: math.unit(1.772, "feet"),
  3414. name: "Dick",
  3415. image: {
  3416. source: "./media/characters/natasha/dick.svg"
  3417. }
  3418. },
  3419. paw: {
  3420. height: math.unit(0.250, "meters"),
  3421. name: "Paw",
  3422. image: {
  3423. source: "./media/characters/natasha/paw.svg"
  3424. },
  3425. extraAttributes: {
  3426. "toeSize": {
  3427. name: "Toe Size",
  3428. power: 2,
  3429. type: "area",
  3430. base: math.unit(0.0024, "m^2")
  3431. },
  3432. "padSize": {
  3433. name: "Pad Size",
  3434. power: 2,
  3435. type: "area",
  3436. base: math.unit(0.00889, "m^2")
  3437. },
  3438. "pawSize": {
  3439. name: "Paw Size",
  3440. power: 2,
  3441. type: "area",
  3442. base: math.unit(0.023667, "m^2")
  3443. },
  3444. }
  3445. },
  3446. },
  3447. [
  3448. {
  3449. name: "Shortstack",
  3450. height: math.unit(3, "feet"),
  3451. default: true
  3452. },
  3453. {
  3454. name: "Normal",
  3455. height: math.unit(5 + 5 / 12, "feet")
  3456. },
  3457. {
  3458. name: "Large",
  3459. height: math.unit(12, "feet")
  3460. },
  3461. {
  3462. name: "Macro",
  3463. height: math.unit(100, "feet")
  3464. },
  3465. {
  3466. name: "Macro+",
  3467. height: math.unit(260, "feet")
  3468. },
  3469. {
  3470. name: "Macro++",
  3471. height: math.unit(1, "mile")
  3472. },
  3473. ]
  3474. ))
  3475. characterMakers.push(() => makeCharacter(
  3476. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3477. {
  3478. front: {
  3479. height: math.unit(6, "feet"),
  3480. weight: math.unit(75, "kg"),
  3481. name: "Front",
  3482. image: {
  3483. source: "./media/characters/malik/front.svg",
  3484. extra: 1750/1561,
  3485. bottom: 80/1830
  3486. },
  3487. extraAttributes: {
  3488. "toeSize": {
  3489. name: "Toe Size",
  3490. power: 2,
  3491. type: "area",
  3492. base: math.unit(0.0159, "m^2")
  3493. },
  3494. "pawSize": {
  3495. name: "Paw Size",
  3496. power: 2,
  3497. type: "area",
  3498. base: math.unit(0.09834, "m^2")
  3499. },
  3500. }
  3501. },
  3502. side: {
  3503. height: math.unit(6, "feet"),
  3504. weight: math.unit(75, "kg"),
  3505. name: "Side",
  3506. image: {
  3507. source: "./media/characters/malik/side.svg",
  3508. extra: 1802/1685,
  3509. bottom: 42/1844
  3510. },
  3511. extraAttributes: {
  3512. "toeSize": {
  3513. name: "Toe Size",
  3514. power: 2,
  3515. type: "area",
  3516. base: math.unit(0.0159, "m^2")
  3517. },
  3518. "pawSize": {
  3519. name: "Paw Size",
  3520. power: 2,
  3521. type: "area",
  3522. base: math.unit(0.09834, "m^2")
  3523. },
  3524. }
  3525. },
  3526. back: {
  3527. height: math.unit(6, "feet"),
  3528. weight: math.unit(75, "kg"),
  3529. name: "Back",
  3530. image: {
  3531. source: "./media/characters/malik/back.svg",
  3532. extra: 1803/1607,
  3533. bottom: 33/1836
  3534. },
  3535. extraAttributes: {
  3536. "toeSize": {
  3537. name: "Toe Size",
  3538. power: 2,
  3539. type: "area",
  3540. base: math.unit(0.0159, "m^2")
  3541. },
  3542. "pawSize": {
  3543. name: "Paw Size",
  3544. power: 2,
  3545. type: "area",
  3546. base: math.unit(0.09834, "m^2")
  3547. },
  3548. }
  3549. },
  3550. },
  3551. [
  3552. {
  3553. name: "Macro",
  3554. height: math.unit(156, "feet"),
  3555. default: true
  3556. },
  3557. {
  3558. name: "Macro+",
  3559. height: math.unit(1188, "feet")
  3560. },
  3561. ]
  3562. ))
  3563. characterMakers.push(() => makeCharacter(
  3564. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3565. {
  3566. front: {
  3567. height: math.unit(6, "feet"),
  3568. weight: math.unit(75, "kg"),
  3569. name: "Front",
  3570. image: {
  3571. source: "./media/characters/sefer/front.svg",
  3572. extra: 848 / 659,
  3573. bottom: 28.3 / 876.442
  3574. }
  3575. },
  3576. back: {
  3577. height: math.unit(6, "feet"),
  3578. weight: math.unit(75, "kg"),
  3579. name: "Back",
  3580. image: {
  3581. source: "./media/characters/sefer/back.svg",
  3582. extra: 864 / 695,
  3583. bottom: 10 / 871
  3584. }
  3585. },
  3586. frontDressed: {
  3587. height: math.unit(6, "feet"),
  3588. weight: math.unit(75, "kg"),
  3589. name: "Dressed",
  3590. image: {
  3591. source: "./media/characters/sefer/dressed.svg",
  3592. extra: 839 / 653,
  3593. bottom: 37.6 / 878
  3594. }
  3595. },
  3596. },
  3597. [
  3598. {
  3599. name: "Normal",
  3600. height: math.unit(6, "feet"),
  3601. default: true
  3602. },
  3603. {
  3604. name: "Big",
  3605. height: math.unit(8, "meters")
  3606. },
  3607. ]
  3608. ))
  3609. characterMakers.push(() => makeCharacter(
  3610. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3611. {
  3612. body: {
  3613. height: math.unit(2.2428, "meter"),
  3614. weight: math.unit(124.738, "kg"),
  3615. name: "Body",
  3616. image: {
  3617. extra: 1225 / 1050,
  3618. source: "./media/characters/north/front.svg"
  3619. }
  3620. }
  3621. },
  3622. [
  3623. {
  3624. name: "Micro",
  3625. height: math.unit(4, "inches")
  3626. },
  3627. {
  3628. name: "Macro",
  3629. height: math.unit(63, "meters")
  3630. },
  3631. {
  3632. name: "Megamacro",
  3633. height: math.unit(101, "miles"),
  3634. default: true
  3635. }
  3636. ]
  3637. ))
  3638. characterMakers.push(() => makeCharacter(
  3639. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3640. {
  3641. angled: {
  3642. height: math.unit(4, "meter"),
  3643. weight: math.unit(150, "kg"),
  3644. name: "Angled",
  3645. image: {
  3646. source: "./media/characters/talan/angled-sfw.svg",
  3647. bottom: 29 / 3734
  3648. }
  3649. },
  3650. angledNsfw: {
  3651. height: math.unit(4, "meter"),
  3652. weight: math.unit(150, "kg"),
  3653. name: "Angled (NSFW)",
  3654. image: {
  3655. source: "./media/characters/talan/angled-nsfw.svg",
  3656. bottom: 29 / 3734
  3657. }
  3658. },
  3659. frontNsfw: {
  3660. height: math.unit(4, "meter"),
  3661. weight: math.unit(150, "kg"),
  3662. name: "Front (NSFW)",
  3663. image: {
  3664. source: "./media/characters/talan/front-nsfw.svg",
  3665. bottom: 29 / 3734
  3666. }
  3667. },
  3668. sideNsfw: {
  3669. height: math.unit(4, "meter"),
  3670. weight: math.unit(150, "kg"),
  3671. name: "Side (NSFW)",
  3672. image: {
  3673. source: "./media/characters/talan/side-nsfw.svg",
  3674. bottom: 29 / 3734
  3675. }
  3676. },
  3677. back: {
  3678. height: math.unit(4, "meter"),
  3679. weight: math.unit(150, "kg"),
  3680. name: "Back",
  3681. image: {
  3682. source: "./media/characters/talan/back.svg"
  3683. }
  3684. },
  3685. dickBottom: {
  3686. height: math.unit(0.621, "meter"),
  3687. name: "Dick (Bottom)",
  3688. image: {
  3689. source: "./media/characters/talan/dick-bottom.svg"
  3690. }
  3691. },
  3692. dickTop: {
  3693. height: math.unit(0.621, "meter"),
  3694. name: "Dick (Top)",
  3695. image: {
  3696. source: "./media/characters/talan/dick-top.svg"
  3697. }
  3698. },
  3699. dickSide: {
  3700. height: math.unit(0.305, "meter"),
  3701. name: "Dick (Side)",
  3702. image: {
  3703. source: "./media/characters/talan/dick-side.svg"
  3704. }
  3705. },
  3706. dickFront: {
  3707. height: math.unit(0.305, "meter"),
  3708. name: "Dick (Front)",
  3709. image: {
  3710. source: "./media/characters/talan/dick-front.svg"
  3711. }
  3712. },
  3713. },
  3714. [
  3715. {
  3716. name: "Normal",
  3717. height: math.unit(4, "meters")
  3718. },
  3719. {
  3720. name: "Macro",
  3721. height: math.unit(100, "meters")
  3722. },
  3723. {
  3724. name: "Megamacro",
  3725. height: math.unit(2, "miles"),
  3726. default: true
  3727. },
  3728. {
  3729. name: "Gigamacro",
  3730. height: math.unit(5000, "miles")
  3731. },
  3732. {
  3733. name: "Teramacro",
  3734. height: math.unit(100, "parsecs")
  3735. }
  3736. ]
  3737. ))
  3738. characterMakers.push(() => makeCharacter(
  3739. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3740. {
  3741. front: {
  3742. height: math.unit(2, "meter"),
  3743. weight: math.unit(90, "kg"),
  3744. name: "Front",
  3745. image: {
  3746. source: "./media/characters/gael'rathus/front.svg"
  3747. }
  3748. },
  3749. frontAlt: {
  3750. height: math.unit(2, "meter"),
  3751. weight: math.unit(90, "kg"),
  3752. name: "Front (alt)",
  3753. image: {
  3754. source: "./media/characters/gael'rathus/front-alt.svg"
  3755. }
  3756. },
  3757. frontAlt2: {
  3758. height: math.unit(2, "meter"),
  3759. weight: math.unit(90, "kg"),
  3760. name: "Front (alt 2)",
  3761. image: {
  3762. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3763. }
  3764. }
  3765. },
  3766. [
  3767. {
  3768. name: "Normal",
  3769. height: math.unit(9, "feet"),
  3770. default: true
  3771. },
  3772. {
  3773. name: "Large",
  3774. height: math.unit(25, "feet")
  3775. },
  3776. {
  3777. name: "Macro",
  3778. height: math.unit(0.25, "miles")
  3779. },
  3780. {
  3781. name: "Megamacro",
  3782. height: math.unit(10, "miles")
  3783. }
  3784. ]
  3785. ))
  3786. characterMakers.push(() => makeCharacter(
  3787. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3788. {
  3789. side: {
  3790. height: math.unit(2, "meter"),
  3791. weight: math.unit(140, "kg"),
  3792. name: "Side",
  3793. image: {
  3794. source: "./media/characters/sosha/side.svg",
  3795. extra: 1170/1006,
  3796. bottom: 94/1264
  3797. }
  3798. },
  3799. maw: {
  3800. height: math.unit(2.87, "feet"),
  3801. name: "Maw",
  3802. image: {
  3803. source: "./media/characters/sosha/maw.svg",
  3804. extra: 966/865,
  3805. bottom: 0/966
  3806. }
  3807. },
  3808. cooch: {
  3809. height: math.unit(5.6, "feet"),
  3810. name: "Cooch",
  3811. image: {
  3812. source: "./media/characters/sosha/cooch.svg"
  3813. }
  3814. },
  3815. },
  3816. [
  3817. {
  3818. name: "Normal",
  3819. height: math.unit(12, "feet"),
  3820. default: true
  3821. }
  3822. ]
  3823. ))
  3824. characterMakers.push(() => makeCharacter(
  3825. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3826. {
  3827. side: {
  3828. height: math.unit(5 + 5 / 12, "feet"),
  3829. weight: math.unit(170, "kg"),
  3830. name: "Side",
  3831. image: {
  3832. source: "./media/characters/runnola/side.svg",
  3833. extra: 741 / 448,
  3834. bottom: 0.05
  3835. }
  3836. },
  3837. },
  3838. [
  3839. {
  3840. name: "Small",
  3841. height: math.unit(3, "feet")
  3842. },
  3843. {
  3844. name: "Normal",
  3845. height: math.unit(5 + 5 / 12, "feet"),
  3846. default: true
  3847. },
  3848. {
  3849. name: "Big",
  3850. height: math.unit(10, "feet")
  3851. },
  3852. ]
  3853. ))
  3854. characterMakers.push(() => makeCharacter(
  3855. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3856. {
  3857. front: {
  3858. height: math.unit(2, "meter"),
  3859. weight: math.unit(50, "kg"),
  3860. name: "Front",
  3861. image: {
  3862. source: "./media/characters/kurribird/front.svg",
  3863. bottom: 0.015
  3864. }
  3865. },
  3866. frontAlt: {
  3867. height: math.unit(1.5, "meter"),
  3868. weight: math.unit(50, "kg"),
  3869. name: "Front (Alt)",
  3870. image: {
  3871. source: "./media/characters/kurribird/front-alt.svg",
  3872. extra: 1.45
  3873. }
  3874. },
  3875. },
  3876. [
  3877. {
  3878. name: "Normal",
  3879. height: math.unit(7, "feet")
  3880. },
  3881. {
  3882. name: "Big",
  3883. height: math.unit(12, "feet"),
  3884. default: true
  3885. },
  3886. {
  3887. name: "Macro",
  3888. height: math.unit(1500, "feet")
  3889. },
  3890. {
  3891. name: "Megamacro",
  3892. height: math.unit(2, "miles")
  3893. }
  3894. ]
  3895. ))
  3896. characterMakers.push(() => makeCharacter(
  3897. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3898. {
  3899. front: {
  3900. height: math.unit(2, "meter"),
  3901. weight: math.unit(80, "kg"),
  3902. name: "Front",
  3903. image: {
  3904. source: "./media/characters/elbial/front.svg",
  3905. extra: 1643 / 1556,
  3906. bottom: 60.2 / 1696
  3907. }
  3908. },
  3909. side: {
  3910. height: math.unit(2, "meter"),
  3911. weight: math.unit(80, "kg"),
  3912. name: "Side",
  3913. image: {
  3914. source: "./media/characters/elbial/side.svg",
  3915. extra: 1601/1528,
  3916. bottom: 97/1698
  3917. }
  3918. },
  3919. back: {
  3920. height: math.unit(2, "meter"),
  3921. weight: math.unit(80, "kg"),
  3922. name: "Back",
  3923. image: {
  3924. source: "./media/characters/elbial/back.svg",
  3925. extra: 1653/1569,
  3926. bottom: 20/1673
  3927. }
  3928. },
  3929. frontDressed: {
  3930. height: math.unit(2, "meter"),
  3931. weight: math.unit(80, "kg"),
  3932. name: "Front (Dressed)",
  3933. image: {
  3934. source: "./media/characters/elbial/front-dressed.svg",
  3935. extra: 1638/1569,
  3936. bottom: 70/1708
  3937. }
  3938. },
  3939. genitals: {
  3940. height: math.unit(2 / 3.367, "meter"),
  3941. name: "Genitals",
  3942. image: {
  3943. source: "./media/characters/elbial/genitals.svg"
  3944. }
  3945. },
  3946. },
  3947. [
  3948. {
  3949. name: "Large",
  3950. height: math.unit(100, "feet")
  3951. },
  3952. {
  3953. name: "Macro",
  3954. height: math.unit(500, "feet"),
  3955. default: true
  3956. },
  3957. {
  3958. name: "Megamacro",
  3959. height: math.unit(10, "miles")
  3960. },
  3961. {
  3962. name: "Gigamacro",
  3963. height: math.unit(25000, "miles")
  3964. },
  3965. {
  3966. name: "Full-Size",
  3967. height: math.unit(8000000, "gigaparsecs")
  3968. }
  3969. ]
  3970. ))
  3971. characterMakers.push(() => makeCharacter(
  3972. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3973. {
  3974. front: {
  3975. height: math.unit(2, "meter"),
  3976. weight: math.unit(60, "kg"),
  3977. name: "Front",
  3978. image: {
  3979. source: "./media/characters/noah/front.svg"
  3980. }
  3981. },
  3982. talons: {
  3983. height: math.unit(0.315, "meter"),
  3984. name: "Talons",
  3985. image: {
  3986. source: "./media/characters/noah/talons.svg"
  3987. }
  3988. }
  3989. },
  3990. [
  3991. {
  3992. name: "Large",
  3993. height: math.unit(50, "feet")
  3994. },
  3995. {
  3996. name: "Macro",
  3997. height: math.unit(750, "feet"),
  3998. default: true
  3999. },
  4000. {
  4001. name: "Megamacro",
  4002. height: math.unit(50, "miles")
  4003. },
  4004. {
  4005. name: "Gigamacro",
  4006. height: math.unit(100000, "miles")
  4007. },
  4008. {
  4009. name: "Full-Size",
  4010. height: math.unit(3000000000, "miles")
  4011. }
  4012. ]
  4013. ))
  4014. characterMakers.push(() => makeCharacter(
  4015. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4016. {
  4017. front: {
  4018. height: math.unit(2, "meter"),
  4019. weight: math.unit(80, "kg"),
  4020. name: "Front",
  4021. image: {
  4022. source: "./media/characters/natalya/front.svg"
  4023. }
  4024. },
  4025. back: {
  4026. height: math.unit(2, "meter"),
  4027. weight: math.unit(80, "kg"),
  4028. name: "Back",
  4029. image: {
  4030. source: "./media/characters/natalya/back.svg"
  4031. }
  4032. }
  4033. },
  4034. [
  4035. {
  4036. name: "Normal",
  4037. height: math.unit(150, "feet"),
  4038. default: true
  4039. },
  4040. {
  4041. name: "Megamacro",
  4042. height: math.unit(5, "miles")
  4043. },
  4044. {
  4045. name: "Full-Size",
  4046. height: math.unit(600, "kiloparsecs")
  4047. }
  4048. ]
  4049. ))
  4050. characterMakers.push(() => makeCharacter(
  4051. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4052. {
  4053. front: {
  4054. height: math.unit(2, "meter"),
  4055. weight: math.unit(50, "kg"),
  4056. name: "Front",
  4057. image: {
  4058. source: "./media/characters/erestrebah/front.svg",
  4059. extra: 1262/1162,
  4060. bottom: 96/1358
  4061. }
  4062. },
  4063. back: {
  4064. height: math.unit(2, "meter"),
  4065. weight: math.unit(50, "kg"),
  4066. name: "Back",
  4067. image: {
  4068. source: "./media/characters/erestrebah/back.svg",
  4069. extra: 1257/1139,
  4070. bottom: 13/1270
  4071. }
  4072. },
  4073. wing: {
  4074. height: math.unit(2, "meter"),
  4075. weight: math.unit(50, "kg"),
  4076. name: "Wing",
  4077. image: {
  4078. source: "./media/characters/erestrebah/wing.svg",
  4079. extra: 1262/1162,
  4080. bottom: 96/1358
  4081. }
  4082. },
  4083. mouth: {
  4084. height: math.unit(0.39, "feet"),
  4085. name: "Mouth",
  4086. image: {
  4087. source: "./media/characters/erestrebah/mouth.svg"
  4088. }
  4089. }
  4090. },
  4091. [
  4092. {
  4093. name: "Normal",
  4094. height: math.unit(10, "feet")
  4095. },
  4096. {
  4097. name: "Large",
  4098. height: math.unit(50, "feet"),
  4099. default: true
  4100. },
  4101. {
  4102. name: "Macro",
  4103. height: math.unit(300, "feet")
  4104. },
  4105. {
  4106. name: "Macro+",
  4107. height: math.unit(750, "feet")
  4108. },
  4109. {
  4110. name: "Megamacro",
  4111. height: math.unit(3, "miles")
  4112. }
  4113. ]
  4114. ))
  4115. characterMakers.push(() => makeCharacter(
  4116. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4117. {
  4118. front: {
  4119. height: math.unit(2, "meter"),
  4120. weight: math.unit(80, "kg"),
  4121. name: "Front",
  4122. image: {
  4123. source: "./media/characters/jennifer/front.svg",
  4124. bottom: 0.11,
  4125. extra: 1.16
  4126. }
  4127. },
  4128. frontAlt: {
  4129. height: math.unit(2, "meter"),
  4130. weight: math.unit(80, "kg"),
  4131. name: "Front (Alt)",
  4132. image: {
  4133. source: "./media/characters/jennifer/front-alt.svg"
  4134. }
  4135. }
  4136. },
  4137. [
  4138. {
  4139. name: "Canon Height",
  4140. height: math.unit(120, "feet"),
  4141. default: true
  4142. },
  4143. {
  4144. name: "Macro+",
  4145. height: math.unit(300, "feet")
  4146. },
  4147. {
  4148. name: "Megamacro",
  4149. height: math.unit(20000, "feet")
  4150. }
  4151. ]
  4152. ))
  4153. characterMakers.push(() => makeCharacter(
  4154. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4155. {
  4156. front: {
  4157. height: math.unit(2, "meter"),
  4158. weight: math.unit(50, "kg"),
  4159. name: "Front",
  4160. image: {
  4161. source: "./media/characters/kalista/front.svg",
  4162. extra: 1314/1145,
  4163. bottom: 101/1415
  4164. }
  4165. },
  4166. back: {
  4167. height: math.unit(2, "meter"),
  4168. weight: math.unit(50, "kg"),
  4169. name: "Back",
  4170. image: {
  4171. source: "./media/characters/kalista/back.svg",
  4172. extra: 1366 / 1156,
  4173. bottom: 33.9 / 1362.78
  4174. }
  4175. }
  4176. },
  4177. [
  4178. {
  4179. name: "Uncomfortably Small",
  4180. height: math.unit(10, "feet")
  4181. },
  4182. {
  4183. name: "Small",
  4184. height: math.unit(30, "feet")
  4185. },
  4186. {
  4187. name: "Macro",
  4188. height: math.unit(100, "feet"),
  4189. default: true
  4190. },
  4191. {
  4192. name: "Macro+",
  4193. height: math.unit(2000, "feet")
  4194. },
  4195. {
  4196. name: "True Form",
  4197. height: math.unit(8924, "miles")
  4198. }
  4199. ]
  4200. ))
  4201. characterMakers.push(() => makeCharacter(
  4202. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4203. {
  4204. front: {
  4205. height: math.unit(2, "meter"),
  4206. weight: math.unit(120, "kg"),
  4207. name: "Front",
  4208. image: {
  4209. source: "./media/characters/ggv/front.svg"
  4210. }
  4211. },
  4212. side: {
  4213. height: math.unit(2, "meter"),
  4214. weight: math.unit(120, "kg"),
  4215. name: "Side",
  4216. image: {
  4217. source: "./media/characters/ggv/side.svg"
  4218. }
  4219. }
  4220. },
  4221. [
  4222. {
  4223. name: "Extremely Puny",
  4224. height: math.unit(9 + 5 / 12, "feet")
  4225. },
  4226. {
  4227. name: "Horribly Small",
  4228. height: math.unit(47.7, "miles"),
  4229. default: true
  4230. },
  4231. {
  4232. name: "Reasonably Sized",
  4233. height: math.unit(25000, "parsecs")
  4234. },
  4235. {
  4236. name: "Slightly Uncompressed",
  4237. height: math.unit(7.77e31, "parsecs")
  4238. },
  4239. {
  4240. name: "Omniversal",
  4241. height: math.unit(1e300, "meters")
  4242. },
  4243. ]
  4244. ))
  4245. characterMakers.push(() => makeCharacter(
  4246. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4247. {
  4248. front: {
  4249. height: math.unit(2, "meter"),
  4250. weight: math.unit(75, "lb"),
  4251. name: "Front",
  4252. image: {
  4253. source: "./media/characters/napalm/front.svg"
  4254. }
  4255. },
  4256. back: {
  4257. height: math.unit(2, "meter"),
  4258. weight: math.unit(75, "lb"),
  4259. name: "Back",
  4260. image: {
  4261. source: "./media/characters/napalm/back.svg"
  4262. }
  4263. }
  4264. },
  4265. [
  4266. {
  4267. name: "Standard",
  4268. height: math.unit(55, "feet"),
  4269. default: true
  4270. }
  4271. ]
  4272. ))
  4273. characterMakers.push(() => makeCharacter(
  4274. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4275. {
  4276. front: {
  4277. height: math.unit(7 + 5 / 6, "feet"),
  4278. weight: math.unit(325, "lb"),
  4279. name: "Front",
  4280. image: {
  4281. source: "./media/characters/asana/front.svg",
  4282. extra: 1133 / 1060,
  4283. bottom: 15.2 / 1148.6
  4284. }
  4285. },
  4286. back: {
  4287. height: math.unit(7 + 5 / 6, "feet"),
  4288. weight: math.unit(325, "lb"),
  4289. name: "Back",
  4290. image: {
  4291. source: "./media/characters/asana/back.svg",
  4292. extra: 1114 / 1043,
  4293. bottom: 5 / 1120
  4294. }
  4295. },
  4296. dressedDark: {
  4297. height: math.unit(7 + 5 / 6, "feet"),
  4298. weight: math.unit(325, "lb"),
  4299. name: "Dressed (Dark)",
  4300. image: {
  4301. source: "./media/characters/asana/dressed-dark.svg",
  4302. extra: 1133 / 1060,
  4303. bottom: 15.2 / 1148.6
  4304. }
  4305. },
  4306. dressedLight: {
  4307. height: math.unit(7 + 5 / 6, "feet"),
  4308. weight: math.unit(325, "lb"),
  4309. name: "Dressed (Light)",
  4310. image: {
  4311. source: "./media/characters/asana/dressed-light.svg",
  4312. extra: 1133 / 1060,
  4313. bottom: 15.2 / 1148.6
  4314. }
  4315. },
  4316. },
  4317. [
  4318. {
  4319. name: "Standard",
  4320. height: math.unit(7 + 5 / 6, "feet"),
  4321. default: true
  4322. },
  4323. {
  4324. name: "Large",
  4325. height: math.unit(10, "meters")
  4326. },
  4327. {
  4328. name: "Macro",
  4329. height: math.unit(2500, "meters")
  4330. },
  4331. {
  4332. name: "Megamacro",
  4333. height: math.unit(5e6, "meters")
  4334. },
  4335. {
  4336. name: "Examacro",
  4337. height: math.unit(5e12, "lightyears")
  4338. },
  4339. {
  4340. name: "Max Size",
  4341. height: math.unit(1e31, "lightyears")
  4342. }
  4343. ]
  4344. ))
  4345. characterMakers.push(() => makeCharacter(
  4346. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4347. {
  4348. front: {
  4349. height: math.unit(2, "meter"),
  4350. weight: math.unit(60, "kg"),
  4351. name: "Front",
  4352. image: {
  4353. source: "./media/characters/ebony/front.svg",
  4354. bottom: 0.03,
  4355. extra: 1045 / 810 + 0.03
  4356. }
  4357. },
  4358. side: {
  4359. height: math.unit(2, "meter"),
  4360. weight: math.unit(60, "kg"),
  4361. name: "Side",
  4362. image: {
  4363. source: "./media/characters/ebony/side.svg",
  4364. bottom: 0.03,
  4365. extra: 1045 / 810 + 0.03
  4366. }
  4367. },
  4368. back: {
  4369. height: math.unit(2, "meter"),
  4370. weight: math.unit(60, "kg"),
  4371. name: "Back",
  4372. image: {
  4373. source: "./media/characters/ebony/back.svg",
  4374. bottom: 0.01,
  4375. extra: 1045 / 810 + 0.01
  4376. }
  4377. },
  4378. },
  4379. [
  4380. // TODO check why I did this lol
  4381. {
  4382. name: "Standard",
  4383. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4384. default: true
  4385. },
  4386. {
  4387. name: "Macro",
  4388. height: math.unit(200, "feet")
  4389. },
  4390. {
  4391. name: "Gigamacro",
  4392. height: math.unit(13000, "km")
  4393. }
  4394. ]
  4395. ))
  4396. characterMakers.push(() => makeCharacter(
  4397. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4398. {
  4399. front: {
  4400. height: math.unit(6, "feet"),
  4401. weight: math.unit(175, "lb"),
  4402. name: "Front",
  4403. image: {
  4404. source: "./media/characters/mountain/front.svg",
  4405. extra: 972 / 955,
  4406. bottom: 64 / 1036.6
  4407. }
  4408. },
  4409. back: {
  4410. height: math.unit(6, "feet"),
  4411. weight: math.unit(175, "lb"),
  4412. name: "Back",
  4413. image: {
  4414. source: "./media/characters/mountain/back.svg",
  4415. extra: 970 / 950,
  4416. bottom: 28.25 / 999
  4417. }
  4418. },
  4419. },
  4420. [
  4421. {
  4422. name: "Large",
  4423. height: math.unit(20, "meters")
  4424. },
  4425. {
  4426. name: "Macro",
  4427. height: math.unit(300, "meters")
  4428. },
  4429. {
  4430. name: "Gigamacro",
  4431. height: math.unit(10000, "km"),
  4432. default: true
  4433. },
  4434. {
  4435. name: "Examacro",
  4436. height: math.unit(10e9, "lightyears")
  4437. }
  4438. ]
  4439. ))
  4440. characterMakers.push(() => makeCharacter(
  4441. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4442. {
  4443. front: {
  4444. height: math.unit(8, "feet"),
  4445. weight: math.unit(500, "lb"),
  4446. name: "Front",
  4447. image: {
  4448. source: "./media/characters/rick/front.svg"
  4449. }
  4450. }
  4451. },
  4452. [
  4453. {
  4454. name: "Normal",
  4455. height: math.unit(8, "feet"),
  4456. default: true
  4457. },
  4458. {
  4459. name: "Macro",
  4460. height: math.unit(5, "km")
  4461. }
  4462. ]
  4463. ))
  4464. characterMakers.push(() => makeCharacter(
  4465. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4466. {
  4467. front: {
  4468. height: math.unit(8, "feet"),
  4469. weight: math.unit(120, "lb"),
  4470. name: "Front",
  4471. image: {
  4472. source: "./media/characters/ona/front.svg"
  4473. }
  4474. },
  4475. frontAlt: {
  4476. height: math.unit(8, "feet"),
  4477. weight: math.unit(120, "lb"),
  4478. name: "Front (Alt)",
  4479. image: {
  4480. source: "./media/characters/ona/front-alt.svg"
  4481. }
  4482. },
  4483. back: {
  4484. height: math.unit(8, "feet"),
  4485. weight: math.unit(120, "lb"),
  4486. name: "Back",
  4487. image: {
  4488. source: "./media/characters/ona/back.svg"
  4489. }
  4490. },
  4491. foot: {
  4492. height: math.unit(1.1, "feet"),
  4493. name: "Foot",
  4494. image: {
  4495. source: "./media/characters/ona/foot.svg"
  4496. }
  4497. }
  4498. },
  4499. [
  4500. {
  4501. name: "Megamacro",
  4502. height: math.unit(70, "km"),
  4503. default: true
  4504. },
  4505. {
  4506. name: "Gigamacro",
  4507. height: math.unit(681818, "miles")
  4508. },
  4509. {
  4510. name: "Examacro",
  4511. height: math.unit(3800000, "lightyears")
  4512. },
  4513. ]
  4514. ))
  4515. characterMakers.push(() => makeCharacter(
  4516. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4517. {
  4518. front: {
  4519. height: math.unit(12, "feet"),
  4520. weight: math.unit(3000, "lb"),
  4521. name: "Front",
  4522. image: {
  4523. source: "./media/characters/mech/front.svg",
  4524. extra: 2900 / 2770,
  4525. bottom: 110 / 3010
  4526. }
  4527. },
  4528. back: {
  4529. height: math.unit(12, "feet"),
  4530. weight: math.unit(3000, "lb"),
  4531. name: "Back",
  4532. image: {
  4533. source: "./media/characters/mech/back.svg",
  4534. extra: 3011 / 2890,
  4535. bottom: 94 / 3105
  4536. }
  4537. },
  4538. maw: {
  4539. height: math.unit(3.07, "feet"),
  4540. name: "Maw",
  4541. image: {
  4542. source: "./media/characters/mech/maw.svg"
  4543. }
  4544. },
  4545. head: {
  4546. height: math.unit(3.07, "feet"),
  4547. name: "Head",
  4548. image: {
  4549. source: "./media/characters/mech/head.svg"
  4550. }
  4551. },
  4552. dick: {
  4553. height: math.unit(1.43, "feet"),
  4554. name: "Dick",
  4555. image: {
  4556. source: "./media/characters/mech/dick.svg"
  4557. }
  4558. },
  4559. },
  4560. [
  4561. {
  4562. name: "Normal",
  4563. height: math.unit(12, "feet")
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(300, "feet"),
  4568. default: true
  4569. },
  4570. {
  4571. name: "Macro+",
  4572. height: math.unit(1500, "feet")
  4573. },
  4574. ]
  4575. ))
  4576. characterMakers.push(() => makeCharacter(
  4577. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4578. {
  4579. front: {
  4580. height: math.unit(1.3, "meter"),
  4581. weight: math.unit(30, "kg"),
  4582. name: "Front",
  4583. image: {
  4584. source: "./media/characters/gregory/front.svg",
  4585. }
  4586. }
  4587. },
  4588. [
  4589. {
  4590. name: "Normal",
  4591. height: math.unit(1.3, "meter"),
  4592. default: true
  4593. },
  4594. {
  4595. name: "Macro",
  4596. height: math.unit(20, "meter")
  4597. }
  4598. ]
  4599. ))
  4600. characterMakers.push(() => makeCharacter(
  4601. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4602. {
  4603. front: {
  4604. height: math.unit(2.8, "meter"),
  4605. weight: math.unit(200, "kg"),
  4606. name: "Front",
  4607. image: {
  4608. source: "./media/characters/elory/front.svg",
  4609. }
  4610. }
  4611. },
  4612. [
  4613. {
  4614. name: "Normal",
  4615. height: math.unit(2.8, "meter"),
  4616. default: true
  4617. },
  4618. {
  4619. name: "Macro",
  4620. height: math.unit(38, "meter")
  4621. }
  4622. ]
  4623. ))
  4624. characterMakers.push(() => makeCharacter(
  4625. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4626. {
  4627. front: {
  4628. height: math.unit(470, "feet"),
  4629. weight: math.unit(924, "tons"),
  4630. name: "Front",
  4631. image: {
  4632. source: "./media/characters/angelpatamon/front.svg",
  4633. }
  4634. }
  4635. },
  4636. [
  4637. {
  4638. name: "Normal",
  4639. height: math.unit(470, "feet"),
  4640. default: true
  4641. },
  4642. {
  4643. name: "Deity Size I",
  4644. height: math.unit(28651.2, "km")
  4645. },
  4646. {
  4647. name: "Deity Size II",
  4648. height: math.unit(171907.2, "km")
  4649. }
  4650. ]
  4651. ))
  4652. characterMakers.push(() => makeCharacter(
  4653. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4654. {
  4655. side: {
  4656. height: math.unit(7.2, "meter"),
  4657. weight: math.unit(8.2, "tons"),
  4658. name: "Side",
  4659. image: {
  4660. source: "./media/characters/cryae/side.svg",
  4661. extra: 3500 / 1500
  4662. }
  4663. }
  4664. },
  4665. [
  4666. {
  4667. name: "Normal",
  4668. height: math.unit(7.2, "meter"),
  4669. default: true
  4670. }
  4671. ]
  4672. ))
  4673. characterMakers.push(() => makeCharacter(
  4674. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4675. {
  4676. front: {
  4677. height: math.unit(6, "feet"),
  4678. weight: math.unit(175, "lb"),
  4679. name: "Front",
  4680. image: {
  4681. source: "./media/characters/xera/front.svg",
  4682. extra: 2377 / 1972,
  4683. bottom: 75.5 / 2452
  4684. }
  4685. },
  4686. side: {
  4687. height: math.unit(6, "feet"),
  4688. weight: math.unit(175, "lb"),
  4689. name: "Side",
  4690. image: {
  4691. source: "./media/characters/xera/side.svg",
  4692. extra: 2345 / 2019,
  4693. bottom: 39.7 / 2384
  4694. }
  4695. },
  4696. back: {
  4697. height: math.unit(6, "feet"),
  4698. weight: math.unit(175, "lb"),
  4699. name: "Back",
  4700. image: {
  4701. source: "./media/characters/xera/back.svg",
  4702. extra: 2095 / 1984,
  4703. bottom: 67 / 2166
  4704. }
  4705. },
  4706. },
  4707. [
  4708. {
  4709. name: "Small",
  4710. height: math.unit(10, "feet")
  4711. },
  4712. {
  4713. name: "Macro",
  4714. height: math.unit(500, "meters"),
  4715. default: true
  4716. },
  4717. {
  4718. name: "Macro+",
  4719. height: math.unit(10, "km")
  4720. },
  4721. {
  4722. name: "Gigamacro",
  4723. height: math.unit(25000, "km")
  4724. },
  4725. {
  4726. name: "Teramacro",
  4727. height: math.unit(3e6, "km")
  4728. }
  4729. ]
  4730. ))
  4731. characterMakers.push(() => makeCharacter(
  4732. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4733. {
  4734. front: {
  4735. height: math.unit(6, "feet"),
  4736. weight: math.unit(175, "lb"),
  4737. name: "Front",
  4738. image: {
  4739. source: "./media/characters/nebula/front.svg",
  4740. extra: 2566 / 2362,
  4741. bottom: 81 / 2644
  4742. }
  4743. }
  4744. },
  4745. [
  4746. {
  4747. name: "Small",
  4748. height: math.unit(4.5, "meters")
  4749. },
  4750. {
  4751. name: "Macro",
  4752. height: math.unit(1500, "meters"),
  4753. default: true
  4754. },
  4755. {
  4756. name: "Megamacro",
  4757. height: math.unit(150, "km")
  4758. },
  4759. {
  4760. name: "Gigamacro",
  4761. height: math.unit(27000, "km")
  4762. }
  4763. ]
  4764. ))
  4765. characterMakers.push(() => makeCharacter(
  4766. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4767. {
  4768. front: {
  4769. height: math.unit(6, "feet"),
  4770. weight: math.unit(225, "lb"),
  4771. name: "Front",
  4772. image: {
  4773. source: "./media/characters/abysgar/front.svg",
  4774. extra: 1739/1614,
  4775. bottom: 71/1810
  4776. }
  4777. },
  4778. frontNsfw: {
  4779. height: math.unit(6, "feet"),
  4780. weight: math.unit(225, "lb"),
  4781. name: "Front (NSFW)",
  4782. image: {
  4783. source: "./media/characters/abysgar/front-nsfw.svg",
  4784. extra: 1739/1614,
  4785. bottom: 71/1810
  4786. }
  4787. },
  4788. back: {
  4789. height: math.unit(4.6, "feet"),
  4790. weight: math.unit(225, "lb"),
  4791. name: "Back",
  4792. image: {
  4793. source: "./media/characters/abysgar/back.svg",
  4794. extra: 1384/1327,
  4795. bottom: 0/1384
  4796. }
  4797. },
  4798. head: {
  4799. height: math.unit(1.25, "feet"),
  4800. name: "Head",
  4801. image: {
  4802. source: "./media/characters/abysgar/head.svg",
  4803. extra: 669/569,
  4804. bottom: 0/669
  4805. }
  4806. },
  4807. },
  4808. [
  4809. {
  4810. name: "Small",
  4811. height: math.unit(4.5, "meters")
  4812. },
  4813. {
  4814. name: "Macro",
  4815. height: math.unit(1250, "meters"),
  4816. default: true
  4817. },
  4818. {
  4819. name: "Megamacro",
  4820. height: math.unit(125, "km")
  4821. },
  4822. {
  4823. name: "Gigamacro",
  4824. height: math.unit(26000, "km")
  4825. }
  4826. ]
  4827. ))
  4828. characterMakers.push(() => makeCharacter(
  4829. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4830. {
  4831. front: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(180, "lb"),
  4834. name: "Front",
  4835. image: {
  4836. source: "./media/characters/yakuz/front.svg"
  4837. }
  4838. }
  4839. },
  4840. [
  4841. {
  4842. name: "Small",
  4843. height: math.unit(5, "meters")
  4844. },
  4845. {
  4846. name: "Macro",
  4847. height: math.unit(1500, "meters"),
  4848. default: true
  4849. },
  4850. {
  4851. name: "Megamacro",
  4852. height: math.unit(200, "km")
  4853. },
  4854. {
  4855. name: "Gigamacro",
  4856. height: math.unit(100000, "km")
  4857. }
  4858. ]
  4859. ))
  4860. characterMakers.push(() => makeCharacter(
  4861. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4862. {
  4863. front: {
  4864. height: math.unit(6, "feet"),
  4865. weight: math.unit(175, "lb"),
  4866. name: "Front",
  4867. image: {
  4868. source: "./media/characters/mirova/front.svg",
  4869. extra: 3334 / 3071,
  4870. bottom: 42 / 3375.6
  4871. }
  4872. }
  4873. },
  4874. [
  4875. {
  4876. name: "Small",
  4877. height: math.unit(5, "meters")
  4878. },
  4879. {
  4880. name: "Macro",
  4881. height: math.unit(900, "meters"),
  4882. default: true
  4883. },
  4884. {
  4885. name: "Megamacro",
  4886. height: math.unit(135, "km")
  4887. },
  4888. {
  4889. name: "Gigamacro",
  4890. height: math.unit(20000, "km")
  4891. }
  4892. ]
  4893. ))
  4894. characterMakers.push(() => makeCharacter(
  4895. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4896. {
  4897. side: {
  4898. height: math.unit(28.35, "feet"),
  4899. weight: math.unit(99.75, "tons"),
  4900. name: "Side",
  4901. image: {
  4902. source: "./media/characters/asana-mech/side.svg",
  4903. extra: 923 / 699,
  4904. bottom: 50 / 975
  4905. }
  4906. },
  4907. chaingun: {
  4908. height: math.unit(7, "feet"),
  4909. weight: math.unit(2400, "lb"),
  4910. name: "Chaingun",
  4911. image: {
  4912. source: "./media/characters/asana-mech/chaingun.svg"
  4913. }
  4914. },
  4915. laser: {
  4916. height: math.unit(7.12, "feet"),
  4917. weight: math.unit(2000, "lb"),
  4918. name: "Laser",
  4919. image: {
  4920. source: "./media/characters/asana-mech/laser.svg"
  4921. }
  4922. },
  4923. },
  4924. [
  4925. {
  4926. name: "Normal",
  4927. height: math.unit(28.35, "feet"),
  4928. default: true
  4929. },
  4930. {
  4931. name: "Macro",
  4932. height: math.unit(2500, "feet")
  4933. },
  4934. {
  4935. name: "Megamacro",
  4936. height: math.unit(25, "miles")
  4937. },
  4938. {
  4939. name: "Examacro",
  4940. height: math.unit(6e8, "lightyears")
  4941. },
  4942. ]
  4943. ))
  4944. characterMakers.push(() => makeCharacter(
  4945. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4946. {
  4947. front: {
  4948. height: math.unit(5, "meters"),
  4949. weight: math.unit(1000, "kg"),
  4950. name: "Front",
  4951. image: {
  4952. source: "./media/characters/asche/front.svg",
  4953. extra: 1258 / 1190,
  4954. bottom: 47 / 1305
  4955. }
  4956. },
  4957. frontUnderwear: {
  4958. height: math.unit(5, "meters"),
  4959. weight: math.unit(1000, "kg"),
  4960. name: "Front (Underwear)",
  4961. image: {
  4962. source: "./media/characters/asche/front-underwear.svg",
  4963. extra: 1258 / 1190,
  4964. bottom: 47 / 1305
  4965. }
  4966. },
  4967. frontDressed: {
  4968. height: math.unit(5, "meters"),
  4969. weight: math.unit(1000, "kg"),
  4970. name: "Front (Dressed)",
  4971. image: {
  4972. source: "./media/characters/asche/front-dressed.svg",
  4973. extra: 1258 / 1190,
  4974. bottom: 47 / 1305
  4975. }
  4976. },
  4977. frontArmor: {
  4978. height: math.unit(5, "meters"),
  4979. weight: math.unit(1000, "kg"),
  4980. name: "Front (Armored)",
  4981. image: {
  4982. source: "./media/characters/asche/front-armored.svg",
  4983. extra: 1374 / 1308,
  4984. bottom: 23 / 1397
  4985. }
  4986. },
  4987. mp724: {
  4988. height: math.unit(0.96, "meters"),
  4989. weight: math.unit(38, "kg"),
  4990. name: "H&K MP724",
  4991. image: {
  4992. source: "./media/characters/asche/h&k-mp724.svg"
  4993. }
  4994. },
  4995. side: {
  4996. height: math.unit(5, "meters"),
  4997. weight: math.unit(1000, "kg"),
  4998. name: "Side",
  4999. image: {
  5000. source: "./media/characters/asche/side.svg",
  5001. extra: 1717 / 1609,
  5002. bottom: 0.005
  5003. }
  5004. },
  5005. back: {
  5006. height: math.unit(5, "meters"),
  5007. weight: math.unit(1000, "kg"),
  5008. name: "Back",
  5009. image: {
  5010. source: "./media/characters/asche/back.svg",
  5011. extra: 1570 / 1501
  5012. }
  5013. },
  5014. },
  5015. [
  5016. {
  5017. name: "DEFCON 5",
  5018. height: math.unit(5, "meters")
  5019. },
  5020. {
  5021. name: "DEFCON 4",
  5022. height: math.unit(500, "meters"),
  5023. default: true
  5024. },
  5025. {
  5026. name: "DEFCON 3",
  5027. height: math.unit(5, "km")
  5028. },
  5029. {
  5030. name: "DEFCON 2",
  5031. height: math.unit(500, "km")
  5032. },
  5033. {
  5034. name: "DEFCON 1",
  5035. height: math.unit(500000, "km")
  5036. },
  5037. {
  5038. name: "DEFCON 0",
  5039. height: math.unit(3, "gigaparsecs")
  5040. },
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5045. {
  5046. front: {
  5047. height: math.unit(2, "meters"),
  5048. weight: math.unit(76, "kg"),
  5049. name: "Front",
  5050. image: {
  5051. source: "./media/characters/gale/front.svg"
  5052. }
  5053. },
  5054. frontAlt1: {
  5055. height: math.unit(2, "meters"),
  5056. weight: math.unit(76, "kg"),
  5057. name: "Front (Alt 1)",
  5058. image: {
  5059. source: "./media/characters/gale/front-alt-1.svg"
  5060. }
  5061. },
  5062. frontAlt2: {
  5063. height: math.unit(2, "meters"),
  5064. weight: math.unit(76, "kg"),
  5065. name: "Front (Alt 2)",
  5066. image: {
  5067. source: "./media/characters/gale/front-alt-2.svg"
  5068. }
  5069. },
  5070. },
  5071. [
  5072. {
  5073. name: "Normal",
  5074. height: math.unit(7, "feet")
  5075. },
  5076. {
  5077. name: "Macro",
  5078. height: math.unit(150, "feet"),
  5079. default: true
  5080. },
  5081. {
  5082. name: "Macro+",
  5083. height: math.unit(300, "feet")
  5084. },
  5085. ]
  5086. ))
  5087. characterMakers.push(() => makeCharacter(
  5088. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5089. {
  5090. front: {
  5091. height: math.unit(5 + 10/12, "feet"),
  5092. weight: math.unit(67, "kg"),
  5093. name: "Front",
  5094. image: {
  5095. source: "./media/characters/draylen/front.svg",
  5096. extra: 832/777,
  5097. bottom: 85/917
  5098. }
  5099. }
  5100. },
  5101. [
  5102. {
  5103. name: "Normal",
  5104. height: math.unit(5 + 10/12, "feet")
  5105. },
  5106. {
  5107. name: "Macro",
  5108. height: math.unit(150, "feet"),
  5109. default: true
  5110. }
  5111. ]
  5112. ))
  5113. characterMakers.push(() => makeCharacter(
  5114. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5115. {
  5116. front: {
  5117. height: math.unit(7 + 9 / 12, "feet"),
  5118. weight: math.unit(379, "lbs"),
  5119. name: "Front",
  5120. image: {
  5121. source: "./media/characters/chez/front.svg"
  5122. }
  5123. },
  5124. side: {
  5125. height: math.unit(7 + 9 / 12, "feet"),
  5126. weight: math.unit(379, "lbs"),
  5127. name: "Side",
  5128. image: {
  5129. source: "./media/characters/chez/side.svg"
  5130. }
  5131. }
  5132. },
  5133. [
  5134. {
  5135. name: "Normal",
  5136. height: math.unit(7 + 9 / 12, "feet"),
  5137. default: true
  5138. },
  5139. {
  5140. name: "God King",
  5141. height: math.unit(9750000, "meters")
  5142. }
  5143. ]
  5144. ))
  5145. characterMakers.push(() => makeCharacter(
  5146. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5147. {
  5148. front: {
  5149. height: math.unit(6, "feet"),
  5150. weight: math.unit(275, "lbs"),
  5151. name: "Front",
  5152. image: {
  5153. source: "./media/characters/kaylum/front.svg",
  5154. bottom: 0.01,
  5155. extra: 1166 / 1031
  5156. }
  5157. },
  5158. frontWingless: {
  5159. height: math.unit(6, "feet"),
  5160. weight: math.unit(275, "lbs"),
  5161. name: "Front (Wingless)",
  5162. image: {
  5163. source: "./media/characters/kaylum/front-wingless.svg",
  5164. bottom: 0.01,
  5165. extra: 1117 / 1031
  5166. }
  5167. }
  5168. },
  5169. [
  5170. {
  5171. name: "Normal",
  5172. height: math.unit(3.05, "meters")
  5173. },
  5174. {
  5175. name: "Master",
  5176. height: math.unit(5.5, "meters")
  5177. },
  5178. {
  5179. name: "Rampage",
  5180. height: math.unit(19, "meters")
  5181. },
  5182. {
  5183. name: "Macro Lite",
  5184. height: math.unit(37, "meters")
  5185. },
  5186. {
  5187. name: "Hyper Predator",
  5188. height: math.unit(61, "meters")
  5189. },
  5190. {
  5191. name: "Macro",
  5192. height: math.unit(138, "meters"),
  5193. default: true
  5194. }
  5195. ]
  5196. ))
  5197. characterMakers.push(() => makeCharacter(
  5198. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5199. {
  5200. front: {
  5201. height: math.unit(5 + 5 / 12, "feet"),
  5202. weight: math.unit(120, "lbs"),
  5203. name: "Front",
  5204. image: {
  5205. source: "./media/characters/geta/front.svg",
  5206. extra: 1003/933,
  5207. bottom: 21/1024
  5208. }
  5209. },
  5210. paw: {
  5211. height: math.unit(0.35, "feet"),
  5212. name: "Paw",
  5213. image: {
  5214. source: "./media/characters/geta/paw.svg"
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Micro",
  5221. height: math.unit(3, "inches"),
  5222. default: true
  5223. },
  5224. {
  5225. name: "Normal",
  5226. height: math.unit(5 + 5 / 12, "feet")
  5227. }
  5228. ]
  5229. ))
  5230. characterMakers.push(() => makeCharacter(
  5231. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5232. {
  5233. front: {
  5234. height: math.unit(6, "feet"),
  5235. weight: math.unit(300, "lbs"),
  5236. name: "Front",
  5237. image: {
  5238. source: "./media/characters/tyrnn/front.svg"
  5239. }
  5240. }
  5241. },
  5242. [
  5243. {
  5244. name: "Main Height",
  5245. height: math.unit(355, "feet"),
  5246. default: true
  5247. },
  5248. {
  5249. name: "Fave. Height",
  5250. height: math.unit(2400, "feet")
  5251. }
  5252. ]
  5253. ))
  5254. characterMakers.push(() => makeCharacter(
  5255. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5256. {
  5257. front: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(300, "lbs"),
  5260. name: "Front",
  5261. image: {
  5262. source: "./media/characters/appledectomy/front.svg"
  5263. }
  5264. }
  5265. },
  5266. [
  5267. {
  5268. name: "Macro",
  5269. height: math.unit(2500, "feet")
  5270. },
  5271. {
  5272. name: "Megamacro",
  5273. height: math.unit(50, "miles"),
  5274. default: true
  5275. },
  5276. {
  5277. name: "Gigamacro",
  5278. height: math.unit(5000, "miles")
  5279. },
  5280. {
  5281. name: "Teramacro",
  5282. height: math.unit(250000, "miles")
  5283. },
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(200, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/vulpes/front.svg",
  5295. extra: 573 / 543,
  5296. bottom: 0.033
  5297. }
  5298. },
  5299. side: {
  5300. height: math.unit(6, "feet"),
  5301. weight: math.unit(200, "lbs"),
  5302. name: "Side",
  5303. image: {
  5304. source: "./media/characters/vulpes/side.svg",
  5305. extra: 577 / 549,
  5306. bottom: 11 / 588
  5307. }
  5308. },
  5309. back: {
  5310. height: math.unit(6, "feet"),
  5311. weight: math.unit(200, "lbs"),
  5312. name: "Back",
  5313. image: {
  5314. source: "./media/characters/vulpes/back.svg",
  5315. extra: 573 / 549,
  5316. bottom: 20 / 593
  5317. }
  5318. },
  5319. feet: {
  5320. height: math.unit(1.276, "feet"),
  5321. name: "Feet",
  5322. image: {
  5323. source: "./media/characters/vulpes/feet.svg"
  5324. }
  5325. },
  5326. maw: {
  5327. height: math.unit(1.18, "feet"),
  5328. name: "Maw",
  5329. image: {
  5330. source: "./media/characters/vulpes/maw.svg"
  5331. }
  5332. },
  5333. },
  5334. [
  5335. {
  5336. name: "Micro",
  5337. height: math.unit(2, "inches")
  5338. },
  5339. {
  5340. name: "Normal",
  5341. height: math.unit(6.3, "feet")
  5342. },
  5343. {
  5344. name: "Macro",
  5345. height: math.unit(850, "feet")
  5346. },
  5347. {
  5348. name: "Megamacro",
  5349. height: math.unit(7500, "feet"),
  5350. default: true
  5351. },
  5352. {
  5353. name: "Gigamacro",
  5354. height: math.unit(570000, "miles")
  5355. }
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5360. {
  5361. front: {
  5362. height: math.unit(6, "feet"),
  5363. weight: math.unit(210, "lbs"),
  5364. name: "Front",
  5365. image: {
  5366. source: "./media/characters/rain-fallen/front.svg"
  5367. }
  5368. },
  5369. side: {
  5370. height: math.unit(6, "feet"),
  5371. weight: math.unit(210, "lbs"),
  5372. name: "Side",
  5373. image: {
  5374. source: "./media/characters/rain-fallen/side.svg"
  5375. }
  5376. },
  5377. back: {
  5378. height: math.unit(6, "feet"),
  5379. weight: math.unit(210, "lbs"),
  5380. name: "Back",
  5381. image: {
  5382. source: "./media/characters/rain-fallen/back.svg"
  5383. }
  5384. },
  5385. feral: {
  5386. height: math.unit(9, "feet"),
  5387. weight: math.unit(700, "lbs"),
  5388. name: "Feral",
  5389. image: {
  5390. source: "./media/characters/rain-fallen/feral.svg"
  5391. }
  5392. },
  5393. },
  5394. [
  5395. {
  5396. name: "Meddling with Mortals",
  5397. height: math.unit(8 + 8/12, "feet")
  5398. },
  5399. {
  5400. name: "Normal",
  5401. height: math.unit(5, "meter")
  5402. },
  5403. {
  5404. name: "Macro",
  5405. height: math.unit(150, "meter"),
  5406. default: true
  5407. },
  5408. {
  5409. name: "Megamacro",
  5410. height: math.unit(278e6, "meter")
  5411. },
  5412. {
  5413. name: "Gigamacro",
  5414. height: math.unit(2e9, "meter")
  5415. },
  5416. {
  5417. name: "Teramacro",
  5418. height: math.unit(8e12, "meter")
  5419. },
  5420. {
  5421. name: "Devourer",
  5422. height: math.unit(14, "zettameters")
  5423. },
  5424. {
  5425. name: "Scarlet King",
  5426. height: math.unit(18, "yottameters")
  5427. },
  5428. {
  5429. name: "Void",
  5430. height: math.unit(1e88, "yottameters")
  5431. }
  5432. ]
  5433. ))
  5434. characterMakers.push(() => makeCharacter(
  5435. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5436. {
  5437. standing: {
  5438. height: math.unit(6, "feet"),
  5439. weight: math.unit(180, "lbs"),
  5440. name: "Standing",
  5441. image: {
  5442. source: "./media/characters/zaakira/standing.svg",
  5443. extra: 1599/1504,
  5444. bottom: 39/1638
  5445. }
  5446. },
  5447. laying: {
  5448. height: math.unit(3.3, "feet"),
  5449. weight: math.unit(180, "lbs"),
  5450. name: "Laying",
  5451. image: {
  5452. source: "./media/characters/zaakira/laying.svg"
  5453. }
  5454. },
  5455. },
  5456. [
  5457. {
  5458. name: "Normal",
  5459. height: math.unit(12, "feet")
  5460. },
  5461. {
  5462. name: "Macro",
  5463. height: math.unit(279, "feet"),
  5464. default: true
  5465. }
  5466. ]
  5467. ))
  5468. characterMakers.push(() => makeCharacter(
  5469. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5470. {
  5471. femSfw: {
  5472. height: math.unit(8, "feet"),
  5473. weight: math.unit(350, "lb"),
  5474. name: "Fem",
  5475. image: {
  5476. source: "./media/characters/sigvald/fem-sfw.svg",
  5477. extra: 182 / 164,
  5478. bottom: 8.7 / 190.5
  5479. }
  5480. },
  5481. femNsfw: {
  5482. height: math.unit(8, "feet"),
  5483. weight: math.unit(350, "lb"),
  5484. name: "Fem (NSFW)",
  5485. image: {
  5486. source: "./media/characters/sigvald/fem-nsfw.svg",
  5487. extra: 182 / 164,
  5488. bottom: 8.7 / 190.5
  5489. }
  5490. },
  5491. maleNsfw: {
  5492. height: math.unit(8, "feet"),
  5493. weight: math.unit(350, "lb"),
  5494. name: "Male (NSFW)",
  5495. image: {
  5496. source: "./media/characters/sigvald/male-nsfw.svg",
  5497. extra: 182 / 164,
  5498. bottom: 8.7 / 190.5
  5499. }
  5500. },
  5501. hermNsfw: {
  5502. height: math.unit(8, "feet"),
  5503. weight: math.unit(350, "lb"),
  5504. name: "Herm (NSFW)",
  5505. image: {
  5506. source: "./media/characters/sigvald/herm-nsfw.svg",
  5507. extra: 182 / 164,
  5508. bottom: 8.7 / 190.5
  5509. }
  5510. },
  5511. dick: {
  5512. height: math.unit(2.36, "feet"),
  5513. name: "Dick",
  5514. image: {
  5515. source: "./media/characters/sigvald/dick.svg"
  5516. }
  5517. },
  5518. eye: {
  5519. height: math.unit(0.31, "feet"),
  5520. name: "Eye",
  5521. image: {
  5522. source: "./media/characters/sigvald/eye.svg"
  5523. }
  5524. },
  5525. mouth: {
  5526. height: math.unit(0.92, "feet"),
  5527. name: "Mouth",
  5528. image: {
  5529. source: "./media/characters/sigvald/mouth.svg"
  5530. }
  5531. },
  5532. paws: {
  5533. height: math.unit(2.2, "feet"),
  5534. name: "Paws",
  5535. image: {
  5536. source: "./media/characters/sigvald/paws.svg"
  5537. }
  5538. }
  5539. },
  5540. [
  5541. {
  5542. name: "Normal",
  5543. height: math.unit(8, "feet")
  5544. },
  5545. {
  5546. name: "Large",
  5547. height: math.unit(12, "feet")
  5548. },
  5549. {
  5550. name: "Larger",
  5551. height: math.unit(20, "feet")
  5552. },
  5553. {
  5554. name: "Macro",
  5555. height: math.unit(150, "feet")
  5556. },
  5557. {
  5558. name: "Macro+",
  5559. height: math.unit(200, "feet"),
  5560. default: true
  5561. },
  5562. ]
  5563. ))
  5564. characterMakers.push(() => makeCharacter(
  5565. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5566. {
  5567. side: {
  5568. height: math.unit(12, "feet"),
  5569. weight: math.unit(2000, "kg"),
  5570. name: "Side",
  5571. image: {
  5572. source: "./media/characters/scott/side.svg",
  5573. extra: 754 / 724,
  5574. bottom: 0.069
  5575. }
  5576. },
  5577. upright: {
  5578. height: math.unit(12, "feet"),
  5579. weight: math.unit(2000, "kg"),
  5580. name: "Upright",
  5581. image: {
  5582. source: "./media/characters/scott/upright.svg",
  5583. extra: 3881 / 3722,
  5584. bottom: 0.05
  5585. }
  5586. },
  5587. },
  5588. [
  5589. {
  5590. name: "Normal",
  5591. height: math.unit(12, "feet"),
  5592. default: true
  5593. },
  5594. ]
  5595. ))
  5596. characterMakers.push(() => makeCharacter(
  5597. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5598. {
  5599. side: {
  5600. height: math.unit(8, "meters"),
  5601. weight: math.unit(84755, "lbs"),
  5602. name: "Side",
  5603. image: {
  5604. source: "./media/characters/tobias/side.svg",
  5605. extra: 1474 / 1096,
  5606. bottom: 38.9 / 1513.1235
  5607. }
  5608. },
  5609. },
  5610. [
  5611. {
  5612. name: "Normal",
  5613. height: math.unit(8, "meters"),
  5614. default: true
  5615. },
  5616. ]
  5617. ))
  5618. characterMakers.push(() => makeCharacter(
  5619. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5620. {
  5621. front: {
  5622. height: math.unit(5.5, "feet"),
  5623. weight: math.unit(400, "lbs"),
  5624. name: "Front",
  5625. image: {
  5626. source: "./media/characters/kieran/front.svg",
  5627. extra: 2694 / 2364,
  5628. bottom: 217 / 2908
  5629. }
  5630. },
  5631. side: {
  5632. height: math.unit(5.5, "feet"),
  5633. weight: math.unit(400, "lbs"),
  5634. name: "Side",
  5635. image: {
  5636. source: "./media/characters/kieran/side.svg",
  5637. extra: 875 / 777,
  5638. bottom: 84.6 / 959
  5639. }
  5640. },
  5641. },
  5642. [
  5643. {
  5644. name: "Normal",
  5645. height: math.unit(5.5, "feet"),
  5646. default: true
  5647. },
  5648. ]
  5649. ))
  5650. characterMakers.push(() => makeCharacter(
  5651. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5652. {
  5653. side: {
  5654. height: math.unit(2, "meters"),
  5655. weight: math.unit(70, "kg"),
  5656. name: "Side",
  5657. image: {
  5658. source: "./media/characters/sanya/side.svg",
  5659. bottom: 0.02,
  5660. extra: 1.02
  5661. }
  5662. },
  5663. },
  5664. [
  5665. {
  5666. name: "Small",
  5667. height: math.unit(2, "meters")
  5668. },
  5669. {
  5670. name: "Normal",
  5671. height: math.unit(3, "meters")
  5672. },
  5673. {
  5674. name: "Macro",
  5675. height: math.unit(16, "meters"),
  5676. default: true
  5677. },
  5678. ]
  5679. ))
  5680. characterMakers.push(() => makeCharacter(
  5681. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5682. {
  5683. front: {
  5684. height: math.unit(2, "meters"),
  5685. weight: math.unit(120, "kg"),
  5686. name: "Front",
  5687. image: {
  5688. source: "./media/characters/miranda/front.svg",
  5689. extra: 195 / 185,
  5690. bottom: 10.9 / 206.5
  5691. }
  5692. },
  5693. back: {
  5694. height: math.unit(2, "meters"),
  5695. weight: math.unit(120, "kg"),
  5696. name: "Back",
  5697. image: {
  5698. source: "./media/characters/miranda/back.svg",
  5699. extra: 201 / 193,
  5700. bottom: 2.3 / 203.7
  5701. }
  5702. },
  5703. },
  5704. [
  5705. {
  5706. name: "Normal",
  5707. height: math.unit(10, "feet"),
  5708. default: true
  5709. }
  5710. ]
  5711. ))
  5712. characterMakers.push(() => makeCharacter(
  5713. { name: "James", species: ["deer"], tags: ["anthro"] },
  5714. {
  5715. side: {
  5716. height: math.unit(2, "meters"),
  5717. weight: math.unit(100, "kg"),
  5718. name: "Front",
  5719. image: {
  5720. source: "./media/characters/james/front.svg",
  5721. extra: 10 / 8.5
  5722. }
  5723. },
  5724. },
  5725. [
  5726. {
  5727. name: "Normal",
  5728. height: math.unit(8.5, "feet"),
  5729. default: true
  5730. }
  5731. ]
  5732. ))
  5733. characterMakers.push(() => makeCharacter(
  5734. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5735. {
  5736. side: {
  5737. height: math.unit(9.5, "feet"),
  5738. weight: math.unit(2500, "lbs"),
  5739. name: "Side",
  5740. image: {
  5741. source: "./media/characters/heather/side.svg"
  5742. }
  5743. },
  5744. },
  5745. [
  5746. {
  5747. name: "Normal",
  5748. height: math.unit(9.5, "feet"),
  5749. default: true
  5750. }
  5751. ]
  5752. ))
  5753. characterMakers.push(() => makeCharacter(
  5754. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5755. {
  5756. side: {
  5757. height: math.unit(6.5, "feet"),
  5758. weight: math.unit(400, "lbs"),
  5759. name: "Side",
  5760. image: {
  5761. source: "./media/characters/lukas/side.svg",
  5762. extra: 7.25 / 6.5
  5763. }
  5764. },
  5765. },
  5766. [
  5767. {
  5768. name: "Normal",
  5769. height: math.unit(6.5, "feet"),
  5770. default: true
  5771. }
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5776. {
  5777. side: {
  5778. height: math.unit(5, "feet"),
  5779. weight: math.unit(3000, "lbs"),
  5780. name: "Side",
  5781. image: {
  5782. source: "./media/characters/louise/side.svg"
  5783. }
  5784. },
  5785. },
  5786. [
  5787. {
  5788. name: "Normal",
  5789. height: math.unit(5, "feet"),
  5790. default: true
  5791. }
  5792. ]
  5793. ))
  5794. characterMakers.push(() => makeCharacter(
  5795. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5796. {
  5797. side: {
  5798. height: math.unit(6, "feet"),
  5799. weight: math.unit(150, "lbs"),
  5800. name: "Side",
  5801. image: {
  5802. source: "./media/characters/ramona/side.svg",
  5803. extra: 871/854,
  5804. bottom: 41/912
  5805. }
  5806. },
  5807. },
  5808. [
  5809. {
  5810. name: "Normal",
  5811. height: math.unit(6 + 4/12, "feet")
  5812. },
  5813. {
  5814. name: "Minimacro",
  5815. height: math.unit(5.3, "meters"),
  5816. default: true
  5817. },
  5818. {
  5819. name: "Macro",
  5820. height: math.unit(20, "stories")
  5821. },
  5822. {
  5823. name: "Macro+",
  5824. height: math.unit(50, "stories")
  5825. },
  5826. ]
  5827. ))
  5828. characterMakers.push(() => makeCharacter(
  5829. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5830. {
  5831. standing: {
  5832. height: math.unit(5.75, "feet"),
  5833. weight: math.unit(160, "lbs"),
  5834. name: "Standing",
  5835. image: {
  5836. source: "./media/characters/deerpuff/standing.svg",
  5837. extra: 682 / 624
  5838. }
  5839. },
  5840. sitting: {
  5841. height: math.unit(5.75 / 1.79, "feet"),
  5842. weight: math.unit(160, "lbs"),
  5843. name: "Sitting",
  5844. image: {
  5845. source: "./media/characters/deerpuff/sitting.svg",
  5846. bottom: 44 / 400,
  5847. extra: 1
  5848. }
  5849. },
  5850. taurLaying: {
  5851. height: math.unit(6, "feet"),
  5852. weight: math.unit(400, "lbs"),
  5853. name: "Taur (Laying)",
  5854. image: {
  5855. source: "./media/characters/deerpuff/taur-laying.svg"
  5856. }
  5857. },
  5858. },
  5859. [
  5860. {
  5861. name: "Puffball",
  5862. height: math.unit(6, "inches")
  5863. },
  5864. {
  5865. name: "Normalpuff",
  5866. height: math.unit(5.75, "feet")
  5867. },
  5868. {
  5869. name: "Macropuff",
  5870. height: math.unit(1500, "feet"),
  5871. default: true
  5872. },
  5873. {
  5874. name: "Megapuff",
  5875. height: math.unit(500, "miles")
  5876. },
  5877. {
  5878. name: "Gigapuff",
  5879. height: math.unit(250000, "miles")
  5880. },
  5881. {
  5882. name: "Omegapuff",
  5883. height: math.unit(1000, "lightyears")
  5884. },
  5885. ]
  5886. ))
  5887. characterMakers.push(() => makeCharacter(
  5888. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5889. {
  5890. stomping: {
  5891. height: math.unit(6, "feet"),
  5892. weight: math.unit(170, "lbs"),
  5893. name: "Stomping",
  5894. image: {
  5895. source: "./media/characters/vivian/stomping.svg"
  5896. }
  5897. },
  5898. sitting: {
  5899. height: math.unit(6 / 1.75, "feet"),
  5900. weight: math.unit(170, "lbs"),
  5901. name: "Sitting",
  5902. image: {
  5903. source: "./media/characters/vivian/sitting.svg",
  5904. bottom: 1 / 6.4,
  5905. extra: 1,
  5906. }
  5907. },
  5908. },
  5909. [
  5910. {
  5911. name: "Normal",
  5912. height: math.unit(7, "feet"),
  5913. default: true
  5914. },
  5915. {
  5916. name: "Macro",
  5917. height: math.unit(10, "stories")
  5918. },
  5919. {
  5920. name: "Macro+",
  5921. height: math.unit(30, "stories")
  5922. },
  5923. {
  5924. name: "Megamacro",
  5925. height: math.unit(10, "miles")
  5926. },
  5927. {
  5928. name: "Megamacro+",
  5929. height: math.unit(2750000, "meters")
  5930. },
  5931. ]
  5932. ))
  5933. characterMakers.push(() => makeCharacter(
  5934. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5935. {
  5936. front: {
  5937. height: math.unit(6, "feet"),
  5938. weight: math.unit(160, "lbs"),
  5939. name: "Front",
  5940. image: {
  5941. source: "./media/characters/prince/front.svg",
  5942. extra: 3400 / 3000
  5943. }
  5944. },
  5945. jumping: {
  5946. height: math.unit(6, "feet"),
  5947. weight: math.unit(160, "lbs"),
  5948. name: "Jumping",
  5949. image: {
  5950. source: "./media/characters/prince/jump.svg",
  5951. extra: 2555 / 2134
  5952. }
  5953. },
  5954. },
  5955. [
  5956. {
  5957. name: "Normal",
  5958. height: math.unit(7.75, "feet"),
  5959. default: true
  5960. },
  5961. {
  5962. name: "Not cute",
  5963. height: math.unit(17, "feet")
  5964. },
  5965. {
  5966. name: "I said NOT",
  5967. height: math.unit(91, "feet")
  5968. },
  5969. {
  5970. name: "Please stop",
  5971. height: math.unit(560, "feet")
  5972. },
  5973. {
  5974. name: "What have you done",
  5975. height: math.unit(2200, "feet")
  5976. },
  5977. {
  5978. name: "Deer God",
  5979. height: math.unit(3.6, "miles")
  5980. },
  5981. ]
  5982. ))
  5983. characterMakers.push(() => makeCharacter(
  5984. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5985. {
  5986. standing: {
  5987. height: math.unit(6, "feet"),
  5988. weight: math.unit(300, "lbs"),
  5989. name: "Standing",
  5990. image: {
  5991. source: "./media/characters/psymon/standing.svg",
  5992. extra: 1888 / 1810,
  5993. bottom: 0.05
  5994. }
  5995. },
  5996. slithering: {
  5997. height: math.unit(6, "feet"),
  5998. weight: math.unit(300, "lbs"),
  5999. name: "Slithering",
  6000. image: {
  6001. source: "./media/characters/psymon/slithering.svg",
  6002. extra: 1330 / 1224
  6003. }
  6004. },
  6005. slitheringAlt: {
  6006. height: math.unit(6, "feet"),
  6007. weight: math.unit(300, "lbs"),
  6008. name: "Slithering (Alt)",
  6009. image: {
  6010. source: "./media/characters/psymon/slithering-alt.svg",
  6011. extra: 1330 / 1224
  6012. }
  6013. },
  6014. },
  6015. [
  6016. {
  6017. name: "Normal",
  6018. height: math.unit(11.25, "feet"),
  6019. default: true
  6020. },
  6021. {
  6022. name: "Large",
  6023. height: math.unit(27, "feet")
  6024. },
  6025. {
  6026. name: "Giant",
  6027. height: math.unit(87, "feet")
  6028. },
  6029. {
  6030. name: "Macro",
  6031. height: math.unit(365, "feet")
  6032. },
  6033. {
  6034. name: "Megamacro",
  6035. height: math.unit(3, "miles")
  6036. },
  6037. {
  6038. name: "World Serpent",
  6039. height: math.unit(8000, "miles")
  6040. },
  6041. ]
  6042. ))
  6043. characterMakers.push(() => makeCharacter(
  6044. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6045. {
  6046. front: {
  6047. height: math.unit(6, "feet"),
  6048. weight: math.unit(180, "lbs"),
  6049. name: "Front",
  6050. image: {
  6051. source: "./media/characters/daimos/front.svg",
  6052. extra: 4160 / 3897,
  6053. bottom: 0.021
  6054. }
  6055. }
  6056. },
  6057. [
  6058. {
  6059. name: "Normal",
  6060. height: math.unit(8, "feet"),
  6061. default: true
  6062. },
  6063. {
  6064. name: "Big Dog",
  6065. height: math.unit(22, "feet")
  6066. },
  6067. {
  6068. name: "Macro",
  6069. height: math.unit(127, "feet")
  6070. },
  6071. {
  6072. name: "Megamacro",
  6073. height: math.unit(3600, "feet")
  6074. },
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6079. {
  6080. side: {
  6081. height: math.unit(6, "feet"),
  6082. weight: math.unit(180, "lbs"),
  6083. name: "Side",
  6084. image: {
  6085. source: "./media/characters/blake/side.svg",
  6086. extra: 1212 / 1120,
  6087. bottom: 0.05
  6088. }
  6089. },
  6090. crouched: {
  6091. height: math.unit(6 * 0.57, "feet"),
  6092. weight: math.unit(180, "lbs"),
  6093. name: "Crouched",
  6094. image: {
  6095. source: "./media/characters/blake/crouched.svg",
  6096. extra: 840 / 587,
  6097. bottom: 0.04
  6098. }
  6099. },
  6100. bent: {
  6101. height: math.unit(6 * 0.75, "feet"),
  6102. weight: math.unit(180, "lbs"),
  6103. name: "Bent",
  6104. image: {
  6105. source: "./media/characters/blake/bent.svg",
  6106. extra: 592 / 544,
  6107. bottom: 0.035
  6108. }
  6109. },
  6110. },
  6111. [
  6112. {
  6113. name: "Normal",
  6114. height: math.unit(8 + 1 / 6, "feet"),
  6115. default: true
  6116. },
  6117. {
  6118. name: "Big Backside",
  6119. height: math.unit(37, "feet")
  6120. },
  6121. {
  6122. name: "Subway Shredder",
  6123. height: math.unit(72, "feet")
  6124. },
  6125. {
  6126. name: "City Carver",
  6127. height: math.unit(1675, "feet")
  6128. },
  6129. {
  6130. name: "Tectonic Tweaker",
  6131. height: math.unit(2300, "miles")
  6132. },
  6133. ]
  6134. ))
  6135. characterMakers.push(() => makeCharacter(
  6136. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6137. {
  6138. front: {
  6139. height: math.unit(6, "feet"),
  6140. weight: math.unit(180, "lbs"),
  6141. name: "Front",
  6142. image: {
  6143. source: "./media/characters/guisetto/front.svg",
  6144. extra: 856 / 817,
  6145. bottom: 0.06
  6146. }
  6147. },
  6148. airborne: {
  6149. height: math.unit(6, "feet"),
  6150. weight: math.unit(180, "lbs"),
  6151. name: "Airborne",
  6152. image: {
  6153. source: "./media/characters/guisetto/airborne.svg",
  6154. extra: 584 / 525
  6155. }
  6156. },
  6157. },
  6158. [
  6159. {
  6160. name: "Normal",
  6161. height: math.unit(10 + 11 / 12, "feet"),
  6162. default: true
  6163. },
  6164. {
  6165. name: "Large",
  6166. height: math.unit(35, "feet")
  6167. },
  6168. {
  6169. name: "Macro",
  6170. height: math.unit(475, "feet")
  6171. },
  6172. ]
  6173. ))
  6174. characterMakers.push(() => makeCharacter(
  6175. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6176. {
  6177. front: {
  6178. height: math.unit(6, "feet"),
  6179. weight: math.unit(180, "lbs"),
  6180. name: "Front",
  6181. image: {
  6182. source: "./media/characters/luxor/front.svg",
  6183. extra: 2940 / 2152
  6184. }
  6185. },
  6186. back: {
  6187. height: math.unit(6, "feet"),
  6188. weight: math.unit(180, "lbs"),
  6189. name: "Back",
  6190. image: {
  6191. source: "./media/characters/luxor/back.svg",
  6192. extra: 1083 / 960
  6193. }
  6194. },
  6195. },
  6196. [
  6197. {
  6198. name: "Normal",
  6199. height: math.unit(5 + 5 / 6, "feet"),
  6200. default: true
  6201. },
  6202. {
  6203. name: "Lamp",
  6204. height: math.unit(50, "feet")
  6205. },
  6206. {
  6207. name: "Lämp",
  6208. height: math.unit(300, "feet")
  6209. },
  6210. {
  6211. name: "The sun is a lamp",
  6212. height: math.unit(250000, "miles")
  6213. },
  6214. ]
  6215. ))
  6216. characterMakers.push(() => makeCharacter(
  6217. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6218. {
  6219. front: {
  6220. height: math.unit(6, "feet"),
  6221. weight: math.unit(50, "lbs"),
  6222. name: "Front",
  6223. image: {
  6224. source: "./media/characters/huoyan/front.svg"
  6225. }
  6226. },
  6227. side: {
  6228. height: math.unit(6, "feet"),
  6229. weight: math.unit(180, "lbs"),
  6230. name: "Side",
  6231. image: {
  6232. source: "./media/characters/huoyan/side.svg"
  6233. }
  6234. },
  6235. },
  6236. [
  6237. {
  6238. name: "Chef",
  6239. height: math.unit(9, "feet")
  6240. },
  6241. {
  6242. name: "Normal",
  6243. height: math.unit(65, "feet"),
  6244. default: true
  6245. },
  6246. {
  6247. name: "Macro",
  6248. height: math.unit(780, "feet")
  6249. },
  6250. {
  6251. name: "Flaming Mountain",
  6252. height: math.unit(4.8, "miles")
  6253. },
  6254. {
  6255. name: "Celestial",
  6256. height: math.unit(765000, "miles")
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(5 + 3 / 4, "feet"),
  6265. weight: math.unit(120, "lbs"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/tails/front.svg"
  6269. }
  6270. }
  6271. },
  6272. [
  6273. {
  6274. name: "Normal",
  6275. height: math.unit(5 + 3 / 4, "feet"),
  6276. default: true
  6277. }
  6278. ]
  6279. ))
  6280. characterMakers.push(() => makeCharacter(
  6281. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6282. {
  6283. front: {
  6284. height: math.unit(4, "feet"),
  6285. weight: math.unit(50, "lbs"),
  6286. name: "Front",
  6287. image: {
  6288. source: "./media/characters/rainy/front.svg"
  6289. }
  6290. }
  6291. },
  6292. [
  6293. {
  6294. name: "Macro",
  6295. height: math.unit(800, "feet"),
  6296. default: true
  6297. }
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6302. {
  6303. front: {
  6304. height: math.unit(6, "feet"),
  6305. weight: math.unit(150, "lbs"),
  6306. name: "Front",
  6307. image: {
  6308. source: "./media/characters/rainier/front.svg"
  6309. }
  6310. }
  6311. },
  6312. [
  6313. {
  6314. name: "Micro",
  6315. height: math.unit(2, "mm"),
  6316. default: true
  6317. }
  6318. ]
  6319. ))
  6320. characterMakers.push(() => makeCharacter(
  6321. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6322. {
  6323. front: {
  6324. height: math.unit(8 + 4/12, "feet"),
  6325. weight: math.unit(450, "kilograms"),
  6326. volume: math.unit(5, "cups"),
  6327. name: "Front",
  6328. image: {
  6329. source: "./media/characters/andy-renard/front.svg",
  6330. extra: 1839/1726,
  6331. bottom: 134/1973
  6332. }
  6333. },
  6334. back: {
  6335. height: math.unit(8 + 4/12, "feet"),
  6336. weight: math.unit(450, "kilograms"),
  6337. volume: math.unit(5, "cups"),
  6338. name: "Back",
  6339. image: {
  6340. source: "./media/characters/andy-renard/back.svg",
  6341. extra: 1838/1710,
  6342. bottom: 105/1943
  6343. }
  6344. },
  6345. },
  6346. [
  6347. {
  6348. name: "Tall",
  6349. height: math.unit(8 + 4/12, "feet")
  6350. },
  6351. {
  6352. name: "Mini Macro",
  6353. height: math.unit(15, "feet"),
  6354. default: true
  6355. },
  6356. {
  6357. name: "Macro",
  6358. height: math.unit(100, "feet")
  6359. },
  6360. {
  6361. name: "Mega Macro",
  6362. height: math.unit(1000, "feet")
  6363. },
  6364. {
  6365. name: "Giga Macro",
  6366. height: math.unit(10, "miles")
  6367. },
  6368. {
  6369. name: "God Macro",
  6370. height: math.unit(1, "multiverse")
  6371. },
  6372. ]
  6373. ))
  6374. characterMakers.push(() => makeCharacter(
  6375. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6376. {
  6377. front: {
  6378. height: math.unit(6, "feet"),
  6379. weight: math.unit(210, "lbs"),
  6380. name: "Front",
  6381. image: {
  6382. source: "./media/characters/cimmaron/front-sfw.svg",
  6383. extra: 701 / 676,
  6384. bottom: 0.046
  6385. }
  6386. },
  6387. back: {
  6388. height: math.unit(6, "feet"),
  6389. weight: math.unit(210, "lbs"),
  6390. name: "Back",
  6391. image: {
  6392. source: "./media/characters/cimmaron/back-sfw.svg",
  6393. extra: 701 / 676,
  6394. bottom: 0.046
  6395. }
  6396. },
  6397. frontNsfw: {
  6398. height: math.unit(6, "feet"),
  6399. weight: math.unit(210, "lbs"),
  6400. name: "Front (NSFW)",
  6401. image: {
  6402. source: "./media/characters/cimmaron/front-nsfw.svg",
  6403. extra: 701 / 676,
  6404. bottom: 0.046
  6405. }
  6406. },
  6407. backNsfw: {
  6408. height: math.unit(6, "feet"),
  6409. weight: math.unit(210, "lbs"),
  6410. name: "Back (NSFW)",
  6411. image: {
  6412. source: "./media/characters/cimmaron/back-nsfw.svg",
  6413. extra: 701 / 676,
  6414. bottom: 0.046
  6415. }
  6416. },
  6417. dick: {
  6418. height: math.unit(1.714, "feet"),
  6419. name: "Dick",
  6420. image: {
  6421. source: "./media/characters/cimmaron/dick.svg"
  6422. }
  6423. },
  6424. },
  6425. [
  6426. {
  6427. name: "Normal",
  6428. height: math.unit(6, "feet"),
  6429. default: true
  6430. },
  6431. {
  6432. name: "Macro Mayor",
  6433. height: math.unit(350, "meters")
  6434. },
  6435. ]
  6436. ))
  6437. characterMakers.push(() => makeCharacter(
  6438. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6439. {
  6440. front: {
  6441. height: math.unit(6, "feet"),
  6442. weight: math.unit(200, "lbs"),
  6443. name: "Front",
  6444. image: {
  6445. source: "./media/characters/akari/front.svg",
  6446. extra: 962 / 901,
  6447. bottom: 0.04
  6448. }
  6449. }
  6450. },
  6451. [
  6452. {
  6453. name: "Micro",
  6454. height: math.unit(5, "inches"),
  6455. default: true
  6456. },
  6457. {
  6458. name: "Normal",
  6459. height: math.unit(7, "feet")
  6460. },
  6461. ]
  6462. ))
  6463. characterMakers.push(() => makeCharacter(
  6464. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6465. {
  6466. front: {
  6467. height: math.unit(6, "feet"),
  6468. weight: math.unit(140, "lbs"),
  6469. name: "Front",
  6470. image: {
  6471. source: "./media/characters/cynosura/front.svg",
  6472. extra: 437/410,
  6473. bottom: 9/446
  6474. }
  6475. },
  6476. back: {
  6477. height: math.unit(6, "feet"),
  6478. weight: math.unit(140, "lbs"),
  6479. name: "Back",
  6480. image: {
  6481. source: "./media/characters/cynosura/back.svg",
  6482. extra: 1304/1160,
  6483. bottom: 71/1375
  6484. }
  6485. },
  6486. },
  6487. [
  6488. {
  6489. name: "Micro",
  6490. height: math.unit(4, "inches")
  6491. },
  6492. {
  6493. name: "Normal",
  6494. height: math.unit(5.75, "feet"),
  6495. default: true
  6496. },
  6497. {
  6498. name: "Tall",
  6499. height: math.unit(10, "feet")
  6500. },
  6501. {
  6502. name: "Big",
  6503. height: math.unit(20, "feet")
  6504. },
  6505. {
  6506. name: "Macro",
  6507. height: math.unit(50, "feet")
  6508. },
  6509. ]
  6510. ))
  6511. characterMakers.push(() => makeCharacter(
  6512. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6513. {
  6514. front: {
  6515. height: math.unit(13 + 2/12, "feet"),
  6516. weight: math.unit(800, "kg"),
  6517. name: "Front",
  6518. image: {
  6519. source: "./media/characters/gin/front.svg",
  6520. extra: 1312/1191,
  6521. bottom: 45/1357
  6522. }
  6523. },
  6524. mouth: {
  6525. height: math.unit(2.39 * 1.8, "feet"),
  6526. name: "Mouth",
  6527. image: {
  6528. source: "./media/characters/gin/mouth.svg"
  6529. }
  6530. },
  6531. hand: {
  6532. height: math.unit(1.57 * 2.19, "feet"),
  6533. name: "Hand",
  6534. image: {
  6535. source: "./media/characters/gin/hand.svg"
  6536. }
  6537. },
  6538. foot: {
  6539. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6540. name: "Foot",
  6541. image: {
  6542. source: "./media/characters/gin/foot.svg"
  6543. }
  6544. },
  6545. sole: {
  6546. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6547. name: "Sole",
  6548. image: {
  6549. source: "./media/characters/gin/sole.svg"
  6550. }
  6551. },
  6552. },
  6553. [
  6554. {
  6555. name: "Very Small",
  6556. height: math.unit(13 + 2 / 12, "feet")
  6557. },
  6558. {
  6559. name: "Micro",
  6560. height: math.unit(600, "miles")
  6561. },
  6562. {
  6563. name: "Regular",
  6564. height: math.unit(20, "earths"),
  6565. default: true
  6566. },
  6567. {
  6568. name: "Macro",
  6569. height: math.unit(2.2, "solarradii")
  6570. },
  6571. {
  6572. name: "Teramacro",
  6573. height: math.unit(1.2, "galaxies")
  6574. },
  6575. {
  6576. name: "Omegamacro",
  6577. height: math.unit(200, "universes")
  6578. },
  6579. ]
  6580. ))
  6581. characterMakers.push(() => makeCharacter(
  6582. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6583. {
  6584. front: {
  6585. height: math.unit(6 + 1 / 6, "feet"),
  6586. weight: math.unit(178, "lbs"),
  6587. name: "Front",
  6588. image: {
  6589. source: "./media/characters/guy/front.svg"
  6590. }
  6591. }
  6592. },
  6593. [
  6594. {
  6595. name: "Normal",
  6596. height: math.unit(6 + 1 / 6, "feet"),
  6597. default: true
  6598. },
  6599. {
  6600. name: "Large",
  6601. height: math.unit(25 + 7 / 12, "feet")
  6602. },
  6603. {
  6604. name: "Macro",
  6605. height: math.unit(60 + 9 / 12, "feet")
  6606. },
  6607. {
  6608. name: "Macro+",
  6609. height: math.unit(246, "feet")
  6610. },
  6611. {
  6612. name: "Macro++",
  6613. height: math.unit(878, "feet")
  6614. }
  6615. ]
  6616. ))
  6617. characterMakers.push(() => makeCharacter(
  6618. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6619. {
  6620. front: {
  6621. height: math.unit(9, "feet"),
  6622. weight: math.unit(800, "lbs"),
  6623. name: "Front",
  6624. image: {
  6625. source: "./media/characters/tiberius/front.svg",
  6626. extra: 2295 / 2071
  6627. }
  6628. },
  6629. back: {
  6630. height: math.unit(9, "feet"),
  6631. weight: math.unit(800, "lbs"),
  6632. name: "Back",
  6633. image: {
  6634. source: "./media/characters/tiberius/back.svg",
  6635. extra: 2373 / 2160
  6636. }
  6637. },
  6638. },
  6639. [
  6640. {
  6641. name: "Normal",
  6642. height: math.unit(9, "feet"),
  6643. default: true
  6644. }
  6645. ]
  6646. ))
  6647. characterMakers.push(() => makeCharacter(
  6648. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6649. {
  6650. front: {
  6651. height: math.unit(6, "feet"),
  6652. weight: math.unit(600, "lbs"),
  6653. name: "Front",
  6654. image: {
  6655. source: "./media/characters/surgo/front.svg",
  6656. extra: 3591 / 2227
  6657. }
  6658. },
  6659. back: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(600, "lbs"),
  6662. name: "Back",
  6663. image: {
  6664. source: "./media/characters/surgo/back.svg",
  6665. extra: 3557 / 2228
  6666. }
  6667. },
  6668. laying: {
  6669. height: math.unit(6 * 0.85, "feet"),
  6670. weight: math.unit(600, "lbs"),
  6671. name: "Laying",
  6672. image: {
  6673. source: "./media/characters/surgo/laying.svg"
  6674. }
  6675. },
  6676. },
  6677. [
  6678. {
  6679. name: "Normal",
  6680. height: math.unit(6, "feet"),
  6681. default: true
  6682. }
  6683. ]
  6684. ))
  6685. characterMakers.push(() => makeCharacter(
  6686. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6687. {
  6688. side: {
  6689. height: math.unit(6, "feet"),
  6690. weight: math.unit(150, "lbs"),
  6691. name: "Side",
  6692. image: {
  6693. source: "./media/characters/cibus/side.svg",
  6694. extra: 800 / 400
  6695. }
  6696. },
  6697. },
  6698. [
  6699. {
  6700. name: "Normal",
  6701. height: math.unit(6, "feet"),
  6702. default: true
  6703. }
  6704. ]
  6705. ))
  6706. characterMakers.push(() => makeCharacter(
  6707. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6708. {
  6709. front: {
  6710. height: math.unit(6, "feet"),
  6711. weight: math.unit(240, "lbs"),
  6712. name: "Front",
  6713. image: {
  6714. source: "./media/characters/nibbles/front.svg"
  6715. }
  6716. },
  6717. side: {
  6718. height: math.unit(6, "feet"),
  6719. weight: math.unit(240, "lbs"),
  6720. name: "Side",
  6721. image: {
  6722. source: "./media/characters/nibbles/side.svg"
  6723. }
  6724. },
  6725. },
  6726. [
  6727. {
  6728. name: "Normal",
  6729. height: math.unit(9, "feet"),
  6730. default: true
  6731. }
  6732. ]
  6733. ))
  6734. characterMakers.push(() => makeCharacter(
  6735. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6736. {
  6737. side: {
  6738. height: math.unit(5 + 1 / 6, "feet"),
  6739. weight: math.unit(130, "lbs"),
  6740. name: "Side",
  6741. image: {
  6742. source: "./media/characters/rikky/side.svg",
  6743. extra: 851 / 801
  6744. }
  6745. },
  6746. },
  6747. [
  6748. {
  6749. name: "Normal",
  6750. height: math.unit(5 + 1 / 6, "feet")
  6751. },
  6752. {
  6753. name: "Macro",
  6754. height: math.unit(152, "feet"),
  6755. default: true
  6756. },
  6757. {
  6758. name: "Megamacro",
  6759. height: math.unit(7, "miles")
  6760. }
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6765. {
  6766. side: {
  6767. height: math.unit(370, "cm"),
  6768. weight: math.unit(350, "lbs"),
  6769. name: "Side",
  6770. image: {
  6771. source: "./media/characters/malfressa/side.svg"
  6772. }
  6773. },
  6774. walking: {
  6775. height: math.unit(370, "cm"),
  6776. weight: math.unit(350, "lbs"),
  6777. name: "Walking",
  6778. image: {
  6779. source: "./media/characters/malfressa/walking.svg"
  6780. }
  6781. },
  6782. feral: {
  6783. height: math.unit(2500, "cm"),
  6784. weight: math.unit(100000, "lbs"),
  6785. name: "Feral",
  6786. image: {
  6787. source: "./media/characters/malfressa/feral.svg",
  6788. extra: 2108 / 837,
  6789. bottom: 0.02
  6790. }
  6791. },
  6792. },
  6793. [
  6794. {
  6795. name: "Normal",
  6796. height: math.unit(370, "cm")
  6797. },
  6798. {
  6799. name: "Macro",
  6800. height: math.unit(300, "meters"),
  6801. default: true
  6802. }
  6803. ]
  6804. ))
  6805. characterMakers.push(() => makeCharacter(
  6806. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6807. {
  6808. front: {
  6809. height: math.unit(6, "feet"),
  6810. weight: math.unit(60, "kg"),
  6811. name: "Front",
  6812. image: {
  6813. source: "./media/characters/jaro/front.svg",
  6814. extra: 845/817,
  6815. bottom: 45/890
  6816. }
  6817. },
  6818. back: {
  6819. height: math.unit(6, "feet"),
  6820. weight: math.unit(60, "kg"),
  6821. name: "Back",
  6822. image: {
  6823. source: "./media/characters/jaro/back.svg",
  6824. extra: 847/817,
  6825. bottom: 34/881
  6826. }
  6827. },
  6828. },
  6829. [
  6830. {
  6831. name: "Micro",
  6832. height: math.unit(7, "inches")
  6833. },
  6834. {
  6835. name: "Normal",
  6836. height: math.unit(5.5, "feet"),
  6837. default: true
  6838. },
  6839. {
  6840. name: "Minimacro",
  6841. height: math.unit(20, "feet")
  6842. },
  6843. {
  6844. name: "Macro",
  6845. height: math.unit(200, "meters")
  6846. }
  6847. ]
  6848. ))
  6849. characterMakers.push(() => makeCharacter(
  6850. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6851. {
  6852. front: {
  6853. height: math.unit(6, "feet"),
  6854. weight: math.unit(195, "lb"),
  6855. name: "Front",
  6856. image: {
  6857. source: "./media/characters/rogue/front.svg"
  6858. }
  6859. },
  6860. },
  6861. [
  6862. {
  6863. name: "Macro",
  6864. height: math.unit(90, "feet"),
  6865. default: true
  6866. },
  6867. ]
  6868. ))
  6869. characterMakers.push(() => makeCharacter(
  6870. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6871. {
  6872. standing: {
  6873. height: math.unit(5 + 8 / 12, "feet"),
  6874. weight: math.unit(140, "lb"),
  6875. name: "Standing",
  6876. image: {
  6877. source: "./media/characters/piper/standing.svg",
  6878. extra: 1440/1284,
  6879. bottom: 66/1506
  6880. }
  6881. },
  6882. running: {
  6883. height: math.unit(5 + 8 / 12, "feet"),
  6884. weight: math.unit(140, "lb"),
  6885. name: "Running",
  6886. image: {
  6887. source: "./media/characters/piper/running.svg",
  6888. extra: 3948/3655,
  6889. bottom: 0/3948
  6890. }
  6891. },
  6892. sole: {
  6893. height: math.unit(0.81, "feet"),
  6894. weight: math.unit(2, "kg"),
  6895. name: "Sole",
  6896. image: {
  6897. source: "./media/characters/piper/sole.svg"
  6898. }
  6899. },
  6900. nipple: {
  6901. height: math.unit(0.25, "feet"),
  6902. weight: math.unit(1.5, "lb"),
  6903. name: "Nipple",
  6904. image: {
  6905. source: "./media/characters/piper/nipple.svg"
  6906. }
  6907. },
  6908. head: {
  6909. height: math.unit(1.1, "feet"),
  6910. name: "Head",
  6911. image: {
  6912. source: "./media/characters/piper/head.svg"
  6913. }
  6914. },
  6915. },
  6916. [
  6917. {
  6918. name: "Micro",
  6919. height: math.unit(2, "inches")
  6920. },
  6921. {
  6922. name: "Normal",
  6923. height: math.unit(5 + 8 / 12, "feet")
  6924. },
  6925. {
  6926. name: "Macro",
  6927. height: math.unit(250, "feet"),
  6928. default: true
  6929. },
  6930. {
  6931. name: "Megamacro",
  6932. height: math.unit(7, "miles")
  6933. },
  6934. ]
  6935. ))
  6936. characterMakers.push(() => makeCharacter(
  6937. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6938. {
  6939. front: {
  6940. height: math.unit(6, "feet"),
  6941. weight: math.unit(220, "lb"),
  6942. name: "Front",
  6943. image: {
  6944. source: "./media/characters/gemini/front.svg"
  6945. }
  6946. },
  6947. back: {
  6948. height: math.unit(6, "feet"),
  6949. weight: math.unit(220, "lb"),
  6950. name: "Back",
  6951. image: {
  6952. source: "./media/characters/gemini/back.svg"
  6953. }
  6954. },
  6955. kneeling: {
  6956. height: math.unit(6 / 1.5, "feet"),
  6957. weight: math.unit(220, "lb"),
  6958. name: "Kneeling",
  6959. image: {
  6960. source: "./media/characters/gemini/kneeling.svg",
  6961. bottom: 0.02
  6962. }
  6963. },
  6964. },
  6965. [
  6966. {
  6967. name: "Macro",
  6968. height: math.unit(300, "meters"),
  6969. default: true
  6970. },
  6971. {
  6972. name: "Megamacro",
  6973. height: math.unit(6900, "meters")
  6974. },
  6975. ]
  6976. ))
  6977. characterMakers.push(() => makeCharacter(
  6978. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6979. {
  6980. anthro: {
  6981. height: math.unit(2.35, "meters"),
  6982. weight: math.unit(73, "kg"),
  6983. name: "Anthro",
  6984. image: {
  6985. source: "./media/characters/alicia/anthro.svg",
  6986. extra: 2571 / 2385,
  6987. bottom: 75 / 2648
  6988. }
  6989. },
  6990. paw: {
  6991. height: math.unit(1.32, "feet"),
  6992. name: "Paw",
  6993. image: {
  6994. source: "./media/characters/alicia/paw.svg"
  6995. }
  6996. },
  6997. feral: {
  6998. height: math.unit(1.69, "meters"),
  6999. weight: math.unit(73, "kg"),
  7000. name: "Feral",
  7001. image: {
  7002. source: "./media/characters/alicia/feral.svg",
  7003. extra: 2123 / 1715,
  7004. bottom: 222 / 2349
  7005. }
  7006. },
  7007. },
  7008. [
  7009. {
  7010. name: "Normal",
  7011. height: math.unit(2.35, "meters")
  7012. },
  7013. {
  7014. name: "Macro",
  7015. height: math.unit(60, "meters"),
  7016. default: true
  7017. },
  7018. {
  7019. name: "Megamacro",
  7020. height: math.unit(10000, "kilometers")
  7021. },
  7022. ]
  7023. ))
  7024. characterMakers.push(() => makeCharacter(
  7025. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7026. {
  7027. front: {
  7028. height: math.unit(7, "feet"),
  7029. weight: math.unit(250, "lbs"),
  7030. name: "Front",
  7031. image: {
  7032. source: "./media/characters/archy/front.svg"
  7033. }
  7034. }
  7035. },
  7036. [
  7037. {
  7038. name: "Micro",
  7039. height: math.unit(1, "inch")
  7040. },
  7041. {
  7042. name: "Shorty",
  7043. height: math.unit(5, "feet")
  7044. },
  7045. {
  7046. name: "Normal",
  7047. height: math.unit(7, "feet")
  7048. },
  7049. {
  7050. name: "Macro",
  7051. height: math.unit(600, "meters"),
  7052. default: true
  7053. },
  7054. {
  7055. name: "Megamacro",
  7056. height: math.unit(1, "mile")
  7057. },
  7058. ]
  7059. ))
  7060. characterMakers.push(() => makeCharacter(
  7061. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7062. {
  7063. front: {
  7064. height: math.unit(1.65, "meters"),
  7065. weight: math.unit(74, "kg"),
  7066. name: "Front",
  7067. image: {
  7068. source: "./media/characters/berri/front.svg",
  7069. extra: 857 / 837,
  7070. bottom: 18 / 877
  7071. }
  7072. },
  7073. bum: {
  7074. height: math.unit(1.46, "feet"),
  7075. name: "Bum",
  7076. image: {
  7077. source: "./media/characters/berri/bum.svg"
  7078. }
  7079. },
  7080. mouth: {
  7081. height: math.unit(0.44, "feet"),
  7082. name: "Mouth",
  7083. image: {
  7084. source: "./media/characters/berri/mouth.svg"
  7085. }
  7086. },
  7087. paw: {
  7088. height: math.unit(0.826, "feet"),
  7089. name: "Paw",
  7090. image: {
  7091. source: "./media/characters/berri/paw.svg"
  7092. }
  7093. },
  7094. },
  7095. [
  7096. {
  7097. name: "Normal",
  7098. height: math.unit(1.65, "meters")
  7099. },
  7100. {
  7101. name: "Macro",
  7102. height: math.unit(60, "m"),
  7103. default: true
  7104. },
  7105. {
  7106. name: "Megamacro",
  7107. height: math.unit(9.213, "km")
  7108. },
  7109. {
  7110. name: "Planet Eater",
  7111. height: math.unit(489, "megameters")
  7112. },
  7113. {
  7114. name: "Teramacro",
  7115. height: math.unit(2471635000000, "meters")
  7116. },
  7117. {
  7118. name: "Examacro",
  7119. height: math.unit(8.0624e+26, "meters")
  7120. }
  7121. ]
  7122. ))
  7123. characterMakers.push(() => makeCharacter(
  7124. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7125. {
  7126. front: {
  7127. height: math.unit(1.72, "meters"),
  7128. weight: math.unit(68, "kg"),
  7129. name: "Front",
  7130. image: {
  7131. source: "./media/characters/lexi/front.svg"
  7132. }
  7133. }
  7134. },
  7135. [
  7136. {
  7137. name: "Very Smol",
  7138. height: math.unit(10, "mm")
  7139. },
  7140. {
  7141. name: "Micro",
  7142. height: math.unit(6.8, "cm"),
  7143. default: true
  7144. },
  7145. {
  7146. name: "Normal",
  7147. height: math.unit(1.72, "m")
  7148. }
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7153. {
  7154. front: {
  7155. height: math.unit(1.69, "meters"),
  7156. weight: math.unit(68, "kg"),
  7157. name: "Front",
  7158. image: {
  7159. source: "./media/characters/martin/front.svg",
  7160. extra: 596 / 581
  7161. }
  7162. }
  7163. },
  7164. [
  7165. {
  7166. name: "Micro",
  7167. height: math.unit(6.85, "cm"),
  7168. default: true
  7169. },
  7170. {
  7171. name: "Normal",
  7172. height: math.unit(1.69, "m")
  7173. }
  7174. ]
  7175. ))
  7176. characterMakers.push(() => makeCharacter(
  7177. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7178. {
  7179. front: {
  7180. height: math.unit(1.69, "meters"),
  7181. weight: math.unit(68, "kg"),
  7182. name: "Front",
  7183. image: {
  7184. source: "./media/characters/juno/front.svg"
  7185. }
  7186. }
  7187. },
  7188. [
  7189. {
  7190. name: "Micro",
  7191. height: math.unit(7, "cm")
  7192. },
  7193. {
  7194. name: "Normal",
  7195. height: math.unit(1.89, "m")
  7196. },
  7197. {
  7198. name: "Macro",
  7199. height: math.unit(353, "meters"),
  7200. default: true
  7201. }
  7202. ]
  7203. ))
  7204. characterMakers.push(() => makeCharacter(
  7205. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7206. {
  7207. front: {
  7208. height: math.unit(1.93, "meters"),
  7209. weight: math.unit(83, "kg"),
  7210. name: "Front",
  7211. image: {
  7212. source: "./media/characters/samantha/front.svg"
  7213. }
  7214. },
  7215. frontClothed: {
  7216. height: math.unit(1.93, "meters"),
  7217. weight: math.unit(83, "kg"),
  7218. name: "Front (Clothed)",
  7219. image: {
  7220. source: "./media/characters/samantha/front-clothed.svg"
  7221. }
  7222. },
  7223. back: {
  7224. height: math.unit(1.93, "meters"),
  7225. weight: math.unit(83, "kg"),
  7226. name: "Back",
  7227. image: {
  7228. source: "./media/characters/samantha/back.svg"
  7229. }
  7230. },
  7231. },
  7232. [
  7233. {
  7234. name: "Normal",
  7235. height: math.unit(1.93, "m")
  7236. },
  7237. {
  7238. name: "Macro",
  7239. height: math.unit(74, "meters"),
  7240. default: true
  7241. },
  7242. {
  7243. name: "Macro+",
  7244. height: math.unit(223, "meters"),
  7245. },
  7246. {
  7247. name: "Megamacro",
  7248. height: math.unit(8381, "meters"),
  7249. },
  7250. {
  7251. name: "Megamacro+",
  7252. height: math.unit(12000, "kilometers")
  7253. },
  7254. ]
  7255. ))
  7256. characterMakers.push(() => makeCharacter(
  7257. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7258. {
  7259. front: {
  7260. height: math.unit(1.92, "meters"),
  7261. weight: math.unit(80, "kg"),
  7262. name: "Front",
  7263. image: {
  7264. source: "./media/characters/dr-clay/front.svg"
  7265. }
  7266. },
  7267. frontClothed: {
  7268. height: math.unit(1.92, "meters"),
  7269. weight: math.unit(80, "kg"),
  7270. name: "Front (Clothed)",
  7271. image: {
  7272. source: "./media/characters/dr-clay/front-clothed.svg"
  7273. }
  7274. }
  7275. },
  7276. [
  7277. {
  7278. name: "Normal",
  7279. height: math.unit(1.92, "m")
  7280. },
  7281. {
  7282. name: "Macro",
  7283. height: math.unit(214, "meters"),
  7284. default: true
  7285. },
  7286. {
  7287. name: "Macro+",
  7288. height: math.unit(12.237, "meters"),
  7289. },
  7290. {
  7291. name: "Megamacro",
  7292. height: math.unit(557, "megameters"),
  7293. },
  7294. {
  7295. name: "Unimaginable",
  7296. height: math.unit(120e9, "lightyears")
  7297. },
  7298. ]
  7299. ))
  7300. characterMakers.push(() => makeCharacter(
  7301. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7302. {
  7303. front: {
  7304. height: math.unit(2, "meters"),
  7305. weight: math.unit(80, "kg"),
  7306. name: "Front",
  7307. image: {
  7308. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7309. }
  7310. }
  7311. },
  7312. [
  7313. {
  7314. name: "Teramacro",
  7315. height: math.unit(500000, "lightyears"),
  7316. default: true
  7317. },
  7318. ]
  7319. ))
  7320. characterMakers.push(() => makeCharacter(
  7321. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7322. {
  7323. crux: {
  7324. height: math.unit(2, "meters"),
  7325. weight: math.unit(150, "kg"),
  7326. name: "Crux",
  7327. image: {
  7328. source: "./media/characters/vemus/crux.svg",
  7329. extra: 1074/936,
  7330. bottom: 23/1097
  7331. }
  7332. },
  7333. skunkTanuki: {
  7334. height: math.unit(2, "meters"),
  7335. weight: math.unit(150, "kg"),
  7336. name: "Skunk-Tanuki",
  7337. image: {
  7338. source: "./media/characters/vemus/skunk-tanuki.svg",
  7339. extra: 926/893,
  7340. bottom: 20/946
  7341. }
  7342. },
  7343. },
  7344. [
  7345. {
  7346. name: "Normal",
  7347. height: math.unit(4, "meters"),
  7348. default: true
  7349. },
  7350. {
  7351. name: "Big",
  7352. height: math.unit(8, "meters")
  7353. },
  7354. {
  7355. name: "Macro",
  7356. height: math.unit(100, "meters")
  7357. },
  7358. {
  7359. name: "Macro+",
  7360. height: math.unit(1500, "meters")
  7361. },
  7362. {
  7363. name: "Stellar",
  7364. height: math.unit(14e8, "meters")
  7365. },
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7370. {
  7371. front: {
  7372. height: math.unit(2, "meters"),
  7373. weight: math.unit(70, "kg"),
  7374. name: "Front",
  7375. image: {
  7376. source: "./media/characters/beherit/front.svg",
  7377. extra: 1234/1109,
  7378. bottom: 55/1289
  7379. }
  7380. }
  7381. },
  7382. [
  7383. {
  7384. name: "Normal",
  7385. height: math.unit(6, "feet")
  7386. },
  7387. {
  7388. name: "Lorg",
  7389. height: math.unit(25, "feet"),
  7390. default: true
  7391. },
  7392. {
  7393. name: "Lorger",
  7394. height: math.unit(75, "feet")
  7395. },
  7396. {
  7397. name: "Macro",
  7398. height: math.unit(200, "meters")
  7399. },
  7400. ]
  7401. ))
  7402. characterMakers.push(() => makeCharacter(
  7403. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7404. {
  7405. front: {
  7406. height: math.unit(2, "meters"),
  7407. weight: math.unit(150, "kg"),
  7408. name: "Front",
  7409. image: {
  7410. source: "./media/characters/everett/front.svg",
  7411. extra: 1017/866,
  7412. bottom: 86/1103
  7413. }
  7414. },
  7415. paw: {
  7416. height: math.unit(2 / 3.6, "meters"),
  7417. name: "Paw",
  7418. image: {
  7419. source: "./media/characters/everett/paw.svg"
  7420. }
  7421. },
  7422. },
  7423. [
  7424. {
  7425. name: "Normal",
  7426. height: math.unit(15, "feet"),
  7427. default: true
  7428. },
  7429. {
  7430. name: "Lorg",
  7431. height: math.unit(70, "feet"),
  7432. default: true
  7433. },
  7434. {
  7435. name: "Lorger",
  7436. height: math.unit(250, "feet")
  7437. },
  7438. {
  7439. name: "Macro",
  7440. height: math.unit(500, "meters")
  7441. },
  7442. ]
  7443. ))
  7444. characterMakers.push(() => makeCharacter(
  7445. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7446. {
  7447. front: {
  7448. height: math.unit(2, "meters"),
  7449. weight: math.unit(86, "kg"),
  7450. name: "Front",
  7451. image: {
  7452. source: "./media/characters/rose/front.svg",
  7453. extra: 1785/1636,
  7454. bottom: 30/1815
  7455. },
  7456. form: "liom",
  7457. default: true
  7458. },
  7459. frontSporty: {
  7460. height: math.unit(2, "meters"),
  7461. weight: math.unit(86, "kg"),
  7462. name: "Front (Sporty)",
  7463. image: {
  7464. source: "./media/characters/rose/front-sporty.svg",
  7465. extra: 350/335,
  7466. bottom: 10/360
  7467. },
  7468. form: "liom"
  7469. },
  7470. frontAlt: {
  7471. height: math.unit(1.6, "meters"),
  7472. weight: math.unit(86, "kg"),
  7473. name: "Front (Alt)",
  7474. image: {
  7475. source: "./media/characters/rose/front-alt.svg",
  7476. extra: 299/283,
  7477. bottom: 3/302
  7478. },
  7479. form: "liom"
  7480. },
  7481. plush: {
  7482. height: math.unit(2, "meters"),
  7483. weight: math.unit(86/3, "kg"),
  7484. name: "Plush",
  7485. image: {
  7486. source: "./media/characters/rose/plush.svg",
  7487. extra: 361/337,
  7488. bottom: 11/372
  7489. },
  7490. form: "plush",
  7491. default: true
  7492. },
  7493. faeStanding: {
  7494. height: math.unit(10, "cm"),
  7495. weight: math.unit(10, "grams"),
  7496. name: "Standing",
  7497. image: {
  7498. source: "./media/characters/rose/fae-standing.svg",
  7499. extra: 1189/1060,
  7500. bottom: 27/1216
  7501. },
  7502. form: "fae",
  7503. default: true
  7504. },
  7505. faeSitting: {
  7506. height: math.unit(5, "cm"),
  7507. weight: math.unit(10, "grams"),
  7508. name: "Sitting",
  7509. image: {
  7510. source: "./media/characters/rose/fae-sitting.svg",
  7511. extra: 737/577,
  7512. bottom: 356/1093
  7513. },
  7514. form: "fae"
  7515. },
  7516. faePaw: {
  7517. height: math.unit(1.35, "cm"),
  7518. name: "Paw",
  7519. image: {
  7520. source: "./media/characters/rose/fae-paw.svg"
  7521. },
  7522. form: "fae"
  7523. },
  7524. },
  7525. [
  7526. {
  7527. name: "True Micro",
  7528. height: math.unit(9, "cm"),
  7529. form: "liom"
  7530. },
  7531. {
  7532. name: "Micro",
  7533. height: math.unit(16, "cm"),
  7534. form: "liom"
  7535. },
  7536. {
  7537. name: "Normal",
  7538. height: math.unit(1.85, "meters"),
  7539. default: true,
  7540. form: "liom"
  7541. },
  7542. {
  7543. name: "Mini-Macro",
  7544. height: math.unit(5, "meters"),
  7545. form: "liom"
  7546. },
  7547. {
  7548. name: "Macro",
  7549. height: math.unit(15, "meters"),
  7550. form: "liom"
  7551. },
  7552. {
  7553. name: "True Macro",
  7554. height: math.unit(40, "meters"),
  7555. form: "liom"
  7556. },
  7557. {
  7558. name: "City Scale",
  7559. height: math.unit(1, "km"),
  7560. form: "liom"
  7561. },
  7562. {
  7563. name: "Plushie",
  7564. height: math.unit(9, "cm"),
  7565. form: "plush",
  7566. default: true
  7567. },
  7568. {
  7569. name: "Fae",
  7570. height: math.unit(10, "cm"),
  7571. form: "fae",
  7572. default: true
  7573. },
  7574. ],
  7575. {
  7576. "liom": {
  7577. name: "Liom"
  7578. },
  7579. "plush": {
  7580. name: "Plush"
  7581. },
  7582. "fae": {
  7583. name: "Fae Fox",
  7584. default: true
  7585. }
  7586. }
  7587. ))
  7588. characterMakers.push(() => makeCharacter(
  7589. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7590. {
  7591. front: {
  7592. height: math.unit(2, "meters"),
  7593. weight: math.unit(350, "lbs"),
  7594. name: "Front",
  7595. image: {
  7596. source: "./media/characters/regal/front.svg"
  7597. }
  7598. },
  7599. back: {
  7600. height: math.unit(2, "meters"),
  7601. weight: math.unit(350, "lbs"),
  7602. name: "Back",
  7603. image: {
  7604. source: "./media/characters/regal/back.svg"
  7605. }
  7606. },
  7607. },
  7608. [
  7609. {
  7610. name: "Macro",
  7611. height: math.unit(350, "feet"),
  7612. default: true
  7613. }
  7614. ]
  7615. ))
  7616. characterMakers.push(() => makeCharacter(
  7617. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7618. {
  7619. front: {
  7620. height: math.unit(4 + 11 / 12, "feet"),
  7621. weight: math.unit(100, "lbs"),
  7622. name: "Front",
  7623. image: {
  7624. source: "./media/characters/opal/front.svg"
  7625. }
  7626. },
  7627. frontAlt: {
  7628. height: math.unit(4 + 11 / 12, "feet"),
  7629. weight: math.unit(100, "lbs"),
  7630. name: "Front (Alt)",
  7631. image: {
  7632. source: "./media/characters/opal/front-alt.svg"
  7633. }
  7634. },
  7635. },
  7636. [
  7637. {
  7638. name: "Small",
  7639. height: math.unit(4 + 11 / 12, "feet")
  7640. },
  7641. {
  7642. name: "Normal",
  7643. height: math.unit(20, "feet"),
  7644. default: true
  7645. },
  7646. {
  7647. name: "Macro",
  7648. height: math.unit(120, "feet")
  7649. },
  7650. {
  7651. name: "Megamacro",
  7652. height: math.unit(80, "miles")
  7653. },
  7654. {
  7655. name: "True Size",
  7656. height: math.unit(100000, "lightyears")
  7657. },
  7658. ]
  7659. ))
  7660. characterMakers.push(() => makeCharacter(
  7661. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7662. {
  7663. front: {
  7664. height: math.unit(6, "feet"),
  7665. weight: math.unit(200, "lbs"),
  7666. name: "Front",
  7667. image: {
  7668. source: "./media/characters/vector-wuff/front.svg"
  7669. }
  7670. }
  7671. },
  7672. [
  7673. {
  7674. name: "Normal",
  7675. height: math.unit(2.8, "meters")
  7676. },
  7677. {
  7678. name: "Macro",
  7679. height: math.unit(450, "meters"),
  7680. default: true
  7681. },
  7682. {
  7683. name: "Megamacro",
  7684. height: math.unit(15, "kilometers")
  7685. }
  7686. ]
  7687. ))
  7688. characterMakers.push(() => makeCharacter(
  7689. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7690. {
  7691. front: {
  7692. height: math.unit(6, "feet"),
  7693. weight: math.unit(256, "lbs"),
  7694. name: "Front",
  7695. image: {
  7696. source: "./media/characters/dannik/front.svg"
  7697. }
  7698. }
  7699. },
  7700. [
  7701. {
  7702. name: "Macro",
  7703. height: math.unit(69.57, "meters"),
  7704. default: true
  7705. },
  7706. ]
  7707. ))
  7708. characterMakers.push(() => makeCharacter(
  7709. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7710. {
  7711. front: {
  7712. height: math.unit(6, "feet"),
  7713. weight: math.unit(120, "lbs"),
  7714. name: "Front",
  7715. image: {
  7716. source: "./media/characters/azura-saharah/front.svg"
  7717. }
  7718. },
  7719. back: {
  7720. height: math.unit(6, "feet"),
  7721. weight: math.unit(120, "lbs"),
  7722. name: "Back",
  7723. image: {
  7724. source: "./media/characters/azura-saharah/back.svg"
  7725. }
  7726. },
  7727. },
  7728. [
  7729. {
  7730. name: "Macro",
  7731. height: math.unit(100, "feet"),
  7732. default: true
  7733. },
  7734. ]
  7735. ))
  7736. characterMakers.push(() => makeCharacter(
  7737. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7738. {
  7739. side: {
  7740. height: math.unit(5 + 4 / 12, "feet"),
  7741. weight: math.unit(163, "lbs"),
  7742. name: "Side",
  7743. image: {
  7744. source: "./media/characters/kennedy/side.svg"
  7745. }
  7746. }
  7747. },
  7748. [
  7749. {
  7750. name: "Standard Doggo",
  7751. height: math.unit(5 + 4 / 12, "feet")
  7752. },
  7753. {
  7754. name: "Big Doggo",
  7755. height: math.unit(25 + 3 / 12, "feet"),
  7756. default: true
  7757. },
  7758. ]
  7759. ))
  7760. characterMakers.push(() => makeCharacter(
  7761. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7762. {
  7763. front: {
  7764. height: math.unit(5 + 5/12, "feet"),
  7765. weight: math.unit(100, "lbs"),
  7766. name: "Front",
  7767. image: {
  7768. source: "./media/characters/odios-de-lunar/front.svg",
  7769. extra: 1468/1323,
  7770. bottom: 22/1490
  7771. }
  7772. }
  7773. },
  7774. [
  7775. {
  7776. name: "Micro",
  7777. height: math.unit(3, "inches")
  7778. },
  7779. {
  7780. name: "Normal",
  7781. height: math.unit(5.5, "feet"),
  7782. default: true
  7783. },
  7784. {
  7785. name: "Macro",
  7786. height: math.unit(100, "feet")
  7787. },
  7788. ]
  7789. ))
  7790. characterMakers.push(() => makeCharacter(
  7791. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7792. {
  7793. back: {
  7794. height: math.unit(6, "feet"),
  7795. weight: math.unit(220, "lbs"),
  7796. name: "Back",
  7797. image: {
  7798. source: "./media/characters/mandake/back.svg"
  7799. }
  7800. }
  7801. },
  7802. [
  7803. {
  7804. name: "Normal",
  7805. height: math.unit(7, "feet"),
  7806. default: true
  7807. },
  7808. {
  7809. name: "Macro",
  7810. height: math.unit(78, "feet")
  7811. },
  7812. {
  7813. name: "Macro+",
  7814. height: math.unit(300, "meters")
  7815. },
  7816. {
  7817. name: "Macro++",
  7818. height: math.unit(2400, "feet")
  7819. },
  7820. {
  7821. name: "Megamacro",
  7822. height: math.unit(5167, "meters")
  7823. },
  7824. {
  7825. name: "Gigamacro",
  7826. height: math.unit(41769, "miles")
  7827. },
  7828. ]
  7829. ))
  7830. characterMakers.push(() => makeCharacter(
  7831. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7832. {
  7833. front: {
  7834. height: math.unit(6, "feet"),
  7835. weight: math.unit(120, "lbs"),
  7836. name: "Front",
  7837. image: {
  7838. source: "./media/characters/yozey/front.svg"
  7839. }
  7840. },
  7841. frontAlt: {
  7842. height: math.unit(6, "feet"),
  7843. weight: math.unit(120, "lbs"),
  7844. name: "Front (Alt)",
  7845. image: {
  7846. source: "./media/characters/yozey/front-alt.svg"
  7847. }
  7848. },
  7849. side: {
  7850. height: math.unit(6, "feet"),
  7851. weight: math.unit(120, "lbs"),
  7852. name: "Side",
  7853. image: {
  7854. source: "./media/characters/yozey/side.svg"
  7855. }
  7856. },
  7857. },
  7858. [
  7859. {
  7860. name: "Micro",
  7861. height: math.unit(3, "inches"),
  7862. default: true
  7863. },
  7864. {
  7865. name: "Normal",
  7866. height: math.unit(6, "feet")
  7867. }
  7868. ]
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(6, "feet"),
  7875. weight: math.unit(103, "lbs"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/valeska-voss/front.svg"
  7879. }
  7880. }
  7881. },
  7882. [
  7883. {
  7884. name: "Mini-Sized Sub",
  7885. height: math.unit(3.1, "inches")
  7886. },
  7887. {
  7888. name: "Mid-Sized Sub",
  7889. height: math.unit(6.2, "inches")
  7890. },
  7891. {
  7892. name: "Full-Sized Sub",
  7893. height: math.unit(9.3, "inches")
  7894. },
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(5 + 2 / 12, "foot"),
  7898. default: true
  7899. },
  7900. ]
  7901. ))
  7902. characterMakers.push(() => makeCharacter(
  7903. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7904. {
  7905. front: {
  7906. height: math.unit(6, "feet"),
  7907. weight: math.unit(160, "lbs"),
  7908. name: "Front",
  7909. image: {
  7910. source: "./media/characters/gene-zeta/front.svg",
  7911. extra: 3006 / 2826,
  7912. bottom: 182 / 3188
  7913. }
  7914. }
  7915. },
  7916. [
  7917. {
  7918. name: "Micro",
  7919. height: math.unit(6, "inches")
  7920. },
  7921. {
  7922. name: "Normal",
  7923. height: math.unit(5 + 11 / 12, "foot"),
  7924. default: true
  7925. },
  7926. {
  7927. name: "Macro",
  7928. height: math.unit(140, "feet")
  7929. },
  7930. {
  7931. name: "Supercharged",
  7932. height: math.unit(2500, "feet")
  7933. },
  7934. ]
  7935. ))
  7936. characterMakers.push(() => makeCharacter(
  7937. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7938. {
  7939. front: {
  7940. height: math.unit(6, "feet"),
  7941. weight: math.unit(350, "lbs"),
  7942. name: "Front",
  7943. image: {
  7944. source: "./media/characters/razinox/front.svg",
  7945. extra: 1686 / 1548,
  7946. bottom: 28.2 / 1868
  7947. }
  7948. },
  7949. back: {
  7950. height: math.unit(6, "feet"),
  7951. weight: math.unit(350, "lbs"),
  7952. name: "Back",
  7953. image: {
  7954. source: "./media/characters/razinox/back.svg",
  7955. extra: 1660 / 1590,
  7956. bottom: 15 / 1665
  7957. }
  7958. },
  7959. },
  7960. [
  7961. {
  7962. name: "Normal",
  7963. height: math.unit(10 + 8 / 12, "foot")
  7964. },
  7965. {
  7966. name: "Minimacro",
  7967. height: math.unit(15, "foot")
  7968. },
  7969. {
  7970. name: "Macro",
  7971. height: math.unit(60, "foot"),
  7972. default: true
  7973. },
  7974. {
  7975. name: "Megamacro",
  7976. height: math.unit(5, "miles")
  7977. },
  7978. {
  7979. name: "Gigamacro",
  7980. height: math.unit(6000, "miles")
  7981. },
  7982. ]
  7983. ))
  7984. characterMakers.push(() => makeCharacter(
  7985. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7986. {
  7987. front: {
  7988. height: math.unit(6, "feet"),
  7989. weight: math.unit(150, "lbs"),
  7990. name: "Front",
  7991. image: {
  7992. source: "./media/characters/cobalt/front.svg"
  7993. }
  7994. }
  7995. },
  7996. [
  7997. {
  7998. name: "Normal",
  7999. height: math.unit(8 + 1 / 12, "foot")
  8000. },
  8001. {
  8002. name: "Macro",
  8003. height: math.unit(111, "foot"),
  8004. default: true
  8005. },
  8006. {
  8007. name: "Supracosmic",
  8008. height: math.unit(1e42, "feet")
  8009. },
  8010. ]
  8011. ))
  8012. characterMakers.push(() => makeCharacter(
  8013. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8014. {
  8015. front: {
  8016. height: math.unit(5, "inches"),
  8017. name: "Front",
  8018. image: {
  8019. source: "./media/characters/amanda/front.svg",
  8020. extra: 926/791,
  8021. bottom: 38/964
  8022. }
  8023. },
  8024. back: {
  8025. height: math.unit(5, "inches"),
  8026. name: "Back",
  8027. image: {
  8028. source: "./media/characters/amanda/back.svg",
  8029. extra: 909/805,
  8030. bottom: 43/952
  8031. }
  8032. },
  8033. },
  8034. [
  8035. {
  8036. name: "Micro",
  8037. height: math.unit(5, "inches"),
  8038. default: true
  8039. },
  8040. ]
  8041. ))
  8042. characterMakers.push(() => makeCharacter(
  8043. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8044. {
  8045. front: {
  8046. height: math.unit(2.75, "meters"),
  8047. weight: math.unit(1200, "lb"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/teal/front.svg",
  8051. extra: 2463 / 2320,
  8052. bottom: 166 / 2629
  8053. }
  8054. },
  8055. back: {
  8056. height: math.unit(2.75, "meters"),
  8057. weight: math.unit(1200, "lb"),
  8058. name: "Back",
  8059. image: {
  8060. source: "./media/characters/teal/back.svg",
  8061. extra: 2580 / 2489,
  8062. bottom: 151 / 2731
  8063. }
  8064. },
  8065. sitting: {
  8066. height: math.unit(1.9, "meters"),
  8067. weight: math.unit(1200, "lb"),
  8068. name: "Sitting",
  8069. image: {
  8070. source: "./media/characters/teal/sitting.svg",
  8071. extra: 623 / 590,
  8072. bottom: 121 / 744
  8073. }
  8074. },
  8075. standing: {
  8076. height: math.unit(2.75, "meters"),
  8077. weight: math.unit(1200, "lb"),
  8078. name: "Standing",
  8079. image: {
  8080. source: "./media/characters/teal/standing.svg",
  8081. extra: 923 / 893,
  8082. bottom: 60 / 983
  8083. }
  8084. },
  8085. stretching: {
  8086. height: math.unit(3.65, "meters"),
  8087. weight: math.unit(1200, "lb"),
  8088. name: "Stretching",
  8089. image: {
  8090. source: "./media/characters/teal/stretching.svg",
  8091. extra: 1276 / 1244,
  8092. bottom: 0 / 1276
  8093. }
  8094. },
  8095. legged: {
  8096. height: math.unit(1.3, "meters"),
  8097. weight: math.unit(100, "lb"),
  8098. name: "Legged",
  8099. image: {
  8100. source: "./media/characters/teal/legged.svg",
  8101. extra: 462 / 437,
  8102. bottom: 24 / 486
  8103. }
  8104. },
  8105. naga: {
  8106. height: math.unit(5.4, "meters"),
  8107. weight: math.unit(4000, "lb"),
  8108. name: "Naga",
  8109. image: {
  8110. source: "./media/characters/teal/naga.svg",
  8111. extra: 1902 / 1858,
  8112. bottom: 0 / 1902
  8113. }
  8114. },
  8115. hand: {
  8116. height: math.unit(0.52, "meters"),
  8117. name: "Hand",
  8118. image: {
  8119. source: "./media/characters/teal/hand.svg"
  8120. }
  8121. },
  8122. maw: {
  8123. height: math.unit(0.43, "meters"),
  8124. name: "Maw",
  8125. image: {
  8126. source: "./media/characters/teal/maw.svg"
  8127. }
  8128. },
  8129. slit: {
  8130. height: math.unit(0.25, "meters"),
  8131. name: "Slit",
  8132. image: {
  8133. source: "./media/characters/teal/slit.svg"
  8134. }
  8135. },
  8136. },
  8137. [
  8138. {
  8139. name: "Normal",
  8140. height: math.unit(2.75, "meters"),
  8141. default: true
  8142. },
  8143. {
  8144. name: "Macro",
  8145. height: math.unit(300, "feet")
  8146. },
  8147. {
  8148. name: "Macro+",
  8149. height: math.unit(2000, "feet")
  8150. },
  8151. ]
  8152. ))
  8153. characterMakers.push(() => makeCharacter(
  8154. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8155. {
  8156. frontCat: {
  8157. height: math.unit(6, "feet"),
  8158. weight: math.unit(180, "lbs"),
  8159. name: "Front (Cat)",
  8160. image: {
  8161. source: "./media/characters/ravin-amulet/front-cat.svg"
  8162. }
  8163. },
  8164. frontCatAlt: {
  8165. height: math.unit(6, "feet"),
  8166. weight: math.unit(180, "lbs"),
  8167. name: "Front (Alt, Cat)",
  8168. image: {
  8169. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8170. }
  8171. },
  8172. frontWerewolf: {
  8173. height: math.unit(6 * 1.2, "feet"),
  8174. weight: math.unit(225, "lbs"),
  8175. name: "Front (Werewolf)",
  8176. image: {
  8177. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8178. }
  8179. },
  8180. backWerewolf: {
  8181. height: math.unit(6 * 1.2, "feet"),
  8182. weight: math.unit(225, "lbs"),
  8183. name: "Back (Werewolf)",
  8184. image: {
  8185. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8186. }
  8187. },
  8188. },
  8189. [
  8190. {
  8191. name: "Nano",
  8192. height: math.unit(1, "micrometer")
  8193. },
  8194. {
  8195. name: "Micro",
  8196. height: math.unit(1, "inch")
  8197. },
  8198. {
  8199. name: "Normal",
  8200. height: math.unit(6, "feet"),
  8201. default: true
  8202. },
  8203. {
  8204. name: "Macro",
  8205. height: math.unit(60, "feet")
  8206. }
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8211. {
  8212. front: {
  8213. height: math.unit(6, "feet"),
  8214. weight: math.unit(165, "lbs"),
  8215. name: "Front",
  8216. image: {
  8217. source: "./media/characters/fluoresce/front.svg"
  8218. }
  8219. }
  8220. },
  8221. [
  8222. {
  8223. name: "Micro",
  8224. height: math.unit(6, "cm")
  8225. },
  8226. {
  8227. name: "Normal",
  8228. height: math.unit(5 + 7 / 12, "feet"),
  8229. default: true
  8230. },
  8231. {
  8232. name: "Macro",
  8233. height: math.unit(56, "feet")
  8234. },
  8235. {
  8236. name: "Megamacro",
  8237. height: math.unit(1.9, "miles")
  8238. },
  8239. ]
  8240. ))
  8241. characterMakers.push(() => makeCharacter(
  8242. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8243. {
  8244. front: {
  8245. height: math.unit(9 + 6 / 12, "feet"),
  8246. weight: math.unit(523, "lbs"),
  8247. name: "Side",
  8248. image: {
  8249. source: "./media/characters/aurora/side.svg"
  8250. }
  8251. }
  8252. },
  8253. [
  8254. {
  8255. name: "Normal",
  8256. height: math.unit(9 + 6 / 12, "feet")
  8257. },
  8258. {
  8259. name: "Macro",
  8260. height: math.unit(96, "feet"),
  8261. default: true
  8262. },
  8263. {
  8264. name: "Macro+",
  8265. height: math.unit(243, "feet")
  8266. },
  8267. ]
  8268. ))
  8269. characterMakers.push(() => makeCharacter(
  8270. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8271. {
  8272. front: {
  8273. height: math.unit(194, "cm"),
  8274. weight: math.unit(90, "kg"),
  8275. name: "Front",
  8276. image: {
  8277. source: "./media/characters/ranek/front.svg",
  8278. extra: 1862/1791,
  8279. bottom: 80/1942
  8280. }
  8281. },
  8282. back: {
  8283. height: math.unit(194, "cm"),
  8284. weight: math.unit(90, "kg"),
  8285. name: "Back",
  8286. image: {
  8287. source: "./media/characters/ranek/back.svg",
  8288. extra: 1853/1787,
  8289. bottom: 74/1927
  8290. }
  8291. },
  8292. feral: {
  8293. height: math.unit(30, "cm"),
  8294. weight: math.unit(1.6, "lbs"),
  8295. name: "Feral",
  8296. image: {
  8297. source: "./media/characters/ranek/feral.svg",
  8298. extra: 990/631,
  8299. bottom: 29/1019
  8300. }
  8301. },
  8302. },
  8303. [
  8304. {
  8305. name: "Normal",
  8306. height: math.unit(194, "cm"),
  8307. default: true
  8308. },
  8309. {
  8310. name: "Macro",
  8311. height: math.unit(100, "meters")
  8312. },
  8313. ]
  8314. ))
  8315. characterMakers.push(() => makeCharacter(
  8316. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8317. {
  8318. front: {
  8319. height: math.unit(5 + 6 / 12, "feet"),
  8320. weight: math.unit(153, "lbs"),
  8321. name: "Front",
  8322. image: {
  8323. source: "./media/characters/andrew-cooper/front.svg"
  8324. }
  8325. },
  8326. },
  8327. [
  8328. {
  8329. name: "Nano",
  8330. height: math.unit(1, "mm")
  8331. },
  8332. {
  8333. name: "Micro",
  8334. height: math.unit(2, "inches")
  8335. },
  8336. {
  8337. name: "Normal",
  8338. height: math.unit(5 + 6 / 12, "feet"),
  8339. default: true
  8340. }
  8341. ]
  8342. ))
  8343. characterMakers.push(() => makeCharacter(
  8344. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8345. {
  8346. front: {
  8347. height: math.unit(6, "feet"),
  8348. weight: math.unit(180, "lbs"),
  8349. name: "Front",
  8350. image: {
  8351. source: "./media/characters/akane-sato/front.svg",
  8352. extra: 1219 / 1140
  8353. }
  8354. },
  8355. back: {
  8356. height: math.unit(6, "feet"),
  8357. weight: math.unit(180, "lbs"),
  8358. name: "Back",
  8359. image: {
  8360. source: "./media/characters/akane-sato/back.svg",
  8361. extra: 1219 / 1170
  8362. }
  8363. },
  8364. },
  8365. [
  8366. {
  8367. name: "Normal",
  8368. height: math.unit(2.5, "meters")
  8369. },
  8370. {
  8371. name: "Macro",
  8372. height: math.unit(250, "meters"),
  8373. default: true
  8374. },
  8375. {
  8376. name: "Megamacro",
  8377. height: math.unit(25, "km")
  8378. },
  8379. ]
  8380. ))
  8381. characterMakers.push(() => makeCharacter(
  8382. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8383. {
  8384. front: {
  8385. height: math.unit(6, "feet"),
  8386. weight: math.unit(65, "kg"),
  8387. name: "Front",
  8388. image: {
  8389. source: "./media/characters/rook/front.svg",
  8390. extra: 960 / 950
  8391. }
  8392. }
  8393. },
  8394. [
  8395. {
  8396. name: "Normal",
  8397. height: math.unit(8.8, "feet")
  8398. },
  8399. {
  8400. name: "Macro",
  8401. height: math.unit(88, "feet"),
  8402. default: true
  8403. },
  8404. {
  8405. name: "Megamacro",
  8406. height: math.unit(8, "miles")
  8407. },
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8412. {
  8413. front: {
  8414. height: math.unit(12 + 2 / 12, "feet"),
  8415. weight: math.unit(808, "lbs"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/prodigy/front.svg"
  8419. }
  8420. }
  8421. },
  8422. [
  8423. {
  8424. name: "Normal",
  8425. height: math.unit(12 + 2 / 12, "feet"),
  8426. default: true
  8427. },
  8428. {
  8429. name: "Macro",
  8430. height: math.unit(143, "feet")
  8431. },
  8432. {
  8433. name: "Macro+",
  8434. height: math.unit(400, "feet")
  8435. },
  8436. ]
  8437. ))
  8438. characterMakers.push(() => makeCharacter(
  8439. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8440. {
  8441. front: {
  8442. height: math.unit(6, "feet"),
  8443. weight: math.unit(225, "lbs"),
  8444. name: "Front",
  8445. image: {
  8446. source: "./media/characters/daniel/front.svg"
  8447. }
  8448. },
  8449. leaning: {
  8450. height: math.unit(6, "feet"),
  8451. weight: math.unit(225, "lbs"),
  8452. name: "Leaning",
  8453. image: {
  8454. source: "./media/characters/daniel/leaning.svg"
  8455. }
  8456. },
  8457. },
  8458. [
  8459. {
  8460. name: "Macro",
  8461. height: math.unit(1000, "feet"),
  8462. default: true
  8463. },
  8464. ]
  8465. ))
  8466. characterMakers.push(() => makeCharacter(
  8467. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8468. {
  8469. front: {
  8470. height: math.unit(6, "feet"),
  8471. weight: math.unit(88, "lbs"),
  8472. name: "Front",
  8473. image: {
  8474. source: "./media/characters/chiros/front.svg",
  8475. extra: 306 / 226
  8476. }
  8477. },
  8478. side: {
  8479. height: math.unit(6, "feet"),
  8480. weight: math.unit(88, "lbs"),
  8481. name: "Side",
  8482. image: {
  8483. source: "./media/characters/chiros/side.svg",
  8484. extra: 306 / 226
  8485. }
  8486. },
  8487. },
  8488. [
  8489. {
  8490. name: "Normal",
  8491. height: math.unit(6, "cm"),
  8492. default: true
  8493. },
  8494. ]
  8495. ))
  8496. characterMakers.push(() => makeCharacter(
  8497. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8498. {
  8499. front: {
  8500. height: math.unit(6, "feet"),
  8501. weight: math.unit(100, "lbs"),
  8502. name: "Front",
  8503. image: {
  8504. source: "./media/characters/selka/front.svg",
  8505. extra: 947 / 887
  8506. }
  8507. }
  8508. },
  8509. [
  8510. {
  8511. name: "Normal",
  8512. height: math.unit(5, "cm"),
  8513. default: true
  8514. },
  8515. ]
  8516. ))
  8517. characterMakers.push(() => makeCharacter(
  8518. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8519. {
  8520. front: {
  8521. height: math.unit(8 + 3 / 12, "feet"),
  8522. weight: math.unit(424, "lbs"),
  8523. name: "Front",
  8524. image: {
  8525. source: "./media/characters/verin/front.svg",
  8526. extra: 1845 / 1550
  8527. }
  8528. },
  8529. frontArmored: {
  8530. height: math.unit(8 + 3 / 12, "feet"),
  8531. weight: math.unit(424, "lbs"),
  8532. name: "Front (Armored)",
  8533. image: {
  8534. source: "./media/characters/verin/front-armor.svg",
  8535. extra: 1845 / 1550,
  8536. bottom: 0.01
  8537. }
  8538. },
  8539. back: {
  8540. height: math.unit(8 + 3 / 12, "feet"),
  8541. weight: math.unit(424, "lbs"),
  8542. name: "Back",
  8543. image: {
  8544. source: "./media/characters/verin/back.svg",
  8545. bottom: 0.1,
  8546. extra: 1
  8547. }
  8548. },
  8549. foot: {
  8550. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8551. name: "Foot",
  8552. image: {
  8553. source: "./media/characters/verin/foot.svg"
  8554. }
  8555. },
  8556. },
  8557. [
  8558. {
  8559. name: "Normal",
  8560. height: math.unit(8 + 3 / 12, "feet")
  8561. },
  8562. {
  8563. name: "Minimacro",
  8564. height: math.unit(21, "feet"),
  8565. default: true
  8566. },
  8567. {
  8568. name: "Macro",
  8569. height: math.unit(626, "feet")
  8570. },
  8571. ]
  8572. ))
  8573. characterMakers.push(() => makeCharacter(
  8574. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8575. {
  8576. front: {
  8577. height: math.unit(2.718, "meters"),
  8578. weight: math.unit(150, "lbs"),
  8579. name: "Front",
  8580. image: {
  8581. source: "./media/characters/sovrim-terraquian/front.svg",
  8582. extra: 1752/1689,
  8583. bottom: 36/1788
  8584. }
  8585. },
  8586. back: {
  8587. height: math.unit(2.718, "meters"),
  8588. weight: math.unit(150, "lbs"),
  8589. name: "Back",
  8590. image: {
  8591. source: "./media/characters/sovrim-terraquian/back.svg",
  8592. extra: 1698/1657,
  8593. bottom: 58/1756
  8594. }
  8595. },
  8596. tongue: {
  8597. height: math.unit(2.865, "feet"),
  8598. name: "Tongue",
  8599. image: {
  8600. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8601. }
  8602. },
  8603. hand: {
  8604. height: math.unit(1.61, "feet"),
  8605. name: "Hand",
  8606. image: {
  8607. source: "./media/characters/sovrim-terraquian/hand.svg"
  8608. }
  8609. },
  8610. foot: {
  8611. height: math.unit(1.05, "feet"),
  8612. name: "Foot",
  8613. image: {
  8614. source: "./media/characters/sovrim-terraquian/foot.svg"
  8615. }
  8616. },
  8617. footAlt: {
  8618. height: math.unit(0.88, "feet"),
  8619. name: "Foot (Alt)",
  8620. image: {
  8621. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8622. }
  8623. },
  8624. },
  8625. [
  8626. {
  8627. name: "Micro",
  8628. height: math.unit(2, "inches")
  8629. },
  8630. {
  8631. name: "Small",
  8632. height: math.unit(1, "meter")
  8633. },
  8634. {
  8635. name: "Normal",
  8636. height: math.unit(Math.E, "meters"),
  8637. default: true
  8638. },
  8639. {
  8640. name: "Macro",
  8641. height: math.unit(20, "meters")
  8642. },
  8643. {
  8644. name: "Macro+",
  8645. height: math.unit(400, "meters")
  8646. },
  8647. ]
  8648. ))
  8649. characterMakers.push(() => makeCharacter(
  8650. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8651. {
  8652. front: {
  8653. height: math.unit(7, "feet"),
  8654. weight: math.unit(489, "lbs"),
  8655. name: "Front",
  8656. image: {
  8657. source: "./media/characters/reece-silvermane/front.svg",
  8658. bottom: 0.02,
  8659. extra: 1
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Macro",
  8666. height: math.unit(1.5, "miles"),
  8667. default: true
  8668. },
  8669. ]
  8670. ))
  8671. characterMakers.push(() => makeCharacter(
  8672. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8673. {
  8674. front: {
  8675. height: math.unit(6, "feet"),
  8676. weight: math.unit(78, "kg"),
  8677. name: "Front",
  8678. image: {
  8679. source: "./media/characters/kane/front.svg",
  8680. extra: 978 / 899
  8681. }
  8682. },
  8683. },
  8684. [
  8685. {
  8686. name: "Normal",
  8687. height: math.unit(2.1, "m"),
  8688. },
  8689. {
  8690. name: "Macro",
  8691. height: math.unit(1, "km"),
  8692. default: true
  8693. },
  8694. ]
  8695. ))
  8696. characterMakers.push(() => makeCharacter(
  8697. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8698. {
  8699. front: {
  8700. height: math.unit(6, "feet"),
  8701. weight: math.unit(200, "kg"),
  8702. name: "Front",
  8703. image: {
  8704. source: "./media/characters/tegon/front.svg",
  8705. bottom: 0.01,
  8706. extra: 1
  8707. }
  8708. },
  8709. },
  8710. [
  8711. {
  8712. name: "Micro",
  8713. height: math.unit(1, "inch")
  8714. },
  8715. {
  8716. name: "Normal",
  8717. height: math.unit(6 + 3 / 12, "feet"),
  8718. default: true
  8719. },
  8720. {
  8721. name: "Macro",
  8722. height: math.unit(300, "feet")
  8723. },
  8724. {
  8725. name: "Megamacro",
  8726. height: math.unit(69, "miles")
  8727. },
  8728. ]
  8729. ))
  8730. characterMakers.push(() => makeCharacter(
  8731. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8732. {
  8733. side: {
  8734. height: math.unit(6, "feet"),
  8735. weight: math.unit(2304, "lbs"),
  8736. name: "Side",
  8737. image: {
  8738. source: "./media/characters/arcturax/side.svg",
  8739. extra: 790 / 376,
  8740. bottom: 0.01
  8741. }
  8742. },
  8743. },
  8744. [
  8745. {
  8746. name: "Micro",
  8747. height: math.unit(2, "inch")
  8748. },
  8749. {
  8750. name: "Normal",
  8751. height: math.unit(6, "feet")
  8752. },
  8753. {
  8754. name: "Macro",
  8755. height: math.unit(39, "feet"),
  8756. default: true
  8757. },
  8758. {
  8759. name: "Megamacro",
  8760. height: math.unit(7, "miles")
  8761. },
  8762. ]
  8763. ))
  8764. characterMakers.push(() => makeCharacter(
  8765. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8766. {
  8767. front: {
  8768. height: math.unit(6, "feet"),
  8769. weight: math.unit(50, "lbs"),
  8770. name: "Front",
  8771. image: {
  8772. source: "./media/characters/sentri/front.svg",
  8773. extra: 1750 / 1570,
  8774. bottom: 0.025
  8775. }
  8776. },
  8777. frontAlt: {
  8778. height: math.unit(6, "feet"),
  8779. weight: math.unit(50, "lbs"),
  8780. name: "Front (Alt)",
  8781. image: {
  8782. source: "./media/characters/sentri/front-alt.svg",
  8783. extra: 1750 / 1570,
  8784. bottom: 0.025
  8785. }
  8786. },
  8787. },
  8788. [
  8789. {
  8790. name: "Normal",
  8791. height: math.unit(15, "feet"),
  8792. default: true
  8793. },
  8794. {
  8795. name: "Macro",
  8796. height: math.unit(2500, "feet")
  8797. }
  8798. ]
  8799. ))
  8800. characterMakers.push(() => makeCharacter(
  8801. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8802. {
  8803. front: {
  8804. height: math.unit(5 + 8 / 12, "feet"),
  8805. weight: math.unit(130, "lbs"),
  8806. name: "Front",
  8807. image: {
  8808. source: "./media/characters/corvin/front.svg",
  8809. extra: 1803 / 1629
  8810. }
  8811. },
  8812. frontShirt: {
  8813. height: math.unit(5 + 8 / 12, "feet"),
  8814. weight: math.unit(130, "lbs"),
  8815. name: "Front (Shirt)",
  8816. image: {
  8817. source: "./media/characters/corvin/front-shirt.svg",
  8818. extra: 1803 / 1629
  8819. }
  8820. },
  8821. frontPoncho: {
  8822. height: math.unit(5 + 8 / 12, "feet"),
  8823. weight: math.unit(130, "lbs"),
  8824. name: "Front (Poncho)",
  8825. image: {
  8826. source: "./media/characters/corvin/front-poncho.svg",
  8827. extra: 1803 / 1629
  8828. }
  8829. },
  8830. side: {
  8831. height: math.unit(5 + 8 / 12, "feet"),
  8832. weight: math.unit(130, "lbs"),
  8833. name: "Side",
  8834. image: {
  8835. source: "./media/characters/corvin/side.svg",
  8836. extra: 1012 / 945
  8837. }
  8838. },
  8839. back: {
  8840. height: math.unit(5 + 8 / 12, "feet"),
  8841. weight: math.unit(130, "lbs"),
  8842. name: "Back",
  8843. image: {
  8844. source: "./media/characters/corvin/back.svg",
  8845. extra: 1803 / 1629
  8846. }
  8847. },
  8848. },
  8849. [
  8850. {
  8851. name: "Micro",
  8852. height: math.unit(3, "inches")
  8853. },
  8854. {
  8855. name: "Normal",
  8856. height: math.unit(5 + 8 / 12, "feet")
  8857. },
  8858. {
  8859. name: "Macro",
  8860. height: math.unit(300, "feet"),
  8861. default: true
  8862. },
  8863. {
  8864. name: "Megamacro",
  8865. height: math.unit(500, "miles")
  8866. }
  8867. ]
  8868. ))
  8869. characterMakers.push(() => makeCharacter(
  8870. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8871. {
  8872. front: {
  8873. height: math.unit(6, "feet"),
  8874. weight: math.unit(135, "lbs"),
  8875. name: "Front",
  8876. image: {
  8877. source: "./media/characters/q/front.svg",
  8878. extra: 854 / 752,
  8879. bottom: 0.005
  8880. }
  8881. },
  8882. back: {
  8883. height: math.unit(6, "feet"),
  8884. weight: math.unit(130, "lbs"),
  8885. name: "Back",
  8886. image: {
  8887. source: "./media/characters/q/back.svg",
  8888. extra: 854 / 752
  8889. }
  8890. },
  8891. },
  8892. [
  8893. {
  8894. name: "Macro",
  8895. height: math.unit(90, "feet"),
  8896. default: true
  8897. },
  8898. {
  8899. name: "Extra Macro",
  8900. height: math.unit(300, "feet"),
  8901. },
  8902. {
  8903. name: "BIG WALF",
  8904. height: math.unit(750, "feet"),
  8905. },
  8906. ]
  8907. ))
  8908. characterMakers.push(() => makeCharacter(
  8909. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8910. {
  8911. front: {
  8912. height: math.unit(3, "feet"),
  8913. weight: math.unit(28, "lbs"),
  8914. name: "Front",
  8915. image: {
  8916. source: "./media/characters/citrine/front.svg"
  8917. }
  8918. }
  8919. },
  8920. [
  8921. {
  8922. name: "Normal",
  8923. height: math.unit(3, "feet"),
  8924. default: true
  8925. }
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8930. {
  8931. front: {
  8932. height: math.unit(14, "feet"),
  8933. weight: math.unit(1450, "kg"),
  8934. preyCapacity: math.unit(15, "people"),
  8935. name: "Front",
  8936. image: {
  8937. source: "./media/characters/aura-starwind/front.svg",
  8938. extra: 1440/1327,
  8939. bottom: 11/1451
  8940. }
  8941. },
  8942. side: {
  8943. height: math.unit(14, "feet"),
  8944. weight: math.unit(1450, "kg"),
  8945. preyCapacity: math.unit(15, "people"),
  8946. name: "Side",
  8947. image: {
  8948. source: "./media/characters/aura-starwind/side.svg",
  8949. extra: 1654 / 1497
  8950. }
  8951. },
  8952. taur: {
  8953. height: math.unit(18, "feet"),
  8954. weight: math.unit(5500, "kg"),
  8955. preyCapacity: math.unit(50, "people"),
  8956. name: "Taur",
  8957. image: {
  8958. source: "./media/characters/aura-starwind/taur.svg",
  8959. extra: 1760 / 1650
  8960. }
  8961. },
  8962. feral: {
  8963. height: math.unit(46, "feet"),
  8964. weight: math.unit(25000, "kg"),
  8965. preyCapacity: math.unit(120, "people"),
  8966. name: "Feral",
  8967. image: {
  8968. source: "./media/characters/aura-starwind/feral.svg"
  8969. }
  8970. },
  8971. },
  8972. [
  8973. {
  8974. name: "Normal",
  8975. height: math.unit(14, "feet"),
  8976. default: true
  8977. },
  8978. {
  8979. name: "Macro",
  8980. height: math.unit(50, "meters")
  8981. },
  8982. {
  8983. name: "Megamacro",
  8984. height: math.unit(5000, "meters")
  8985. },
  8986. {
  8987. name: "Gigamacro",
  8988. height: math.unit(100000, "kilometers")
  8989. },
  8990. ]
  8991. ))
  8992. characterMakers.push(() => makeCharacter(
  8993. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8994. {
  8995. front: {
  8996. height: math.unit(2 + 7 / 12, "feet"),
  8997. weight: math.unit(32, "lbs"),
  8998. name: "Front",
  8999. image: {
  9000. source: "./media/characters/rivet/front.svg",
  9001. extra: 1716 / 1658,
  9002. bottom: 0.03
  9003. }
  9004. },
  9005. foot: {
  9006. height: math.unit(0.551, "feet"),
  9007. name: "Rivet's Foot",
  9008. image: {
  9009. source: "./media/characters/rivet/foot.svg"
  9010. },
  9011. rename: true
  9012. }
  9013. },
  9014. [
  9015. {
  9016. name: "Micro",
  9017. height: math.unit(1.5, "inches"),
  9018. },
  9019. {
  9020. name: "Normal",
  9021. height: math.unit(2 + 7 / 12, "feet"),
  9022. default: true
  9023. },
  9024. {
  9025. name: "Macro",
  9026. height: math.unit(85, "feet")
  9027. },
  9028. {
  9029. name: "Megamacro",
  9030. height: math.unit(2.2, "km")
  9031. }
  9032. ]
  9033. ))
  9034. characterMakers.push(() => makeCharacter(
  9035. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9036. {
  9037. front: {
  9038. height: math.unit(5 + 9 / 12, "feet"),
  9039. weight: math.unit(150, "lbs"),
  9040. name: "Front",
  9041. image: {
  9042. source: "./media/characters/coffee/front.svg",
  9043. extra: 946/880,
  9044. bottom: 66/1012
  9045. }
  9046. },
  9047. foot: {
  9048. height: math.unit(1.29, "feet"),
  9049. name: "Foot",
  9050. image: {
  9051. source: "./media/characters/coffee/foot.svg"
  9052. }
  9053. },
  9054. },
  9055. [
  9056. {
  9057. name: "Micro",
  9058. height: math.unit(2, "inches"),
  9059. },
  9060. {
  9061. name: "Normal",
  9062. height: math.unit(5 + 9 / 12, "feet"),
  9063. default: true
  9064. },
  9065. {
  9066. name: "Macro",
  9067. height: math.unit(800, "feet")
  9068. },
  9069. {
  9070. name: "Megamacro",
  9071. height: math.unit(25, "miles")
  9072. }
  9073. ]
  9074. ))
  9075. characterMakers.push(() => makeCharacter(
  9076. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9077. {
  9078. front: {
  9079. height: math.unit(6, "feet"),
  9080. weight: math.unit(200, "lbs"),
  9081. name: "Front",
  9082. image: {
  9083. source: "./media/characters/chari-gal/front.svg",
  9084. extra: 1568 / 1385,
  9085. bottom: 0.047
  9086. }
  9087. },
  9088. gigantamax: {
  9089. height: math.unit(6 * 16, "feet"),
  9090. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9091. name: "Gigantamax",
  9092. image: {
  9093. source: "./media/characters/chari-gal/gigantamax.svg",
  9094. extra: 1124 / 888,
  9095. bottom: 0.03
  9096. }
  9097. },
  9098. },
  9099. [
  9100. {
  9101. name: "Normal",
  9102. height: math.unit(5 + 7 / 12, "feet")
  9103. },
  9104. {
  9105. name: "Macro",
  9106. height: math.unit(200, "feet"),
  9107. default: true
  9108. }
  9109. ]
  9110. ))
  9111. characterMakers.push(() => makeCharacter(
  9112. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9113. {
  9114. front: {
  9115. height: math.unit(6, "feet"),
  9116. weight: math.unit(150, "lbs"),
  9117. name: "Front",
  9118. image: {
  9119. source: "./media/characters/nova/front.svg",
  9120. extra: 5000 / 4722,
  9121. bottom: 0.02
  9122. }
  9123. }
  9124. },
  9125. [
  9126. {
  9127. name: "Micro-",
  9128. height: math.unit(0.8, "inches")
  9129. },
  9130. {
  9131. name: "Micro",
  9132. height: math.unit(2, "inches"),
  9133. default: true
  9134. },
  9135. ]
  9136. ))
  9137. characterMakers.push(() => makeCharacter(
  9138. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9139. {
  9140. koboldFront: {
  9141. height: math.unit(3 + 1 / 12, "feet"),
  9142. weight: math.unit(21.7, "lbs"),
  9143. name: "Front",
  9144. image: {
  9145. source: "./media/characters/argent/kobold-front.svg",
  9146. extra: 1471 / 1331,
  9147. bottom: 100.8 / 1575.5
  9148. },
  9149. form: "kobold",
  9150. default: true
  9151. },
  9152. dragonFront: {
  9153. height: math.unit(75, "inches"),
  9154. name: "Front",
  9155. image: {
  9156. source: "./media/characters/argent/dragon-front.svg",
  9157. extra: 1389/1248,
  9158. bottom: 54/1443
  9159. },
  9160. form: "dragon",
  9161. },
  9162. dragonBack: {
  9163. height: math.unit(75, "inches"),
  9164. name: "Back",
  9165. image: {
  9166. source: "./media/characters/argent/dragon-back.svg",
  9167. extra: 1399/1271,
  9168. bottom: 23/1422
  9169. },
  9170. form: "dragon",
  9171. },
  9172. dragonDressed: {
  9173. height: math.unit(75, "inches"),
  9174. name: "Dressed",
  9175. image: {
  9176. source: "./media/characters/argent/dragon-dressed.svg",
  9177. extra: 1350/1215,
  9178. bottom: 26/1376
  9179. },
  9180. form: "dragon"
  9181. },
  9182. dragonHead: {
  9183. height: math.unit(23.5, "inches"),
  9184. name: "Head",
  9185. image: {
  9186. source: "./media/characters/argent/dragon-head.svg"
  9187. },
  9188. form: "dragon",
  9189. },
  9190. },
  9191. [
  9192. {
  9193. name: "Micro",
  9194. height: math.unit(2, "inches"),
  9195. form: "kobold",
  9196. },
  9197. {
  9198. name: "Normal",
  9199. height: math.unit(3 + 1 / 12, "feet"),
  9200. form: "kobold",
  9201. default: true
  9202. },
  9203. {
  9204. name: "Macro",
  9205. height: math.unit(120, "feet"),
  9206. form: "kobold",
  9207. },
  9208. {
  9209. name: "Speck",
  9210. height: math.unit(1, "mm"),
  9211. form: "dragon",
  9212. },
  9213. {
  9214. name: "Tiny",
  9215. height: math.unit(1, "cm"),
  9216. form: "dragon",
  9217. },
  9218. {
  9219. name: "Micro",
  9220. height: math.unit(5, "cm"),
  9221. form: "dragon",
  9222. },
  9223. {
  9224. name: "Normal",
  9225. height: math.unit(75, "inches"),
  9226. form: "dragon",
  9227. default: true
  9228. },
  9229. {
  9230. name: "Extra Tall",
  9231. height: math.unit(9, "feet"),
  9232. form: "dragon",
  9233. },
  9234. {
  9235. name: "Inconvenient",
  9236. height: math.unit(5, "meters"),
  9237. form: "dragon",
  9238. },
  9239. {
  9240. name: "Macro",
  9241. height: math.unit(70, "meters"),
  9242. form: "dragon",
  9243. },
  9244. {
  9245. name: "Macro+",
  9246. height: math.unit(250, "meters"),
  9247. form: "dragon",
  9248. },
  9249. {
  9250. name: "Megamacro",
  9251. height: math.unit(20, "km"),
  9252. form: "dragon",
  9253. },
  9254. {
  9255. name: "Mountainous",
  9256. height: math.unit(100, "km"),
  9257. form: "dragon",
  9258. },
  9259. {
  9260. name: "Continental",
  9261. height: math.unit(2, "megameters"),
  9262. form: "dragon",
  9263. },
  9264. {
  9265. name: "Too Big",
  9266. height: math.unit(900, "megameters"),
  9267. form: "dragon",
  9268. },
  9269. ],
  9270. {
  9271. "kobold": {
  9272. name: "Kobold",
  9273. default: true
  9274. },
  9275. "dragon": {
  9276. name: "Dragon",
  9277. },
  9278. }
  9279. ))
  9280. characterMakers.push(() => makeCharacter(
  9281. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9282. {
  9283. lamp: {
  9284. height: math.unit(7 * 1559 / 989, "feet"),
  9285. name: "Magic Lamp",
  9286. image: {
  9287. source: "./media/characters/mira-al-cul/lamp.svg",
  9288. extra: 1617 / 1559
  9289. }
  9290. },
  9291. front: {
  9292. height: math.unit(7, "feet"),
  9293. name: "Front",
  9294. image: {
  9295. source: "./media/characters/mira-al-cul/front.svg",
  9296. extra: 1044 / 990
  9297. }
  9298. },
  9299. },
  9300. [
  9301. {
  9302. name: "Heavily Restricted",
  9303. height: math.unit(7 * 1559 / 989, "feet")
  9304. },
  9305. {
  9306. name: "Freshly Freed",
  9307. height: math.unit(50 * 1559 / 989, "feet")
  9308. },
  9309. {
  9310. name: "World Encompassing",
  9311. height: math.unit(10000 * 1559 / 989, "miles")
  9312. },
  9313. {
  9314. name: "Galactic",
  9315. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9316. },
  9317. {
  9318. name: "Palmed Universe",
  9319. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9320. default: true
  9321. },
  9322. {
  9323. name: "Multiversal Matriarch",
  9324. height: math.unit(8.87e10, "yottameters")
  9325. },
  9326. {
  9327. name: "Void Mother",
  9328. height: math.unit(3.14e110, "yottaparsecs")
  9329. },
  9330. {
  9331. name: "Toying with Transcendence",
  9332. height: math.unit(1e307, "meters")
  9333. },
  9334. ]
  9335. ))
  9336. characterMakers.push(() => makeCharacter(
  9337. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9338. {
  9339. front: {
  9340. height: math.unit(17 + 1 / 12, "feet"),
  9341. weight: math.unit(476.2 * 5, "lbs"),
  9342. name: "Front",
  9343. image: {
  9344. source: "./media/characters/kuro-shi-uchū/front.svg",
  9345. extra: 2329 / 1835,
  9346. bottom: 0.02
  9347. }
  9348. },
  9349. },
  9350. [
  9351. {
  9352. name: "Micro",
  9353. height: math.unit(2, "inches")
  9354. },
  9355. {
  9356. name: "Normal",
  9357. height: math.unit(12, "meters")
  9358. },
  9359. {
  9360. name: "Planetary",
  9361. height: math.unit(0.00929, "AU"),
  9362. default: true
  9363. },
  9364. {
  9365. name: "Universal",
  9366. height: math.unit(20, "gigaparsecs")
  9367. },
  9368. ]
  9369. ))
  9370. characterMakers.push(() => makeCharacter(
  9371. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9372. {
  9373. front: {
  9374. height: math.unit(5 + 2 / 12, "feet"),
  9375. weight: math.unit(120, "lbs"),
  9376. name: "Front",
  9377. image: {
  9378. source: "./media/characters/katherine/front.svg",
  9379. extra: 2075 / 1969
  9380. }
  9381. },
  9382. dress: {
  9383. height: math.unit(5 + 2 / 12, "feet"),
  9384. weight: math.unit(120, "lbs"),
  9385. name: "Dress",
  9386. image: {
  9387. source: "./media/characters/katherine/dress.svg",
  9388. extra: 2258 / 2064
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Micro",
  9395. height: math.unit(1, "inches"),
  9396. default: true
  9397. },
  9398. {
  9399. name: "Normal",
  9400. height: math.unit(5 + 2 / 12, "feet")
  9401. },
  9402. {
  9403. name: "Macro",
  9404. height: math.unit(100, "meters")
  9405. },
  9406. {
  9407. name: "Megamacro",
  9408. height: math.unit(80, "miles")
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9414. {
  9415. front: {
  9416. height: math.unit(7 + 8 / 12, "feet"),
  9417. weight: math.unit(250, "lbs"),
  9418. name: "Front",
  9419. image: {
  9420. source: "./media/characters/yevis/front.svg",
  9421. extra: 1938 / 1755
  9422. }
  9423. }
  9424. },
  9425. [
  9426. {
  9427. name: "Mortal",
  9428. height: math.unit(7 + 8 / 12, "feet")
  9429. },
  9430. {
  9431. name: "Battle",
  9432. height: math.unit(25 + 11 / 12, "feet")
  9433. },
  9434. {
  9435. name: "Wrath",
  9436. height: math.unit(1654 + 11 / 12, "feet")
  9437. },
  9438. {
  9439. name: "Planet Destroyer",
  9440. height: math.unit(12000, "miles")
  9441. },
  9442. {
  9443. name: "Galaxy Conqueror",
  9444. height: math.unit(1.45, "zettameters"),
  9445. default: true
  9446. },
  9447. {
  9448. name: "Universal War",
  9449. height: math.unit(184, "gigaparsecs")
  9450. },
  9451. {
  9452. name: "Eternity War",
  9453. height: math.unit(1.98e55, "yottaparsecs")
  9454. },
  9455. ]
  9456. ))
  9457. characterMakers.push(() => makeCharacter(
  9458. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9459. {
  9460. front: {
  9461. height: math.unit(5 + 8 / 12, "feet"),
  9462. weight: math.unit(63, "kg"),
  9463. name: "Front",
  9464. image: {
  9465. source: "./media/characters/xavier/front.svg",
  9466. extra: 944 / 883
  9467. }
  9468. },
  9469. frontStretch: {
  9470. height: math.unit(5 + 8 / 12, "feet"),
  9471. weight: math.unit(63, "kg"),
  9472. name: "Stretching",
  9473. image: {
  9474. source: "./media/characters/xavier/front-stretch.svg",
  9475. extra: 962 / 820
  9476. }
  9477. },
  9478. },
  9479. [
  9480. {
  9481. name: "Normal",
  9482. height: math.unit(5 + 8 / 12, "feet")
  9483. },
  9484. {
  9485. name: "Macro",
  9486. height: math.unit(100, "meters"),
  9487. default: true
  9488. },
  9489. {
  9490. name: "McLargeHuge",
  9491. height: math.unit(10, "miles")
  9492. },
  9493. ]
  9494. ))
  9495. characterMakers.push(() => makeCharacter(
  9496. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9497. {
  9498. front: {
  9499. height: math.unit(5 + 5 / 12, "feet"),
  9500. weight: math.unit(150, "lb"),
  9501. name: "Front",
  9502. image: {
  9503. source: "./media/characters/joshii/front.svg",
  9504. extra: 765 / 653,
  9505. bottom: 51 / 816
  9506. }
  9507. },
  9508. foot: {
  9509. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9510. name: "Foot",
  9511. image: {
  9512. source: "./media/characters/joshii/foot.svg"
  9513. }
  9514. },
  9515. },
  9516. [
  9517. {
  9518. name: "Micro",
  9519. height: math.unit(2, "inches")
  9520. },
  9521. {
  9522. name: "Normal",
  9523. height: math.unit(5 + 5 / 12, "feet")
  9524. },
  9525. {
  9526. name: "Macro",
  9527. height: math.unit(785, "feet"),
  9528. default: true
  9529. },
  9530. {
  9531. name: "Megamacro",
  9532. height: math.unit(24.5, "miles")
  9533. },
  9534. ]
  9535. ))
  9536. characterMakers.push(() => makeCharacter(
  9537. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9538. {
  9539. front: {
  9540. height: math.unit(6, "feet"),
  9541. weight: math.unit(150, "lb"),
  9542. name: "Front",
  9543. image: {
  9544. source: "./media/characters/goddess-elizabeth/front.svg",
  9545. extra: 1800 / 1525,
  9546. bottom: 0.005
  9547. }
  9548. },
  9549. foot: {
  9550. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9551. name: "Foot",
  9552. image: {
  9553. source: "./media/characters/goddess-elizabeth/foot.svg"
  9554. }
  9555. },
  9556. mouth: {
  9557. height: math.unit(6, "feet"),
  9558. name: "Mouth",
  9559. image: {
  9560. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9561. }
  9562. },
  9563. },
  9564. [
  9565. {
  9566. name: "Micro",
  9567. height: math.unit(12, "feet")
  9568. },
  9569. {
  9570. name: "Normal",
  9571. height: math.unit(80, "miles"),
  9572. default: true
  9573. },
  9574. {
  9575. name: "Macro",
  9576. height: math.unit(15000, "parsecs")
  9577. },
  9578. ]
  9579. ))
  9580. characterMakers.push(() => makeCharacter(
  9581. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9582. {
  9583. front: {
  9584. height: math.unit(5 + 9 / 12, "feet"),
  9585. weight: math.unit(144, "lb"),
  9586. name: "Front",
  9587. image: {
  9588. source: "./media/characters/kara/front.svg"
  9589. }
  9590. },
  9591. feet: {
  9592. height: math.unit(6 / 6.765, "feet"),
  9593. name: "Kara's Feet",
  9594. rename: true,
  9595. image: {
  9596. source: "./media/characters/kara/feet.svg"
  9597. }
  9598. },
  9599. },
  9600. [
  9601. {
  9602. name: "Normal",
  9603. height: math.unit(5 + 9 / 12, "feet")
  9604. },
  9605. {
  9606. name: "Macro",
  9607. height: math.unit(174, "feet"),
  9608. default: true
  9609. },
  9610. ]
  9611. ))
  9612. characterMakers.push(() => makeCharacter(
  9613. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9614. {
  9615. front: {
  9616. height: math.unit(18, "feet"),
  9617. weight: math.unit(4050, "lb"),
  9618. name: "Front",
  9619. image: {
  9620. source: "./media/characters/tyrone/front.svg",
  9621. extra: 2405 / 2270,
  9622. bottom: 182 / 2587
  9623. }
  9624. },
  9625. },
  9626. [
  9627. {
  9628. name: "Normal",
  9629. height: math.unit(18, "feet"),
  9630. default: true
  9631. },
  9632. {
  9633. name: "Macro",
  9634. height: math.unit(300, "feet")
  9635. },
  9636. {
  9637. name: "Megamacro",
  9638. height: math.unit(15, "km")
  9639. },
  9640. {
  9641. name: "Gigamacro",
  9642. height: math.unit(500, "km")
  9643. },
  9644. {
  9645. name: "Teramacro",
  9646. height: math.unit(0.5, "gigameters")
  9647. },
  9648. {
  9649. name: "Omnimacro",
  9650. height: math.unit(1e252, "yottauniverse")
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9656. {
  9657. front: {
  9658. height: math.unit(7 + 8 / 12, "feet"),
  9659. weight: math.unit(120, "lb"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/danny/front.svg",
  9663. extra: 1490 / 1350
  9664. }
  9665. },
  9666. back: {
  9667. height: math.unit(7 + 8 / 12, "feet"),
  9668. weight: math.unit(120, "lb"),
  9669. name: "Back",
  9670. image: {
  9671. source: "./media/characters/danny/back.svg",
  9672. extra: 1490 / 1350
  9673. }
  9674. },
  9675. },
  9676. [
  9677. {
  9678. name: "Normal",
  9679. height: math.unit(7 + 8 / 12, "feet"),
  9680. default: true
  9681. },
  9682. ]
  9683. ))
  9684. characterMakers.push(() => makeCharacter(
  9685. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9686. {
  9687. front: {
  9688. height: math.unit(3.5, "inches"),
  9689. weight: math.unit(19, "grams"),
  9690. name: "Front",
  9691. image: {
  9692. source: "./media/characters/mallow/front.svg",
  9693. extra: 471 / 431
  9694. }
  9695. },
  9696. back: {
  9697. height: math.unit(3.5, "inches"),
  9698. weight: math.unit(19, "grams"),
  9699. name: "Back",
  9700. image: {
  9701. source: "./media/characters/mallow/back.svg",
  9702. extra: 471 / 431
  9703. }
  9704. },
  9705. },
  9706. [
  9707. {
  9708. name: "Normal",
  9709. height: math.unit(3.5, "inches"),
  9710. default: true
  9711. },
  9712. ]
  9713. ))
  9714. characterMakers.push(() => makeCharacter(
  9715. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9716. {
  9717. front: {
  9718. height: math.unit(9, "feet"),
  9719. weight: math.unit(230, "kg"),
  9720. name: "Front",
  9721. image: {
  9722. source: "./media/characters/starry-aqua/front.svg"
  9723. }
  9724. },
  9725. back: {
  9726. height: math.unit(9, "feet"),
  9727. weight: math.unit(230, "kg"),
  9728. name: "Back",
  9729. image: {
  9730. source: "./media/characters/starry-aqua/back.svg"
  9731. }
  9732. },
  9733. hand: {
  9734. height: math.unit(9 * 0.1168, "feet"),
  9735. name: "Hand",
  9736. image: {
  9737. source: "./media/characters/starry-aqua/hand.svg"
  9738. }
  9739. },
  9740. foot: {
  9741. height: math.unit(9 * 0.18, "feet"),
  9742. name: "Foot",
  9743. image: {
  9744. source: "./media/characters/starry-aqua/foot.svg"
  9745. }
  9746. }
  9747. },
  9748. [
  9749. {
  9750. name: "Micro",
  9751. height: math.unit(3, "inches")
  9752. },
  9753. {
  9754. name: "Normal",
  9755. height: math.unit(9, "feet")
  9756. },
  9757. {
  9758. name: "Macro",
  9759. height: math.unit(300, "feet"),
  9760. default: true
  9761. },
  9762. {
  9763. name: "Megamacro",
  9764. height: math.unit(3200, "feet")
  9765. }
  9766. ]
  9767. ))
  9768. characterMakers.push(() => makeCharacter(
  9769. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9770. {
  9771. front: {
  9772. height: math.unit(15, "feet"),
  9773. weight: math.unit(5026, "lb"),
  9774. name: "Front",
  9775. image: {
  9776. source: "./media/characters/luka-towers/front.svg",
  9777. extra: 1269/1133,
  9778. bottom: 51/1320
  9779. }
  9780. },
  9781. },
  9782. [
  9783. {
  9784. name: "Normal",
  9785. height: math.unit(15, "feet"),
  9786. default: true
  9787. },
  9788. {
  9789. name: "Minimacro",
  9790. height: math.unit(25, "feet")
  9791. },
  9792. {
  9793. name: "Macro",
  9794. height: math.unit(320, "feet")
  9795. },
  9796. {
  9797. name: "Megamacro",
  9798. height: math.unit(35000, "feet")
  9799. },
  9800. {
  9801. name: "Gigamacro",
  9802. height: math.unit(4000, "miles")
  9803. },
  9804. {
  9805. name: "Teramacro",
  9806. height: math.unit(15000, "miles")
  9807. },
  9808. ]
  9809. ))
  9810. characterMakers.push(() => makeCharacter(
  9811. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9812. {
  9813. front: {
  9814. height: math.unit(6, "feet"),
  9815. weight: math.unit(150, "lb"),
  9816. name: "Front",
  9817. image: {
  9818. source: "./media/characters/natalie-nightring/front.svg",
  9819. extra: 1,
  9820. bottom: 0.06
  9821. }
  9822. },
  9823. },
  9824. [
  9825. {
  9826. name: "Uh Oh",
  9827. height: math.unit(0.1, "mm")
  9828. },
  9829. {
  9830. name: "Small",
  9831. height: math.unit(3, "inches")
  9832. },
  9833. {
  9834. name: "Human Scale",
  9835. height: math.unit(6, "feet")
  9836. },
  9837. {
  9838. name: "Librarian",
  9839. height: math.unit(50, "feet"),
  9840. default: true
  9841. },
  9842. {
  9843. name: "Immense",
  9844. height: math.unit(200, "miles")
  9845. },
  9846. ]
  9847. ))
  9848. characterMakers.push(() => makeCharacter(
  9849. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9850. {
  9851. front: {
  9852. height: math.unit(6, "feet"),
  9853. weight: math.unit(180, "lbs"),
  9854. name: "Front",
  9855. image: {
  9856. source: "./media/characters/danni-rosie/front.svg",
  9857. extra: 1260 / 1128,
  9858. bottom: 0.022
  9859. }
  9860. },
  9861. },
  9862. [
  9863. {
  9864. name: "Micro",
  9865. height: math.unit(2, "inches"),
  9866. default: true
  9867. },
  9868. ]
  9869. ))
  9870. characterMakers.push(() => makeCharacter(
  9871. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9872. {
  9873. front: {
  9874. height: math.unit(5 + 9 / 12, "feet"),
  9875. weight: math.unit(220, "lb"),
  9876. name: "Front",
  9877. image: {
  9878. source: "./media/characters/samantha-kruse/front.svg",
  9879. extra: (985 / 935),
  9880. bottom: 0.03
  9881. }
  9882. },
  9883. frontUndressed: {
  9884. height: math.unit(5 + 9 / 12, "feet"),
  9885. weight: math.unit(220, "lb"),
  9886. name: "Front (Undressed)",
  9887. image: {
  9888. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9889. extra: (973 / 923),
  9890. bottom: 0.025
  9891. }
  9892. },
  9893. fat: {
  9894. height: math.unit(5 + 9 / 12, "feet"),
  9895. weight: math.unit(900, "lb"),
  9896. name: "Front (Fat)",
  9897. image: {
  9898. source: "./media/characters/samantha-kruse/fat.svg",
  9899. extra: 2688 / 2561
  9900. }
  9901. },
  9902. },
  9903. [
  9904. {
  9905. name: "Normal",
  9906. height: math.unit(5 + 9 / 12, "feet"),
  9907. default: true
  9908. }
  9909. ]
  9910. ))
  9911. characterMakers.push(() => makeCharacter(
  9912. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9913. {
  9914. back: {
  9915. height: math.unit(5 + 4 / 12, "feet"),
  9916. weight: math.unit(4963, "lb"),
  9917. name: "Back",
  9918. image: {
  9919. source: "./media/characters/amelia-rosie/back.svg",
  9920. extra: 1113 / 963,
  9921. bottom: 0.01
  9922. }
  9923. },
  9924. },
  9925. [
  9926. {
  9927. name: "Level 0",
  9928. height: math.unit(5 + 4 / 12, "feet")
  9929. },
  9930. {
  9931. name: "Level 1",
  9932. height: math.unit(164597, "feet"),
  9933. default: true
  9934. },
  9935. {
  9936. name: "Level 2",
  9937. height: math.unit(956243, "miles")
  9938. },
  9939. {
  9940. name: "Level 3",
  9941. height: math.unit(29421709423, "miles")
  9942. },
  9943. {
  9944. name: "Level 4",
  9945. height: math.unit(154, "lightyears")
  9946. },
  9947. {
  9948. name: "Level 5",
  9949. height: math.unit(4738272, "lightyears")
  9950. },
  9951. {
  9952. name: "Level 6",
  9953. height: math.unit(145787152896, "lightyears")
  9954. },
  9955. ]
  9956. ))
  9957. characterMakers.push(() => makeCharacter(
  9958. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9959. {
  9960. front: {
  9961. height: math.unit(5 + 11 / 12, "feet"),
  9962. weight: math.unit(65, "kg"),
  9963. name: "Front",
  9964. image: {
  9965. source: "./media/characters/rook-kitara/front.svg",
  9966. extra: 1347 / 1274,
  9967. bottom: 0.005
  9968. }
  9969. },
  9970. },
  9971. [
  9972. {
  9973. name: "Totally Unfair",
  9974. height: math.unit(1.8, "mm")
  9975. },
  9976. {
  9977. name: "Lap Rookie",
  9978. height: math.unit(1.4, "feet")
  9979. },
  9980. {
  9981. name: "Normal",
  9982. height: math.unit(5 + 11 / 12, "feet"),
  9983. default: true
  9984. },
  9985. {
  9986. name: "How Did This Happen",
  9987. height: math.unit(80, "miles")
  9988. }
  9989. ]
  9990. ))
  9991. characterMakers.push(() => makeCharacter(
  9992. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9993. {
  9994. front: {
  9995. height: math.unit(7, "feet"),
  9996. weight: math.unit(300, "lb"),
  9997. name: "Front",
  9998. image: {
  9999. source: "./media/characters/pisces/front.svg",
  10000. extra: 2255 / 2115,
  10001. bottom: 0.03
  10002. }
  10003. },
  10004. back: {
  10005. height: math.unit(7, "feet"),
  10006. weight: math.unit(300, "lb"),
  10007. name: "Back",
  10008. image: {
  10009. source: "./media/characters/pisces/back.svg",
  10010. extra: 2146 / 2055,
  10011. bottom: 0.04
  10012. }
  10013. },
  10014. },
  10015. [
  10016. {
  10017. name: "Normal",
  10018. height: math.unit(7, "feet"),
  10019. default: true
  10020. },
  10021. {
  10022. name: "Swimming Pool",
  10023. height: math.unit(12.2, "meters")
  10024. },
  10025. {
  10026. name: "Olympic Swimming Pool",
  10027. height: math.unit(56.3, "meters")
  10028. },
  10029. {
  10030. name: "Lake Superior",
  10031. height: math.unit(93900, "meters")
  10032. },
  10033. {
  10034. name: "Mediterranean Sea",
  10035. height: math.unit(644457, "meters")
  10036. },
  10037. {
  10038. name: "World's Oceans",
  10039. height: math.unit(4567491, "meters")
  10040. },
  10041. ]
  10042. ))
  10043. characterMakers.push(() => makeCharacter(
  10044. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10045. {
  10046. front: {
  10047. height: math.unit(2.3, "meters"),
  10048. weight: math.unit(120, "kg"),
  10049. name: "Front",
  10050. image: {
  10051. source: "./media/characters/zelas/front.svg"
  10052. }
  10053. },
  10054. side: {
  10055. height: math.unit(2.3, "meters"),
  10056. weight: math.unit(120, "kg"),
  10057. name: "Side",
  10058. image: {
  10059. source: "./media/characters/zelas/side.svg"
  10060. }
  10061. },
  10062. back: {
  10063. height: math.unit(2.3, "meters"),
  10064. weight: math.unit(120, "kg"),
  10065. name: "Back",
  10066. image: {
  10067. source: "./media/characters/zelas/back.svg"
  10068. }
  10069. },
  10070. foot: {
  10071. height: math.unit(1.116, "feet"),
  10072. name: "Foot",
  10073. image: {
  10074. source: "./media/characters/zelas/foot.svg"
  10075. }
  10076. },
  10077. },
  10078. [
  10079. {
  10080. name: "Normal",
  10081. height: math.unit(2.3, "meters")
  10082. },
  10083. {
  10084. name: "Macro",
  10085. height: math.unit(30, "meters"),
  10086. default: true
  10087. },
  10088. ]
  10089. ))
  10090. characterMakers.push(() => makeCharacter(
  10091. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10092. {
  10093. front: {
  10094. height: math.unit(1, "inch"),
  10095. weight: math.unit(0.21, "grams"),
  10096. name: "Front",
  10097. image: {
  10098. source: "./media/characters/talbot/front.svg",
  10099. extra: 594 / 544
  10100. }
  10101. },
  10102. },
  10103. [
  10104. {
  10105. name: "Micro",
  10106. height: math.unit(1, "inch"),
  10107. default: true
  10108. },
  10109. ]
  10110. ))
  10111. characterMakers.push(() => makeCharacter(
  10112. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10113. {
  10114. front: {
  10115. height: math.unit(3 + 3 / 12, "feet"),
  10116. weight: math.unit(51.8, "lb"),
  10117. name: "Front",
  10118. image: {
  10119. source: "./media/characters/fliss/front.svg",
  10120. extra: 840 / 640
  10121. }
  10122. },
  10123. },
  10124. [
  10125. {
  10126. name: "Teeny Tiny",
  10127. height: math.unit(1, "mm")
  10128. },
  10129. {
  10130. name: "Small",
  10131. height: math.unit(1, "inch"),
  10132. default: true
  10133. },
  10134. {
  10135. name: "Standard Sylveon",
  10136. height: math.unit(3 + 3 / 12, "feet")
  10137. },
  10138. {
  10139. name: "Large Nuisance",
  10140. height: math.unit(33, "feet")
  10141. },
  10142. {
  10143. name: "City Filler",
  10144. height: math.unit(3000, "feet")
  10145. },
  10146. {
  10147. name: "New Horizon",
  10148. height: math.unit(6000, "miles")
  10149. },
  10150. ]
  10151. ))
  10152. characterMakers.push(() => makeCharacter(
  10153. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10154. {
  10155. front: {
  10156. height: math.unit(5, "cm"),
  10157. weight: math.unit(1.94, "g"),
  10158. name: "Front",
  10159. image: {
  10160. source: "./media/characters/fleta/front.svg",
  10161. extra: 835 / 803
  10162. }
  10163. },
  10164. back: {
  10165. height: math.unit(5, "cm"),
  10166. weight: math.unit(1.94, "g"),
  10167. name: "Back",
  10168. image: {
  10169. source: "./media/characters/fleta/back.svg",
  10170. extra: 835 / 803
  10171. }
  10172. },
  10173. },
  10174. [
  10175. {
  10176. name: "Micro",
  10177. height: math.unit(5, "cm"),
  10178. default: true
  10179. },
  10180. ]
  10181. ))
  10182. characterMakers.push(() => makeCharacter(
  10183. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10184. {
  10185. front: {
  10186. height: math.unit(6, "feet"),
  10187. weight: math.unit(225, "lb"),
  10188. name: "Front",
  10189. image: {
  10190. source: "./media/characters/dominic/front.svg",
  10191. extra: 1770 / 1620,
  10192. bottom: 0.025
  10193. }
  10194. },
  10195. back: {
  10196. height: math.unit(6, "feet"),
  10197. weight: math.unit(225, "lb"),
  10198. name: "Back",
  10199. image: {
  10200. source: "./media/characters/dominic/back.svg",
  10201. extra: 1745 / 1620,
  10202. bottom: 0.065
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Nano",
  10209. height: math.unit(0.1, "mm")
  10210. },
  10211. {
  10212. name: "Micro-",
  10213. height: math.unit(1, "mm")
  10214. },
  10215. {
  10216. name: "Micro",
  10217. height: math.unit(4, "inches")
  10218. },
  10219. {
  10220. name: "Normal",
  10221. height: math.unit(6 + 4 / 12, "feet"),
  10222. default: true
  10223. },
  10224. {
  10225. name: "Macro",
  10226. height: math.unit(115, "feet")
  10227. },
  10228. {
  10229. name: "Macro+",
  10230. height: math.unit(955, "feet")
  10231. },
  10232. {
  10233. name: "Megamacro",
  10234. height: math.unit(8990, "feet")
  10235. },
  10236. {
  10237. name: "Gigmacro",
  10238. height: math.unit(9310, "miles")
  10239. },
  10240. {
  10241. name: "Teramacro",
  10242. height: math.unit(1567005010, "miles")
  10243. },
  10244. {
  10245. name: "Examacro",
  10246. height: math.unit(1425, "parsecs")
  10247. },
  10248. ]
  10249. ))
  10250. characterMakers.push(() => makeCharacter(
  10251. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10252. {
  10253. front: {
  10254. height: math.unit(400, "feet"),
  10255. weight: math.unit(44444444, "lb"),
  10256. name: "Front",
  10257. image: {
  10258. source: "./media/characters/major-colonel/front.svg"
  10259. }
  10260. },
  10261. back: {
  10262. height: math.unit(400, "feet"),
  10263. weight: math.unit(44444444, "lb"),
  10264. name: "Back",
  10265. image: {
  10266. source: "./media/characters/major-colonel/back.svg"
  10267. }
  10268. },
  10269. },
  10270. [
  10271. {
  10272. name: "Macro",
  10273. height: math.unit(400, "feet"),
  10274. default: true
  10275. },
  10276. ]
  10277. ))
  10278. characterMakers.push(() => makeCharacter(
  10279. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10280. {
  10281. catFront: {
  10282. height: math.unit(6, "feet"),
  10283. weight: math.unit(120, "lb"),
  10284. name: "Front (Cat Side)",
  10285. image: {
  10286. source: "./media/characters/axel-lycan/cat-front.svg",
  10287. extra: 430 / 402,
  10288. bottom: 43 / 472.35
  10289. }
  10290. },
  10291. catBack: {
  10292. height: math.unit(6, "feet"),
  10293. weight: math.unit(120, "lb"),
  10294. name: "Back (Cat Side)",
  10295. image: {
  10296. source: "./media/characters/axel-lycan/cat-back.svg",
  10297. extra: 447 / 419,
  10298. bottom: 23.3 / 469
  10299. }
  10300. },
  10301. wolfFront: {
  10302. height: math.unit(6, "feet"),
  10303. weight: math.unit(120, "lb"),
  10304. name: "Front (Wolf Side)",
  10305. image: {
  10306. source: "./media/characters/axel-lycan/wolf-front.svg",
  10307. extra: 485 / 456,
  10308. bottom: 19 / 504
  10309. }
  10310. },
  10311. wolfBack: {
  10312. height: math.unit(6, "feet"),
  10313. weight: math.unit(120, "lb"),
  10314. name: "Back (Wolf Side)",
  10315. image: {
  10316. source: "./media/characters/axel-lycan/wolf-back.svg",
  10317. extra: 475 / 438,
  10318. bottom: 39.2 / 514
  10319. }
  10320. },
  10321. },
  10322. [
  10323. {
  10324. name: "Macro",
  10325. height: math.unit(1, "km"),
  10326. default: true
  10327. },
  10328. ]
  10329. ))
  10330. characterMakers.push(() => makeCharacter(
  10331. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10332. {
  10333. front: {
  10334. height: math.unit(5 + 9 / 12, "feet"),
  10335. weight: math.unit(175, "lb"),
  10336. name: "Front",
  10337. image: {
  10338. source: "./media/characters/vanrel-hyena/front.svg",
  10339. extra: 1086 / 1010,
  10340. bottom: 0.04
  10341. }
  10342. },
  10343. },
  10344. [
  10345. {
  10346. name: "Normal",
  10347. height: math.unit(5 + 9 / 12, "feet"),
  10348. default: true
  10349. },
  10350. ]
  10351. ))
  10352. characterMakers.push(() => makeCharacter(
  10353. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10354. {
  10355. front: {
  10356. height: math.unit(6, "feet"),
  10357. weight: math.unit(103, "lb"),
  10358. name: "Front",
  10359. image: {
  10360. source: "./media/characters/abbott-absol/front.svg",
  10361. extra: 2010 / 1842
  10362. }
  10363. },
  10364. },
  10365. [
  10366. {
  10367. name: "Megamicro",
  10368. height: math.unit(0.1, "mm")
  10369. },
  10370. {
  10371. name: "Micro",
  10372. height: math.unit(1, "inch")
  10373. },
  10374. {
  10375. name: "Normal",
  10376. height: math.unit(6, "feet"),
  10377. default: true
  10378. },
  10379. ]
  10380. ))
  10381. characterMakers.push(() => makeCharacter(
  10382. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10383. {
  10384. front: {
  10385. height: math.unit(6, "feet"),
  10386. weight: math.unit(264, "lb"),
  10387. name: "Front",
  10388. image: {
  10389. source: "./media/characters/hector/front.svg",
  10390. extra: 2280 / 2130,
  10391. bottom: 0.07
  10392. }
  10393. },
  10394. },
  10395. [
  10396. {
  10397. name: "Normal",
  10398. height: math.unit(12.25, "foot"),
  10399. default: true
  10400. },
  10401. {
  10402. name: "Macro",
  10403. height: math.unit(160, "feet")
  10404. },
  10405. ]
  10406. ))
  10407. characterMakers.push(() => makeCharacter(
  10408. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10409. {
  10410. front: {
  10411. height: math.unit(6, "feet"),
  10412. weight: math.unit(150, "lb"),
  10413. name: "Front",
  10414. image: {
  10415. source: "./media/characters/sal/front.svg",
  10416. extra: 1846 / 1699,
  10417. bottom: 0.04
  10418. }
  10419. },
  10420. },
  10421. [
  10422. {
  10423. name: "Megamacro",
  10424. height: math.unit(10, "miles"),
  10425. default: true
  10426. },
  10427. ]
  10428. ))
  10429. characterMakers.push(() => makeCharacter(
  10430. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10431. {
  10432. front: {
  10433. height: math.unit(3, "meters"),
  10434. weight: math.unit(450, "kg"),
  10435. name: "front",
  10436. image: {
  10437. source: "./media/characters/ranger/front.svg",
  10438. extra: 2401 / 2243,
  10439. bottom: 0.05
  10440. }
  10441. },
  10442. },
  10443. [
  10444. {
  10445. name: "Normal",
  10446. height: math.unit(3, "meters"),
  10447. default: true
  10448. },
  10449. ]
  10450. ))
  10451. characterMakers.push(() => makeCharacter(
  10452. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10453. {
  10454. front: {
  10455. height: math.unit(14, "feet"),
  10456. weight: math.unit(800, "kg"),
  10457. name: "Front",
  10458. image: {
  10459. source: "./media/characters/theresa/front.svg",
  10460. extra: 3575 / 3346,
  10461. bottom: 0.03
  10462. }
  10463. },
  10464. },
  10465. [
  10466. {
  10467. name: "Normal",
  10468. height: math.unit(14, "feet"),
  10469. default: true
  10470. },
  10471. ]
  10472. ))
  10473. characterMakers.push(() => makeCharacter(
  10474. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10475. {
  10476. front: {
  10477. height: math.unit(6, "feet"),
  10478. weight: math.unit(3, "kg"),
  10479. name: "Front",
  10480. image: {
  10481. source: "./media/characters/ine/front.svg",
  10482. extra: 678 / 539,
  10483. bottom: 0.023
  10484. }
  10485. },
  10486. },
  10487. [
  10488. {
  10489. name: "Normal",
  10490. height: math.unit(2.265, "feet"),
  10491. default: true
  10492. },
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10497. {
  10498. front: {
  10499. height: math.unit(5, "feet"),
  10500. weight: math.unit(30, "kg"),
  10501. name: "Front",
  10502. image: {
  10503. source: "./media/characters/vial/front.svg",
  10504. extra: 1365 / 1277,
  10505. bottom: 0.04
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Normal",
  10512. height: math.unit(5, "feet"),
  10513. default: true
  10514. },
  10515. ]
  10516. ))
  10517. characterMakers.push(() => makeCharacter(
  10518. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10519. {
  10520. side: {
  10521. height: math.unit(3.4, "meters"),
  10522. weight: math.unit(1000, "lb"),
  10523. name: "Side",
  10524. image: {
  10525. source: "./media/characters/rovoska/side.svg",
  10526. extra: 4403 / 1515
  10527. }
  10528. },
  10529. },
  10530. [
  10531. {
  10532. name: "Normal",
  10533. height: math.unit(3.4, "meters"),
  10534. default: true
  10535. },
  10536. ]
  10537. ))
  10538. characterMakers.push(() => makeCharacter(
  10539. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10540. {
  10541. front: {
  10542. height: math.unit(8, "feet"),
  10543. weight: math.unit(315, "lb"),
  10544. name: "Front",
  10545. image: {
  10546. source: "./media/characters/gunner-rotthbauer/front.svg"
  10547. }
  10548. },
  10549. back: {
  10550. height: math.unit(8, "feet"),
  10551. weight: math.unit(315, "lb"),
  10552. name: "Back",
  10553. image: {
  10554. source: "./media/characters/gunner-rotthbauer/back.svg"
  10555. }
  10556. },
  10557. },
  10558. [
  10559. {
  10560. name: "Micro",
  10561. height: math.unit(3.5, "inches")
  10562. },
  10563. {
  10564. name: "Normal",
  10565. height: math.unit(8, "feet"),
  10566. default: true
  10567. },
  10568. {
  10569. name: "Macro",
  10570. height: math.unit(250, "feet")
  10571. },
  10572. {
  10573. name: "Megamacro",
  10574. height: math.unit(1, "AU")
  10575. },
  10576. ]
  10577. ))
  10578. characterMakers.push(() => makeCharacter(
  10579. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10580. {
  10581. front: {
  10582. height: math.unit(5 + 5 / 12, "feet"),
  10583. weight: math.unit(140, "lb"),
  10584. name: "Front",
  10585. image: {
  10586. source: "./media/characters/allatia/front.svg",
  10587. extra: 1227 / 1180,
  10588. bottom: 0.027
  10589. }
  10590. },
  10591. },
  10592. [
  10593. {
  10594. name: "Normal",
  10595. height: math.unit(5 + 5 / 12, "feet")
  10596. },
  10597. {
  10598. name: "Macro",
  10599. height: math.unit(250, "feet"),
  10600. default: true
  10601. },
  10602. {
  10603. name: "Megamacro",
  10604. height: math.unit(8, "miles")
  10605. }
  10606. ]
  10607. ))
  10608. characterMakers.push(() => makeCharacter(
  10609. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10610. {
  10611. front: {
  10612. height: math.unit(6, "feet"),
  10613. weight: math.unit(120, "lb"),
  10614. name: "Front",
  10615. image: {
  10616. source: "./media/characters/tene/front.svg",
  10617. extra: 814/750,
  10618. bottom: 36/850
  10619. }
  10620. },
  10621. stomping: {
  10622. height: math.unit(2.025, "meters"),
  10623. weight: math.unit(120, "lb"),
  10624. name: "Stomping",
  10625. image: {
  10626. source: "./media/characters/tene/stomping.svg",
  10627. extra: 885/821,
  10628. bottom: 15/900
  10629. }
  10630. },
  10631. sitting: {
  10632. height: math.unit(1, "meter"),
  10633. weight: math.unit(120, "lb"),
  10634. name: "Sitting",
  10635. image: {
  10636. source: "./media/characters/tene/sitting.svg",
  10637. extra: 396/366,
  10638. bottom: 79/475
  10639. }
  10640. },
  10641. smiling: {
  10642. height: math.unit(1.2, "feet"),
  10643. name: "Smiling",
  10644. image: {
  10645. source: "./media/characters/tene/smiling.svg",
  10646. extra: 1364/1071,
  10647. bottom: 0/1364
  10648. }
  10649. },
  10650. smug: {
  10651. height: math.unit(1.3, "feet"),
  10652. name: "Smug",
  10653. image: {
  10654. source: "./media/characters/tene/smug.svg",
  10655. extra: 1323/1082,
  10656. bottom: 0/1323
  10657. }
  10658. },
  10659. feral: {
  10660. height: math.unit(3.9, "feet"),
  10661. weight: math.unit(250, "lb"),
  10662. name: "Feral",
  10663. image: {
  10664. source: "./media/characters/tene/feral.svg",
  10665. extra: 717 / 458,
  10666. bottom: 0.179
  10667. }
  10668. },
  10669. },
  10670. [
  10671. {
  10672. name: "Normal",
  10673. height: math.unit(6, "feet")
  10674. },
  10675. {
  10676. name: "Macro",
  10677. height: math.unit(300, "feet"),
  10678. default: true
  10679. },
  10680. {
  10681. name: "Megamacro",
  10682. height: math.unit(5, "miles")
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10688. {
  10689. side: {
  10690. height: math.unit(6, "feet"),
  10691. name: "Side",
  10692. image: {
  10693. source: "./media/characters/evander/side.svg",
  10694. extra: 877 / 477
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Normal",
  10701. height: math.unit(0.83, "meters"),
  10702. default: true
  10703. },
  10704. ]
  10705. ))
  10706. characterMakers.push(() => makeCharacter(
  10707. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10708. {
  10709. front: {
  10710. height: math.unit(12, "feet"),
  10711. weight: math.unit(1000, "lb"),
  10712. name: "Front",
  10713. image: {
  10714. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10715. extra: 1762 / 1611
  10716. }
  10717. },
  10718. back: {
  10719. height: math.unit(12, "feet"),
  10720. weight: math.unit(1000, "lb"),
  10721. name: "Back",
  10722. image: {
  10723. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10724. extra: 1762 / 1611
  10725. }
  10726. },
  10727. },
  10728. [
  10729. {
  10730. name: "Normal",
  10731. height: math.unit(12, "feet"),
  10732. default: true
  10733. },
  10734. {
  10735. name: "Kaiju",
  10736. height: math.unit(150, "feet")
  10737. },
  10738. ]
  10739. ))
  10740. characterMakers.push(() => makeCharacter(
  10741. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10742. {
  10743. front: {
  10744. height: math.unit(6, "feet"),
  10745. weight: math.unit(150, "lb"),
  10746. name: "Front",
  10747. image: {
  10748. source: "./media/characters/zero-alurus/front.svg"
  10749. }
  10750. },
  10751. back: {
  10752. height: math.unit(6, "feet"),
  10753. weight: math.unit(150, "lb"),
  10754. name: "Back",
  10755. image: {
  10756. source: "./media/characters/zero-alurus/back.svg"
  10757. }
  10758. },
  10759. },
  10760. [
  10761. {
  10762. name: "Normal",
  10763. height: math.unit(5 + 10 / 12, "feet")
  10764. },
  10765. {
  10766. name: "Macro",
  10767. height: math.unit(60, "feet"),
  10768. default: true
  10769. },
  10770. {
  10771. name: "Macro+",
  10772. height: math.unit(450, "feet")
  10773. },
  10774. ]
  10775. ))
  10776. characterMakers.push(() => makeCharacter(
  10777. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10778. {
  10779. front: {
  10780. height: math.unit(6, "feet"),
  10781. weight: math.unit(200, "lb"),
  10782. name: "Front",
  10783. image: {
  10784. source: "./media/characters/mega-shi/front.svg",
  10785. extra: 1279 / 1250,
  10786. bottom: 0.02
  10787. }
  10788. },
  10789. back: {
  10790. height: math.unit(6, "feet"),
  10791. weight: math.unit(200, "lb"),
  10792. name: "Back",
  10793. image: {
  10794. source: "./media/characters/mega-shi/back.svg",
  10795. extra: 1279 / 1250,
  10796. bottom: 0.02
  10797. }
  10798. },
  10799. },
  10800. [
  10801. {
  10802. name: "Micro",
  10803. height: math.unit(16 + 6 / 12, "feet")
  10804. },
  10805. {
  10806. name: "Third Dimension",
  10807. height: math.unit(40, "meters")
  10808. },
  10809. {
  10810. name: "Normal",
  10811. height: math.unit(660, "feet"),
  10812. default: true
  10813. },
  10814. {
  10815. name: "Megamacro",
  10816. height: math.unit(10, "miles")
  10817. },
  10818. {
  10819. name: "Planetary Launch",
  10820. height: math.unit(500, "miles")
  10821. },
  10822. {
  10823. name: "Interstellar",
  10824. height: math.unit(1e9, "miles")
  10825. },
  10826. {
  10827. name: "Leaving the Universe",
  10828. height: math.unit(1, "gigaparsec")
  10829. },
  10830. {
  10831. name: "Travelling Universes",
  10832. height: math.unit(30e15, "parsecs")
  10833. },
  10834. ]
  10835. ))
  10836. characterMakers.push(() => makeCharacter(
  10837. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10838. {
  10839. front: {
  10840. height: math.unit(5 + 4/12, "feet"),
  10841. weight: math.unit(120, "lb"),
  10842. name: "Front",
  10843. image: {
  10844. source: "./media/characters/odyssey/front.svg",
  10845. extra: 1747/1571,
  10846. bottom: 47/1794
  10847. }
  10848. },
  10849. side: {
  10850. height: math.unit(5.1, "feet"),
  10851. weight: math.unit(120, "lb"),
  10852. name: "Side",
  10853. image: {
  10854. source: "./media/characters/odyssey/side.svg",
  10855. extra: 1847/1619,
  10856. bottom: 47/1894
  10857. }
  10858. },
  10859. lounging: {
  10860. height: math.unit(1.464, "feet"),
  10861. weight: math.unit(120, "lb"),
  10862. name: "Lounging",
  10863. image: {
  10864. source: "./media/characters/odyssey/lounging.svg",
  10865. extra: 1235/837,
  10866. bottom: 551/1786
  10867. }
  10868. },
  10869. },
  10870. [
  10871. {
  10872. name: "Normal",
  10873. height: math.unit(5 + 4 / 12, "feet")
  10874. },
  10875. {
  10876. name: "Macro",
  10877. height: math.unit(1, "km")
  10878. },
  10879. {
  10880. name: "Megamacro",
  10881. height: math.unit(3000, "km")
  10882. },
  10883. {
  10884. name: "Gigamacro",
  10885. height: math.unit(1, "AU"),
  10886. default: true
  10887. },
  10888. {
  10889. name: "Omniversal",
  10890. height: math.unit(100e14, "lightyears")
  10891. },
  10892. ]
  10893. ))
  10894. characterMakers.push(() => makeCharacter(
  10895. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10896. {
  10897. front: {
  10898. height: math.unit(6, "feet"),
  10899. weight: math.unit(300, "lb"),
  10900. name: "Front",
  10901. image: {
  10902. source: "./media/characters/mekuto/front.svg",
  10903. extra: 921 / 832,
  10904. bottom: 0.03
  10905. }
  10906. },
  10907. hand: {
  10908. height: math.unit(6 / 10.24, "feet"),
  10909. name: "Hand",
  10910. image: {
  10911. source: "./media/characters/mekuto/hand.svg"
  10912. }
  10913. },
  10914. foot: {
  10915. height: math.unit(6 / 5.05, "feet"),
  10916. name: "Foot",
  10917. image: {
  10918. source: "./media/characters/mekuto/foot.svg"
  10919. }
  10920. },
  10921. },
  10922. [
  10923. {
  10924. name: "Minimicro",
  10925. height: math.unit(0.2, "inches")
  10926. },
  10927. {
  10928. name: "Micro",
  10929. height: math.unit(1.5, "inches")
  10930. },
  10931. {
  10932. name: "Normal",
  10933. height: math.unit(5 + 11 / 12, "feet"),
  10934. default: true
  10935. },
  10936. {
  10937. name: "Minimacro",
  10938. height: math.unit(17 + 9 / 12, "feet")
  10939. },
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(177.5, "feet")
  10943. },
  10944. {
  10945. name: "Megamacro",
  10946. height: math.unit(152, "miles")
  10947. },
  10948. ]
  10949. ))
  10950. characterMakers.push(() => makeCharacter(
  10951. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10952. {
  10953. front: {
  10954. height: math.unit(6.5, "inches"),
  10955. weight: math.unit(13, "oz"),
  10956. name: "Front",
  10957. image: {
  10958. source: "./media/characters/dafydd-tomos/front.svg",
  10959. extra: 2990 / 2603,
  10960. bottom: 0.03
  10961. }
  10962. },
  10963. },
  10964. [
  10965. {
  10966. name: "Micro",
  10967. height: math.unit(6.5, "inches"),
  10968. default: true
  10969. },
  10970. ]
  10971. ))
  10972. characterMakers.push(() => makeCharacter(
  10973. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10974. {
  10975. front: {
  10976. height: math.unit(6, "feet"),
  10977. weight: math.unit(150, "lb"),
  10978. name: "Front",
  10979. image: {
  10980. source: "./media/characters/splinter/front.svg",
  10981. extra: 2990 / 2882,
  10982. bottom: 0.04
  10983. }
  10984. },
  10985. back: {
  10986. height: math.unit(6, "feet"),
  10987. weight: math.unit(150, "lb"),
  10988. name: "Back",
  10989. image: {
  10990. source: "./media/characters/splinter/back.svg",
  10991. extra: 2990 / 2882,
  10992. bottom: 0.04
  10993. }
  10994. },
  10995. },
  10996. [
  10997. {
  10998. name: "Normal",
  10999. height: math.unit(6, "feet")
  11000. },
  11001. {
  11002. name: "Macro",
  11003. height: math.unit(230, "meters"),
  11004. default: true
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11010. {
  11011. front: {
  11012. height: math.unit(4 + 10 / 12, "feet"),
  11013. weight: math.unit(480, "lb"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/snow-gabumon/front.svg",
  11017. extra: 1140 / 963,
  11018. bottom: 0.058
  11019. }
  11020. },
  11021. back: {
  11022. height: math.unit(4 + 10 / 12, "feet"),
  11023. weight: math.unit(480, "lb"),
  11024. name: "Back",
  11025. image: {
  11026. source: "./media/characters/snow-gabumon/back.svg",
  11027. extra: 1115 / 962,
  11028. bottom: 0.041
  11029. }
  11030. },
  11031. frontUndresed: {
  11032. height: math.unit(4 + 10 / 12, "feet"),
  11033. weight: math.unit(480, "lb"),
  11034. name: "Front (Undressed)",
  11035. image: {
  11036. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11037. extra: 1061 / 960,
  11038. bottom: 0.045
  11039. }
  11040. },
  11041. },
  11042. [
  11043. {
  11044. name: "Micro",
  11045. height: math.unit(1, "inch")
  11046. },
  11047. {
  11048. name: "Normal",
  11049. height: math.unit(4 + 10 / 12, "feet"),
  11050. default: true
  11051. },
  11052. {
  11053. name: "Macro",
  11054. height: math.unit(200, "feet")
  11055. },
  11056. {
  11057. name: "Megamacro",
  11058. height: math.unit(120, "miles")
  11059. },
  11060. {
  11061. name: "Gigamacro",
  11062. height: math.unit(9800, "miles")
  11063. },
  11064. ]
  11065. ))
  11066. characterMakers.push(() => makeCharacter(
  11067. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11068. {
  11069. front: {
  11070. height: math.unit(1.7, "meters"),
  11071. weight: math.unit(140, "lb"),
  11072. name: "Front",
  11073. image: {
  11074. source: "./media/characters/moody/front.svg",
  11075. extra: 3226 / 3007,
  11076. bottom: 0.087
  11077. }
  11078. },
  11079. },
  11080. [
  11081. {
  11082. name: "Micro",
  11083. height: math.unit(1, "mm")
  11084. },
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(1.7, "meters"),
  11088. default: true
  11089. },
  11090. {
  11091. name: "Macro",
  11092. height: math.unit(80, "meters")
  11093. },
  11094. {
  11095. name: "Macro+",
  11096. height: math.unit(500, "meters")
  11097. },
  11098. ]
  11099. ))
  11100. characterMakers.push(() => makeCharacter(
  11101. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11102. {
  11103. front: {
  11104. height: math.unit(6, "feet"),
  11105. weight: math.unit(150, "lb"),
  11106. name: "Front",
  11107. image: {
  11108. source: "./media/characters/zyas/front.svg",
  11109. extra: 1180 / 1120,
  11110. bottom: 0.045
  11111. }
  11112. },
  11113. },
  11114. [
  11115. {
  11116. name: "Normal",
  11117. height: math.unit(10, "feet"),
  11118. default: true
  11119. },
  11120. {
  11121. name: "Macro",
  11122. height: math.unit(500, "feet")
  11123. },
  11124. {
  11125. name: "Megamacro",
  11126. height: math.unit(5, "miles")
  11127. },
  11128. {
  11129. name: "Teramacro",
  11130. height: math.unit(150000, "miles")
  11131. },
  11132. ]
  11133. ))
  11134. characterMakers.push(() => makeCharacter(
  11135. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11136. {
  11137. front: {
  11138. height: math.unit(6, "feet"),
  11139. weight: math.unit(150, "lb"),
  11140. name: "Front",
  11141. image: {
  11142. source: "./media/characters/cuon/front.svg",
  11143. extra: 1390 / 1320,
  11144. bottom: 0.008
  11145. }
  11146. },
  11147. },
  11148. [
  11149. {
  11150. name: "Micro",
  11151. height: math.unit(3, "inches")
  11152. },
  11153. {
  11154. name: "Normal",
  11155. height: math.unit(18 + 9 / 12, "feet"),
  11156. default: true
  11157. },
  11158. {
  11159. name: "Macro",
  11160. height: math.unit(360, "feet")
  11161. },
  11162. {
  11163. name: "Megamacro",
  11164. height: math.unit(360, "miles")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(2.4, "meters"),
  11173. weight: math.unit(70, "kg"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/nyanuxk/front.svg",
  11177. extra: 1172 / 1084,
  11178. bottom: 0.065
  11179. }
  11180. },
  11181. side: {
  11182. height: math.unit(2.4, "meters"),
  11183. weight: math.unit(70, "kg"),
  11184. name: "Side",
  11185. image: {
  11186. source: "./media/characters/nyanuxk/side.svg",
  11187. extra: 1190 / 1132,
  11188. bottom: 0.007
  11189. }
  11190. },
  11191. back: {
  11192. height: math.unit(2.4, "meters"),
  11193. weight: math.unit(70, "kg"),
  11194. name: "Back",
  11195. image: {
  11196. source: "./media/characters/nyanuxk/back.svg",
  11197. extra: 1200 / 1141,
  11198. bottom: 0.015
  11199. }
  11200. },
  11201. foot: {
  11202. height: math.unit(0.52, "meters"),
  11203. name: "Foot",
  11204. image: {
  11205. source: "./media/characters/nyanuxk/foot.svg"
  11206. }
  11207. },
  11208. },
  11209. [
  11210. {
  11211. name: "Micro",
  11212. height: math.unit(2, "cm")
  11213. },
  11214. {
  11215. name: "Normal",
  11216. height: math.unit(2.4, "meters"),
  11217. default: true
  11218. },
  11219. {
  11220. name: "Smaller Macro",
  11221. height: math.unit(120, "meters")
  11222. },
  11223. {
  11224. name: "Bigger Macro",
  11225. height: math.unit(1.2, "km")
  11226. },
  11227. {
  11228. name: "Megamacro",
  11229. height: math.unit(15, "kilometers")
  11230. },
  11231. {
  11232. name: "Gigamacro",
  11233. height: math.unit(2000, "km")
  11234. },
  11235. {
  11236. name: "Teramacro",
  11237. height: math.unit(500000, "km")
  11238. },
  11239. ]
  11240. ))
  11241. characterMakers.push(() => makeCharacter(
  11242. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11243. {
  11244. side: {
  11245. height: math.unit(6, "feet"),
  11246. name: "Side",
  11247. image: {
  11248. source: "./media/characters/ailbhe/side.svg",
  11249. extra: 757 / 464,
  11250. bottom: 0.041
  11251. }
  11252. },
  11253. },
  11254. [
  11255. {
  11256. name: "Normal",
  11257. height: math.unit(1.07, "meters"),
  11258. default: true
  11259. },
  11260. ]
  11261. ))
  11262. characterMakers.push(() => makeCharacter(
  11263. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11264. {
  11265. front: {
  11266. height: math.unit(6, "feet"),
  11267. weight: math.unit(120, "kg"),
  11268. name: "Front",
  11269. image: {
  11270. source: "./media/characters/zevulfius/front.svg",
  11271. extra: 965 / 903
  11272. }
  11273. },
  11274. side: {
  11275. height: math.unit(6, "feet"),
  11276. weight: math.unit(120, "kg"),
  11277. name: "Side",
  11278. image: {
  11279. source: "./media/characters/zevulfius/side.svg",
  11280. extra: 939 / 900
  11281. }
  11282. },
  11283. back: {
  11284. height: math.unit(6, "feet"),
  11285. weight: math.unit(120, "kg"),
  11286. name: "Back",
  11287. image: {
  11288. source: "./media/characters/zevulfius/back.svg",
  11289. extra: 918 / 854,
  11290. bottom: 0.005
  11291. }
  11292. },
  11293. foot: {
  11294. height: math.unit(6 / 3.72, "feet"),
  11295. name: "Foot",
  11296. image: {
  11297. source: "./media/characters/zevulfius/foot.svg"
  11298. }
  11299. },
  11300. },
  11301. [
  11302. {
  11303. name: "Macro",
  11304. height: math.unit(750, "meters")
  11305. },
  11306. {
  11307. name: "Megamacro",
  11308. height: math.unit(20, "km"),
  11309. default: true
  11310. },
  11311. {
  11312. name: "Gigamacro",
  11313. height: math.unit(2000, "km")
  11314. },
  11315. {
  11316. name: "Teramacro",
  11317. height: math.unit(250000, "km")
  11318. },
  11319. ]
  11320. ))
  11321. characterMakers.push(() => makeCharacter(
  11322. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11323. {
  11324. front: {
  11325. height: math.unit(100, "feet"),
  11326. weight: math.unit(350, "kg"),
  11327. name: "Front",
  11328. image: {
  11329. source: "./media/characters/rikes/front.svg",
  11330. extra: 1565 / 1483,
  11331. bottom: 0.017
  11332. }
  11333. },
  11334. },
  11335. [
  11336. {
  11337. name: "Macro",
  11338. height: math.unit(100, "feet"),
  11339. default: true
  11340. },
  11341. ]
  11342. ))
  11343. characterMakers.push(() => makeCharacter(
  11344. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11345. {
  11346. front: {
  11347. height: math.unit(8, "feet"),
  11348. weight: math.unit(356, "lb"),
  11349. name: "Front",
  11350. image: {
  11351. source: "./media/characters/adam-silver-mane/front.svg",
  11352. extra: 1036/937,
  11353. bottom: 63/1099
  11354. }
  11355. },
  11356. side: {
  11357. height: math.unit(8, "feet"),
  11358. weight: math.unit(356, "lb"),
  11359. name: "Side",
  11360. image: {
  11361. source: "./media/characters/adam-silver-mane/side.svg",
  11362. extra: 997/901,
  11363. bottom: 59/1056
  11364. }
  11365. },
  11366. frontNsfw: {
  11367. height: math.unit(8, "feet"),
  11368. weight: math.unit(356, "lb"),
  11369. name: "Front (NSFW)",
  11370. image: {
  11371. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11372. extra: 1036/937,
  11373. bottom: 63/1099
  11374. }
  11375. },
  11376. sideNsfw: {
  11377. height: math.unit(8, "feet"),
  11378. weight: math.unit(356, "lb"),
  11379. name: "Side (NSFW)",
  11380. image: {
  11381. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11382. extra: 997/901,
  11383. bottom: 59/1056
  11384. }
  11385. },
  11386. dick: {
  11387. height: math.unit(2.1, "feet"),
  11388. name: "Dick",
  11389. image: {
  11390. source: "./media/characters/adam-silver-mane/dick.svg"
  11391. }
  11392. },
  11393. taur: {
  11394. height: math.unit(16, "feet"),
  11395. weight: math.unit(1500, "kg"),
  11396. name: "Taur",
  11397. image: {
  11398. source: "./media/characters/adam-silver-mane/taur.svg",
  11399. extra: 1713 / 1571,
  11400. bottom: 0.01
  11401. }
  11402. },
  11403. },
  11404. [
  11405. {
  11406. name: "Normal",
  11407. height: math.unit(8, "feet")
  11408. },
  11409. {
  11410. name: "Minimacro",
  11411. height: math.unit(80, "feet")
  11412. },
  11413. {
  11414. name: "MDA",
  11415. height: math.unit(80, "meters")
  11416. },
  11417. {
  11418. name: "Macro",
  11419. height: math.unit(800, "feet"),
  11420. default: true
  11421. },
  11422. {
  11423. name: "Megamacro",
  11424. height: math.unit(8000, "feet")
  11425. },
  11426. {
  11427. name: "Gigamacro",
  11428. height: math.unit(800, "miles")
  11429. },
  11430. {
  11431. name: "Teramacro",
  11432. height: math.unit(80000, "miles")
  11433. },
  11434. {
  11435. name: "Celestial",
  11436. height: math.unit(8e6, "miles")
  11437. },
  11438. {
  11439. name: "Star Dragon",
  11440. height: math.unit(800000, "parsecs")
  11441. },
  11442. {
  11443. name: "Godly",
  11444. height: math.unit(800, "teraparsecs")
  11445. },
  11446. ]
  11447. ))
  11448. characterMakers.push(() => makeCharacter(
  11449. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11450. {
  11451. front: {
  11452. height: math.unit(6, "feet"),
  11453. weight: math.unit(150, "lb"),
  11454. name: "Front",
  11455. image: {
  11456. source: "./media/characters/ky'owin/front.svg",
  11457. extra: 3888 / 3068,
  11458. bottom: 0.015
  11459. }
  11460. },
  11461. },
  11462. [
  11463. {
  11464. name: "Normal",
  11465. height: math.unit(6 + 8 / 12, "feet")
  11466. },
  11467. {
  11468. name: "Large",
  11469. height: math.unit(68, "feet")
  11470. },
  11471. {
  11472. name: "Macro",
  11473. height: math.unit(132, "feet")
  11474. },
  11475. {
  11476. name: "Macro+",
  11477. height: math.unit(340, "feet")
  11478. },
  11479. {
  11480. name: "Macro++",
  11481. height: math.unit(680, "feet"),
  11482. default: true
  11483. },
  11484. {
  11485. name: "Megamacro",
  11486. height: math.unit(1, "mile")
  11487. },
  11488. {
  11489. name: "Megamacro+",
  11490. height: math.unit(10, "miles")
  11491. },
  11492. ]
  11493. ))
  11494. characterMakers.push(() => makeCharacter(
  11495. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11496. {
  11497. front: {
  11498. height: math.unit(4, "feet"),
  11499. weight: math.unit(50, "lb"),
  11500. name: "Front",
  11501. image: {
  11502. source: "./media/characters/mal/front.svg",
  11503. extra: 785 / 724,
  11504. bottom: 0.07
  11505. }
  11506. },
  11507. },
  11508. [
  11509. {
  11510. name: "Micro",
  11511. height: math.unit(4, "inches")
  11512. },
  11513. {
  11514. name: "Normal",
  11515. height: math.unit(4, "feet"),
  11516. default: true
  11517. },
  11518. {
  11519. name: "Macro",
  11520. height: math.unit(200, "feet")
  11521. },
  11522. ]
  11523. ))
  11524. characterMakers.push(() => makeCharacter(
  11525. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11526. {
  11527. front: {
  11528. height: math.unit(6, "feet"),
  11529. weight: math.unit(150, "lb"),
  11530. name: "Front",
  11531. image: {
  11532. source: "./media/characters/jordan-deware/front.svg",
  11533. extra: 1191 / 1012
  11534. }
  11535. },
  11536. },
  11537. [
  11538. {
  11539. name: "Nano",
  11540. height: math.unit(0.01, "mm")
  11541. },
  11542. {
  11543. name: "Minimicro",
  11544. height: math.unit(1, "mm")
  11545. },
  11546. {
  11547. name: "Micro",
  11548. height: math.unit(0.5, "inches")
  11549. },
  11550. {
  11551. name: "Normal",
  11552. height: math.unit(4, "feet"),
  11553. default: true
  11554. },
  11555. {
  11556. name: "Minimacro",
  11557. height: math.unit(40, "meters")
  11558. },
  11559. {
  11560. name: "Small Macro",
  11561. height: math.unit(400, "meters")
  11562. },
  11563. {
  11564. name: "Macro",
  11565. height: math.unit(4, "miles")
  11566. },
  11567. {
  11568. name: "Megamacro",
  11569. height: math.unit(40, "miles")
  11570. },
  11571. {
  11572. name: "Megamacro+",
  11573. height: math.unit(400, "miles")
  11574. },
  11575. {
  11576. name: "Gigamacro",
  11577. height: math.unit(400000, "miles")
  11578. },
  11579. ]
  11580. ))
  11581. characterMakers.push(() => makeCharacter(
  11582. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11583. {
  11584. side: {
  11585. height: math.unit(6, "feet"),
  11586. weight: math.unit(150, "lb"),
  11587. name: "Side",
  11588. image: {
  11589. source: "./media/characters/kimiko/side.svg",
  11590. extra: 600 / 358
  11591. }
  11592. },
  11593. },
  11594. [
  11595. {
  11596. name: "Normal",
  11597. height: math.unit(15, "feet"),
  11598. default: true
  11599. },
  11600. {
  11601. name: "Macro",
  11602. height: math.unit(220, "feet")
  11603. },
  11604. {
  11605. name: "Macro+",
  11606. height: math.unit(1450, "feet")
  11607. },
  11608. {
  11609. name: "Megamacro",
  11610. height: math.unit(11500, "feet")
  11611. },
  11612. {
  11613. name: "Gigamacro",
  11614. height: math.unit(9500, "miles")
  11615. },
  11616. {
  11617. name: "Teramacro",
  11618. height: math.unit(2208005005, "miles")
  11619. },
  11620. {
  11621. name: "Examacro",
  11622. height: math.unit(2750, "parsecs")
  11623. },
  11624. {
  11625. name: "Zettamacro",
  11626. height: math.unit(101500, "parsecs")
  11627. },
  11628. ]
  11629. ))
  11630. characterMakers.push(() => makeCharacter(
  11631. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11632. {
  11633. front: {
  11634. height: math.unit(6, "feet"),
  11635. weight: math.unit(70, "kg"),
  11636. name: "Front",
  11637. image: {
  11638. source: "./media/characters/andrew-sleepy/front.svg"
  11639. }
  11640. },
  11641. side: {
  11642. height: math.unit(6, "feet"),
  11643. weight: math.unit(70, "kg"),
  11644. name: "Side",
  11645. image: {
  11646. source: "./media/characters/andrew-sleepy/side.svg"
  11647. }
  11648. },
  11649. },
  11650. [
  11651. {
  11652. name: "Micro",
  11653. height: math.unit(1, "mm"),
  11654. default: true
  11655. },
  11656. ]
  11657. ))
  11658. characterMakers.push(() => makeCharacter(
  11659. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11660. {
  11661. front: {
  11662. height: math.unit(6, "feet"),
  11663. weight: math.unit(150, "lb"),
  11664. name: "Front",
  11665. image: {
  11666. source: "./media/characters/judio/front.svg",
  11667. extra: 1258 / 1110
  11668. }
  11669. },
  11670. },
  11671. [
  11672. {
  11673. name: "Normal",
  11674. height: math.unit(5 + 6 / 12, "feet")
  11675. },
  11676. {
  11677. name: "Macro",
  11678. height: math.unit(1000, "feet"),
  11679. default: true
  11680. },
  11681. {
  11682. name: "Megamacro",
  11683. height: math.unit(10, "miles")
  11684. },
  11685. ]
  11686. ))
  11687. characterMakers.push(() => makeCharacter(
  11688. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11689. {
  11690. frontDressed: {
  11691. height: math.unit(6, "feet"),
  11692. weight: math.unit(68, "kg"),
  11693. name: "Front (Dressed)",
  11694. image: {
  11695. source: "./media/characters/nomaxice/front-dressed.svg",
  11696. extra: 1137/824,
  11697. bottom: 74/1211
  11698. }
  11699. },
  11700. frontShorts: {
  11701. height: math.unit(6, "feet"),
  11702. weight: math.unit(68, "kg"),
  11703. name: "Front (Shorts)",
  11704. image: {
  11705. source: "./media/characters/nomaxice/front-shorts.svg",
  11706. extra: 1137/824,
  11707. bottom: 74/1211
  11708. }
  11709. },
  11710. back: {
  11711. height: math.unit(6, "feet"),
  11712. weight: math.unit(68, "kg"),
  11713. name: "Back",
  11714. image: {
  11715. source: "./media/characters/nomaxice/back.svg",
  11716. extra: 822/786,
  11717. bottom: 39/861
  11718. }
  11719. },
  11720. hand: {
  11721. height: math.unit(0.565, "feet"),
  11722. name: "Hand",
  11723. image: {
  11724. source: "./media/characters/nomaxice/hand.svg"
  11725. }
  11726. },
  11727. foot: {
  11728. height: math.unit(1, "feet"),
  11729. name: "Foot",
  11730. image: {
  11731. source: "./media/characters/nomaxice/foot.svg"
  11732. }
  11733. },
  11734. },
  11735. [
  11736. {
  11737. name: "Micro",
  11738. height: math.unit(8, "cm")
  11739. },
  11740. {
  11741. name: "Norm",
  11742. height: math.unit(1.82, "m")
  11743. },
  11744. {
  11745. name: "Norm+",
  11746. height: math.unit(8.8, "feet"),
  11747. default: true
  11748. },
  11749. {
  11750. name: "Big",
  11751. height: math.unit(8, "meters")
  11752. },
  11753. {
  11754. name: "Macro",
  11755. height: math.unit(18, "meters")
  11756. },
  11757. {
  11758. name: "Macro+",
  11759. height: math.unit(88, "meters")
  11760. },
  11761. ]
  11762. ))
  11763. characterMakers.push(() => makeCharacter(
  11764. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11765. {
  11766. front: {
  11767. height: math.unit(12, "feet"),
  11768. weight: math.unit(1.5, "tons"),
  11769. name: "Front",
  11770. image: {
  11771. source: "./media/characters/dydros/front.svg",
  11772. extra: 863 / 800,
  11773. bottom: 0.015
  11774. }
  11775. },
  11776. back: {
  11777. height: math.unit(12, "feet"),
  11778. weight: math.unit(1.5, "tons"),
  11779. name: "Back",
  11780. image: {
  11781. source: "./media/characters/dydros/back.svg",
  11782. extra: 900 / 843,
  11783. bottom: 0.005
  11784. }
  11785. },
  11786. },
  11787. [
  11788. {
  11789. name: "Normal",
  11790. height: math.unit(12, "feet"),
  11791. default: true
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11797. {
  11798. front: {
  11799. height: math.unit(6, "feet"),
  11800. weight: math.unit(100, "kg"),
  11801. name: "Front",
  11802. image: {
  11803. source: "./media/characters/riggi/front.svg",
  11804. extra: 5787 / 5303
  11805. }
  11806. },
  11807. hyper: {
  11808. height: math.unit(6 * 5 / 3, "feet"),
  11809. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11810. name: "Hyper",
  11811. image: {
  11812. source: "./media/characters/riggi/hyper.svg",
  11813. extra: 3595 / 3485
  11814. }
  11815. },
  11816. },
  11817. [
  11818. {
  11819. name: "Small Macro",
  11820. height: math.unit(50, "feet")
  11821. },
  11822. {
  11823. name: "Default",
  11824. height: math.unit(200, "feet"),
  11825. default: true
  11826. },
  11827. {
  11828. name: "Loom",
  11829. height: math.unit(10000, "feet")
  11830. },
  11831. {
  11832. name: "Cruising Altitude",
  11833. height: math.unit(30000, "feet")
  11834. },
  11835. {
  11836. name: "Megamacro",
  11837. height: math.unit(100, "miles")
  11838. },
  11839. {
  11840. name: "Continent Sized",
  11841. height: math.unit(2800, "miles")
  11842. },
  11843. {
  11844. name: "Earth Sized",
  11845. height: math.unit(8000, "miles")
  11846. },
  11847. ]
  11848. ))
  11849. characterMakers.push(() => makeCharacter(
  11850. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11851. {
  11852. front: {
  11853. height: math.unit(6, "feet"),
  11854. weight: math.unit(250, "lb"),
  11855. name: "Front",
  11856. image: {
  11857. source: "./media/characters/alexi/front.svg",
  11858. extra: 3483 / 3291,
  11859. bottom: 0.04
  11860. }
  11861. },
  11862. back: {
  11863. height: math.unit(6, "feet"),
  11864. weight: math.unit(250, "lb"),
  11865. name: "Back",
  11866. image: {
  11867. source: "./media/characters/alexi/back.svg",
  11868. extra: 3533 / 3356,
  11869. bottom: 0.021
  11870. }
  11871. },
  11872. frontTransforming: {
  11873. height: math.unit(8.58, "feet"),
  11874. weight: math.unit(1300, "lb"),
  11875. name: "Transforming",
  11876. image: {
  11877. source: "./media/characters/alexi/front-transforming.svg",
  11878. extra: 437 / 409,
  11879. bottom: 19 / 458.66
  11880. }
  11881. },
  11882. frontTransformed: {
  11883. height: math.unit(12.5, "feet"),
  11884. weight: math.unit(4000, "lb"),
  11885. name: "Transformed",
  11886. image: {
  11887. source: "./media/characters/alexi/front-transformed.svg",
  11888. extra: 639 / 614,
  11889. bottom: 30.55 / 671
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(14, "feet"),
  11897. default: true
  11898. },
  11899. {
  11900. name: "Minimacro",
  11901. height: math.unit(30, "meters")
  11902. },
  11903. {
  11904. name: "Macro",
  11905. height: math.unit(500, "meters")
  11906. },
  11907. {
  11908. name: "Megamacro",
  11909. height: math.unit(9000, "km")
  11910. },
  11911. {
  11912. name: "Teramacro",
  11913. height: math.unit(384000, "km")
  11914. },
  11915. ]
  11916. ))
  11917. characterMakers.push(() => makeCharacter(
  11918. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11919. {
  11920. front: {
  11921. height: math.unit(6, "feet"),
  11922. weight: math.unit(150, "lb"),
  11923. name: "Front",
  11924. image: {
  11925. source: "./media/characters/kayroo/front.svg",
  11926. extra: 1153 / 1038,
  11927. bottom: 0.06
  11928. }
  11929. },
  11930. foot: {
  11931. height: math.unit(6, "feet"),
  11932. weight: math.unit(150, "lb"),
  11933. name: "Foot",
  11934. image: {
  11935. source: "./media/characters/kayroo/foot.svg"
  11936. }
  11937. },
  11938. },
  11939. [
  11940. {
  11941. name: "Normal",
  11942. height: math.unit(8, "feet"),
  11943. default: true
  11944. },
  11945. {
  11946. name: "Minimacro",
  11947. height: math.unit(250, "feet")
  11948. },
  11949. {
  11950. name: "Macro",
  11951. height: math.unit(2800, "feet")
  11952. },
  11953. {
  11954. name: "Megamacro",
  11955. height: math.unit(5200, "feet")
  11956. },
  11957. {
  11958. name: "Gigamacro",
  11959. height: math.unit(27000, "feet")
  11960. },
  11961. {
  11962. name: "Omega",
  11963. height: math.unit(45000, "feet")
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11969. {
  11970. front: {
  11971. height: math.unit(18, "feet"),
  11972. weight: math.unit(5800, "lb"),
  11973. name: "Front",
  11974. image: {
  11975. source: "./media/characters/rhys/front.svg",
  11976. extra: 3386 / 3090,
  11977. bottom: 0.07
  11978. }
  11979. },
  11980. },
  11981. [
  11982. {
  11983. name: "Normal",
  11984. height: math.unit(18, "feet"),
  11985. default: true
  11986. },
  11987. {
  11988. name: "Working Size",
  11989. height: math.unit(200, "feet")
  11990. },
  11991. {
  11992. name: "Demolition Size",
  11993. height: math.unit(2000, "feet")
  11994. },
  11995. {
  11996. name: "Maximum Licensed Size",
  11997. height: math.unit(5, "miles")
  11998. },
  11999. {
  12000. name: "Maximum Observed Size",
  12001. height: math.unit(10, "yottameters")
  12002. },
  12003. ]
  12004. ))
  12005. characterMakers.push(() => makeCharacter(
  12006. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12007. {
  12008. front: {
  12009. height: math.unit(6, "feet"),
  12010. weight: math.unit(250, "lb"),
  12011. name: "Front",
  12012. image: {
  12013. source: "./media/characters/toto/front.svg",
  12014. extra: 527 / 479,
  12015. bottom: 0.05
  12016. }
  12017. },
  12018. },
  12019. [
  12020. {
  12021. name: "Micro",
  12022. height: math.unit(3, "feet")
  12023. },
  12024. {
  12025. name: "Normal",
  12026. height: math.unit(10, "feet")
  12027. },
  12028. {
  12029. name: "Macro",
  12030. height: math.unit(150, "feet"),
  12031. default: true
  12032. },
  12033. {
  12034. name: "Megamacro",
  12035. height: math.unit(1200, "feet")
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "King", species: ["lion"], tags: ["anthro"] },
  12041. {
  12042. back: {
  12043. height: math.unit(6, "feet"),
  12044. weight: math.unit(150, "lb"),
  12045. name: "Back",
  12046. image: {
  12047. source: "./media/characters/king/back.svg"
  12048. }
  12049. },
  12050. },
  12051. [
  12052. {
  12053. name: "Micro",
  12054. height: math.unit(2, "inches")
  12055. },
  12056. {
  12057. name: "Normal",
  12058. height: math.unit(8, "feet")
  12059. },
  12060. {
  12061. name: "Macro",
  12062. height: math.unit(200, "feet"),
  12063. default: true
  12064. },
  12065. {
  12066. name: "Megamacro",
  12067. height: math.unit(50, "miles")
  12068. },
  12069. ]
  12070. ))
  12071. characterMakers.push(() => makeCharacter(
  12072. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12073. {
  12074. front: {
  12075. height: math.unit(11, "feet"),
  12076. weight: math.unit(1400, "lb"),
  12077. name: "Front",
  12078. image: {
  12079. source: "./media/characters/cordite/front.svg",
  12080. extra: 1919/1827,
  12081. bottom: 40/1959
  12082. }
  12083. },
  12084. side: {
  12085. height: math.unit(11, "feet"),
  12086. weight: math.unit(1400, "lb"),
  12087. name: "Side",
  12088. image: {
  12089. source: "./media/characters/cordite/side.svg",
  12090. extra: 1908/1793,
  12091. bottom: 38/1946
  12092. }
  12093. },
  12094. back: {
  12095. height: math.unit(11, "feet"),
  12096. weight: math.unit(1400, "lb"),
  12097. name: "Back",
  12098. image: {
  12099. source: "./media/characters/cordite/back.svg",
  12100. extra: 1938/1837,
  12101. bottom: 10/1948
  12102. }
  12103. },
  12104. feral: {
  12105. height: math.unit(2, "feet"),
  12106. weight: math.unit(90, "lb"),
  12107. name: "Feral",
  12108. image: {
  12109. source: "./media/characters/cordite/feral.svg",
  12110. extra: 1260 / 755,
  12111. bottom: 0.05
  12112. }
  12113. },
  12114. },
  12115. [
  12116. {
  12117. name: "Normal",
  12118. height: math.unit(11, "feet"),
  12119. default: true
  12120. },
  12121. ]
  12122. ))
  12123. characterMakers.push(() => makeCharacter(
  12124. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12125. {
  12126. front: {
  12127. height: math.unit(6, "feet"),
  12128. weight: math.unit(150, "lb"),
  12129. name: "Front",
  12130. image: {
  12131. source: "./media/characters/pianostrong/front.svg",
  12132. extra: 6577 / 6254,
  12133. bottom: 0.02
  12134. }
  12135. },
  12136. side: {
  12137. height: math.unit(6, "feet"),
  12138. weight: math.unit(150, "lb"),
  12139. name: "Side",
  12140. image: {
  12141. source: "./media/characters/pianostrong/side.svg",
  12142. extra: 6106 / 5730
  12143. }
  12144. },
  12145. back: {
  12146. height: math.unit(6, "feet"),
  12147. weight: math.unit(150, "lb"),
  12148. name: "Back",
  12149. image: {
  12150. source: "./media/characters/pianostrong/back.svg",
  12151. extra: 6085 / 5733,
  12152. bottom: 0.01
  12153. }
  12154. },
  12155. },
  12156. [
  12157. {
  12158. name: "Macro",
  12159. height: math.unit(100, "feet")
  12160. },
  12161. {
  12162. name: "Macro+",
  12163. height: math.unit(300, "feet"),
  12164. default: true
  12165. },
  12166. {
  12167. name: "Macro++",
  12168. height: math.unit(1000, "feet")
  12169. },
  12170. ]
  12171. ))
  12172. characterMakers.push(() => makeCharacter(
  12173. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12174. {
  12175. front: {
  12176. height: math.unit(6, "feet"),
  12177. weight: math.unit(150, "lb"),
  12178. name: "Front",
  12179. image: {
  12180. source: "./media/characters/kona/front.svg",
  12181. extra: 2960 / 2629,
  12182. bottom: 0.005
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Normal",
  12189. height: math.unit(11 + 8 / 12, "feet")
  12190. },
  12191. {
  12192. name: "Macro",
  12193. height: math.unit(850, "feet"),
  12194. default: true
  12195. },
  12196. {
  12197. name: "Macro+",
  12198. height: math.unit(1.5, "km"),
  12199. default: true
  12200. },
  12201. {
  12202. name: "Megamacro",
  12203. height: math.unit(80, "miles")
  12204. },
  12205. {
  12206. name: "Gigamacro",
  12207. height: math.unit(3500, "miles")
  12208. },
  12209. ]
  12210. ))
  12211. characterMakers.push(() => makeCharacter(
  12212. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12213. {
  12214. side: {
  12215. height: math.unit(1.9, "meters"),
  12216. weight: math.unit(326, "kg"),
  12217. name: "Side",
  12218. image: {
  12219. source: "./media/characters/levi/side.svg",
  12220. extra: 1704 / 1334,
  12221. bottom: 0.02
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Normal",
  12228. height: math.unit(1.9, "meters"),
  12229. default: true
  12230. },
  12231. {
  12232. name: "Macro",
  12233. height: math.unit(20, "meters")
  12234. },
  12235. {
  12236. name: "Macro+",
  12237. height: math.unit(200, "meters")
  12238. },
  12239. {
  12240. name: "Megamacro",
  12241. height: math.unit(2, "km")
  12242. },
  12243. {
  12244. name: "Megamacro+",
  12245. height: math.unit(20, "km")
  12246. },
  12247. {
  12248. name: "Gigamacro",
  12249. height: math.unit(2500, "km")
  12250. },
  12251. {
  12252. name: "Gigamacro+",
  12253. height: math.unit(120000, "km")
  12254. },
  12255. {
  12256. name: "Teramacro",
  12257. height: math.unit(7.77e6, "km")
  12258. },
  12259. ]
  12260. ))
  12261. characterMakers.push(() => makeCharacter(
  12262. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12263. {
  12264. front: {
  12265. height: math.unit(6 + 4/12, "feet"),
  12266. weight: math.unit(190, "lb"),
  12267. name: "Front",
  12268. image: {
  12269. source: "./media/characters/bmc/front.svg",
  12270. extra: 1626/1472,
  12271. bottom: 79/1705
  12272. }
  12273. },
  12274. back: {
  12275. height: math.unit(6 + 4/12, "feet"),
  12276. weight: math.unit(190, "lb"),
  12277. name: "Back",
  12278. image: {
  12279. source: "./media/characters/bmc/back.svg",
  12280. extra: 1640/1479,
  12281. bottom: 45/1685
  12282. }
  12283. },
  12284. frontArmor: {
  12285. height: math.unit(6 + 4/12, "feet"),
  12286. weight: math.unit(190, "lb"),
  12287. name: "Front-armor",
  12288. image: {
  12289. source: "./media/characters/bmc/front-armor.svg",
  12290. extra: 1538/1468,
  12291. bottom: 79/1617
  12292. }
  12293. },
  12294. },
  12295. [
  12296. {
  12297. name: "Human-sized",
  12298. height: math.unit(6 + 4 / 12, "feet")
  12299. },
  12300. {
  12301. name: "Interactive Size",
  12302. height: math.unit(25, "feet")
  12303. },
  12304. {
  12305. name: "Small",
  12306. height: math.unit(250, "feet")
  12307. },
  12308. {
  12309. name: "Normal",
  12310. height: math.unit(1250, "feet"),
  12311. default: true
  12312. },
  12313. {
  12314. name: "Good Day",
  12315. height: math.unit(88, "miles")
  12316. },
  12317. {
  12318. name: "Largest Measured Size",
  12319. height: math.unit(105.960, "galaxies")
  12320. },
  12321. ]
  12322. ))
  12323. characterMakers.push(() => makeCharacter(
  12324. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12325. {
  12326. front: {
  12327. height: math.unit(20, "feet"),
  12328. weight: math.unit(2016, "kg"),
  12329. name: "Front",
  12330. image: {
  12331. source: "./media/characters/sven-the-kaiju/front.svg",
  12332. extra: 1277/1250,
  12333. bottom: 35/1312
  12334. }
  12335. },
  12336. mouth: {
  12337. height: math.unit(1.85, "feet"),
  12338. name: "Mouth",
  12339. image: {
  12340. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12341. }
  12342. },
  12343. },
  12344. [
  12345. {
  12346. name: "Fairy",
  12347. height: math.unit(6, "inches")
  12348. },
  12349. {
  12350. name: "Normal",
  12351. height: math.unit(20, "feet"),
  12352. default: true
  12353. },
  12354. {
  12355. name: "Rampage",
  12356. height: math.unit(200, "feet")
  12357. },
  12358. {
  12359. name: "Archfey Forest Guardian",
  12360. height: math.unit(1, "mile")
  12361. },
  12362. ]
  12363. ))
  12364. characterMakers.push(() => makeCharacter(
  12365. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12366. {
  12367. front: {
  12368. height: math.unit(4, "meters"),
  12369. weight: math.unit(2, "tons"),
  12370. name: "Front",
  12371. image: {
  12372. source: "./media/characters/marik/front.svg",
  12373. extra: 1057 / 1003,
  12374. bottom: 0.08
  12375. }
  12376. },
  12377. },
  12378. [
  12379. {
  12380. name: "Normal",
  12381. height: math.unit(4, "meters"),
  12382. default: true
  12383. },
  12384. {
  12385. name: "Macro",
  12386. height: math.unit(20, "meters")
  12387. },
  12388. {
  12389. name: "Megamacro",
  12390. height: math.unit(50, "km")
  12391. },
  12392. {
  12393. name: "Gigamacro",
  12394. height: math.unit(100, "km")
  12395. },
  12396. {
  12397. name: "Alpha Macro",
  12398. height: math.unit(7.88e7, "yottameters")
  12399. },
  12400. ]
  12401. ))
  12402. characterMakers.push(() => makeCharacter(
  12403. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12404. {
  12405. front: {
  12406. height: math.unit(6, "feet"),
  12407. weight: math.unit(110, "lb"),
  12408. name: "Front",
  12409. image: {
  12410. source: "./media/characters/mel/front.svg",
  12411. extra: 736 / 617,
  12412. bottom: 0.017
  12413. }
  12414. },
  12415. },
  12416. [
  12417. {
  12418. name: "Pico",
  12419. height: math.unit(3, "pm")
  12420. },
  12421. {
  12422. name: "Nano",
  12423. height: math.unit(3, "nm")
  12424. },
  12425. {
  12426. name: "Micro",
  12427. height: math.unit(0.3, "mm"),
  12428. default: true
  12429. },
  12430. {
  12431. name: "Micro+",
  12432. height: math.unit(3, "mm")
  12433. },
  12434. {
  12435. name: "Normal",
  12436. height: math.unit(5 + 10.5 / 12, "feet")
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12442. {
  12443. kaiju: {
  12444. height: math.unit(1.75, "meters"),
  12445. weight: math.unit(55, "kg"),
  12446. name: "Kaiju",
  12447. image: {
  12448. source: "./media/characters/lykonous/kaiju.svg",
  12449. extra: 1055 / 946,
  12450. bottom: 0.135
  12451. }
  12452. },
  12453. },
  12454. [
  12455. {
  12456. name: "Normal",
  12457. height: math.unit(2.5, "meters"),
  12458. default: true
  12459. },
  12460. {
  12461. name: "Kaiju Dragon",
  12462. height: math.unit(60, "meters")
  12463. },
  12464. {
  12465. name: "Mega Kaiju",
  12466. height: math.unit(120, "km")
  12467. },
  12468. {
  12469. name: "Giga Kaiju",
  12470. height: math.unit(200, "megameters")
  12471. },
  12472. {
  12473. name: "Terra Kaiju",
  12474. height: math.unit(400, "gigameters")
  12475. },
  12476. {
  12477. name: "Kaiju Dragon God",
  12478. height: math.unit(13000, "exaparsecs")
  12479. },
  12480. ]
  12481. ))
  12482. characterMakers.push(() => makeCharacter(
  12483. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12484. {
  12485. front: {
  12486. height: math.unit(6, "feet"),
  12487. weight: math.unit(150, "lb"),
  12488. name: "Front",
  12489. image: {
  12490. source: "./media/characters/blü/front.svg",
  12491. extra: 1883 / 1564,
  12492. bottom: 0.031
  12493. }
  12494. },
  12495. },
  12496. [
  12497. {
  12498. name: "Normal",
  12499. height: math.unit(13, "feet"),
  12500. default: true
  12501. },
  12502. {
  12503. name: "Big Boi",
  12504. height: math.unit(150, "meters")
  12505. },
  12506. {
  12507. name: "Mini Stomper",
  12508. height: math.unit(300, "meters")
  12509. },
  12510. {
  12511. name: "Macro",
  12512. height: math.unit(1000, "meters")
  12513. },
  12514. {
  12515. name: "Megamacro",
  12516. height: math.unit(11000, "meters")
  12517. },
  12518. {
  12519. name: "Gigamacro",
  12520. height: math.unit(11000, "km")
  12521. },
  12522. {
  12523. name: "Teramacro",
  12524. height: math.unit(420000, "km")
  12525. },
  12526. {
  12527. name: "Examacro",
  12528. height: math.unit(120, "parsecs")
  12529. },
  12530. {
  12531. name: "God Tho",
  12532. height: math.unit(98000000000, "parsecs")
  12533. },
  12534. ]
  12535. ))
  12536. characterMakers.push(() => makeCharacter(
  12537. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12538. {
  12539. taurFront: {
  12540. height: math.unit(6, "feet"),
  12541. weight: math.unit(200, "lb"),
  12542. name: "Taur (Front)",
  12543. image: {
  12544. source: "./media/characters/scales/taur-front.svg",
  12545. extra: 1,
  12546. bottom: 0.05
  12547. }
  12548. },
  12549. taurBack: {
  12550. height: math.unit(6, "feet"),
  12551. weight: math.unit(200, "lb"),
  12552. name: "Taur (Back)",
  12553. image: {
  12554. source: "./media/characters/scales/taur-back.svg",
  12555. extra: 1,
  12556. bottom: 0.08
  12557. }
  12558. },
  12559. anthro: {
  12560. height: math.unit(6 * 7 / 12, "feet"),
  12561. weight: math.unit(100, "lb"),
  12562. name: "Anthro",
  12563. image: {
  12564. source: "./media/characters/scales/anthro.svg",
  12565. extra: 1,
  12566. bottom: 0.06
  12567. }
  12568. },
  12569. },
  12570. [
  12571. {
  12572. name: "Normal",
  12573. height: math.unit(12, "feet"),
  12574. default: true
  12575. },
  12576. ]
  12577. ))
  12578. characterMakers.push(() => makeCharacter(
  12579. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12580. {
  12581. front: {
  12582. height: math.unit(6, "feet"),
  12583. weight: math.unit(150, "lb"),
  12584. name: "Front",
  12585. image: {
  12586. source: "./media/characters/koragos/front.svg",
  12587. extra: 841 / 794,
  12588. bottom: 0.035
  12589. }
  12590. },
  12591. back: {
  12592. height: math.unit(6, "feet"),
  12593. weight: math.unit(150, "lb"),
  12594. name: "Back",
  12595. image: {
  12596. source: "./media/characters/koragos/back.svg",
  12597. extra: 841 / 810,
  12598. bottom: 0.022
  12599. }
  12600. },
  12601. },
  12602. [
  12603. {
  12604. name: "Normal",
  12605. height: math.unit(6 + 11 / 12, "feet"),
  12606. default: true
  12607. },
  12608. {
  12609. name: "Macro",
  12610. height: math.unit(490, "feet")
  12611. },
  12612. {
  12613. name: "Megamacro",
  12614. height: math.unit(10, "miles")
  12615. },
  12616. {
  12617. name: "Gigamacro",
  12618. height: math.unit(50, "miles")
  12619. },
  12620. ]
  12621. ))
  12622. characterMakers.push(() => makeCharacter(
  12623. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12624. {
  12625. front: {
  12626. height: math.unit(6, "feet"),
  12627. weight: math.unit(250, "lb"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/xylrem/front.svg",
  12631. extra: 3323 / 3050,
  12632. bottom: 0.065
  12633. }
  12634. },
  12635. },
  12636. [
  12637. {
  12638. name: "Micro",
  12639. height: math.unit(4, "feet")
  12640. },
  12641. {
  12642. name: "Normal",
  12643. height: math.unit(16, "feet"),
  12644. default: true
  12645. },
  12646. {
  12647. name: "Macro",
  12648. height: math.unit(2720, "feet")
  12649. },
  12650. {
  12651. name: "Megamacro",
  12652. height: math.unit(25000, "miles")
  12653. },
  12654. ]
  12655. ))
  12656. characterMakers.push(() => makeCharacter(
  12657. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12658. {
  12659. front: {
  12660. height: math.unit(8, "feet"),
  12661. weight: math.unit(250, "kg"),
  12662. name: "Front",
  12663. image: {
  12664. source: "./media/characters/ikideru/front.svg",
  12665. extra: 930 / 870,
  12666. bottom: 0.087
  12667. }
  12668. },
  12669. back: {
  12670. height: math.unit(8, "feet"),
  12671. weight: math.unit(250, "kg"),
  12672. name: "Back",
  12673. image: {
  12674. source: "./media/characters/ikideru/back.svg",
  12675. extra: 919 / 852,
  12676. bottom: 0.055
  12677. }
  12678. },
  12679. },
  12680. [
  12681. {
  12682. name: "Rare",
  12683. height: math.unit(8, "feet"),
  12684. default: true
  12685. },
  12686. {
  12687. name: "Playful Loom",
  12688. height: math.unit(80, "feet")
  12689. },
  12690. {
  12691. name: "City Leaner",
  12692. height: math.unit(230, "feet")
  12693. },
  12694. {
  12695. name: "Megamacro",
  12696. height: math.unit(2500, "feet")
  12697. },
  12698. {
  12699. name: "Gigamacro",
  12700. height: math.unit(26400, "feet")
  12701. },
  12702. {
  12703. name: "Tectonic Shifter",
  12704. height: math.unit(1.7, "megameters")
  12705. },
  12706. {
  12707. name: "Planet Carer",
  12708. height: math.unit(21, "megameters")
  12709. },
  12710. {
  12711. name: "God",
  12712. height: math.unit(11157.22, "parsecs")
  12713. },
  12714. ]
  12715. ))
  12716. characterMakers.push(() => makeCharacter(
  12717. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12718. {
  12719. front: {
  12720. height: math.unit(6, "feet"),
  12721. weight: math.unit(120, "lb"),
  12722. name: "Front",
  12723. image: {
  12724. source: "./media/characters/neo/front.svg"
  12725. }
  12726. },
  12727. },
  12728. [
  12729. {
  12730. name: "Micro",
  12731. height: math.unit(2, "inches"),
  12732. default: true
  12733. },
  12734. {
  12735. name: "Human Size",
  12736. height: math.unit(5 + 8 / 12, "feet")
  12737. },
  12738. ]
  12739. ))
  12740. characterMakers.push(() => makeCharacter(
  12741. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12742. {
  12743. front: {
  12744. height: math.unit(13 + 10 / 12, "feet"),
  12745. weight: math.unit(5320, "lb"),
  12746. name: "Front",
  12747. image: {
  12748. source: "./media/characters/chauncey-chantz/front.svg",
  12749. extra: 1587 / 1435,
  12750. bottom: 0.02
  12751. }
  12752. },
  12753. },
  12754. [
  12755. {
  12756. name: "Normal",
  12757. height: math.unit(13 + 10 / 12, "feet"),
  12758. default: true
  12759. },
  12760. {
  12761. name: "Macro",
  12762. height: math.unit(45, "feet")
  12763. },
  12764. {
  12765. name: "Megamacro",
  12766. height: math.unit(250, "miles")
  12767. },
  12768. {
  12769. name: "Planetary",
  12770. height: math.unit(10000, "miles")
  12771. },
  12772. {
  12773. name: "Galactic",
  12774. height: math.unit(40000, "parsecs")
  12775. },
  12776. {
  12777. name: "Universal",
  12778. height: math.unit(1, "yottameter")
  12779. },
  12780. ]
  12781. ))
  12782. characterMakers.push(() => makeCharacter(
  12783. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12784. {
  12785. front: {
  12786. height: math.unit(6, "feet"),
  12787. weight: math.unit(150, "lb"),
  12788. name: "Front",
  12789. image: {
  12790. source: "./media/characters/epifox/front.svg",
  12791. extra: 1,
  12792. bottom: 0.075
  12793. }
  12794. },
  12795. },
  12796. [
  12797. {
  12798. name: "Micro",
  12799. height: math.unit(6, "inches")
  12800. },
  12801. {
  12802. name: "Normal",
  12803. height: math.unit(12, "feet"),
  12804. default: true
  12805. },
  12806. {
  12807. name: "Macro",
  12808. height: math.unit(3810, "feet")
  12809. },
  12810. {
  12811. name: "Megamacro",
  12812. height: math.unit(500, "miles")
  12813. },
  12814. ]
  12815. ))
  12816. characterMakers.push(() => makeCharacter(
  12817. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12818. {
  12819. front: {
  12820. height: math.unit(1.8796, "m"),
  12821. weight: math.unit(230, "lb"),
  12822. name: "Front",
  12823. image: {
  12824. source: "./media/characters/colin-t/front.svg",
  12825. extra: 1272 / 1193,
  12826. bottom: 0.07
  12827. }
  12828. },
  12829. },
  12830. [
  12831. {
  12832. name: "Micro",
  12833. height: math.unit(0.571, "meters")
  12834. },
  12835. {
  12836. name: "Normal",
  12837. height: math.unit(1.8796, "meters"),
  12838. default: true
  12839. },
  12840. {
  12841. name: "Tall",
  12842. height: math.unit(4, "meters")
  12843. },
  12844. {
  12845. name: "Macro",
  12846. height: math.unit(67.241, "meters")
  12847. },
  12848. {
  12849. name: "Megamacro",
  12850. height: math.unit(371.856, "meters")
  12851. },
  12852. {
  12853. name: "Planetary",
  12854. height: math.unit(12631.5689, "km")
  12855. },
  12856. ]
  12857. ))
  12858. characterMakers.push(() => makeCharacter(
  12859. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12860. {
  12861. front: {
  12862. height: math.unit(1.85, "meters"),
  12863. weight: math.unit(80, "kg"),
  12864. name: "Front",
  12865. image: {
  12866. source: "./media/characters/matvei/front.svg",
  12867. extra: 614 / 594,
  12868. bottom: 0.01
  12869. }
  12870. },
  12871. },
  12872. [
  12873. {
  12874. name: "Normal",
  12875. height: math.unit(1.85, "meters"),
  12876. default: true
  12877. },
  12878. ]
  12879. ))
  12880. characterMakers.push(() => makeCharacter(
  12881. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12882. {
  12883. front: {
  12884. height: math.unit(5 + 9 / 12, "feet"),
  12885. weight: math.unit(70, "lb"),
  12886. name: "Front",
  12887. image: {
  12888. source: "./media/characters/quincy/front.svg",
  12889. extra: 3041 / 2751
  12890. }
  12891. },
  12892. back: {
  12893. height: math.unit(5 + 9 / 12, "feet"),
  12894. weight: math.unit(70, "lb"),
  12895. name: "Back",
  12896. image: {
  12897. source: "./media/characters/quincy/back.svg",
  12898. extra: 3041 / 2751
  12899. }
  12900. },
  12901. flying: {
  12902. height: math.unit(5 + 4 / 12, "feet"),
  12903. weight: math.unit(70, "lb"),
  12904. name: "Flying",
  12905. image: {
  12906. source: "./media/characters/quincy/flying.svg",
  12907. extra: 1044 / 930
  12908. }
  12909. },
  12910. },
  12911. [
  12912. {
  12913. name: "Micro",
  12914. height: math.unit(3, "cm")
  12915. },
  12916. {
  12917. name: "Normal",
  12918. height: math.unit(5 + 9 / 12, "feet")
  12919. },
  12920. {
  12921. name: "Macro",
  12922. height: math.unit(200, "meters"),
  12923. default: true
  12924. },
  12925. {
  12926. name: "Megamacro",
  12927. height: math.unit(1000, "meters")
  12928. },
  12929. ]
  12930. ))
  12931. characterMakers.push(() => makeCharacter(
  12932. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12933. {
  12934. front: {
  12935. height: math.unit(3 + 11/12, "feet"),
  12936. weight: math.unit(50, "lb"),
  12937. name: "Front",
  12938. image: {
  12939. source: "./media/characters/vanrel/front.svg",
  12940. extra: 1104/949,
  12941. bottom: 52/1156
  12942. }
  12943. },
  12944. back: {
  12945. height: math.unit(3 + 11/12, "feet"),
  12946. weight: math.unit(50, "lb"),
  12947. name: "Back",
  12948. image: {
  12949. source: "./media/characters/vanrel/back.svg",
  12950. extra: 1119/976,
  12951. bottom: 37/1156
  12952. }
  12953. },
  12954. tome: {
  12955. height: math.unit(1.35, "feet"),
  12956. weight: math.unit(10, "lb"),
  12957. name: "Vanrel's Tome",
  12958. rename: true,
  12959. image: {
  12960. source: "./media/characters/vanrel/tome.svg"
  12961. }
  12962. },
  12963. beans: {
  12964. height: math.unit(0.89, "feet"),
  12965. name: "Beans",
  12966. image: {
  12967. source: "./media/characters/vanrel/beans.svg"
  12968. }
  12969. },
  12970. },
  12971. [
  12972. {
  12973. name: "Normal",
  12974. height: math.unit(3 + 11/12, "feet"),
  12975. default: true
  12976. },
  12977. ]
  12978. ))
  12979. characterMakers.push(() => makeCharacter(
  12980. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12981. {
  12982. front: {
  12983. height: math.unit(7 + 5 / 12, "feet"),
  12984. name: "Front",
  12985. image: {
  12986. source: "./media/characters/kuiper-vanrel/front.svg",
  12987. extra: 1219/1169,
  12988. bottom: 69/1288
  12989. }
  12990. },
  12991. back: {
  12992. height: math.unit(7 + 5 / 12, "feet"),
  12993. name: "Back",
  12994. image: {
  12995. source: "./media/characters/kuiper-vanrel/back.svg",
  12996. extra: 1236/1193,
  12997. bottom: 27/1263
  12998. }
  12999. },
  13000. foot: {
  13001. height: math.unit(0.55, "meters"),
  13002. name: "Foot",
  13003. image: {
  13004. source: "./media/characters/kuiper-vanrel/foot.svg",
  13005. }
  13006. },
  13007. battle: {
  13008. height: math.unit(6.824, "feet"),
  13009. name: "Battle",
  13010. image: {
  13011. source: "./media/characters/kuiper-vanrel/battle.svg",
  13012. extra: 1466 / 1327,
  13013. bottom: 29 / 1492.5
  13014. }
  13015. },
  13016. meerkui: {
  13017. height: math.unit(18, "inches"),
  13018. name: "Meerkui",
  13019. image: {
  13020. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13021. extra: 1354/1289,
  13022. bottom: 69/1423
  13023. }
  13024. },
  13025. },
  13026. [
  13027. {
  13028. name: "Normal",
  13029. height: math.unit(7 + 5 / 12, "feet"),
  13030. default: true
  13031. },
  13032. ]
  13033. ))
  13034. characterMakers.push(() => makeCharacter(
  13035. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13036. {
  13037. front: {
  13038. height: math.unit(8 + 5 / 12, "feet"),
  13039. name: "Front",
  13040. image: {
  13041. source: "./media/characters/keset-vanrel/front.svg",
  13042. extra: 1231/1148,
  13043. bottom: 82/1313
  13044. }
  13045. },
  13046. back: {
  13047. height: math.unit(8 + 5 / 12, "feet"),
  13048. name: "Back",
  13049. image: {
  13050. source: "./media/characters/keset-vanrel/back.svg",
  13051. extra: 1240/1174,
  13052. bottom: 33/1273
  13053. }
  13054. },
  13055. hand: {
  13056. height: math.unit(0.6, "meters"),
  13057. name: "Hand",
  13058. image: {
  13059. source: "./media/characters/keset-vanrel/hand.svg"
  13060. }
  13061. },
  13062. foot: {
  13063. height: math.unit(0.94978, "meters"),
  13064. name: "Foot",
  13065. image: {
  13066. source: "./media/characters/keset-vanrel/foot.svg"
  13067. }
  13068. },
  13069. battle: {
  13070. height: math.unit(7.408, "feet"),
  13071. name: "Battle",
  13072. image: {
  13073. source: "./media/characters/keset-vanrel/battle.svg",
  13074. extra: 1890 / 1386,
  13075. bottom: 73.28 / 1970
  13076. }
  13077. },
  13078. },
  13079. [
  13080. {
  13081. name: "Normal",
  13082. height: math.unit(8 + 5 / 12, "feet"),
  13083. default: true
  13084. },
  13085. ]
  13086. ))
  13087. characterMakers.push(() => makeCharacter(
  13088. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13089. {
  13090. front: {
  13091. height: math.unit(6, "feet"),
  13092. weight: math.unit(150, "lb"),
  13093. name: "Front",
  13094. image: {
  13095. source: "./media/characters/neos/front.svg",
  13096. extra: 1696 / 992,
  13097. bottom: 0.14
  13098. }
  13099. },
  13100. },
  13101. [
  13102. {
  13103. name: "Normal",
  13104. height: math.unit(54, "cm"),
  13105. default: true
  13106. },
  13107. {
  13108. name: "Macro",
  13109. height: math.unit(100, "m")
  13110. },
  13111. {
  13112. name: "Megamacro",
  13113. height: math.unit(10, "km")
  13114. },
  13115. {
  13116. name: "Megamacro+",
  13117. height: math.unit(100, "km")
  13118. },
  13119. {
  13120. name: "Gigamacro",
  13121. height: math.unit(100, "Mm")
  13122. },
  13123. {
  13124. name: "Teramacro",
  13125. height: math.unit(100, "Gm")
  13126. },
  13127. {
  13128. name: "Examacro",
  13129. height: math.unit(100, "Em")
  13130. },
  13131. {
  13132. name: "Godly",
  13133. height: math.unit(10000, "Ym")
  13134. },
  13135. {
  13136. name: "Beyond Godly",
  13137. height: math.unit(25, "multiverses")
  13138. },
  13139. ]
  13140. ))
  13141. characterMakers.push(() => makeCharacter(
  13142. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13143. {
  13144. feminine: {
  13145. height: math.unit(5, "feet"),
  13146. weight: math.unit(100, "lb"),
  13147. name: "Feminine",
  13148. image: {
  13149. source: "./media/characters/sammy-mouse/feminine.svg",
  13150. extra: 2526 / 2425,
  13151. bottom: 0.123
  13152. }
  13153. },
  13154. masculine: {
  13155. height: math.unit(5, "feet"),
  13156. weight: math.unit(100, "lb"),
  13157. name: "Masculine",
  13158. image: {
  13159. source: "./media/characters/sammy-mouse/masculine.svg",
  13160. extra: 2526 / 2425,
  13161. bottom: 0.123
  13162. }
  13163. },
  13164. },
  13165. [
  13166. {
  13167. name: "Micro",
  13168. height: math.unit(5, "inches")
  13169. },
  13170. {
  13171. name: "Normal",
  13172. height: math.unit(5, "feet"),
  13173. default: true
  13174. },
  13175. {
  13176. name: "Macro",
  13177. height: math.unit(60, "feet")
  13178. },
  13179. ]
  13180. ))
  13181. characterMakers.push(() => makeCharacter(
  13182. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13183. {
  13184. front: {
  13185. height: math.unit(4, "feet"),
  13186. weight: math.unit(50, "lb"),
  13187. name: "Front",
  13188. image: {
  13189. source: "./media/characters/kole/front.svg",
  13190. extra: 1423 / 1303,
  13191. bottom: 0.025
  13192. }
  13193. },
  13194. back: {
  13195. height: math.unit(4, "feet"),
  13196. weight: math.unit(50, "lb"),
  13197. name: "Back",
  13198. image: {
  13199. source: "./media/characters/kole/back.svg",
  13200. extra: 1426 / 1280,
  13201. bottom: 0.02
  13202. }
  13203. },
  13204. },
  13205. [
  13206. {
  13207. name: "Normal",
  13208. height: math.unit(4, "feet"),
  13209. default: true
  13210. },
  13211. ]
  13212. ))
  13213. characterMakers.push(() => makeCharacter(
  13214. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13215. {
  13216. front: {
  13217. height: math.unit(2.5, "feet"),
  13218. weight: math.unit(32, "lb"),
  13219. name: "Front",
  13220. image: {
  13221. source: "./media/characters/rufran/front.svg",
  13222. extra: 1313/885,
  13223. bottom: 94/1407
  13224. }
  13225. },
  13226. side: {
  13227. height: math.unit(2.5, "feet"),
  13228. weight: math.unit(32, "lb"),
  13229. name: "Side",
  13230. image: {
  13231. source: "./media/characters/rufran/side.svg",
  13232. extra: 1109/852,
  13233. bottom: 118/1227
  13234. }
  13235. },
  13236. back: {
  13237. height: math.unit(2.5, "feet"),
  13238. weight: math.unit(32, "lb"),
  13239. name: "Back",
  13240. image: {
  13241. source: "./media/characters/rufran/back.svg",
  13242. extra: 1280/878,
  13243. bottom: 131/1411
  13244. }
  13245. },
  13246. mouth: {
  13247. height: math.unit(1.13, "feet"),
  13248. name: "Mouth",
  13249. image: {
  13250. source: "./media/characters/rufran/mouth.svg"
  13251. }
  13252. },
  13253. foot: {
  13254. height: math.unit(1.33, "feet"),
  13255. name: "Foot",
  13256. image: {
  13257. source: "./media/characters/rufran/foot.svg"
  13258. }
  13259. },
  13260. koboldFront: {
  13261. height: math.unit(2 + 6 / 12, "feet"),
  13262. weight: math.unit(20, "lb"),
  13263. name: "Front (Kobold)",
  13264. image: {
  13265. source: "./media/characters/rufran/kobold-front.svg",
  13266. extra: 2041 / 1839,
  13267. bottom: 0.055
  13268. }
  13269. },
  13270. koboldBack: {
  13271. height: math.unit(2 + 6 / 12, "feet"),
  13272. weight: math.unit(20, "lb"),
  13273. name: "Back (Kobold)",
  13274. image: {
  13275. source: "./media/characters/rufran/kobold-back.svg",
  13276. extra: 2054 / 1839,
  13277. bottom: 0.01
  13278. }
  13279. },
  13280. koboldHand: {
  13281. height: math.unit(0.2166, "meters"),
  13282. name: "Hand (Kobold)",
  13283. image: {
  13284. source: "./media/characters/rufran/kobold-hand.svg"
  13285. }
  13286. },
  13287. koboldFoot: {
  13288. height: math.unit(0.185, "meters"),
  13289. name: "Foot (Kobold)",
  13290. image: {
  13291. source: "./media/characters/rufran/kobold-foot.svg"
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Micro",
  13298. height: math.unit(1, "inch")
  13299. },
  13300. {
  13301. name: "Normal",
  13302. height: math.unit(2 + 6 / 12, "feet"),
  13303. default: true
  13304. },
  13305. {
  13306. name: "Big",
  13307. height: math.unit(60, "feet")
  13308. },
  13309. {
  13310. name: "Macro",
  13311. height: math.unit(325, "feet")
  13312. },
  13313. ]
  13314. ))
  13315. characterMakers.push(() => makeCharacter(
  13316. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13317. {
  13318. front: {
  13319. height: math.unit(0.3, "meters"),
  13320. weight: math.unit(3.5, "kg"),
  13321. name: "Front",
  13322. image: {
  13323. source: "./media/characters/chip/front.svg",
  13324. extra: 748 / 674
  13325. }
  13326. },
  13327. },
  13328. [
  13329. {
  13330. name: "Micro",
  13331. height: math.unit(1, "inch"),
  13332. default: true
  13333. },
  13334. ]
  13335. ))
  13336. characterMakers.push(() => makeCharacter(
  13337. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13338. {
  13339. side: {
  13340. height: math.unit(2.3, "meters"),
  13341. weight: math.unit(3500, "lb"),
  13342. name: "Side",
  13343. image: {
  13344. source: "./media/characters/torvid/side.svg",
  13345. extra: 1972 / 722,
  13346. bottom: 0.035
  13347. }
  13348. },
  13349. },
  13350. [
  13351. {
  13352. name: "Normal",
  13353. height: math.unit(2.3, "meters"),
  13354. default: true
  13355. },
  13356. ]
  13357. ))
  13358. characterMakers.push(() => makeCharacter(
  13359. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13360. {
  13361. front: {
  13362. height: math.unit(2, "meters"),
  13363. weight: math.unit(150.5, "kg"),
  13364. name: "Front",
  13365. image: {
  13366. source: "./media/characters/susan/front.svg",
  13367. extra: 693 / 635,
  13368. bottom: 0.05
  13369. }
  13370. },
  13371. },
  13372. [
  13373. {
  13374. name: "Megamacro",
  13375. height: math.unit(505, "miles"),
  13376. default: true
  13377. },
  13378. ]
  13379. ))
  13380. characterMakers.push(() => makeCharacter(
  13381. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13382. {
  13383. front: {
  13384. height: math.unit(6, "feet"),
  13385. weight: math.unit(150, "lb"),
  13386. name: "Front",
  13387. image: {
  13388. source: "./media/characters/raindrops/front.svg",
  13389. extra: 2655 / 2461,
  13390. bottom: 49 / 2705
  13391. }
  13392. },
  13393. back: {
  13394. height: math.unit(6, "feet"),
  13395. weight: math.unit(150, "lb"),
  13396. name: "Back",
  13397. image: {
  13398. source: "./media/characters/raindrops/back.svg",
  13399. extra: 2574 / 2400,
  13400. bottom: 65 / 2634
  13401. }
  13402. },
  13403. },
  13404. [
  13405. {
  13406. name: "Micro",
  13407. height: math.unit(6, "inches")
  13408. },
  13409. {
  13410. name: "Normal",
  13411. height: math.unit(6 + 2 / 12, "feet")
  13412. },
  13413. {
  13414. name: "Macro",
  13415. height: math.unit(131, "feet"),
  13416. default: true
  13417. },
  13418. {
  13419. name: "Megamacro",
  13420. height: math.unit(15, "miles")
  13421. },
  13422. {
  13423. name: "Gigamacro",
  13424. height: math.unit(4000, "miles")
  13425. },
  13426. {
  13427. name: "Teramacro",
  13428. height: math.unit(315000, "miles")
  13429. },
  13430. ]
  13431. ))
  13432. characterMakers.push(() => makeCharacter(
  13433. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13434. {
  13435. front: {
  13436. height: math.unit(2.794, "meters"),
  13437. weight: math.unit(325, "kg"),
  13438. name: "Front",
  13439. image: {
  13440. source: "./media/characters/tezwa/front.svg",
  13441. extra: 2083 / 1906,
  13442. bottom: 0.031
  13443. }
  13444. },
  13445. foot: {
  13446. height: math.unit(0.687, "meters"),
  13447. name: "Foot",
  13448. image: {
  13449. source: "./media/characters/tezwa/foot.svg"
  13450. }
  13451. },
  13452. },
  13453. [
  13454. {
  13455. name: "Normal",
  13456. height: math.unit(9 + 2 / 12, "feet"),
  13457. default: true
  13458. },
  13459. ]
  13460. ))
  13461. characterMakers.push(() => makeCharacter(
  13462. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13463. {
  13464. front: {
  13465. height: math.unit(58, "feet"),
  13466. weight: math.unit(89000, "lb"),
  13467. name: "Front",
  13468. image: {
  13469. source: "./media/characters/typhus/front.svg",
  13470. extra: 816 / 800,
  13471. bottom: 0.065
  13472. }
  13473. },
  13474. },
  13475. [
  13476. {
  13477. name: "Macro",
  13478. height: math.unit(58, "feet"),
  13479. default: true
  13480. },
  13481. ]
  13482. ))
  13483. characterMakers.push(() => makeCharacter(
  13484. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13485. {
  13486. front: {
  13487. height: math.unit(12, "feet"),
  13488. weight: math.unit(6, "tonnes"),
  13489. name: "Front",
  13490. image: {
  13491. source: "./media/characters/lyra-von-wulf/front.svg",
  13492. extra: 1,
  13493. bottom: 0.10
  13494. }
  13495. },
  13496. frontMecha: {
  13497. height: math.unit(12, "feet"),
  13498. weight: math.unit(12, "tonnes"),
  13499. name: "Front (Mecha)",
  13500. image: {
  13501. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13502. extra: 1,
  13503. bottom: 0.042
  13504. }
  13505. },
  13506. maw: {
  13507. height: math.unit(2.2, "feet"),
  13508. name: "Maw",
  13509. image: {
  13510. source: "./media/characters/lyra-von-wulf/maw.svg"
  13511. }
  13512. },
  13513. },
  13514. [
  13515. {
  13516. name: "Normal",
  13517. height: math.unit(12, "feet"),
  13518. default: true
  13519. },
  13520. {
  13521. name: "Classic",
  13522. height: math.unit(50, "feet")
  13523. },
  13524. {
  13525. name: "Macro",
  13526. height: math.unit(500, "feet")
  13527. },
  13528. {
  13529. name: "Megamacro",
  13530. height: math.unit(1, "mile")
  13531. },
  13532. {
  13533. name: "Gigamacro",
  13534. height: math.unit(400, "miles")
  13535. },
  13536. {
  13537. name: "Teramacro",
  13538. height: math.unit(22000, "miles")
  13539. },
  13540. {
  13541. name: "Solarmacro",
  13542. height: math.unit(8600000, "miles")
  13543. },
  13544. {
  13545. name: "Galactic",
  13546. height: math.unit(1057000, "lightyears")
  13547. },
  13548. ]
  13549. ))
  13550. characterMakers.push(() => makeCharacter(
  13551. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13552. {
  13553. front: {
  13554. height: math.unit(6 + 10 / 12, "feet"),
  13555. weight: math.unit(150, "lb"),
  13556. name: "Front",
  13557. image: {
  13558. source: "./media/characters/dixon/front.svg",
  13559. extra: 3361 / 3209,
  13560. bottom: 0.01
  13561. }
  13562. },
  13563. },
  13564. [
  13565. {
  13566. name: "Normal",
  13567. height: math.unit(6 + 10 / 12, "feet"),
  13568. default: true
  13569. },
  13570. {
  13571. name: "Big",
  13572. height: math.unit(12, "meters")
  13573. },
  13574. {
  13575. name: "Macro",
  13576. height: math.unit(500, "meters")
  13577. },
  13578. {
  13579. name: "Megamacro",
  13580. height: math.unit(2, "km")
  13581. },
  13582. ]
  13583. ))
  13584. characterMakers.push(() => makeCharacter(
  13585. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13586. {
  13587. front: {
  13588. height: math.unit(185, "cm"),
  13589. weight: math.unit(68, "kg"),
  13590. name: "Front",
  13591. image: {
  13592. source: "./media/characters/kauko/front.svg",
  13593. extra: 1455 / 1421,
  13594. bottom: 0.03
  13595. }
  13596. },
  13597. back: {
  13598. height: math.unit(185, "cm"),
  13599. weight: math.unit(68, "kg"),
  13600. name: "Back",
  13601. image: {
  13602. source: "./media/characters/kauko/back.svg",
  13603. extra: 1455 / 1421,
  13604. bottom: 0.004
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Normal",
  13611. height: math.unit(185, "cm"),
  13612. default: true
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(6, "feet"),
  13621. weight: math.unit(150, "kg"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/varg/front.svg",
  13625. extra: 1108 / 1018,
  13626. bottom: 0.0375
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Normal",
  13633. height: math.unit(5, "meters")
  13634. },
  13635. {
  13636. name: "Macro",
  13637. height: math.unit(200, "meters")
  13638. },
  13639. {
  13640. name: "Megamacro",
  13641. height: math.unit(20, "kilometers")
  13642. },
  13643. {
  13644. name: "True Size",
  13645. height: math.unit(211, "km"),
  13646. default: true
  13647. },
  13648. {
  13649. name: "Gigamacro",
  13650. height: math.unit(1000, "km")
  13651. },
  13652. {
  13653. name: "Gigamacro+",
  13654. height: math.unit(8000, "km")
  13655. },
  13656. {
  13657. name: "Teramacro",
  13658. height: math.unit(1000000, "km")
  13659. },
  13660. ]
  13661. ))
  13662. characterMakers.push(() => makeCharacter(
  13663. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13664. {
  13665. front: {
  13666. height: math.unit(7 + 7 / 12, "feet"),
  13667. weight: math.unit(267, "lb"),
  13668. name: "Front",
  13669. image: {
  13670. source: "./media/characters/dayza/front.svg",
  13671. extra: 1262 / 1200,
  13672. bottom: 0.035
  13673. }
  13674. },
  13675. side: {
  13676. height: math.unit(7 + 7 / 12, "feet"),
  13677. weight: math.unit(267, "lb"),
  13678. name: "Side",
  13679. image: {
  13680. source: "./media/characters/dayza/side.svg",
  13681. extra: 1295 / 1245,
  13682. bottom: 0.05
  13683. }
  13684. },
  13685. back: {
  13686. height: math.unit(7 + 7 / 12, "feet"),
  13687. weight: math.unit(267, "lb"),
  13688. name: "Back",
  13689. image: {
  13690. source: "./media/characters/dayza/back.svg",
  13691. extra: 1241 / 1170
  13692. }
  13693. },
  13694. },
  13695. [
  13696. {
  13697. name: "Normal",
  13698. height: math.unit(7 + 7 / 12, "feet"),
  13699. default: true
  13700. },
  13701. {
  13702. name: "Macro",
  13703. height: math.unit(155, "feet")
  13704. },
  13705. ]
  13706. ))
  13707. characterMakers.push(() => makeCharacter(
  13708. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13709. {
  13710. front: {
  13711. height: math.unit(6 + 5 / 12, "feet"),
  13712. weight: math.unit(160, "lb"),
  13713. name: "Front",
  13714. image: {
  13715. source: "./media/characters/xanthos/front.svg",
  13716. extra: 1,
  13717. bottom: 0.04
  13718. }
  13719. },
  13720. back: {
  13721. height: math.unit(6 + 5 / 12, "feet"),
  13722. weight: math.unit(160, "lb"),
  13723. name: "Back",
  13724. image: {
  13725. source: "./media/characters/xanthos/back.svg",
  13726. extra: 1,
  13727. bottom: 0.03
  13728. }
  13729. },
  13730. hand: {
  13731. height: math.unit(0.928, "feet"),
  13732. name: "Hand",
  13733. image: {
  13734. source: "./media/characters/xanthos/hand.svg"
  13735. }
  13736. },
  13737. foot: {
  13738. height: math.unit(1.286, "feet"),
  13739. name: "Foot",
  13740. image: {
  13741. source: "./media/characters/xanthos/foot.svg"
  13742. }
  13743. },
  13744. },
  13745. [
  13746. {
  13747. name: "Normal",
  13748. height: math.unit(6 + 5 / 12, "feet"),
  13749. default: true
  13750. },
  13751. {
  13752. name: "Normal+",
  13753. height: math.unit(6, "meters")
  13754. },
  13755. {
  13756. name: "Macro",
  13757. height: math.unit(40, "feet")
  13758. },
  13759. {
  13760. name: "Macro+",
  13761. height: math.unit(200, "meters")
  13762. },
  13763. {
  13764. name: "Megamacro",
  13765. height: math.unit(20, "km")
  13766. },
  13767. {
  13768. name: "Megamacro+",
  13769. height: math.unit(100, "km")
  13770. },
  13771. {
  13772. name: "Gigamacro",
  13773. height: math.unit(200, "megameters")
  13774. },
  13775. {
  13776. name: "Gigamacro+",
  13777. height: math.unit(1.5, "gigameters")
  13778. },
  13779. ]
  13780. ))
  13781. characterMakers.push(() => makeCharacter(
  13782. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13783. {
  13784. front: {
  13785. height: math.unit(6 + 3 / 12, "feet"),
  13786. weight: math.unit(215, "lb"),
  13787. name: "Front",
  13788. image: {
  13789. source: "./media/characters/grynn/front.svg",
  13790. extra: 4627 / 4209,
  13791. bottom: 0.047
  13792. }
  13793. },
  13794. },
  13795. [
  13796. {
  13797. name: "Micro",
  13798. height: math.unit(6, "inches")
  13799. },
  13800. {
  13801. name: "Normal",
  13802. height: math.unit(6 + 3 / 12, "feet"),
  13803. default: true
  13804. },
  13805. {
  13806. name: "Big",
  13807. height: math.unit(104, "feet")
  13808. },
  13809. {
  13810. name: "Macro",
  13811. height: math.unit(944, "feet")
  13812. },
  13813. {
  13814. name: "Macro+",
  13815. height: math.unit(9480, "feet")
  13816. },
  13817. {
  13818. name: "Megamacro",
  13819. height: math.unit(78752, "feet")
  13820. },
  13821. {
  13822. name: "Megamacro+",
  13823. height: math.unit(630128, "feet")
  13824. },
  13825. {
  13826. name: "Megamacro++",
  13827. height: math.unit(3150695, "feet")
  13828. },
  13829. ]
  13830. ))
  13831. characterMakers.push(() => makeCharacter(
  13832. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13833. {
  13834. front: {
  13835. height: math.unit(7 + 5 / 12, "feet"),
  13836. weight: math.unit(450, "lb"),
  13837. name: "Front",
  13838. image: {
  13839. source: "./media/characters/mocha-aura/front.svg",
  13840. extra: 1907 / 1817,
  13841. bottom: 0.04
  13842. }
  13843. },
  13844. back: {
  13845. height: math.unit(7 + 5 / 12, "feet"),
  13846. weight: math.unit(450, "lb"),
  13847. name: "Back",
  13848. image: {
  13849. source: "./media/characters/mocha-aura/back.svg",
  13850. extra: 1900 / 1825,
  13851. bottom: 0.045
  13852. }
  13853. },
  13854. },
  13855. [
  13856. {
  13857. name: "Nano",
  13858. height: math.unit(1, "nm")
  13859. },
  13860. {
  13861. name: "Megamicro",
  13862. height: math.unit(1, "mm")
  13863. },
  13864. {
  13865. name: "Micro",
  13866. height: math.unit(3, "inches")
  13867. },
  13868. {
  13869. name: "Normal",
  13870. height: math.unit(7 + 5 / 12, "feet"),
  13871. default: true
  13872. },
  13873. {
  13874. name: "Macro",
  13875. height: math.unit(30, "feet")
  13876. },
  13877. {
  13878. name: "Megamacro",
  13879. height: math.unit(3500, "feet")
  13880. },
  13881. {
  13882. name: "Teramacro",
  13883. height: math.unit(500000, "miles")
  13884. },
  13885. {
  13886. name: "Petamacro",
  13887. height: math.unit(50000000000000000, "parsecs")
  13888. },
  13889. ]
  13890. ))
  13891. characterMakers.push(() => makeCharacter(
  13892. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13893. {
  13894. front: {
  13895. height: math.unit(6, "feet"),
  13896. weight: math.unit(150, "lb"),
  13897. name: "Front",
  13898. image: {
  13899. source: "./media/characters/ilisha-devya/front.svg",
  13900. extra: 1053/1049,
  13901. bottom: 270/1323
  13902. }
  13903. },
  13904. back: {
  13905. height: math.unit(6, "feet"),
  13906. weight: math.unit(150, "lb"),
  13907. name: "Back",
  13908. image: {
  13909. source: "./media/characters/ilisha-devya/back.svg",
  13910. extra: 1131/1128,
  13911. bottom: 39/1170
  13912. }
  13913. },
  13914. },
  13915. [
  13916. {
  13917. name: "Macro",
  13918. height: math.unit(500, "feet"),
  13919. default: true
  13920. },
  13921. {
  13922. name: "Megamacro",
  13923. height: math.unit(10, "miles")
  13924. },
  13925. {
  13926. name: "Gigamacro",
  13927. height: math.unit(100000, "miles")
  13928. },
  13929. {
  13930. name: "Examacro",
  13931. height: math.unit(1e9, "lightyears")
  13932. },
  13933. {
  13934. name: "Omniversal",
  13935. height: math.unit(1e33, "lightyears")
  13936. },
  13937. {
  13938. name: "Beyond Infinite",
  13939. height: math.unit(1e100, "lightyears")
  13940. },
  13941. ]
  13942. ))
  13943. characterMakers.push(() => makeCharacter(
  13944. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13945. {
  13946. Side: {
  13947. height: math.unit(6, "feet"),
  13948. weight: math.unit(150, "lb"),
  13949. name: "Side",
  13950. image: {
  13951. source: "./media/characters/mira/side.svg",
  13952. extra: 900 / 799,
  13953. bottom: 0.02
  13954. }
  13955. },
  13956. },
  13957. [
  13958. {
  13959. name: "Human Size",
  13960. height: math.unit(6, "feet")
  13961. },
  13962. {
  13963. name: "Macro",
  13964. height: math.unit(100, "feet"),
  13965. default: true
  13966. },
  13967. {
  13968. name: "Megamacro",
  13969. height: math.unit(10, "miles")
  13970. },
  13971. {
  13972. name: "Gigamacro",
  13973. height: math.unit(25000, "miles")
  13974. },
  13975. {
  13976. name: "Teramacro",
  13977. height: math.unit(300, "AU")
  13978. },
  13979. {
  13980. name: "Full Size",
  13981. height: math.unit(4.5e10, "lightyears")
  13982. },
  13983. ]
  13984. ))
  13985. characterMakers.push(() => makeCharacter(
  13986. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13987. {
  13988. front: {
  13989. height: math.unit(6, "feet"),
  13990. weight: math.unit(150, "lb"),
  13991. name: "Front",
  13992. image: {
  13993. source: "./media/characters/holly/front.svg",
  13994. extra: 639 / 606
  13995. }
  13996. },
  13997. back: {
  13998. height: math.unit(6, "feet"),
  13999. weight: math.unit(150, "lb"),
  14000. name: "Back",
  14001. image: {
  14002. source: "./media/characters/holly/back.svg",
  14003. extra: 623 / 598
  14004. }
  14005. },
  14006. frontWorking: {
  14007. height: math.unit(6, "feet"),
  14008. weight: math.unit(150, "lb"),
  14009. name: "Front (Working)",
  14010. image: {
  14011. source: "./media/characters/holly/front-working.svg",
  14012. extra: 607 / 577,
  14013. bottom: 0.048
  14014. }
  14015. },
  14016. },
  14017. [
  14018. {
  14019. name: "Normal",
  14020. height: math.unit(12 + 3 / 12, "feet"),
  14021. default: true
  14022. },
  14023. ]
  14024. ))
  14025. characterMakers.push(() => makeCharacter(
  14026. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14027. {
  14028. front: {
  14029. height: math.unit(6, "feet"),
  14030. weight: math.unit(150, "lb"),
  14031. name: "Front",
  14032. image: {
  14033. source: "./media/characters/porter/front.svg",
  14034. extra: 1,
  14035. bottom: 0.01
  14036. }
  14037. },
  14038. frontRobes: {
  14039. height: math.unit(6, "feet"),
  14040. weight: math.unit(150, "lb"),
  14041. name: "Front (Robes)",
  14042. image: {
  14043. source: "./media/characters/porter/front-robes.svg",
  14044. extra: 1.01,
  14045. bottom: 0.01
  14046. }
  14047. },
  14048. },
  14049. [
  14050. {
  14051. name: "Normal",
  14052. height: math.unit(11 + 9 / 12, "feet"),
  14053. default: true
  14054. },
  14055. ]
  14056. ))
  14057. characterMakers.push(() => makeCharacter(
  14058. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14059. {
  14060. legendary: {
  14061. height: math.unit(6, "feet"),
  14062. weight: math.unit(150, "lb"),
  14063. name: "Legendary",
  14064. image: {
  14065. source: "./media/characters/lucy/legendary.svg",
  14066. extra: 1355 / 1100,
  14067. bottom: 0.045
  14068. }
  14069. },
  14070. },
  14071. [
  14072. {
  14073. name: "Legendary",
  14074. height: math.unit(86882 * 2, "miles"),
  14075. default: true
  14076. },
  14077. ]
  14078. ))
  14079. characterMakers.push(() => makeCharacter(
  14080. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14081. {
  14082. front: {
  14083. height: math.unit(6, "feet"),
  14084. weight: math.unit(150, "lb"),
  14085. name: "Front",
  14086. image: {
  14087. source: "./media/characters/drusilla/front.svg",
  14088. extra: 678 / 635,
  14089. bottom: 0.03
  14090. }
  14091. },
  14092. back: {
  14093. height: math.unit(6, "feet"),
  14094. weight: math.unit(150, "lb"),
  14095. name: "Back",
  14096. image: {
  14097. source: "./media/characters/drusilla/back.svg",
  14098. extra: 678 / 635,
  14099. bottom: 0.005
  14100. }
  14101. },
  14102. },
  14103. [
  14104. {
  14105. name: "Macro",
  14106. height: math.unit(100, "feet")
  14107. },
  14108. {
  14109. name: "Canon Height",
  14110. height: math.unit(2000, "feet"),
  14111. default: true
  14112. },
  14113. ]
  14114. ))
  14115. characterMakers.push(() => makeCharacter(
  14116. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14117. {
  14118. front: {
  14119. height: math.unit(6, "feet"),
  14120. weight: math.unit(180, "lb"),
  14121. name: "Front",
  14122. image: {
  14123. source: "./media/characters/renard-thatch/front.svg",
  14124. extra: 2411 / 2275,
  14125. bottom: 0.01
  14126. }
  14127. },
  14128. frontPosing: {
  14129. height: math.unit(6, "feet"),
  14130. weight: math.unit(180, "lb"),
  14131. name: "Front (Posing)",
  14132. image: {
  14133. source: "./media/characters/renard-thatch/front-posing.svg",
  14134. extra: 2381 / 2261,
  14135. bottom: 0.01
  14136. }
  14137. },
  14138. back: {
  14139. height: math.unit(6, "feet"),
  14140. weight: math.unit(180, "lb"),
  14141. name: "Back",
  14142. image: {
  14143. source: "./media/characters/renard-thatch/back.svg",
  14144. extra: 2428 / 2288
  14145. }
  14146. },
  14147. },
  14148. [
  14149. {
  14150. name: "Micro",
  14151. height: math.unit(3, "inches")
  14152. },
  14153. {
  14154. name: "Default",
  14155. height: math.unit(6, "feet"),
  14156. default: true
  14157. },
  14158. {
  14159. name: "Macro",
  14160. height: math.unit(75, "feet")
  14161. },
  14162. ]
  14163. ))
  14164. characterMakers.push(() => makeCharacter(
  14165. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14166. {
  14167. front: {
  14168. height: math.unit(1450, "feet"),
  14169. weight: math.unit(1.21e6, "tons"),
  14170. name: "Front",
  14171. image: {
  14172. source: "./media/characters/sekvra/front.svg",
  14173. extra: 1193/1190,
  14174. bottom: 78/1271
  14175. }
  14176. },
  14177. side: {
  14178. height: math.unit(1450, "feet"),
  14179. weight: math.unit(1.21e6, "tons"),
  14180. name: "Side",
  14181. image: {
  14182. source: "./media/characters/sekvra/side.svg",
  14183. extra: 1193/1190,
  14184. bottom: 52/1245
  14185. }
  14186. },
  14187. back: {
  14188. height: math.unit(1450, "feet"),
  14189. weight: math.unit(1.21e6, "tons"),
  14190. name: "Back",
  14191. image: {
  14192. source: "./media/characters/sekvra/back.svg",
  14193. extra: 1219/1216,
  14194. bottom: 21/1240
  14195. }
  14196. },
  14197. frontClothed: {
  14198. height: math.unit(1450, "feet"),
  14199. weight: math.unit(1.21e6, "tons"),
  14200. name: "Front (Clothed)",
  14201. image: {
  14202. source: "./media/characters/sekvra/front-clothed.svg",
  14203. extra: 1192/1189,
  14204. bottom: 79/1271
  14205. }
  14206. },
  14207. },
  14208. [
  14209. {
  14210. name: "Macro",
  14211. height: math.unit(1450, "feet"),
  14212. default: true
  14213. },
  14214. {
  14215. name: "Megamacro",
  14216. height: math.unit(15000, "feet")
  14217. },
  14218. ]
  14219. ))
  14220. characterMakers.push(() => makeCharacter(
  14221. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14222. {
  14223. front: {
  14224. height: math.unit(6, "feet"),
  14225. weight: math.unit(150, "lb"),
  14226. name: "Front",
  14227. image: {
  14228. source: "./media/characters/carmine/front.svg",
  14229. extra: 1,
  14230. bottom: 0.035
  14231. }
  14232. },
  14233. frontArmor: {
  14234. height: math.unit(6, "feet"),
  14235. weight: math.unit(150, "lb"),
  14236. name: "Front (Armor)",
  14237. image: {
  14238. source: "./media/characters/carmine/front-armor.svg",
  14239. extra: 1,
  14240. bottom: 0.035
  14241. }
  14242. },
  14243. },
  14244. [
  14245. {
  14246. name: "Large",
  14247. height: math.unit(1, "mile")
  14248. },
  14249. {
  14250. name: "Huge",
  14251. height: math.unit(40, "miles"),
  14252. default: true
  14253. },
  14254. {
  14255. name: "Colossal",
  14256. height: math.unit(2500, "miles")
  14257. },
  14258. ]
  14259. ))
  14260. characterMakers.push(() => makeCharacter(
  14261. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14262. {
  14263. front: {
  14264. height: math.unit(6, "feet"),
  14265. weight: math.unit(150, "lb"),
  14266. name: "Front",
  14267. image: {
  14268. source: "./media/characters/elyssia/front.svg",
  14269. extra: 2201 / 2035,
  14270. bottom: 0.05
  14271. }
  14272. },
  14273. frontClothed: {
  14274. height: math.unit(6, "feet"),
  14275. weight: math.unit(150, "lb"),
  14276. name: "Front (Clothed)",
  14277. image: {
  14278. source: "./media/characters/elyssia/front-clothed.svg",
  14279. extra: 2201 / 2035,
  14280. bottom: 0.05
  14281. }
  14282. },
  14283. back: {
  14284. height: math.unit(6, "feet"),
  14285. weight: math.unit(150, "lb"),
  14286. name: "Back",
  14287. image: {
  14288. source: "./media/characters/elyssia/back.svg",
  14289. extra: 2201 / 2035,
  14290. bottom: 0.013
  14291. }
  14292. },
  14293. },
  14294. [
  14295. {
  14296. name: "Smaller",
  14297. height: math.unit(150, "feet")
  14298. },
  14299. {
  14300. name: "Standard",
  14301. height: math.unit(1400, "feet"),
  14302. default: true
  14303. },
  14304. {
  14305. name: "Distracted",
  14306. height: math.unit(15000, "feet")
  14307. },
  14308. ]
  14309. ))
  14310. characterMakers.push(() => makeCharacter(
  14311. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14312. {
  14313. front: {
  14314. height: math.unit(7 + 4/12, "feet"),
  14315. weight: math.unit(690, "lb"),
  14316. name: "Front",
  14317. image: {
  14318. source: "./media/characters/geno-maxwell/front.svg",
  14319. extra: 984/856,
  14320. bottom: 87/1071
  14321. }
  14322. },
  14323. back: {
  14324. height: math.unit(7 + 4/12, "feet"),
  14325. weight: math.unit(690, "lb"),
  14326. name: "Back",
  14327. image: {
  14328. source: "./media/characters/geno-maxwell/back.svg",
  14329. extra: 981/854,
  14330. bottom: 57/1038
  14331. }
  14332. },
  14333. frontCostume: {
  14334. height: math.unit(7 + 4/12, "feet"),
  14335. weight: math.unit(690, "lb"),
  14336. name: "Front (Costume)",
  14337. image: {
  14338. source: "./media/characters/geno-maxwell/front-costume.svg",
  14339. extra: 984/856,
  14340. bottom: 87/1071
  14341. }
  14342. },
  14343. backcostume: {
  14344. height: math.unit(7 + 4/12, "feet"),
  14345. weight: math.unit(690, "lb"),
  14346. name: "Back (Costume)",
  14347. image: {
  14348. source: "./media/characters/geno-maxwell/back-costume.svg",
  14349. extra: 981/854,
  14350. bottom: 57/1038
  14351. }
  14352. },
  14353. },
  14354. [
  14355. {
  14356. name: "Micro",
  14357. height: math.unit(3, "inches")
  14358. },
  14359. {
  14360. name: "Normal",
  14361. height: math.unit(7 + 4 / 12, "feet"),
  14362. default: true
  14363. },
  14364. {
  14365. name: "Macro",
  14366. height: math.unit(220, "feet")
  14367. },
  14368. {
  14369. name: "Megamacro",
  14370. height: math.unit(11, "miles")
  14371. },
  14372. ]
  14373. ))
  14374. characterMakers.push(() => makeCharacter(
  14375. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14376. {
  14377. front: {
  14378. height: math.unit(7 + 4/12, "feet"),
  14379. weight: math.unit(750, "lb"),
  14380. name: "Front",
  14381. image: {
  14382. source: "./media/characters/regena-maxwell/front.svg",
  14383. extra: 984/856,
  14384. bottom: 87/1071
  14385. }
  14386. },
  14387. back: {
  14388. height: math.unit(7 + 4/12, "feet"),
  14389. weight: math.unit(750, "lb"),
  14390. name: "Back",
  14391. image: {
  14392. source: "./media/characters/regena-maxwell/back.svg",
  14393. extra: 981/854,
  14394. bottom: 57/1038
  14395. }
  14396. },
  14397. frontCostume: {
  14398. height: math.unit(7 + 4/12, "feet"),
  14399. weight: math.unit(750, "lb"),
  14400. name: "Front (Costume)",
  14401. image: {
  14402. source: "./media/characters/regena-maxwell/front-costume.svg",
  14403. extra: 984/856,
  14404. bottom: 87/1071
  14405. }
  14406. },
  14407. backcostume: {
  14408. height: math.unit(7 + 4/12, "feet"),
  14409. weight: math.unit(750, "lb"),
  14410. name: "Back (Costume)",
  14411. image: {
  14412. source: "./media/characters/regena-maxwell/back-costume.svg",
  14413. extra: 981/854,
  14414. bottom: 57/1038
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Normal",
  14421. height: math.unit(7 + 4 / 12, "feet"),
  14422. default: true
  14423. },
  14424. {
  14425. name: "Macro",
  14426. height: math.unit(220, "feet")
  14427. },
  14428. {
  14429. name: "Megamacro",
  14430. height: math.unit(11, "miles")
  14431. },
  14432. ]
  14433. ))
  14434. characterMakers.push(() => makeCharacter(
  14435. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14436. {
  14437. front: {
  14438. height: math.unit(6, "feet"),
  14439. weight: math.unit(150, "lb"),
  14440. name: "Front",
  14441. image: {
  14442. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14443. extra: 860 / 690,
  14444. bottom: 0.03
  14445. }
  14446. },
  14447. },
  14448. [
  14449. {
  14450. name: "Normal",
  14451. height: math.unit(1.7, "meters"),
  14452. default: true
  14453. },
  14454. ]
  14455. ))
  14456. characterMakers.push(() => makeCharacter(
  14457. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14458. {
  14459. front: {
  14460. height: math.unit(6, "feet"),
  14461. weight: math.unit(150, "lb"),
  14462. name: "Front",
  14463. image: {
  14464. source: "./media/characters/quilly/front.svg",
  14465. extra: 890 / 776
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Gigamacro",
  14472. height: math.unit(404090, "miles"),
  14473. default: true
  14474. },
  14475. ]
  14476. ))
  14477. characterMakers.push(() => makeCharacter(
  14478. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14479. {
  14480. front: {
  14481. height: math.unit(7 + 8 / 12, "feet"),
  14482. weight: math.unit(350, "lb"),
  14483. name: "Front",
  14484. image: {
  14485. source: "./media/characters/tempest/front.svg",
  14486. extra: 1175 / 1086,
  14487. bottom: 0.02
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Normal",
  14494. height: math.unit(7 + 8 / 12, "feet"),
  14495. default: true
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14501. {
  14502. side: {
  14503. height: math.unit(4 + 5 / 12, "feet"),
  14504. weight: math.unit(80, "lb"),
  14505. name: "Side",
  14506. image: {
  14507. source: "./media/characters/rodger/side.svg",
  14508. extra: 1235 / 1118
  14509. }
  14510. },
  14511. },
  14512. [
  14513. {
  14514. name: "Micro",
  14515. height: math.unit(1, "inch")
  14516. },
  14517. {
  14518. name: "Normal",
  14519. height: math.unit(4 + 5 / 12, "feet"),
  14520. default: true
  14521. },
  14522. {
  14523. name: "Macro",
  14524. height: math.unit(120, "feet")
  14525. },
  14526. ]
  14527. ))
  14528. characterMakers.push(() => makeCharacter(
  14529. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14530. {
  14531. front: {
  14532. height: math.unit(6, "feet"),
  14533. weight: math.unit(150, "lb"),
  14534. name: "Front",
  14535. image: {
  14536. source: "./media/characters/danyel/front.svg",
  14537. extra: 1185 / 1123,
  14538. bottom: 0.05
  14539. }
  14540. },
  14541. },
  14542. [
  14543. {
  14544. name: "Shrunken",
  14545. height: math.unit(0.5, "mm")
  14546. },
  14547. {
  14548. name: "Micro",
  14549. height: math.unit(1, "mm"),
  14550. default: true
  14551. },
  14552. {
  14553. name: "Upsized",
  14554. height: math.unit(5 + 5 / 12, "feet")
  14555. },
  14556. ]
  14557. ))
  14558. characterMakers.push(() => makeCharacter(
  14559. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14560. {
  14561. front: {
  14562. height: math.unit(5 + 6 / 12, "feet"),
  14563. weight: math.unit(200, "lb"),
  14564. name: "Front",
  14565. image: {
  14566. source: "./media/characters/vivian-bijoux/front.svg",
  14567. extra: 1217/1209,
  14568. bottom: 76/1293
  14569. }
  14570. },
  14571. back: {
  14572. height: math.unit(5 + 6 / 12, "feet"),
  14573. weight: math.unit(200, "lb"),
  14574. name: "Back",
  14575. image: {
  14576. source: "./media/characters/vivian-bijoux/back.svg",
  14577. extra: 1214/1208,
  14578. bottom: 51/1265
  14579. }
  14580. },
  14581. dressed: {
  14582. height: math.unit(5 + 6 / 12, "feet"),
  14583. weight: math.unit(200, "lb"),
  14584. name: "Dressed",
  14585. image: {
  14586. source: "./media/characters/vivian-bijoux/dressed.svg",
  14587. extra: 1217/1209,
  14588. bottom: 76/1293
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Normal",
  14595. height: math.unit(5 + 6 / 12, "feet"),
  14596. default: true
  14597. },
  14598. {
  14599. name: "Bad Dream",
  14600. height: math.unit(500, "feet")
  14601. },
  14602. {
  14603. name: "Nightmare",
  14604. height: math.unit(500, "miles")
  14605. },
  14606. ]
  14607. ))
  14608. characterMakers.push(() => makeCharacter(
  14609. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14610. {
  14611. front: {
  14612. height: math.unit(6 + 1 / 12, "feet"),
  14613. weight: math.unit(260, "lb"),
  14614. name: "Front",
  14615. image: {
  14616. source: "./media/characters/zeta/front.svg",
  14617. extra: 1968 / 1889,
  14618. bottom: 0.06
  14619. }
  14620. },
  14621. back: {
  14622. height: math.unit(6 + 1 / 12, "feet"),
  14623. weight: math.unit(260, "lb"),
  14624. name: "Back",
  14625. image: {
  14626. source: "./media/characters/zeta/back.svg",
  14627. extra: 1944 / 1858,
  14628. bottom: 0.03
  14629. }
  14630. },
  14631. hand: {
  14632. height: math.unit(1.112, "feet"),
  14633. name: "Hand",
  14634. image: {
  14635. source: "./media/characters/zeta/hand.svg"
  14636. }
  14637. },
  14638. foot: {
  14639. height: math.unit(1.48, "feet"),
  14640. name: "Foot",
  14641. image: {
  14642. source: "./media/characters/zeta/foot.svg"
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Micro",
  14649. height: math.unit(6, "inches")
  14650. },
  14651. {
  14652. name: "Normal",
  14653. height: math.unit(6 + 1 / 12, "feet"),
  14654. default: true
  14655. },
  14656. {
  14657. name: "Macro",
  14658. height: math.unit(20, "feet")
  14659. },
  14660. ]
  14661. ))
  14662. characterMakers.push(() => makeCharacter(
  14663. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14664. {
  14665. front: {
  14666. height: math.unit(6, "feet"),
  14667. weight: math.unit(150, "lb"),
  14668. name: "Front",
  14669. image: {
  14670. source: "./media/characters/jamie-larsen/front.svg",
  14671. extra: 962 / 933,
  14672. bottom: 0.02
  14673. }
  14674. },
  14675. back: {
  14676. height: math.unit(6, "feet"),
  14677. weight: math.unit(150, "lb"),
  14678. name: "Back",
  14679. image: {
  14680. source: "./media/characters/jamie-larsen/back.svg",
  14681. extra: 997 / 946
  14682. }
  14683. },
  14684. },
  14685. [
  14686. {
  14687. name: "Macro",
  14688. height: math.unit(28 + 7 / 12, "feet"),
  14689. default: true
  14690. },
  14691. {
  14692. name: "Macro+",
  14693. height: math.unit(180, "feet")
  14694. },
  14695. {
  14696. name: "Megamacro",
  14697. height: math.unit(10, "miles")
  14698. },
  14699. {
  14700. name: "Gigamacro",
  14701. height: math.unit(200000, "miles")
  14702. },
  14703. ]
  14704. ))
  14705. characterMakers.push(() => makeCharacter(
  14706. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14707. {
  14708. front: {
  14709. height: math.unit(6, "feet"),
  14710. weight: math.unit(120, "lb"),
  14711. name: "Front",
  14712. image: {
  14713. source: "./media/characters/vance/front.svg",
  14714. extra: 1980 / 1890,
  14715. bottom: 0.09
  14716. }
  14717. },
  14718. back: {
  14719. height: math.unit(6, "feet"),
  14720. weight: math.unit(120, "lb"),
  14721. name: "Back",
  14722. image: {
  14723. source: "./media/characters/vance/back.svg",
  14724. extra: 2081 / 1994,
  14725. bottom: 0.014
  14726. }
  14727. },
  14728. hand: {
  14729. height: math.unit(0.88, "feet"),
  14730. name: "Hand",
  14731. image: {
  14732. source: "./media/characters/vance/hand.svg"
  14733. }
  14734. },
  14735. foot: {
  14736. height: math.unit(0.64, "feet"),
  14737. name: "Foot",
  14738. image: {
  14739. source: "./media/characters/vance/foot.svg"
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Small",
  14746. height: math.unit(90, "feet"),
  14747. default: true
  14748. },
  14749. {
  14750. name: "Macro",
  14751. height: math.unit(100, "meters")
  14752. },
  14753. {
  14754. name: "Megamacro",
  14755. height: math.unit(15, "miles")
  14756. },
  14757. ]
  14758. ))
  14759. characterMakers.push(() => makeCharacter(
  14760. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14761. {
  14762. front: {
  14763. height: math.unit(6, "feet"),
  14764. weight: math.unit(180, "lb"),
  14765. name: "Front",
  14766. image: {
  14767. source: "./media/characters/xochitl/front.svg",
  14768. extra: 2297 / 2261,
  14769. bottom: 0.065
  14770. }
  14771. },
  14772. back: {
  14773. height: math.unit(6, "feet"),
  14774. weight: math.unit(180, "lb"),
  14775. name: "Back",
  14776. image: {
  14777. source: "./media/characters/xochitl/back.svg",
  14778. extra: 2386 / 2354,
  14779. bottom: 0.01
  14780. }
  14781. },
  14782. foot: {
  14783. height: math.unit(6 / 5 * 1.15, "feet"),
  14784. weight: math.unit(150, "lb"),
  14785. name: "Foot",
  14786. image: {
  14787. source: "./media/characters/xochitl/foot.svg"
  14788. }
  14789. },
  14790. },
  14791. [
  14792. {
  14793. name: "Macro",
  14794. height: math.unit(80, "feet")
  14795. },
  14796. {
  14797. name: "Macro+",
  14798. height: math.unit(400, "feet"),
  14799. default: true
  14800. },
  14801. {
  14802. name: "Gigamacro",
  14803. height: math.unit(80000, "miles")
  14804. },
  14805. {
  14806. name: "Gigamacro+",
  14807. height: math.unit(400000, "miles")
  14808. },
  14809. {
  14810. name: "Teramacro",
  14811. height: math.unit(300, "AU")
  14812. },
  14813. ]
  14814. ))
  14815. characterMakers.push(() => makeCharacter(
  14816. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14817. {
  14818. front: {
  14819. height: math.unit(6, "feet"),
  14820. weight: math.unit(150, "lb"),
  14821. name: "Front",
  14822. image: {
  14823. source: "./media/characters/vincent/front.svg",
  14824. extra: 1130 / 1080,
  14825. bottom: 0.055
  14826. }
  14827. },
  14828. beak: {
  14829. height: math.unit(6 * 0.1, "feet"),
  14830. name: "Beak",
  14831. image: {
  14832. source: "./media/characters/vincent/beak.svg"
  14833. }
  14834. },
  14835. hand: {
  14836. height: math.unit(6 * 0.85, "feet"),
  14837. weight: math.unit(150, "lb"),
  14838. name: "Hand",
  14839. image: {
  14840. source: "./media/characters/vincent/hand.svg"
  14841. }
  14842. },
  14843. foot: {
  14844. height: math.unit(6 * 0.19, "feet"),
  14845. weight: math.unit(150, "lb"),
  14846. name: "Foot",
  14847. image: {
  14848. source: "./media/characters/vincent/foot.svg"
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Base",
  14855. height: math.unit(6 + 5 / 12, "feet"),
  14856. default: true
  14857. },
  14858. {
  14859. name: "Macro",
  14860. height: math.unit(300, "feet")
  14861. },
  14862. {
  14863. name: "Megamacro",
  14864. height: math.unit(2, "miles")
  14865. },
  14866. {
  14867. name: "Gigamacro",
  14868. height: math.unit(1000, "miles")
  14869. },
  14870. ]
  14871. ))
  14872. characterMakers.push(() => makeCharacter(
  14873. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14874. {
  14875. front: {
  14876. height: math.unit(2, "meters"),
  14877. weight: math.unit(500, "kg"),
  14878. name: "Front",
  14879. image: {
  14880. source: "./media/characters/coatl/front.svg",
  14881. extra: 3948 / 3500,
  14882. bottom: 0.082
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Normal",
  14889. height: math.unit(4, "meters")
  14890. },
  14891. {
  14892. name: "Macro",
  14893. height: math.unit(100, "meters"),
  14894. default: true
  14895. },
  14896. {
  14897. name: "Macro+",
  14898. height: math.unit(300, "meters")
  14899. },
  14900. {
  14901. name: "Megamacro",
  14902. height: math.unit(3, "gigameters")
  14903. },
  14904. {
  14905. name: "Megamacro+",
  14906. height: math.unit(300, "terameters")
  14907. },
  14908. {
  14909. name: "Megamacro++",
  14910. height: math.unit(3, "lightyears")
  14911. },
  14912. ]
  14913. ))
  14914. characterMakers.push(() => makeCharacter(
  14915. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14916. {
  14917. front: {
  14918. height: math.unit(6, "feet"),
  14919. weight: math.unit(50, "kg"),
  14920. name: "front",
  14921. image: {
  14922. source: "./media/characters/shiroryu/front.svg",
  14923. extra: 1990 / 1935
  14924. }
  14925. },
  14926. },
  14927. [
  14928. {
  14929. name: "Mortal Mingling",
  14930. height: math.unit(3, "meters")
  14931. },
  14932. {
  14933. name: "Kaiju-ish",
  14934. height: math.unit(250, "meters")
  14935. },
  14936. {
  14937. name: "Somewhat Godly",
  14938. height: math.unit(400, "km"),
  14939. default: true
  14940. },
  14941. {
  14942. name: "Planetary",
  14943. height: math.unit(300, "megameters")
  14944. },
  14945. {
  14946. name: "Galaxy-dwarfing",
  14947. height: math.unit(450, "kiloparsecs")
  14948. },
  14949. {
  14950. name: "Universe Eater",
  14951. height: math.unit(150, "gigaparsecs")
  14952. },
  14953. {
  14954. name: "Almost Immeasurable",
  14955. height: math.unit(1.3e266, "yottaparsecs")
  14956. },
  14957. ]
  14958. ))
  14959. characterMakers.push(() => makeCharacter(
  14960. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14961. {
  14962. front: {
  14963. height: math.unit(6, "feet"),
  14964. weight: math.unit(150, "lb"),
  14965. name: "Front",
  14966. image: {
  14967. source: "./media/characters/umeko/front.svg",
  14968. extra: 1,
  14969. bottom: 0.019
  14970. }
  14971. },
  14972. frontArmored: {
  14973. height: math.unit(6, "feet"),
  14974. weight: math.unit(150, "lb"),
  14975. name: "Front (Armored)",
  14976. image: {
  14977. source: "./media/characters/umeko/front-armored.svg",
  14978. extra: 1,
  14979. bottom: 0.021
  14980. }
  14981. },
  14982. },
  14983. [
  14984. {
  14985. name: "Macro",
  14986. height: math.unit(220, "feet"),
  14987. default: true
  14988. },
  14989. {
  14990. name: "Guardian Dragon",
  14991. height: math.unit(50, "miles")
  14992. },
  14993. {
  14994. name: "Cosmic",
  14995. height: math.unit(800000, "miles")
  14996. },
  14997. ]
  14998. ))
  14999. characterMakers.push(() => makeCharacter(
  15000. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15001. {
  15002. front: {
  15003. height: math.unit(6, "feet"),
  15004. weight: math.unit(150, "lb"),
  15005. name: "Front",
  15006. image: {
  15007. source: "./media/characters/cassidy/front.svg",
  15008. extra: 810/808,
  15009. bottom: 41/851
  15010. }
  15011. },
  15012. },
  15013. [
  15014. {
  15015. name: "Canon Height",
  15016. height: math.unit(120, "feet"),
  15017. default: true
  15018. },
  15019. {
  15020. name: "Macro+",
  15021. height: math.unit(400, "feet")
  15022. },
  15023. {
  15024. name: "Macro++",
  15025. height: math.unit(4000, "feet")
  15026. },
  15027. {
  15028. name: "Megamacro",
  15029. height: math.unit(3, "miles")
  15030. },
  15031. ]
  15032. ))
  15033. characterMakers.push(() => makeCharacter(
  15034. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15035. {
  15036. front: {
  15037. height: math.unit(6, "feet"),
  15038. weight: math.unit(150, "lb"),
  15039. name: "Front",
  15040. image: {
  15041. source: "./media/characters/isaac/front.svg",
  15042. extra: 896 / 815,
  15043. bottom: 0.11
  15044. }
  15045. },
  15046. },
  15047. [
  15048. {
  15049. name: "Human Size",
  15050. height: math.unit(8, "feet"),
  15051. default: true
  15052. },
  15053. {
  15054. name: "Macro",
  15055. height: math.unit(400, "feet")
  15056. },
  15057. {
  15058. name: "Megamacro",
  15059. height: math.unit(50, "miles")
  15060. },
  15061. {
  15062. name: "Canon Height",
  15063. height: math.unit(200, "AU")
  15064. },
  15065. ]
  15066. ))
  15067. characterMakers.push(() => makeCharacter(
  15068. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15069. {
  15070. front: {
  15071. height: math.unit(6, "feet"),
  15072. weight: math.unit(72, "kg"),
  15073. name: "Front",
  15074. image: {
  15075. source: "./media/characters/sleekit/front.svg",
  15076. extra: 4693 / 4487,
  15077. bottom: 0.012
  15078. }
  15079. },
  15080. },
  15081. [
  15082. {
  15083. name: "Minimum Height",
  15084. height: math.unit(10, "meters")
  15085. },
  15086. {
  15087. name: "Smaller",
  15088. height: math.unit(25, "meters")
  15089. },
  15090. {
  15091. name: "Larger",
  15092. height: math.unit(38, "meters"),
  15093. default: true
  15094. },
  15095. {
  15096. name: "Maximum height",
  15097. height: math.unit(100, "meters")
  15098. },
  15099. ]
  15100. ))
  15101. characterMakers.push(() => makeCharacter(
  15102. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15103. {
  15104. front: {
  15105. height: math.unit(6, "feet"),
  15106. weight: math.unit(150, "lb"),
  15107. name: "Front",
  15108. image: {
  15109. source: "./media/characters/nillia/front.svg",
  15110. extra: 2195 / 2037,
  15111. bottom: 0.005
  15112. }
  15113. },
  15114. back: {
  15115. height: math.unit(6, "feet"),
  15116. weight: math.unit(150, "lb"),
  15117. name: "Back",
  15118. image: {
  15119. source: "./media/characters/nillia/back.svg",
  15120. extra: 2195 / 2037,
  15121. bottom: 0.005
  15122. }
  15123. },
  15124. },
  15125. [
  15126. {
  15127. name: "Canon Height",
  15128. height: math.unit(489, "feet"),
  15129. default: true
  15130. }
  15131. ]
  15132. ))
  15133. characterMakers.push(() => makeCharacter(
  15134. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15135. {
  15136. front: {
  15137. height: math.unit(6, "feet"),
  15138. weight: math.unit(150, "lb"),
  15139. name: "Front",
  15140. image: {
  15141. source: "./media/characters/mesmyriza/front.svg",
  15142. extra: 2067 / 1784,
  15143. bottom: 0.035
  15144. }
  15145. },
  15146. foot: {
  15147. height: math.unit(6 / (250 / 35), "feet"),
  15148. name: "Foot",
  15149. image: {
  15150. source: "./media/characters/mesmyriza/foot.svg"
  15151. }
  15152. },
  15153. },
  15154. [
  15155. {
  15156. name: "Macro",
  15157. height: math.unit(457, "meters"),
  15158. default: true
  15159. },
  15160. {
  15161. name: "Megamacro",
  15162. height: math.unit(8, "megameters")
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15168. {
  15169. front: {
  15170. height: math.unit(6, "feet"),
  15171. weight: math.unit(250, "lb"),
  15172. name: "Front",
  15173. image: {
  15174. source: "./media/characters/saudade/front.svg",
  15175. extra: 1172 / 1139,
  15176. bottom: 0.035
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Micro",
  15183. height: math.unit(3, "inches")
  15184. },
  15185. {
  15186. name: "Normal",
  15187. height: math.unit(6, "feet"),
  15188. default: true
  15189. },
  15190. {
  15191. name: "Macro",
  15192. height: math.unit(50, "feet")
  15193. },
  15194. {
  15195. name: "Megamacro",
  15196. height: math.unit(2800, "feet")
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15202. {
  15203. front: {
  15204. height: math.unit(5 + 4 / 12, "feet"),
  15205. weight: math.unit(100, "lb"),
  15206. name: "Front",
  15207. image: {
  15208. source: "./media/characters/keireer/front.svg",
  15209. extra: 716 / 666,
  15210. bottom: 0.05
  15211. }
  15212. },
  15213. },
  15214. [
  15215. {
  15216. name: "Normal",
  15217. height: math.unit(5 + 4 / 12, "feet"),
  15218. default: true
  15219. },
  15220. ]
  15221. ))
  15222. characterMakers.push(() => makeCharacter(
  15223. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15224. {
  15225. front: {
  15226. height: math.unit(5.5, "feet"),
  15227. weight: math.unit(90, "kg"),
  15228. name: "Front",
  15229. image: {
  15230. source: "./media/characters/mirja/front.svg",
  15231. extra: 1452/1262,
  15232. bottom: 67/1519
  15233. }
  15234. },
  15235. frontDressed: {
  15236. height: math.unit(5.5, "feet"),
  15237. weight: math.unit(90, "lb"),
  15238. name: "Front (Dressed)",
  15239. image: {
  15240. source: "./media/characters/mirja/dressed.svg",
  15241. extra: 1452/1262,
  15242. bottom: 67/1519
  15243. }
  15244. },
  15245. back: {
  15246. height: math.unit(6, "feet"),
  15247. weight: math.unit(90, "lb"),
  15248. name: "Back",
  15249. image: {
  15250. source: "./media/characters/mirja/back.svg",
  15251. extra: 1892/1795,
  15252. bottom: 48/1940
  15253. }
  15254. },
  15255. maw: {
  15256. height: math.unit(1.312, "feet"),
  15257. name: "Maw",
  15258. image: {
  15259. source: "./media/characters/mirja/maw.svg"
  15260. }
  15261. },
  15262. paw: {
  15263. height: math.unit(1.15, "feet"),
  15264. name: "Paw",
  15265. image: {
  15266. source: "./media/characters/mirja/paw.svg"
  15267. }
  15268. },
  15269. },
  15270. [
  15271. {
  15272. name: "\"Incognito\"",
  15273. height: math.unit(3, "meters")
  15274. },
  15275. {
  15276. name: "Strolling Size",
  15277. height: math.unit(15, "km")
  15278. },
  15279. {
  15280. name: "Larger Strolling Size",
  15281. height: math.unit(400, "km")
  15282. },
  15283. {
  15284. name: "Preferred Size",
  15285. height: math.unit(5000, "km"),
  15286. default: true
  15287. },
  15288. {
  15289. name: "True Size",
  15290. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15291. },
  15292. ]
  15293. ))
  15294. characterMakers.push(() => makeCharacter(
  15295. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15296. {
  15297. front: {
  15298. height: math.unit(15, "feet"),
  15299. weight: math.unit(880, "kg"),
  15300. name: "Front",
  15301. image: {
  15302. source: "./media/characters/nightraver/front.svg",
  15303. extra: 2444 / 2160,
  15304. bottom: 0.027
  15305. }
  15306. },
  15307. back: {
  15308. height: math.unit(15, "feet"),
  15309. weight: math.unit(880, "kg"),
  15310. name: "Back",
  15311. image: {
  15312. source: "./media/characters/nightraver/back.svg",
  15313. extra: 2309 / 2180,
  15314. bottom: 0.005
  15315. }
  15316. },
  15317. sole: {
  15318. height: math.unit(2.878, "feet"),
  15319. name: "Sole",
  15320. image: {
  15321. source: "./media/characters/nightraver/sole.svg"
  15322. }
  15323. },
  15324. foot: {
  15325. height: math.unit(2.285, "feet"),
  15326. name: "Foot",
  15327. image: {
  15328. source: "./media/characters/nightraver/foot.svg"
  15329. }
  15330. },
  15331. maw: {
  15332. height: math.unit(2.67, "feet"),
  15333. name: "Maw",
  15334. image: {
  15335. source: "./media/characters/nightraver/maw.svg"
  15336. }
  15337. },
  15338. },
  15339. [
  15340. {
  15341. name: "Micro",
  15342. height: math.unit(1, "cm")
  15343. },
  15344. {
  15345. name: "Normal",
  15346. height: math.unit(15, "feet"),
  15347. default: true
  15348. },
  15349. {
  15350. name: "Macro",
  15351. height: math.unit(300, "feet")
  15352. },
  15353. {
  15354. name: "Megamacro",
  15355. height: math.unit(300, "miles")
  15356. },
  15357. {
  15358. name: "Gigamacro",
  15359. height: math.unit(10000, "miles")
  15360. },
  15361. ]
  15362. ))
  15363. characterMakers.push(() => makeCharacter(
  15364. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15365. {
  15366. side: {
  15367. height: math.unit(2, "inches"),
  15368. weight: math.unit(5, "grams"),
  15369. name: "Side",
  15370. image: {
  15371. source: "./media/characters/arc/side.svg"
  15372. }
  15373. },
  15374. },
  15375. [
  15376. {
  15377. name: "Micro",
  15378. height: math.unit(2, "inches"),
  15379. default: true
  15380. },
  15381. ]
  15382. ))
  15383. characterMakers.push(() => makeCharacter(
  15384. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15385. {
  15386. front: {
  15387. height: math.unit(1.1938, "meters"),
  15388. weight: math.unit(54, "kg"),
  15389. name: "Front",
  15390. image: {
  15391. source: "./media/characters/nebula-shahar/front.svg",
  15392. extra: 1642 / 1436,
  15393. bottom: 0.06
  15394. }
  15395. },
  15396. },
  15397. [
  15398. {
  15399. name: "Megamicro",
  15400. height: math.unit(0.3, "mm")
  15401. },
  15402. {
  15403. name: "Micro",
  15404. height: math.unit(3, "cm")
  15405. },
  15406. {
  15407. name: "Normal",
  15408. height: math.unit(138, "cm"),
  15409. default: true
  15410. },
  15411. {
  15412. name: "Macro",
  15413. height: math.unit(30, "m")
  15414. },
  15415. ]
  15416. ))
  15417. characterMakers.push(() => makeCharacter(
  15418. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15419. {
  15420. front: {
  15421. height: math.unit(5.24, "feet"),
  15422. weight: math.unit(150, "lb"),
  15423. name: "Front",
  15424. image: {
  15425. source: "./media/characters/shayla/front.svg",
  15426. extra: 1512 / 1414,
  15427. bottom: 0.01
  15428. }
  15429. },
  15430. back: {
  15431. height: math.unit(5.24, "feet"),
  15432. weight: math.unit(150, "lb"),
  15433. name: "Back",
  15434. image: {
  15435. source: "./media/characters/shayla/back.svg",
  15436. extra: 1512 / 1414
  15437. }
  15438. },
  15439. hand: {
  15440. height: math.unit(0.7781496062992126, "feet"),
  15441. name: "Hand",
  15442. image: {
  15443. source: "./media/characters/shayla/hand.svg"
  15444. }
  15445. },
  15446. foot: {
  15447. height: math.unit(1.4206036745406823, "feet"),
  15448. name: "Foot",
  15449. image: {
  15450. source: "./media/characters/shayla/foot.svg"
  15451. }
  15452. },
  15453. },
  15454. [
  15455. {
  15456. name: "Micro",
  15457. height: math.unit(0.32, "feet")
  15458. },
  15459. {
  15460. name: "Normal",
  15461. height: math.unit(5.24, "feet"),
  15462. default: true
  15463. },
  15464. {
  15465. name: "Macro",
  15466. height: math.unit(492.12, "feet")
  15467. },
  15468. {
  15469. name: "Megamacro",
  15470. height: math.unit(186.41, "miles")
  15471. },
  15472. ]
  15473. ))
  15474. characterMakers.push(() => makeCharacter(
  15475. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15476. {
  15477. front: {
  15478. height: math.unit(2.2, "m"),
  15479. weight: math.unit(120, "kg"),
  15480. name: "Front",
  15481. image: {
  15482. source: "./media/characters/pia-jr/front.svg",
  15483. extra: 1000 / 970,
  15484. bottom: 0.035
  15485. }
  15486. },
  15487. hand: {
  15488. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15489. name: "Hand",
  15490. image: {
  15491. source: "./media/characters/pia-jr/hand.svg"
  15492. }
  15493. },
  15494. paw: {
  15495. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15496. name: "Paw",
  15497. image: {
  15498. source: "./media/characters/pia-jr/paw.svg"
  15499. }
  15500. },
  15501. },
  15502. [
  15503. {
  15504. name: "Micro",
  15505. height: math.unit(1.2, "cm")
  15506. },
  15507. {
  15508. name: "Normal",
  15509. height: math.unit(2.2, "m"),
  15510. default: true
  15511. },
  15512. {
  15513. name: "Macro",
  15514. height: math.unit(180, "m")
  15515. },
  15516. {
  15517. name: "Megamacro",
  15518. height: math.unit(420, "km")
  15519. },
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15524. {
  15525. front: {
  15526. height: math.unit(2, "m"),
  15527. weight: math.unit(115, "kg"),
  15528. name: "Front",
  15529. image: {
  15530. source: "./media/characters/pia-sr/front.svg",
  15531. extra: 760 / 730,
  15532. bottom: 0.015
  15533. }
  15534. },
  15535. back: {
  15536. height: math.unit(2, "m"),
  15537. weight: math.unit(115, "kg"),
  15538. name: "Back",
  15539. image: {
  15540. source: "./media/characters/pia-sr/back.svg",
  15541. extra: 760 / 730,
  15542. bottom: 0.01
  15543. }
  15544. },
  15545. hand: {
  15546. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15547. name: "Hand",
  15548. image: {
  15549. source: "./media/characters/pia-sr/hand.svg"
  15550. }
  15551. },
  15552. foot: {
  15553. height: math.unit(1.83, "feet"),
  15554. name: "Foot",
  15555. image: {
  15556. source: "./media/characters/pia-sr/foot.svg"
  15557. }
  15558. },
  15559. },
  15560. [
  15561. {
  15562. name: "Micro",
  15563. height: math.unit(88, "mm")
  15564. },
  15565. {
  15566. name: "Normal",
  15567. height: math.unit(2, "m"),
  15568. default: true
  15569. },
  15570. {
  15571. name: "Macro",
  15572. height: math.unit(200, "m")
  15573. },
  15574. {
  15575. name: "Megamacro",
  15576. height: math.unit(420, "km")
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15582. {
  15583. front: {
  15584. height: math.unit(8 + 2 / 12, "feet"),
  15585. weight: math.unit(300, "lb"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/kibibyte/front.svg",
  15589. extra: 2221 / 2098,
  15590. bottom: 0.04
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Normal",
  15597. height: math.unit(8 + 2 / 12, "feet"),
  15598. default: true
  15599. },
  15600. {
  15601. name: "Socialable Macro",
  15602. height: math.unit(50, "feet")
  15603. },
  15604. {
  15605. name: "Macro",
  15606. height: math.unit(300, "feet")
  15607. },
  15608. {
  15609. name: "Megamacro",
  15610. height: math.unit(500, "miles")
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(6, "feet"),
  15619. weight: math.unit(150, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/felix/front.svg",
  15623. extra: 762 / 722,
  15624. bottom: 0.02
  15625. }
  15626. },
  15627. frontClothed: {
  15628. height: math.unit(6, "feet"),
  15629. weight: math.unit(150, "lb"),
  15630. name: "Front (Clothed)",
  15631. image: {
  15632. source: "./media/characters/felix/front-clothed.svg",
  15633. extra: 762 / 722,
  15634. bottom: 0.02
  15635. }
  15636. },
  15637. },
  15638. [
  15639. {
  15640. name: "Normal",
  15641. height: math.unit(6 + 8 / 12, "feet"),
  15642. default: true
  15643. },
  15644. {
  15645. name: "Macro",
  15646. height: math.unit(2600, "feet")
  15647. },
  15648. {
  15649. name: "Megamacro",
  15650. height: math.unit(450, "miles")
  15651. },
  15652. ]
  15653. ))
  15654. characterMakers.push(() => makeCharacter(
  15655. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15656. {
  15657. front: {
  15658. height: math.unit(6 + 1 / 12, "feet"),
  15659. weight: math.unit(250, "lb"),
  15660. name: "Front",
  15661. image: {
  15662. source: "./media/characters/tobo/front.svg",
  15663. extra: 608 / 586,
  15664. bottom: 0.023
  15665. }
  15666. },
  15667. back: {
  15668. height: math.unit(6 + 1 / 12, "feet"),
  15669. weight: math.unit(250, "lb"),
  15670. name: "Back",
  15671. image: {
  15672. source: "./media/characters/tobo/back.svg",
  15673. extra: 608 / 586
  15674. }
  15675. },
  15676. },
  15677. [
  15678. {
  15679. name: "Nano",
  15680. height: math.unit(2, "nm")
  15681. },
  15682. {
  15683. name: "Megamicro",
  15684. height: math.unit(0.1, "mm")
  15685. },
  15686. {
  15687. name: "Micro",
  15688. height: math.unit(1, "inch"),
  15689. default: true
  15690. },
  15691. {
  15692. name: "Human-sized",
  15693. height: math.unit(6 + 1 / 12, "feet")
  15694. },
  15695. {
  15696. name: "Macro",
  15697. height: math.unit(250, "feet")
  15698. },
  15699. {
  15700. name: "Megamacro",
  15701. height: math.unit(75, "miles")
  15702. },
  15703. {
  15704. name: "Texas-sized",
  15705. height: math.unit(750, "miles")
  15706. },
  15707. {
  15708. name: "Teramacro",
  15709. height: math.unit(50000, "miles")
  15710. },
  15711. ]
  15712. ))
  15713. characterMakers.push(() => makeCharacter(
  15714. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15715. {
  15716. front: {
  15717. height: math.unit(6, "feet"),
  15718. weight: math.unit(269, "lb"),
  15719. name: "Front",
  15720. image: {
  15721. source: "./media/characters/danny-kapowsky/front.svg",
  15722. extra: 766 / 736,
  15723. bottom: 0.044
  15724. }
  15725. },
  15726. back: {
  15727. height: math.unit(6, "feet"),
  15728. weight: math.unit(269, "lb"),
  15729. name: "Back",
  15730. image: {
  15731. source: "./media/characters/danny-kapowsky/back.svg",
  15732. extra: 797 / 760,
  15733. bottom: 0.025
  15734. }
  15735. },
  15736. },
  15737. [
  15738. {
  15739. name: "Macro",
  15740. height: math.unit(150, "feet"),
  15741. default: true
  15742. },
  15743. {
  15744. name: "Macro+",
  15745. height: math.unit(200, "feet")
  15746. },
  15747. {
  15748. name: "Macro++",
  15749. height: math.unit(300, "feet")
  15750. },
  15751. {
  15752. name: "Macro+++",
  15753. height: math.unit(400, "feet")
  15754. },
  15755. ]
  15756. ))
  15757. characterMakers.push(() => makeCharacter(
  15758. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15759. {
  15760. side: {
  15761. height: math.unit(6, "feet"),
  15762. weight: math.unit(170, "lb"),
  15763. name: "Side",
  15764. image: {
  15765. source: "./media/characters/finn/side.svg",
  15766. extra: 1953 / 1807,
  15767. bottom: 0.057
  15768. }
  15769. },
  15770. },
  15771. [
  15772. {
  15773. name: "Megamacro",
  15774. height: math.unit(14445, "feet"),
  15775. default: true
  15776. },
  15777. ]
  15778. ))
  15779. characterMakers.push(() => makeCharacter(
  15780. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15781. {
  15782. front: {
  15783. height: math.unit(5 + 6 / 12, "feet"),
  15784. weight: math.unit(125, "lb"),
  15785. name: "Front",
  15786. image: {
  15787. source: "./media/characters/roy/front.svg",
  15788. extra: 1,
  15789. bottom: 0.11
  15790. }
  15791. },
  15792. },
  15793. [
  15794. {
  15795. name: "Micro",
  15796. height: math.unit(3, "inches"),
  15797. default: true
  15798. },
  15799. {
  15800. name: "Normal",
  15801. height: math.unit(5 + 6 / 12, "feet")
  15802. },
  15803. {
  15804. name: "Lesser Macro",
  15805. height: math.unit(60, "feet")
  15806. },
  15807. {
  15808. name: "Greater Macro",
  15809. height: math.unit(120, "feet")
  15810. },
  15811. ]
  15812. ))
  15813. characterMakers.push(() => makeCharacter(
  15814. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15815. {
  15816. front: {
  15817. height: math.unit(6, "feet"),
  15818. weight: math.unit(100, "lb"),
  15819. name: "Front",
  15820. image: {
  15821. source: "./media/characters/aevsivs/front.svg",
  15822. extra: 1,
  15823. bottom: 0.03
  15824. }
  15825. },
  15826. back: {
  15827. height: math.unit(6, "feet"),
  15828. weight: math.unit(100, "lb"),
  15829. name: "Back",
  15830. image: {
  15831. source: "./media/characters/aevsivs/back.svg"
  15832. }
  15833. },
  15834. },
  15835. [
  15836. {
  15837. name: "Micro",
  15838. height: math.unit(2, "inches"),
  15839. default: true
  15840. },
  15841. {
  15842. name: "Normal",
  15843. height: math.unit(5, "feet")
  15844. },
  15845. ]
  15846. ))
  15847. characterMakers.push(() => makeCharacter(
  15848. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15849. {
  15850. front: {
  15851. height: math.unit(5 + 7 / 12, "feet"),
  15852. weight: math.unit(159, "lb"),
  15853. name: "Front",
  15854. image: {
  15855. source: "./media/characters/hildegard/front.svg",
  15856. extra: 289 / 269,
  15857. bottom: 7.63 / 297.8
  15858. }
  15859. },
  15860. back: {
  15861. height: math.unit(5 + 7 / 12, "feet"),
  15862. weight: math.unit(159, "lb"),
  15863. name: "Back",
  15864. image: {
  15865. source: "./media/characters/hildegard/back.svg",
  15866. extra: 280 / 260,
  15867. bottom: 2.3 / 282
  15868. }
  15869. },
  15870. },
  15871. [
  15872. {
  15873. name: "Normal",
  15874. height: math.unit(5 + 7 / 12, "feet"),
  15875. default: true
  15876. },
  15877. ]
  15878. ))
  15879. characterMakers.push(() => makeCharacter(
  15880. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15881. {
  15882. bernard: {
  15883. height: math.unit(2 + 7 / 12, "feet"),
  15884. weight: math.unit(66, "lb"),
  15885. name: "Bernard",
  15886. rename: true,
  15887. image: {
  15888. source: "./media/characters/bernard-wilder/bernard.svg",
  15889. extra: 192 / 128,
  15890. bottom: 0.05
  15891. }
  15892. },
  15893. wilder: {
  15894. height: math.unit(5 + 8 / 12, "feet"),
  15895. weight: math.unit(143, "lb"),
  15896. name: "Wilder",
  15897. rename: true,
  15898. image: {
  15899. source: "./media/characters/bernard-wilder/wilder.svg",
  15900. extra: 361 / 312,
  15901. bottom: 0.02
  15902. }
  15903. },
  15904. },
  15905. [
  15906. {
  15907. name: "Normal",
  15908. height: math.unit(2 + 7 / 12, "feet"),
  15909. default: true
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15915. {
  15916. anthro: {
  15917. height: math.unit(6 + 1 / 12, "feet"),
  15918. weight: math.unit(155, "lb"),
  15919. name: "Anthro",
  15920. image: {
  15921. source: "./media/characters/hearth/anthro.svg",
  15922. extra: 1178/1136,
  15923. bottom: 28/1206
  15924. }
  15925. },
  15926. feral: {
  15927. height: math.unit(3.78, "feet"),
  15928. weight: math.unit(35, "kg"),
  15929. name: "Feral",
  15930. image: {
  15931. source: "./media/characters/hearth/feral.svg",
  15932. extra: 153 / 135,
  15933. bottom: 0.03
  15934. }
  15935. },
  15936. },
  15937. [
  15938. {
  15939. name: "Normal",
  15940. height: math.unit(6 + 1 / 12, "feet"),
  15941. default: true
  15942. },
  15943. ]
  15944. ))
  15945. characterMakers.push(() => makeCharacter(
  15946. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15947. {
  15948. front: {
  15949. height: math.unit(6, "feet"),
  15950. weight: math.unit(182, "lb"),
  15951. name: "Front",
  15952. image: {
  15953. source: "./media/characters/ingrid/front.svg",
  15954. extra: 294 / 268,
  15955. bottom: 0.027
  15956. }
  15957. },
  15958. },
  15959. [
  15960. {
  15961. name: "Normal",
  15962. height: math.unit(6, "feet"),
  15963. default: true
  15964. },
  15965. ]
  15966. ))
  15967. characterMakers.push(() => makeCharacter(
  15968. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15969. {
  15970. eevee: {
  15971. height: math.unit(2 + 10 / 12, "feet"),
  15972. weight: math.unit(86, "lb"),
  15973. name: "Malgam",
  15974. image: {
  15975. source: "./media/characters/malgam/eevee.svg",
  15976. extra: 952/784,
  15977. bottom: 38/990
  15978. }
  15979. },
  15980. sylveon: {
  15981. height: math.unit(4, "feet"),
  15982. weight: math.unit(101, "lb"),
  15983. name: "Future Malgam",
  15984. rename: true,
  15985. image: {
  15986. source: "./media/characters/malgam/sylveon.svg",
  15987. extra: 371 / 325,
  15988. bottom: 0.015
  15989. }
  15990. },
  15991. gigantamax: {
  15992. height: math.unit(50, "feet"),
  15993. name: "Gigantamax Malgam",
  15994. rename: true,
  15995. image: {
  15996. source: "./media/characters/malgam/gigantamax.svg"
  15997. }
  15998. },
  15999. },
  16000. [
  16001. {
  16002. name: "Normal",
  16003. height: math.unit(2 + 10 / 12, "feet"),
  16004. default: true
  16005. },
  16006. ]
  16007. ))
  16008. characterMakers.push(() => makeCharacter(
  16009. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16010. {
  16011. front: {
  16012. height: math.unit(5 + 11 / 12, "feet"),
  16013. weight: math.unit(188, "lb"),
  16014. name: "Front",
  16015. image: {
  16016. source: "./media/characters/fleur/front.svg",
  16017. extra: 309 / 283,
  16018. bottom: 0.007
  16019. }
  16020. },
  16021. },
  16022. [
  16023. {
  16024. name: "Normal",
  16025. height: math.unit(5 + 11 / 12, "feet"),
  16026. default: true
  16027. },
  16028. ]
  16029. ))
  16030. characterMakers.push(() => makeCharacter(
  16031. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16032. {
  16033. front: {
  16034. height: math.unit(5 + 4 / 12, "feet"),
  16035. weight: math.unit(122, "lb"),
  16036. name: "Front",
  16037. image: {
  16038. source: "./media/characters/jude/front.svg",
  16039. extra: 288 / 273,
  16040. bottom: 0.03
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "Normal",
  16047. height: math.unit(5 + 4 / 12, "feet"),
  16048. default: true
  16049. },
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16054. {
  16055. front: {
  16056. height: math.unit(5 + 11 / 12, "feet"),
  16057. weight: math.unit(190, "lb"),
  16058. name: "Front",
  16059. image: {
  16060. source: "./media/characters/seara/front.svg",
  16061. extra: 1,
  16062. bottom: 0.05
  16063. }
  16064. },
  16065. },
  16066. [
  16067. {
  16068. name: "Normal",
  16069. height: math.unit(5 + 11 / 12, "feet"),
  16070. default: true
  16071. },
  16072. ]
  16073. ))
  16074. characterMakers.push(() => makeCharacter(
  16075. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16076. {
  16077. front: {
  16078. height: math.unit(16 + 5 / 12, "feet"),
  16079. weight: math.unit(524, "lb"),
  16080. name: "Front",
  16081. image: {
  16082. source: "./media/characters/caspian-lugia/front.svg",
  16083. extra: 1,
  16084. bottom: 0.04
  16085. }
  16086. },
  16087. },
  16088. [
  16089. {
  16090. name: "Normal",
  16091. height: math.unit(16 + 5 / 12, "feet"),
  16092. default: true
  16093. },
  16094. ]
  16095. ))
  16096. characterMakers.push(() => makeCharacter(
  16097. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16098. {
  16099. front: {
  16100. height: math.unit(5 + 7 / 12, "feet"),
  16101. weight: math.unit(170, "lb"),
  16102. name: "Front",
  16103. image: {
  16104. source: "./media/characters/mika/front.svg",
  16105. extra: 1,
  16106. bottom: 0.016
  16107. }
  16108. },
  16109. },
  16110. [
  16111. {
  16112. name: "Normal",
  16113. height: math.unit(5 + 7 / 12, "feet"),
  16114. default: true
  16115. },
  16116. ]
  16117. ))
  16118. characterMakers.push(() => makeCharacter(
  16119. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16120. {
  16121. front: {
  16122. height: math.unit(6 + 2 / 12, "feet"),
  16123. weight: math.unit(268, "lb"),
  16124. name: "Front",
  16125. image: {
  16126. source: "./media/characters/sol/front.svg",
  16127. extra: 247 / 231,
  16128. bottom: 0.05
  16129. }
  16130. },
  16131. },
  16132. [
  16133. {
  16134. name: "Normal",
  16135. height: math.unit(6 + 2 / 12, "feet"),
  16136. default: true
  16137. },
  16138. ]
  16139. ))
  16140. characterMakers.push(() => makeCharacter(
  16141. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16142. {
  16143. buizel: {
  16144. height: math.unit(2 + 5 / 12, "feet"),
  16145. weight: math.unit(87, "lb"),
  16146. name: "Front",
  16147. image: {
  16148. source: "./media/characters/umiko/buizel.svg",
  16149. extra: 172 / 157,
  16150. bottom: 0.01
  16151. },
  16152. form: "buizel",
  16153. default: true
  16154. },
  16155. floatzel: {
  16156. height: math.unit(5 + 9 / 12, "feet"),
  16157. weight: math.unit(250, "lb"),
  16158. name: "Front",
  16159. image: {
  16160. source: "./media/characters/umiko/floatzel.svg",
  16161. extra: 1076/1006,
  16162. bottom: 15/1091
  16163. },
  16164. form: "floatzel",
  16165. default: true
  16166. },
  16167. },
  16168. [
  16169. {
  16170. name: "Normal",
  16171. height: math.unit(2 + 5 / 12, "feet"),
  16172. form: "buizel",
  16173. default: true
  16174. },
  16175. {
  16176. name: "Normal",
  16177. height: math.unit(5 + 9 / 12, "feet"),
  16178. form: "floatzel",
  16179. default: true
  16180. },
  16181. ],
  16182. {
  16183. "buizel": {
  16184. name: "Buizel"
  16185. },
  16186. "floatzel": {
  16187. name: "Floatzel",
  16188. default: true
  16189. }
  16190. }
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16194. {
  16195. front: {
  16196. height: math.unit(6 + 2 / 12, "feet"),
  16197. weight: math.unit(146, "lb"),
  16198. name: "Front",
  16199. image: {
  16200. source: "./media/characters/iliac/front.svg",
  16201. extra: 389 / 365,
  16202. bottom: 0.035
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Normal",
  16209. height: math.unit(6 + 2 / 12, "feet"),
  16210. default: true
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16216. {
  16217. front: {
  16218. height: math.unit(6, "feet"),
  16219. weight: math.unit(170, "lb"),
  16220. name: "Front",
  16221. image: {
  16222. source: "./media/characters/topaz/front.svg",
  16223. extra: 317 / 303,
  16224. bottom: 0.055
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Normal",
  16231. height: math.unit(6, "feet"),
  16232. default: true
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16238. {
  16239. front: {
  16240. height: math.unit(5 + 11 / 12, "feet"),
  16241. weight: math.unit(144, "lb"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/gabriel/front.svg",
  16245. extra: 285 / 262,
  16246. bottom: 0.004
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Normal",
  16253. height: math.unit(5 + 11 / 12, "feet"),
  16254. default: true
  16255. },
  16256. ]
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16260. {
  16261. side: {
  16262. height: math.unit(6 + 5 / 12, "feet"),
  16263. weight: math.unit(300, "lb"),
  16264. name: "Side",
  16265. image: {
  16266. source: "./media/characters/tempest-suicune/side.svg",
  16267. extra: 195 / 154,
  16268. bottom: 0.04
  16269. }
  16270. },
  16271. },
  16272. [
  16273. {
  16274. name: "Normal",
  16275. height: math.unit(6 + 5 / 12, "feet"),
  16276. default: true
  16277. },
  16278. ]
  16279. ))
  16280. characterMakers.push(() => makeCharacter(
  16281. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16282. {
  16283. front: {
  16284. height: math.unit(7 + 2 / 12, "feet"),
  16285. weight: math.unit(322, "lb"),
  16286. name: "Front",
  16287. image: {
  16288. source: "./media/characters/vulcan/front.svg",
  16289. extra: 154 / 147,
  16290. bottom: 0.04
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(7 + 2 / 12, "feet"),
  16298. default: true
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16304. {
  16305. front: {
  16306. height: math.unit(5 + 10 / 12, "feet"),
  16307. weight: math.unit(264, "lb"),
  16308. name: "Front",
  16309. image: {
  16310. source: "./media/characters/gault/front.svg",
  16311. extra: 161 / 140,
  16312. bottom: 0.028
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Normal",
  16319. height: math.unit(5 + 10 / 12, "feet"),
  16320. default: true
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16326. {
  16327. front: {
  16328. height: math.unit(6, "feet"),
  16329. weight: math.unit(150, "lb"),
  16330. name: "Front",
  16331. image: {
  16332. source: "./media/characters/shard/front.svg",
  16333. extra: 273 / 238,
  16334. bottom: 0.02
  16335. }
  16336. },
  16337. },
  16338. [
  16339. {
  16340. name: "Normal",
  16341. height: math.unit(3 + 6 / 12, "feet"),
  16342. default: true
  16343. },
  16344. ]
  16345. ))
  16346. characterMakers.push(() => makeCharacter(
  16347. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16348. {
  16349. front: {
  16350. height: math.unit(5 + 11 / 12, "feet"),
  16351. weight: math.unit(146, "lb"),
  16352. name: "Front",
  16353. image: {
  16354. source: "./media/characters/ashe/front.svg",
  16355. extra: 400 / 373,
  16356. bottom: 0.01
  16357. }
  16358. },
  16359. },
  16360. [
  16361. {
  16362. name: "Normal",
  16363. height: math.unit(5 + 11 / 12, "feet"),
  16364. default: true
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16370. {
  16371. front: {
  16372. height: math.unit(5 + 5 / 12, "feet"),
  16373. weight: math.unit(135, "lb"),
  16374. name: "Front",
  16375. image: {
  16376. source: "./media/characters/beatrix/front.svg",
  16377. extra: 392 / 379,
  16378. bottom: 0.01
  16379. }
  16380. },
  16381. },
  16382. [
  16383. {
  16384. name: "Normal",
  16385. height: math.unit(6, "feet"),
  16386. default: true
  16387. },
  16388. ]
  16389. ))
  16390. characterMakers.push(() => makeCharacter(
  16391. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16392. {
  16393. front: {
  16394. height: math.unit(6 + 2/12, "feet"),
  16395. weight: math.unit(135, "lb"),
  16396. name: "Front",
  16397. image: {
  16398. source: "./media/characters/ignatius/front.svg",
  16399. extra: 1380/1259,
  16400. bottom: 27/1407
  16401. }
  16402. },
  16403. },
  16404. [
  16405. {
  16406. name: "Normal",
  16407. height: math.unit(6 + 2/12, "feet"),
  16408. default: true
  16409. },
  16410. ]
  16411. ))
  16412. characterMakers.push(() => makeCharacter(
  16413. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16414. {
  16415. front: {
  16416. height: math.unit(6 + 2 / 12, "feet"),
  16417. weight: math.unit(138, "lb"),
  16418. name: "Front",
  16419. image: {
  16420. source: "./media/characters/mei-li/front.svg",
  16421. extra: 237 / 229,
  16422. bottom: 0.03
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Normal",
  16429. height: math.unit(6 + 2 / 12, "feet"),
  16430. default: true
  16431. },
  16432. ]
  16433. ))
  16434. characterMakers.push(() => makeCharacter(
  16435. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16436. {
  16437. front: {
  16438. height: math.unit(2 + 4 / 12, "feet"),
  16439. weight: math.unit(62, "lb"),
  16440. name: "Front",
  16441. image: {
  16442. source: "./media/characters/puru/front.svg",
  16443. extra: 206 / 149,
  16444. bottom: 0.06
  16445. }
  16446. },
  16447. },
  16448. [
  16449. {
  16450. name: "Normal",
  16451. height: math.unit(2 + 4 / 12, "feet"),
  16452. default: true
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16458. {
  16459. anthro: {
  16460. height: math.unit(5 + 8/12, "feet"),
  16461. weight: math.unit(200, "lb"),
  16462. energyNeed: math.unit(2000, "kcal"),
  16463. name: "Anthro",
  16464. image: {
  16465. source: "./media/characters/kee/anthro.svg",
  16466. extra: 3251/3184,
  16467. bottom: 250/3501
  16468. }
  16469. },
  16470. taur: {
  16471. height: math.unit(11, "feet"),
  16472. weight: math.unit(500, "lb"),
  16473. energyNeed: math.unit(5000, "kcal"),
  16474. name: "Taur",
  16475. image: {
  16476. source: "./media/characters/kee/taur.svg",
  16477. extra: 1362/1320,
  16478. bottom: 83/1445
  16479. }
  16480. },
  16481. },
  16482. [
  16483. {
  16484. name: "Normal",
  16485. height: math.unit(5 + 8/12, "feet"),
  16486. default: true
  16487. },
  16488. {
  16489. name: "Macro",
  16490. height: math.unit(35, "feet")
  16491. },
  16492. ]
  16493. ))
  16494. characterMakers.push(() => makeCharacter(
  16495. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16496. {
  16497. anthro: {
  16498. height: math.unit(7, "feet"),
  16499. weight: math.unit(190, "lb"),
  16500. name: "Anthro",
  16501. image: {
  16502. source: "./media/characters/cobalt-dracha/anthro.svg",
  16503. extra: 231 / 225,
  16504. bottom: 0.04
  16505. }
  16506. },
  16507. feral: {
  16508. height: math.unit(9 + 7 / 12, "feet"),
  16509. weight: math.unit(294, "lb"),
  16510. name: "Feral",
  16511. image: {
  16512. source: "./media/characters/cobalt-dracha/feral.svg",
  16513. extra: 692 / 633,
  16514. bottom: 0.05
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(7, "feet"),
  16522. default: true
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16528. {
  16529. fallen: {
  16530. height: math.unit(11 + 8 / 12, "feet"),
  16531. weight: math.unit(485, "lb"),
  16532. name: "Java (Fallen)",
  16533. rename: true,
  16534. image: {
  16535. source: "./media/characters/java/fallen.svg",
  16536. extra: 226 / 208,
  16537. bottom: 0.005
  16538. }
  16539. },
  16540. godkin: {
  16541. height: math.unit(10 + 6 / 12, "feet"),
  16542. weight: math.unit(328, "lb"),
  16543. name: "Java (Godkin)",
  16544. rename: true,
  16545. image: {
  16546. source: "./media/characters/java/godkin.svg",
  16547. extra: 1104/1068,
  16548. bottom: 36/1140
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(11 + 8 / 12, "feet"),
  16556. default: true
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16562. {
  16563. front: {
  16564. height: math.unit(5 + 9 / 12, "feet"),
  16565. weight: math.unit(170, "lb"),
  16566. name: "Front",
  16567. image: {
  16568. source: "./media/characters/purna/front.svg",
  16569. extra: 239 / 229,
  16570. bottom: 0.01
  16571. }
  16572. },
  16573. },
  16574. [
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(5 + 9 / 12, "feet"),
  16578. default: true
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16584. {
  16585. front: {
  16586. height: math.unit(5 + 9 / 12, "feet"),
  16587. weight: math.unit(142, "lb"),
  16588. name: "Front",
  16589. image: {
  16590. source: "./media/characters/kuva/front.svg",
  16591. extra: 281 / 271,
  16592. bottom: 0.006
  16593. }
  16594. },
  16595. },
  16596. [
  16597. {
  16598. name: "Normal",
  16599. height: math.unit(5 + 9 / 12, "feet"),
  16600. default: true
  16601. },
  16602. ]
  16603. ))
  16604. characterMakers.push(() => makeCharacter(
  16605. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16606. {
  16607. anthro: {
  16608. height: math.unit(9 + 2 / 12, "feet"),
  16609. weight: math.unit(270, "lb"),
  16610. name: "Anthro",
  16611. image: {
  16612. source: "./media/characters/embra/anthro.svg",
  16613. extra: 200 / 187,
  16614. bottom: 0.02
  16615. }
  16616. },
  16617. feral: {
  16618. height: math.unit(18 + 8 / 12, "feet"),
  16619. weight: math.unit(576, "lb"),
  16620. name: "Feral",
  16621. image: {
  16622. source: "./media/characters/embra/feral.svg",
  16623. extra: 152 / 137,
  16624. bottom: 0.037
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Normal",
  16631. height: math.unit(9 + 2 / 12, "feet"),
  16632. default: true
  16633. },
  16634. ]
  16635. ))
  16636. characterMakers.push(() => makeCharacter(
  16637. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16638. {
  16639. anthro: {
  16640. height: math.unit(10 + 9 / 12, "feet"),
  16641. weight: math.unit(224, "lb"),
  16642. name: "Anthro",
  16643. image: {
  16644. source: "./media/characters/grottos/anthro.svg",
  16645. extra: 350 / 332,
  16646. bottom: 0.045
  16647. }
  16648. },
  16649. feral: {
  16650. height: math.unit(20 + 7 / 12, "feet"),
  16651. weight: math.unit(629, "lb"),
  16652. name: "Feral",
  16653. image: {
  16654. source: "./media/characters/grottos/feral.svg",
  16655. extra: 207 / 190,
  16656. bottom: 0.05
  16657. }
  16658. },
  16659. },
  16660. [
  16661. {
  16662. name: "Normal",
  16663. height: math.unit(10 + 9 / 12, "feet"),
  16664. default: true
  16665. },
  16666. ]
  16667. ))
  16668. characterMakers.push(() => makeCharacter(
  16669. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16670. {
  16671. anthro: {
  16672. height: math.unit(9 + 6 / 12, "feet"),
  16673. weight: math.unit(298, "lb"),
  16674. name: "Anthro",
  16675. image: {
  16676. source: "./media/characters/frifna/anthro.svg",
  16677. extra: 282 / 269,
  16678. bottom: 0.015
  16679. }
  16680. },
  16681. feral: {
  16682. height: math.unit(16 + 2 / 12, "feet"),
  16683. weight: math.unit(624, "lb"),
  16684. name: "Feral",
  16685. image: {
  16686. source: "./media/characters/frifna/feral.svg"
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(9 + 6 / 12, "feet"),
  16694. default: true
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16700. {
  16701. front: {
  16702. height: math.unit(6 + 2 / 12, "feet"),
  16703. weight: math.unit(168, "lb"),
  16704. name: "Front",
  16705. image: {
  16706. source: "./media/characters/elise/front.svg",
  16707. extra: 276 / 271
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Normal",
  16714. height: math.unit(6 + 2 / 12, "feet"),
  16715. default: true
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16721. {
  16722. front: {
  16723. height: math.unit(5 + 10 / 12, "feet"),
  16724. weight: math.unit(210, "lb"),
  16725. name: "Front",
  16726. image: {
  16727. source: "./media/characters/glade/front.svg",
  16728. extra: 258 / 247,
  16729. bottom: 0.008
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Normal",
  16736. height: math.unit(5 + 10 / 12, "feet"),
  16737. default: true
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16743. {
  16744. front: {
  16745. height: math.unit(5 + 10 / 12, "feet"),
  16746. weight: math.unit(129, "lb"),
  16747. name: "Front",
  16748. image: {
  16749. source: "./media/characters/rina/front.svg",
  16750. extra: 266 / 255,
  16751. bottom: 0.005
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Normal",
  16758. height: math.unit(5 + 10 / 12, "feet"),
  16759. default: true
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(6 + 1 / 12, "feet"),
  16768. weight: math.unit(192, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/veronica/front.svg",
  16772. extra: 319 / 309,
  16773. bottom: 0.005
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(6 + 1 / 12, "feet"),
  16781. default: true
  16782. },
  16783. ]
  16784. ))
  16785. characterMakers.push(() => makeCharacter(
  16786. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16787. {
  16788. front: {
  16789. height: math.unit(9 + 3 / 12, "feet"),
  16790. weight: math.unit(1100, "lb"),
  16791. name: "Front",
  16792. image: {
  16793. source: "./media/characters/braxton/front.svg",
  16794. extra: 1057 / 984,
  16795. bottom: 0.05
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(9 + 3 / 12, "feet")
  16803. },
  16804. {
  16805. name: "Giant",
  16806. height: math.unit(300, "feet"),
  16807. default: true
  16808. },
  16809. {
  16810. name: "Macro",
  16811. height: math.unit(700, "feet")
  16812. },
  16813. {
  16814. name: "Megamacro",
  16815. height: math.unit(6000, "feet")
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(6 + 7 / 12, "feet"),
  16824. weight: math.unit(150, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/blue-feyonics/front.svg",
  16828. extra: 1403 / 1306,
  16829. bottom: 0.047
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(6 + 7 / 12, "feet"),
  16837. default: true
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16843. {
  16844. front: {
  16845. height: math.unit(1.8, "meters"),
  16846. weight: math.unit(60, "kg"),
  16847. name: "Front",
  16848. image: {
  16849. source: "./media/characters/maxwell/front.svg",
  16850. extra: 2060 / 1873
  16851. }
  16852. },
  16853. },
  16854. [
  16855. {
  16856. name: "Micro",
  16857. height: math.unit(1, "mm")
  16858. },
  16859. {
  16860. name: "Normal",
  16861. height: math.unit(1.8, "meter"),
  16862. default: true
  16863. },
  16864. {
  16865. name: "Macro",
  16866. height: math.unit(30, "meters")
  16867. },
  16868. {
  16869. name: "Megamacro",
  16870. height: math.unit(10, "km")
  16871. },
  16872. ]
  16873. ))
  16874. characterMakers.push(() => makeCharacter(
  16875. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16876. {
  16877. front: {
  16878. height: math.unit(6, "feet"),
  16879. weight: math.unit(150, "lb"),
  16880. name: "Front",
  16881. image: {
  16882. source: "./media/characters/jack/front.svg",
  16883. extra: 1754 / 1640,
  16884. bottom: 0.01
  16885. }
  16886. },
  16887. },
  16888. [
  16889. {
  16890. name: "Normal",
  16891. height: math.unit(80000, "feet"),
  16892. default: true
  16893. },
  16894. {
  16895. name: "Max size",
  16896. height: math.unit(10, "lightyears")
  16897. },
  16898. ]
  16899. ))
  16900. characterMakers.push(() => makeCharacter(
  16901. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16902. {
  16903. urban: {
  16904. height: math.unit(5, "feet"),
  16905. weight: math.unit(240, "lb"),
  16906. name: "Urban",
  16907. image: {
  16908. source: "./media/characters/cafat/urban.svg",
  16909. extra: 1223/1126,
  16910. bottom: 205/1428
  16911. }
  16912. },
  16913. summer: {
  16914. height: math.unit(5, "feet"),
  16915. weight: math.unit(240, "lb"),
  16916. name: "Summer",
  16917. image: {
  16918. source: "./media/characters/cafat/summer.svg",
  16919. extra: 1223/1126,
  16920. bottom: 205/1428
  16921. }
  16922. },
  16923. winter: {
  16924. height: math.unit(5, "feet"),
  16925. weight: math.unit(240, "lb"),
  16926. name: "Winter",
  16927. image: {
  16928. source: "./media/characters/cafat/winter.svg",
  16929. extra: 1223/1126,
  16930. bottom: 205/1428
  16931. }
  16932. },
  16933. lingerie: {
  16934. height: math.unit(5, "feet"),
  16935. weight: math.unit(240, "lb"),
  16936. name: "Lingerie",
  16937. image: {
  16938. source: "./media/characters/cafat/lingerie.svg",
  16939. extra: 1223/1126,
  16940. bottom: 205/1428
  16941. }
  16942. },
  16943. upright: {
  16944. height: math.unit(6.3, "feet"),
  16945. weight: math.unit(240, "lb"),
  16946. name: "Upright",
  16947. image: {
  16948. source: "./media/characters/cafat/upright.svg",
  16949. bottom: 0.01
  16950. }
  16951. },
  16952. uprightFull: {
  16953. height: math.unit(6.3, "feet"),
  16954. weight: math.unit(240, "lb"),
  16955. name: "Upright (Full)",
  16956. image: {
  16957. source: "./media/characters/cafat/upright-full.svg",
  16958. bottom: 0.01
  16959. }
  16960. },
  16961. },
  16962. [
  16963. {
  16964. name: "Small",
  16965. height: math.unit(5, "feet"),
  16966. default: true
  16967. },
  16968. {
  16969. name: "Large",
  16970. height: math.unit(13, "feet")
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16976. {
  16977. front: {
  16978. height: math.unit(6, "feet"),
  16979. weight: math.unit(150, "lb"),
  16980. name: "Front",
  16981. image: {
  16982. source: "./media/characters/verin-raharra/front.svg",
  16983. extra: 5019 / 4835,
  16984. bottom: 0.023
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Normal",
  16991. height: math.unit(7 + 5 / 12, "feet"),
  16992. default: true
  16993. },
  16994. {
  16995. name: "Upsized",
  16996. height: math.unit(20, "feet")
  16997. },
  16998. ]
  16999. ))
  17000. characterMakers.push(() => makeCharacter(
  17001. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17002. {
  17003. front: {
  17004. height: math.unit(7, "feet"),
  17005. weight: math.unit(230, "lb"),
  17006. name: "Front",
  17007. image: {
  17008. source: "./media/characters/nakata/front.svg",
  17009. extra: 1.005,
  17010. bottom: 0.01
  17011. }
  17012. },
  17013. },
  17014. [
  17015. {
  17016. name: "Normal",
  17017. height: math.unit(7, "feet"),
  17018. default: true
  17019. },
  17020. {
  17021. name: "Big",
  17022. height: math.unit(14, "feet")
  17023. },
  17024. {
  17025. name: "Macro",
  17026. height: math.unit(400, "feet")
  17027. },
  17028. ]
  17029. ))
  17030. characterMakers.push(() => makeCharacter(
  17031. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17032. {
  17033. front: {
  17034. height: math.unit(4.91, "feet"),
  17035. weight: math.unit(100, "lb"),
  17036. name: "Front",
  17037. image: {
  17038. source: "./media/characters/lily/front.svg",
  17039. extra: 1585 / 1415,
  17040. bottom: 0.02
  17041. }
  17042. },
  17043. },
  17044. [
  17045. {
  17046. name: "Normal",
  17047. height: math.unit(4.91, "feet"),
  17048. default: true
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17054. {
  17055. laying: {
  17056. height: math.unit(4 + 4 / 12, "feet"),
  17057. weight: math.unit(600, "lb"),
  17058. name: "Laying",
  17059. image: {
  17060. source: "./media/characters/sheila/laying.svg",
  17061. extra: 1333 / 1265,
  17062. bottom: 0.16
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(4 + 4 / 12, "feet"),
  17070. default: true
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17076. {
  17077. front: {
  17078. height: math.unit(6, "feet"),
  17079. weight: math.unit(190, "lb"),
  17080. name: "Front",
  17081. image: {
  17082. source: "./media/characters/sax/front.svg",
  17083. extra: 1187 / 973,
  17084. bottom: 0.042
  17085. }
  17086. },
  17087. },
  17088. [
  17089. {
  17090. name: "Micro",
  17091. height: math.unit(4, "inches"),
  17092. default: true
  17093. },
  17094. ]
  17095. ))
  17096. characterMakers.push(() => makeCharacter(
  17097. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17098. {
  17099. front: {
  17100. height: math.unit(6, "feet"),
  17101. weight: math.unit(150, "lb"),
  17102. name: "Front",
  17103. image: {
  17104. source: "./media/characters/pandora/front.svg",
  17105. extra: 2720 / 2556,
  17106. bottom: 0.015
  17107. }
  17108. },
  17109. back: {
  17110. height: math.unit(6, "feet"),
  17111. weight: math.unit(150, "lb"),
  17112. name: "Back",
  17113. image: {
  17114. source: "./media/characters/pandora/back.svg",
  17115. extra: 2720 / 2556,
  17116. bottom: 0.01
  17117. }
  17118. },
  17119. beans: {
  17120. height: math.unit(6 / 8, "feet"),
  17121. name: "Beans",
  17122. image: {
  17123. source: "./media/characters/pandora/beans.svg"
  17124. }
  17125. },
  17126. collar: {
  17127. height: math.unit(0.31, "feet"),
  17128. name: "Collar",
  17129. image: {
  17130. source: "./media/characters/pandora/collar.svg"
  17131. }
  17132. },
  17133. skirt: {
  17134. height: math.unit(6, "feet"),
  17135. weight: math.unit(150, "lb"),
  17136. name: "Skirt",
  17137. image: {
  17138. source: "./media/characters/pandora/skirt.svg",
  17139. extra: 1622 / 1525,
  17140. bottom: 0.015
  17141. }
  17142. },
  17143. hoodie: {
  17144. height: math.unit(6, "feet"),
  17145. weight: math.unit(150, "lb"),
  17146. name: "Hoodie",
  17147. image: {
  17148. source: "./media/characters/pandora/hoodie.svg",
  17149. extra: 1622 / 1525,
  17150. bottom: 0.015
  17151. }
  17152. },
  17153. casual: {
  17154. height: math.unit(6, "feet"),
  17155. weight: math.unit(150, "lb"),
  17156. name: "Casual",
  17157. image: {
  17158. source: "./media/characters/pandora/casual.svg",
  17159. extra: 1622 / 1525,
  17160. bottom: 0.015
  17161. }
  17162. },
  17163. },
  17164. [
  17165. {
  17166. name: "Normal",
  17167. height: math.unit(6, "feet")
  17168. },
  17169. {
  17170. name: "Big Steppy",
  17171. height: math.unit(1, "km"),
  17172. default: true
  17173. },
  17174. {
  17175. name: "Galactic Steppy",
  17176. height: math.unit(2, "gigameters")
  17177. },
  17178. ]
  17179. ))
  17180. characterMakers.push(() => makeCharacter(
  17181. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17182. {
  17183. side: {
  17184. height: math.unit(10, "feet"),
  17185. weight: math.unit(800, "kg"),
  17186. name: "Side",
  17187. image: {
  17188. source: "./media/characters/venio-darcony/side.svg",
  17189. extra: 1373 / 1003,
  17190. bottom: 0.037
  17191. }
  17192. },
  17193. front: {
  17194. height: math.unit(19, "feet"),
  17195. weight: math.unit(800, "kg"),
  17196. name: "Front",
  17197. image: {
  17198. source: "./media/characters/venio-darcony/front.svg"
  17199. }
  17200. },
  17201. back: {
  17202. height: math.unit(19, "feet"),
  17203. weight: math.unit(800, "kg"),
  17204. name: "Back",
  17205. image: {
  17206. source: "./media/characters/venio-darcony/back.svg"
  17207. }
  17208. },
  17209. sideNsfw: {
  17210. height: math.unit(10, "feet"),
  17211. weight: math.unit(800, "kg"),
  17212. name: "Side (NSFW)",
  17213. image: {
  17214. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17215. extra: 1373 / 1003,
  17216. bottom: 0.037
  17217. }
  17218. },
  17219. frontNsfw: {
  17220. height: math.unit(19, "feet"),
  17221. weight: math.unit(800, "kg"),
  17222. name: "Front (NSFW)",
  17223. image: {
  17224. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17225. }
  17226. },
  17227. backNsfw: {
  17228. height: math.unit(19, "feet"),
  17229. weight: math.unit(800, "kg"),
  17230. name: "Back (NSFW)",
  17231. image: {
  17232. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17233. }
  17234. },
  17235. sideArmored: {
  17236. height: math.unit(10, "feet"),
  17237. weight: math.unit(800, "kg"),
  17238. name: "Side (Armored)",
  17239. image: {
  17240. source: "./media/characters/venio-darcony/side-armored.svg",
  17241. extra: 1373 / 1003,
  17242. bottom: 0.037
  17243. }
  17244. },
  17245. frontArmored: {
  17246. height: math.unit(19, "feet"),
  17247. weight: math.unit(900, "kg"),
  17248. name: "Front (Armored)",
  17249. image: {
  17250. source: "./media/characters/venio-darcony/front-armored.svg"
  17251. }
  17252. },
  17253. backArmored: {
  17254. height: math.unit(19, "feet"),
  17255. weight: math.unit(900, "kg"),
  17256. name: "Back (Armored)",
  17257. image: {
  17258. source: "./media/characters/venio-darcony/back-armored.svg"
  17259. }
  17260. },
  17261. sword: {
  17262. height: math.unit(10, "feet"),
  17263. weight: math.unit(50, "lb"),
  17264. name: "Sword",
  17265. image: {
  17266. source: "./media/characters/venio-darcony/sword.svg"
  17267. }
  17268. },
  17269. },
  17270. [
  17271. {
  17272. name: "Normal",
  17273. height: math.unit(10, "feet")
  17274. },
  17275. {
  17276. name: "Macro",
  17277. height: math.unit(130, "feet"),
  17278. default: true
  17279. },
  17280. {
  17281. name: "Macro+",
  17282. height: math.unit(240, "feet")
  17283. },
  17284. ]
  17285. ))
  17286. characterMakers.push(() => makeCharacter(
  17287. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17288. {
  17289. front: {
  17290. height: math.unit(6, "feet"),
  17291. weight: math.unit(150, "lb"),
  17292. name: "Front",
  17293. image: {
  17294. source: "./media/characters/veski/front.svg",
  17295. extra: 1299 / 1225,
  17296. bottom: 0.04
  17297. }
  17298. },
  17299. back: {
  17300. height: math.unit(6, "feet"),
  17301. weight: math.unit(150, "lb"),
  17302. name: "Back",
  17303. image: {
  17304. source: "./media/characters/veski/back.svg",
  17305. extra: 1299 / 1225,
  17306. bottom: 0.008
  17307. }
  17308. },
  17309. maw: {
  17310. height: math.unit(1.5 * 1.21, "feet"),
  17311. name: "Maw",
  17312. image: {
  17313. source: "./media/characters/veski/maw.svg"
  17314. }
  17315. },
  17316. },
  17317. [
  17318. {
  17319. name: "Macro",
  17320. height: math.unit(2, "km"),
  17321. default: true
  17322. },
  17323. ]
  17324. ))
  17325. characterMakers.push(() => makeCharacter(
  17326. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17327. {
  17328. front: {
  17329. height: math.unit(5 + 7 / 12, "feet"),
  17330. name: "Front",
  17331. image: {
  17332. source: "./media/characters/isabelle/front.svg",
  17333. extra: 2130 / 1976,
  17334. bottom: 0.05
  17335. }
  17336. },
  17337. },
  17338. [
  17339. {
  17340. name: "Supermicro",
  17341. height: math.unit(10, "micrometers")
  17342. },
  17343. {
  17344. name: "Micro",
  17345. height: math.unit(1, "inch")
  17346. },
  17347. {
  17348. name: "Tiny",
  17349. height: math.unit(5, "inches")
  17350. },
  17351. {
  17352. name: "Standard",
  17353. height: math.unit(5 + 7 / 12, "inches")
  17354. },
  17355. {
  17356. name: "Macro",
  17357. height: math.unit(80, "meters"),
  17358. default: true
  17359. },
  17360. {
  17361. name: "Megamacro",
  17362. height: math.unit(250, "meters")
  17363. },
  17364. {
  17365. name: "Gigamacro",
  17366. height: math.unit(5, "km")
  17367. },
  17368. {
  17369. name: "Cosmic",
  17370. height: math.unit(2.5e6, "miles")
  17371. },
  17372. ]
  17373. ))
  17374. characterMakers.push(() => makeCharacter(
  17375. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17376. {
  17377. front: {
  17378. height: math.unit(6, "feet"),
  17379. weight: math.unit(150, "lb"),
  17380. name: "Front",
  17381. image: {
  17382. source: "./media/characters/hanzo/front.svg",
  17383. extra: 374 / 344,
  17384. bottom: 0.02
  17385. }
  17386. },
  17387. },
  17388. [
  17389. {
  17390. name: "Normal",
  17391. height: math.unit(8, "feet"),
  17392. default: true
  17393. },
  17394. ]
  17395. ))
  17396. characterMakers.push(() => makeCharacter(
  17397. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17398. {
  17399. front: {
  17400. height: math.unit(7, "feet"),
  17401. weight: math.unit(130, "lb"),
  17402. name: "Front",
  17403. image: {
  17404. source: "./media/characters/anna/front.svg",
  17405. extra: 169 / 145,
  17406. bottom: 0.06
  17407. }
  17408. },
  17409. full: {
  17410. height: math.unit(4.96, "feet"),
  17411. weight: math.unit(220, "lb"),
  17412. name: "Full",
  17413. image: {
  17414. source: "./media/characters/anna/full.svg",
  17415. extra: 138 / 114,
  17416. bottom: 0.15
  17417. }
  17418. },
  17419. tongue: {
  17420. height: math.unit(2.53, "feet"),
  17421. name: "Tongue",
  17422. image: {
  17423. source: "./media/characters/anna/tongue.svg"
  17424. }
  17425. },
  17426. },
  17427. [
  17428. {
  17429. name: "Normal",
  17430. height: math.unit(7, "feet"),
  17431. default: true
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17437. {
  17438. front: {
  17439. height: math.unit(7, "feet"),
  17440. weight: math.unit(150, "lb"),
  17441. name: "Front",
  17442. image: {
  17443. source: "./media/characters/ian-corvid/front.svg",
  17444. extra: 150 / 142,
  17445. bottom: 0.02
  17446. }
  17447. },
  17448. back: {
  17449. height: math.unit(7, "feet"),
  17450. weight: math.unit(150, "lb"),
  17451. name: "Back",
  17452. image: {
  17453. source: "./media/characters/ian-corvid/back.svg",
  17454. extra: 150 / 143,
  17455. bottom: 0.01
  17456. }
  17457. },
  17458. stomping: {
  17459. height: math.unit(7, "feet"),
  17460. weight: math.unit(150, "lb"),
  17461. name: "Stomping",
  17462. image: {
  17463. source: "./media/characters/ian-corvid/stomping.svg",
  17464. extra: 76 / 72
  17465. }
  17466. },
  17467. sitting: {
  17468. height: math.unit(7 / 1.8, "feet"),
  17469. weight: math.unit(150, "lb"),
  17470. name: "Sitting",
  17471. image: {
  17472. source: "./media/characters/ian-corvid/sitting.svg",
  17473. extra: 1400 / 1269,
  17474. bottom: 0.15
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Tiny Microw",
  17481. height: math.unit(1, "inch")
  17482. },
  17483. {
  17484. name: "Microw",
  17485. height: math.unit(6, "inches")
  17486. },
  17487. {
  17488. name: "Crow",
  17489. height: math.unit(7 + 1 / 12, "feet"),
  17490. default: true
  17491. },
  17492. {
  17493. name: "Macrow",
  17494. height: math.unit(176, "feet")
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17500. {
  17501. front: {
  17502. height: math.unit(5 + 7 / 12, "feet"),
  17503. weight: math.unit(147, "lb"),
  17504. name: "Front",
  17505. image: {
  17506. source: "./media/characters/natalie-kellon/front.svg",
  17507. extra: 1214 / 1141,
  17508. bottom: 0.02
  17509. }
  17510. },
  17511. },
  17512. [
  17513. {
  17514. name: "Micro",
  17515. height: math.unit(1 / 16, "inch")
  17516. },
  17517. {
  17518. name: "Tiny",
  17519. height: math.unit(4, "inches")
  17520. },
  17521. {
  17522. name: "Normal",
  17523. height: math.unit(5 + 7 / 12, "feet"),
  17524. default: true
  17525. },
  17526. {
  17527. name: "Amazon",
  17528. height: math.unit(12, "feet")
  17529. },
  17530. {
  17531. name: "Giantess",
  17532. height: math.unit(160, "meters")
  17533. },
  17534. {
  17535. name: "Titaness",
  17536. height: math.unit(800, "meters")
  17537. },
  17538. ]
  17539. ))
  17540. characterMakers.push(() => makeCharacter(
  17541. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17542. {
  17543. front: {
  17544. height: math.unit(6, "feet"),
  17545. weight: math.unit(150, "lb"),
  17546. name: "Front",
  17547. image: {
  17548. source: "./media/characters/alluria/front.svg",
  17549. extra: 806 / 738,
  17550. bottom: 0.01
  17551. }
  17552. },
  17553. side: {
  17554. height: math.unit(6, "feet"),
  17555. weight: math.unit(150, "lb"),
  17556. name: "Side",
  17557. image: {
  17558. source: "./media/characters/alluria/side.svg",
  17559. extra: 800 / 750,
  17560. }
  17561. },
  17562. back: {
  17563. height: math.unit(6, "feet"),
  17564. weight: math.unit(150, "lb"),
  17565. name: "Back",
  17566. image: {
  17567. source: "./media/characters/alluria/back.svg",
  17568. extra: 806 / 738,
  17569. }
  17570. },
  17571. frontMaid: {
  17572. height: math.unit(6, "feet"),
  17573. weight: math.unit(150, "lb"),
  17574. name: "Front (Maid)",
  17575. image: {
  17576. source: "./media/characters/alluria/front-maid.svg",
  17577. extra: 806 / 738,
  17578. bottom: 0.01
  17579. }
  17580. },
  17581. sideMaid: {
  17582. height: math.unit(6, "feet"),
  17583. weight: math.unit(150, "lb"),
  17584. name: "Side (Maid)",
  17585. image: {
  17586. source: "./media/characters/alluria/side-maid.svg",
  17587. extra: 800 / 750,
  17588. bottom: 0.005
  17589. }
  17590. },
  17591. backMaid: {
  17592. height: math.unit(6, "feet"),
  17593. weight: math.unit(150, "lb"),
  17594. name: "Back (Maid)",
  17595. image: {
  17596. source: "./media/characters/alluria/back-maid.svg",
  17597. extra: 806 / 738,
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Micro",
  17604. height: math.unit(6, "inches"),
  17605. default: true
  17606. },
  17607. ]
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17611. {
  17612. front: {
  17613. height: math.unit(6, "feet"),
  17614. weight: math.unit(150, "lb"),
  17615. name: "Front",
  17616. image: {
  17617. source: "./media/characters/kyle/front.svg",
  17618. extra: 1069 / 962,
  17619. bottom: 77.228 / 1727.45
  17620. }
  17621. },
  17622. },
  17623. [
  17624. {
  17625. name: "Macro",
  17626. height: math.unit(150, "feet"),
  17627. default: true
  17628. },
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17633. {
  17634. front: {
  17635. height: math.unit(6, "feet"),
  17636. weight: math.unit(300, "lb"),
  17637. name: "Front",
  17638. image: {
  17639. source: "./media/characters/duncan/front.svg",
  17640. extra: 1650 / 1482,
  17641. bottom: 0.05
  17642. }
  17643. },
  17644. },
  17645. [
  17646. {
  17647. name: "Macro",
  17648. height: math.unit(100, "feet"),
  17649. default: true
  17650. },
  17651. ]
  17652. ))
  17653. characterMakers.push(() => makeCharacter(
  17654. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17655. {
  17656. front: {
  17657. height: math.unit(5 + 4 / 12, "feet"),
  17658. weight: math.unit(220, "lb"),
  17659. name: "Front",
  17660. image: {
  17661. source: "./media/characters/memory/front.svg",
  17662. extra: 3641 / 3545,
  17663. bottom: 0.03
  17664. }
  17665. },
  17666. back: {
  17667. height: math.unit(5 + 4 / 12, "feet"),
  17668. weight: math.unit(220, "lb"),
  17669. name: "Back",
  17670. image: {
  17671. source: "./media/characters/memory/back.svg",
  17672. extra: 3641 / 3545,
  17673. bottom: 0.025
  17674. }
  17675. },
  17676. frontSkirt: {
  17677. height: math.unit(5 + 4 / 12, "feet"),
  17678. weight: math.unit(220, "lb"),
  17679. name: "Front (Skirt)",
  17680. image: {
  17681. source: "./media/characters/memory/front-skirt.svg",
  17682. extra: 3641 / 3545,
  17683. bottom: 0.03
  17684. }
  17685. },
  17686. frontDress: {
  17687. height: math.unit(5 + 4 / 12, "feet"),
  17688. weight: math.unit(220, "lb"),
  17689. name: "Front (Dress)",
  17690. image: {
  17691. source: "./media/characters/memory/front-dress.svg",
  17692. extra: 3641 / 3545,
  17693. bottom: 0.03
  17694. }
  17695. },
  17696. },
  17697. [
  17698. {
  17699. name: "Micro",
  17700. height: math.unit(6, "inches"),
  17701. default: true
  17702. },
  17703. {
  17704. name: "Normal",
  17705. height: math.unit(5 + 4 / 12, "feet")
  17706. },
  17707. ]
  17708. ))
  17709. characterMakers.push(() => makeCharacter(
  17710. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17711. {
  17712. front: {
  17713. height: math.unit(4 + 11 / 12, "feet"),
  17714. weight: math.unit(100, "lb"),
  17715. name: "Front",
  17716. image: {
  17717. source: "./media/characters/luno/front.svg",
  17718. extra: 1535 / 1487,
  17719. bottom: 0.03
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Micro",
  17726. height: math.unit(3, "inches")
  17727. },
  17728. {
  17729. name: "Normal",
  17730. height: math.unit(4 + 11 / 12, "feet"),
  17731. default: true
  17732. },
  17733. {
  17734. name: "Macro",
  17735. height: math.unit(300, "feet")
  17736. },
  17737. {
  17738. name: "Megamacro",
  17739. height: math.unit(700, "miles")
  17740. },
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(6 + 2 / 12, "feet"),
  17748. weight: math.unit(170, "lb"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/jamesy/front.svg",
  17752. extra: 440 / 382,
  17753. bottom: 0.005
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Micro",
  17760. height: math.unit(3, "inches")
  17761. },
  17762. {
  17763. name: "Normal",
  17764. height: math.unit(6 + 2 / 12, "feet"),
  17765. default: true
  17766. },
  17767. {
  17768. name: "Macro",
  17769. height: math.unit(300, "feet")
  17770. },
  17771. {
  17772. name: "Megamacro",
  17773. height: math.unit(700, "miles")
  17774. },
  17775. ]
  17776. ))
  17777. characterMakers.push(() => makeCharacter(
  17778. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17779. {
  17780. front: {
  17781. height: math.unit(6, "feet"),
  17782. weight: math.unit(160, "lb"),
  17783. name: "Front",
  17784. image: {
  17785. source: "./media/characters/mark/front.svg",
  17786. extra: 3300 / 3100,
  17787. bottom: 136.42 / 3440.47
  17788. }
  17789. },
  17790. },
  17791. [
  17792. {
  17793. name: "Macro",
  17794. height: math.unit(120, "meters")
  17795. },
  17796. {
  17797. name: "Bigger Macro",
  17798. height: math.unit(350, "meters")
  17799. },
  17800. {
  17801. name: "Megamacro",
  17802. height: math.unit(8, "km"),
  17803. default: true
  17804. },
  17805. {
  17806. name: "Continental",
  17807. height: math.unit(4550, "km")
  17808. },
  17809. {
  17810. name: "Planetary",
  17811. height: math.unit(65000, "km")
  17812. },
  17813. ]
  17814. ))
  17815. characterMakers.push(() => makeCharacter(
  17816. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17817. {
  17818. front: {
  17819. height: math.unit(6, "feet"),
  17820. weight: math.unit(400, "lb"),
  17821. name: "Front",
  17822. image: {
  17823. source: "./media/characters/mac/front.svg",
  17824. extra: 1048 / 987.7,
  17825. bottom: 60 / 1107.6,
  17826. }
  17827. },
  17828. },
  17829. [
  17830. {
  17831. name: "Macro",
  17832. height: math.unit(500, "feet"),
  17833. default: true
  17834. },
  17835. ]
  17836. ))
  17837. characterMakers.push(() => makeCharacter(
  17838. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17839. {
  17840. front: {
  17841. height: math.unit(5 + 2 / 12, "feet"),
  17842. weight: math.unit(190, "lb"),
  17843. name: "Front",
  17844. image: {
  17845. source: "./media/characters/bari/front.svg",
  17846. extra: 3156 / 2880,
  17847. bottom: 0.03
  17848. }
  17849. },
  17850. back: {
  17851. height: math.unit(5 + 2 / 12, "feet"),
  17852. weight: math.unit(190, "lb"),
  17853. name: "Back",
  17854. image: {
  17855. source: "./media/characters/bari/back.svg",
  17856. extra: 3260 / 2834,
  17857. bottom: 0.025
  17858. }
  17859. },
  17860. frontPlush: {
  17861. height: math.unit(5 + 2 / 12, "feet"),
  17862. weight: math.unit(190, "lb"),
  17863. name: "Front (Plush)",
  17864. image: {
  17865. source: "./media/characters/bari/front-plush.svg",
  17866. extra: 1112 / 1061,
  17867. bottom: 0.002
  17868. }
  17869. },
  17870. },
  17871. [
  17872. {
  17873. name: "Micro",
  17874. height: math.unit(3, "inches")
  17875. },
  17876. {
  17877. name: "Normal",
  17878. height: math.unit(5 + 2 / 12, "feet"),
  17879. default: true
  17880. },
  17881. {
  17882. name: "Macro",
  17883. height: math.unit(20, "feet")
  17884. },
  17885. ]
  17886. ))
  17887. characterMakers.push(() => makeCharacter(
  17888. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17889. {
  17890. front: {
  17891. height: math.unit(6 + 1 / 12, "feet"),
  17892. weight: math.unit(275, "lb"),
  17893. name: "Front",
  17894. image: {
  17895. source: "./media/characters/hunter-misha-raven/front.svg"
  17896. }
  17897. },
  17898. },
  17899. [
  17900. {
  17901. name: "Mortal",
  17902. height: math.unit(6 + 1 / 12, "feet")
  17903. },
  17904. {
  17905. name: "Divine",
  17906. height: math.unit(1.12134e34, "parsecs"),
  17907. default: true
  17908. },
  17909. ]
  17910. ))
  17911. characterMakers.push(() => makeCharacter(
  17912. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17913. {
  17914. front: {
  17915. height: math.unit(6 + 3 / 12, "feet"),
  17916. weight: math.unit(220, "lb"),
  17917. name: "Front",
  17918. image: {
  17919. source: "./media/characters/max-calore/front.svg",
  17920. extra: 1700 / 1648,
  17921. bottom: 0.01
  17922. }
  17923. },
  17924. back: {
  17925. height: math.unit(6 + 3 / 12, "feet"),
  17926. weight: math.unit(220, "lb"),
  17927. name: "Back",
  17928. image: {
  17929. source: "./media/characters/max-calore/back.svg",
  17930. extra: 1700 / 1648,
  17931. bottom: 0.01
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(6 + 3 / 12, "feet"),
  17939. default: true
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17945. {
  17946. side: {
  17947. height: math.unit(2 + 8 / 12, "feet"),
  17948. weight: math.unit(99, "lb"),
  17949. name: "Side",
  17950. image: {
  17951. source: "./media/characters/aspen/side.svg",
  17952. extra: 152 / 138,
  17953. bottom: 0.032
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(2 + 8 / 12, "feet"),
  17961. default: true
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17967. {
  17968. side: {
  17969. height: math.unit(3 + 2 / 12, "feet"),
  17970. weight: math.unit(224, "lb"),
  17971. name: "Side",
  17972. image: {
  17973. source: "./media/characters/sheila-feral-wolf/side.svg",
  17974. extra: 179 / 166,
  17975. bottom: 0.03
  17976. }
  17977. },
  17978. },
  17979. [
  17980. {
  17981. name: "Normal",
  17982. height: math.unit(3 + 2 / 12, "feet"),
  17983. default: true
  17984. },
  17985. ]
  17986. ))
  17987. characterMakers.push(() => makeCharacter(
  17988. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17989. {
  17990. side: {
  17991. height: math.unit(1 + 9 / 12, "feet"),
  17992. weight: math.unit(38, "lb"),
  17993. name: "Side",
  17994. image: {
  17995. source: "./media/characters/michelle/side.svg",
  17996. extra: 147 / 136.7,
  17997. bottom: 0.03
  17998. }
  17999. },
  18000. },
  18001. [
  18002. {
  18003. name: "Normal",
  18004. height: math.unit(1 + 9 / 12, "feet"),
  18005. default: true
  18006. },
  18007. ]
  18008. ))
  18009. characterMakers.push(() => makeCharacter(
  18010. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18011. {
  18012. front: {
  18013. height: math.unit(1.54, "feet"),
  18014. weight: math.unit(50, "lb"),
  18015. name: "Front",
  18016. image: {
  18017. source: "./media/characters/nino/front.svg"
  18018. }
  18019. },
  18020. },
  18021. [
  18022. {
  18023. name: "Normal",
  18024. height: math.unit(1.54, "feet"),
  18025. default: true
  18026. },
  18027. ]
  18028. ))
  18029. characterMakers.push(() => makeCharacter(
  18030. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18031. {
  18032. front: {
  18033. height: math.unit(1.49, "feet"),
  18034. weight: math.unit(45, "lb"),
  18035. name: "Front",
  18036. image: {
  18037. source: "./media/characters/viola/front.svg"
  18038. }
  18039. },
  18040. },
  18041. [
  18042. {
  18043. name: "Normal",
  18044. height: math.unit(1.49, "feet"),
  18045. default: true
  18046. },
  18047. ]
  18048. ))
  18049. characterMakers.push(() => makeCharacter(
  18050. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18051. {
  18052. front: {
  18053. height: math.unit(6 + 5 / 12, "feet"),
  18054. weight: math.unit(580, "lb"),
  18055. name: "Front",
  18056. image: {
  18057. source: "./media/characters/atlas/front.svg",
  18058. extra: 298.5 / 290,
  18059. bottom: 0.015
  18060. }
  18061. },
  18062. },
  18063. [
  18064. {
  18065. name: "Normal",
  18066. height: math.unit(6 + 5 / 12, "feet"),
  18067. default: true
  18068. },
  18069. ]
  18070. ))
  18071. characterMakers.push(() => makeCharacter(
  18072. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18073. {
  18074. side: {
  18075. height: math.unit(15.6, "inches"),
  18076. weight: math.unit(10, "lb"),
  18077. name: "Side",
  18078. image: {
  18079. source: "./media/characters/davy/side.svg",
  18080. extra: 200 / 170,
  18081. bottom: 0.01
  18082. }
  18083. },
  18084. },
  18085. [
  18086. {
  18087. name: "Normal",
  18088. height: math.unit(15.6, "inches"),
  18089. default: true
  18090. },
  18091. ]
  18092. ))
  18093. characterMakers.push(() => makeCharacter(
  18094. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18095. {
  18096. side: {
  18097. height: math.unit(4 + 8 / 12, "feet"),
  18098. weight: math.unit(166, "lb"),
  18099. name: "Side",
  18100. image: {
  18101. source: "./media/characters/fiona/side.svg",
  18102. extra: 232 / 220,
  18103. bottom: 0.03
  18104. }
  18105. },
  18106. },
  18107. [
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(4 + 8 / 12, "feet"),
  18111. default: true
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18117. {
  18118. front: {
  18119. height: math.unit(26, "inches"),
  18120. weight: math.unit(35, "lb"),
  18121. name: "Front",
  18122. image: {
  18123. source: "./media/characters/lyla/front.svg",
  18124. bottom: 0.1
  18125. }
  18126. },
  18127. },
  18128. [
  18129. {
  18130. name: "Normal",
  18131. height: math.unit(3, "feet"),
  18132. default: true
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18138. {
  18139. side: {
  18140. height: math.unit(1.8, "feet"),
  18141. weight: math.unit(44, "lb"),
  18142. name: "Side",
  18143. image: {
  18144. source: "./media/characters/perseus/side.svg",
  18145. bottom: 0.21
  18146. }
  18147. },
  18148. },
  18149. [
  18150. {
  18151. name: "Normal",
  18152. height: math.unit(1.8, "feet"),
  18153. default: true
  18154. },
  18155. ]
  18156. ))
  18157. characterMakers.push(() => makeCharacter(
  18158. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18159. {
  18160. side: {
  18161. height: math.unit(4 + 2 / 12, "feet"),
  18162. weight: math.unit(20, "lb"),
  18163. name: "Side",
  18164. image: {
  18165. source: "./media/characters/remus/side.svg"
  18166. }
  18167. },
  18168. },
  18169. [
  18170. {
  18171. name: "Normal",
  18172. height: math.unit(4 + 2 / 12, "feet"),
  18173. default: true
  18174. },
  18175. ]
  18176. ))
  18177. characterMakers.push(() => makeCharacter(
  18178. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18179. {
  18180. front: {
  18181. height: math.unit(4 + 11 / 12, "feet"),
  18182. weight: math.unit(114, "lb"),
  18183. name: "Front",
  18184. image: {
  18185. source: "./media/characters/raf/front.svg",
  18186. extra: 1504/1339,
  18187. bottom: 26/1530
  18188. }
  18189. },
  18190. side: {
  18191. height: math.unit(4 + 11 / 12, "feet"),
  18192. weight: math.unit(114, "lb"),
  18193. name: "Side",
  18194. image: {
  18195. source: "./media/characters/raf/side.svg",
  18196. extra: 1466/1316,
  18197. bottom: 29/1495
  18198. }
  18199. },
  18200. paw: {
  18201. height: math.unit(1.45, "feet"),
  18202. name: "Paw",
  18203. image: {
  18204. source: "./media/characters/raf/paw.svg"
  18205. },
  18206. extraAttributes: {
  18207. "toeSize": {
  18208. name: "Toe Size",
  18209. power: 2,
  18210. type: "area",
  18211. base: math.unit(0.004, "m^2")
  18212. },
  18213. "padSize": {
  18214. name: "Pad Size",
  18215. power: 2,
  18216. type: "area",
  18217. base: math.unit(0.04, "m^2")
  18218. },
  18219. "footSize": {
  18220. name: "Foot Size",
  18221. power: 2,
  18222. type: "area",
  18223. base: math.unit(0.08, "m^2")
  18224. },
  18225. }
  18226. },
  18227. },
  18228. [
  18229. {
  18230. name: "Micro",
  18231. height: math.unit(2, "inches")
  18232. },
  18233. {
  18234. name: "Normal",
  18235. height: math.unit(4 + 11 / 12, "feet"),
  18236. default: true
  18237. },
  18238. {
  18239. name: "Macro",
  18240. height: math.unit(70, "feet")
  18241. },
  18242. ]
  18243. ))
  18244. characterMakers.push(() => makeCharacter(
  18245. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18246. {
  18247. front: {
  18248. height: math.unit(1.5, "meters"),
  18249. weight: math.unit(68, "kg"),
  18250. name: "Front",
  18251. image: {
  18252. source: "./media/characters/liam-einarr/front.svg",
  18253. extra: 2822 / 2666
  18254. }
  18255. },
  18256. back: {
  18257. height: math.unit(1.5, "meters"),
  18258. weight: math.unit(68, "kg"),
  18259. name: "Back",
  18260. image: {
  18261. source: "./media/characters/liam-einarr/back.svg",
  18262. extra: 2822 / 2666,
  18263. bottom: 0.015
  18264. }
  18265. },
  18266. },
  18267. [
  18268. {
  18269. name: "Normal",
  18270. height: math.unit(1.5, "meters"),
  18271. default: true
  18272. },
  18273. {
  18274. name: "Macro",
  18275. height: math.unit(150, "meters")
  18276. },
  18277. {
  18278. name: "Megamacro",
  18279. height: math.unit(35, "km")
  18280. },
  18281. ]
  18282. ))
  18283. characterMakers.push(() => makeCharacter(
  18284. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18285. {
  18286. front: {
  18287. height: math.unit(6, "feet"),
  18288. weight: math.unit(75, "kg"),
  18289. name: "Front",
  18290. image: {
  18291. source: "./media/characters/linda/front.svg",
  18292. extra: 930 / 874,
  18293. bottom: 0.004
  18294. }
  18295. },
  18296. },
  18297. [
  18298. {
  18299. name: "Normal",
  18300. height: math.unit(6, "feet"),
  18301. default: true
  18302. },
  18303. ]
  18304. ))
  18305. characterMakers.push(() => makeCharacter(
  18306. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18307. {
  18308. front: {
  18309. height: math.unit(6 + 8 / 12, "feet"),
  18310. weight: math.unit(220, "lb"),
  18311. name: "Front",
  18312. image: {
  18313. source: "./media/characters/caylex/front.svg",
  18314. extra: 821 / 772,
  18315. bottom: 0.07
  18316. }
  18317. },
  18318. back: {
  18319. height: math.unit(6 + 8 / 12, "feet"),
  18320. weight: math.unit(220, "lb"),
  18321. name: "Back",
  18322. image: {
  18323. source: "./media/characters/caylex/back.svg",
  18324. extra: 821 / 772,
  18325. bottom: 0.022
  18326. }
  18327. },
  18328. hand: {
  18329. height: math.unit(1.25, "feet"),
  18330. name: "Hand",
  18331. image: {
  18332. source: "./media/characters/caylex/hand.svg"
  18333. }
  18334. },
  18335. foot: {
  18336. height: math.unit(1.6, "feet"),
  18337. name: "Foot",
  18338. image: {
  18339. source: "./media/characters/caylex/foot.svg"
  18340. }
  18341. },
  18342. armored: {
  18343. height: math.unit(6 + 8 / 12, "feet"),
  18344. weight: math.unit(250, "lb"),
  18345. name: "Armored",
  18346. image: {
  18347. source: "./media/characters/caylex/armored.svg",
  18348. extra: 1420 / 1310,
  18349. bottom: 0.045
  18350. }
  18351. },
  18352. },
  18353. [
  18354. {
  18355. name: "Normal",
  18356. height: math.unit(6 + 8 / 12, "feet"),
  18357. default: true
  18358. },
  18359. {
  18360. name: "Normal+",
  18361. height: math.unit(12, "feet")
  18362. },
  18363. ]
  18364. ))
  18365. characterMakers.push(() => makeCharacter(
  18366. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18367. {
  18368. front: {
  18369. height: math.unit(7 + 6 / 12, "feet"),
  18370. weight: math.unit(288, "lb"),
  18371. name: "Front",
  18372. image: {
  18373. source: "./media/characters/alana/front.svg",
  18374. extra: 679 / 653,
  18375. bottom: 22.5 / 701
  18376. }
  18377. },
  18378. },
  18379. [
  18380. {
  18381. name: "Normal",
  18382. height: math.unit(7 + 6 / 12, "feet")
  18383. },
  18384. {
  18385. name: "Large",
  18386. height: math.unit(50, "feet")
  18387. },
  18388. {
  18389. name: "Macro",
  18390. height: math.unit(100, "feet"),
  18391. default: true
  18392. },
  18393. {
  18394. name: "Macro+",
  18395. height: math.unit(200, "feet")
  18396. },
  18397. ]
  18398. ))
  18399. characterMakers.push(() => makeCharacter(
  18400. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18401. {
  18402. front: {
  18403. height: math.unit(6 + 1 / 12, "feet"),
  18404. weight: math.unit(210, "lb"),
  18405. name: "Front",
  18406. image: {
  18407. source: "./media/characters/hasani/front.svg",
  18408. extra: 244 / 232,
  18409. bottom: 0.01
  18410. }
  18411. },
  18412. back: {
  18413. height: math.unit(6 + 1 / 12, "feet"),
  18414. weight: math.unit(210, "lb"),
  18415. name: "Back",
  18416. image: {
  18417. source: "./media/characters/hasani/back.svg",
  18418. extra: 244 / 232,
  18419. bottom: 0.01
  18420. }
  18421. },
  18422. },
  18423. [
  18424. {
  18425. name: "Normal",
  18426. height: math.unit(6 + 1 / 12, "feet")
  18427. },
  18428. {
  18429. name: "Macro",
  18430. height: math.unit(175, "feet"),
  18431. default: true
  18432. },
  18433. ]
  18434. ))
  18435. characterMakers.push(() => makeCharacter(
  18436. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18437. {
  18438. front: {
  18439. height: math.unit(1.82, "meters"),
  18440. weight: math.unit(140, "lb"),
  18441. name: "Front",
  18442. image: {
  18443. source: "./media/characters/nita/front.svg",
  18444. extra: 2473 / 2363,
  18445. bottom: 0.01
  18446. }
  18447. },
  18448. },
  18449. [
  18450. {
  18451. name: "Normal",
  18452. height: math.unit(1.82, "m")
  18453. },
  18454. {
  18455. name: "Macro",
  18456. height: math.unit(300, "m")
  18457. },
  18458. {
  18459. name: "Mistake Canon",
  18460. height: math.unit(0.5, "miles"),
  18461. default: true
  18462. },
  18463. {
  18464. name: "Big Mistake",
  18465. height: math.unit(13, "miles")
  18466. },
  18467. {
  18468. name: "Playing God",
  18469. height: math.unit(2450, "miles")
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18475. {
  18476. front: {
  18477. height: math.unit(4, "feet"),
  18478. weight: math.unit(120, "lb"),
  18479. name: "Front",
  18480. image: {
  18481. source: "./media/characters/shiriko/front.svg",
  18482. extra: 970/934,
  18483. bottom: 5/975
  18484. }
  18485. },
  18486. },
  18487. [
  18488. {
  18489. name: "Normal",
  18490. height: math.unit(4, "feet"),
  18491. default: true
  18492. },
  18493. ]
  18494. ))
  18495. characterMakers.push(() => makeCharacter(
  18496. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18497. {
  18498. front: {
  18499. height: math.unit(6, "feet"),
  18500. name: "front",
  18501. image: {
  18502. source: "./media/characters/deja/front.svg",
  18503. extra: 926 / 840,
  18504. bottom: 0.07
  18505. }
  18506. },
  18507. },
  18508. [
  18509. {
  18510. name: "Planck Length",
  18511. height: math.unit(1.6e-35, "meters")
  18512. },
  18513. {
  18514. name: "Normal",
  18515. height: math.unit(30.48, "meters"),
  18516. default: true
  18517. },
  18518. {
  18519. name: "Universal",
  18520. height: math.unit(8.8e26, "meters")
  18521. },
  18522. ]
  18523. ))
  18524. characterMakers.push(() => makeCharacter(
  18525. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18526. {
  18527. side: {
  18528. height: math.unit(8, "feet"),
  18529. weight: math.unit(6300, "lb"),
  18530. name: "Side",
  18531. image: {
  18532. source: "./media/characters/anima/side.svg",
  18533. bottom: 0.035
  18534. }
  18535. },
  18536. },
  18537. [
  18538. {
  18539. name: "Normal",
  18540. height: math.unit(8, "feet"),
  18541. default: true
  18542. },
  18543. ]
  18544. ))
  18545. characterMakers.push(() => makeCharacter(
  18546. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18547. {
  18548. front: {
  18549. height: math.unit(8, "feet"),
  18550. weight: math.unit(350, "lb"),
  18551. name: "Front",
  18552. image: {
  18553. source: "./media/characters/bianca/front.svg",
  18554. extra: 234 / 225,
  18555. bottom: 0.03
  18556. }
  18557. },
  18558. },
  18559. [
  18560. {
  18561. name: "Normal",
  18562. height: math.unit(8, "feet"),
  18563. default: true
  18564. },
  18565. ]
  18566. ))
  18567. characterMakers.push(() => makeCharacter(
  18568. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18569. {
  18570. front: {
  18571. height: math.unit(11 + 5/12, "feet"),
  18572. weight: math.unit(1200, "lb"),
  18573. name: "Front",
  18574. image: {
  18575. source: "./media/characters/adinia/front.svg",
  18576. extra: 1767/1641,
  18577. bottom: 44/1811
  18578. },
  18579. extraAttributes: {
  18580. "energyIntake": {
  18581. name: "Energy Intake",
  18582. power: 3,
  18583. type: "energy",
  18584. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18585. },
  18586. }
  18587. },
  18588. back: {
  18589. height: math.unit(11 + 5/12, "feet"),
  18590. weight: math.unit(1200, "lb"),
  18591. name: "Back",
  18592. image: {
  18593. source: "./media/characters/adinia/back.svg",
  18594. extra: 1834/1684,
  18595. bottom: 14/1848
  18596. },
  18597. extraAttributes: {
  18598. "energyIntake": {
  18599. name: "Energy Intake",
  18600. power: 3,
  18601. type: "energy",
  18602. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18603. },
  18604. }
  18605. },
  18606. maw: {
  18607. height: math.unit(3.79, "feet"),
  18608. name: "Maw",
  18609. image: {
  18610. source: "./media/characters/adinia/maw.svg"
  18611. }
  18612. },
  18613. rump: {
  18614. height: math.unit(4.6, "feet"),
  18615. name: "Rump",
  18616. image: {
  18617. source: "./media/characters/adinia/rump.svg"
  18618. }
  18619. },
  18620. },
  18621. [
  18622. {
  18623. name: "Normal",
  18624. height: math.unit(11 + 5 / 12, "feet"),
  18625. default: true
  18626. },
  18627. ]
  18628. ))
  18629. characterMakers.push(() => makeCharacter(
  18630. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18631. {
  18632. front: {
  18633. height: math.unit(3, "meters"),
  18634. weight: math.unit(200, "kg"),
  18635. name: "Front",
  18636. image: {
  18637. source: "./media/characters/lykasa/front.svg",
  18638. extra: 1076 / 976,
  18639. bottom: 0.06
  18640. }
  18641. },
  18642. },
  18643. [
  18644. {
  18645. name: "Normal",
  18646. height: math.unit(3, "meters")
  18647. },
  18648. {
  18649. name: "Kaiju",
  18650. height: math.unit(120, "meters"),
  18651. default: true
  18652. },
  18653. {
  18654. name: "Mega Kaiju",
  18655. height: math.unit(240, "km")
  18656. },
  18657. {
  18658. name: "Giga Kaiju",
  18659. height: math.unit(400, "megameters")
  18660. },
  18661. {
  18662. name: "Tera Kaiju",
  18663. height: math.unit(800, "gigameters")
  18664. },
  18665. {
  18666. name: "Kaiju Dragon Goddess",
  18667. height: math.unit(26, "zettaparsecs")
  18668. },
  18669. ]
  18670. ))
  18671. characterMakers.push(() => makeCharacter(
  18672. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18673. {
  18674. side: {
  18675. height: math.unit(283 / 124 * 6, "feet"),
  18676. weight: math.unit(35000, "lb"),
  18677. name: "Side",
  18678. image: {
  18679. source: "./media/characters/malfaren/side.svg",
  18680. extra: 1310/529,
  18681. bottom: 24/1334
  18682. }
  18683. },
  18684. front: {
  18685. height: math.unit(22.36, "feet"),
  18686. weight: math.unit(35000, "lb"),
  18687. name: "Front",
  18688. image: {
  18689. source: "./media/characters/malfaren/front.svg",
  18690. extra: 1237/1115,
  18691. bottom: 32/1269
  18692. }
  18693. },
  18694. maw: {
  18695. height: math.unit(6.9, "feet"),
  18696. name: "Maw",
  18697. image: {
  18698. source: "./media/characters/malfaren/maw.svg"
  18699. }
  18700. },
  18701. dick: {
  18702. height: math.unit(6.19, "feet"),
  18703. name: "Dick",
  18704. image: {
  18705. source: "./media/characters/malfaren/dick.svg"
  18706. }
  18707. },
  18708. eye: {
  18709. height: math.unit(0.69, "feet"),
  18710. name: "Eye",
  18711. image: {
  18712. source: "./media/characters/malfaren/eye.svg"
  18713. }
  18714. },
  18715. },
  18716. [
  18717. {
  18718. name: "Big",
  18719. height: math.unit(283 / 162 * 6, "feet"),
  18720. },
  18721. {
  18722. name: "Bigger",
  18723. height: math.unit(283 / 124 * 6, "feet")
  18724. },
  18725. {
  18726. name: "Massive",
  18727. height: math.unit(283 / 92 * 6, "feet"),
  18728. default: true
  18729. },
  18730. {
  18731. name: "👀💦",
  18732. height: math.unit(283 / 73 * 6, "feet"),
  18733. },
  18734. ]
  18735. ))
  18736. characterMakers.push(() => makeCharacter(
  18737. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18738. {
  18739. front: {
  18740. height: math.unit(1.7, "m"),
  18741. weight: math.unit(70, "kg"),
  18742. name: "Front",
  18743. image: {
  18744. source: "./media/characters/kernel/front.svg",
  18745. extra: 222 / 210,
  18746. bottom: 0.007
  18747. }
  18748. },
  18749. },
  18750. [
  18751. {
  18752. name: "Nano",
  18753. height: math.unit(17, "micrometers")
  18754. },
  18755. {
  18756. name: "Micro",
  18757. height: math.unit(1.7, "mm")
  18758. },
  18759. {
  18760. name: "Small",
  18761. height: math.unit(1.7, "cm")
  18762. },
  18763. {
  18764. name: "Normal",
  18765. height: math.unit(1.7, "m"),
  18766. default: true
  18767. },
  18768. ]
  18769. ))
  18770. characterMakers.push(() => makeCharacter(
  18771. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18772. {
  18773. front: {
  18774. height: math.unit(1.75, "meters"),
  18775. weight: math.unit(65, "kg"),
  18776. name: "Front",
  18777. image: {
  18778. source: "./media/characters/jayne-folest/front.svg",
  18779. extra: 2115 / 2007,
  18780. bottom: 0.02
  18781. }
  18782. },
  18783. back: {
  18784. height: math.unit(1.75, "meters"),
  18785. weight: math.unit(65, "kg"),
  18786. name: "Back",
  18787. image: {
  18788. source: "./media/characters/jayne-folest/back.svg",
  18789. extra: 2115 / 2007,
  18790. bottom: 0.005
  18791. }
  18792. },
  18793. frontClothed: {
  18794. height: math.unit(1.75, "meters"),
  18795. weight: math.unit(65, "kg"),
  18796. name: "Front (Clothed)",
  18797. image: {
  18798. source: "./media/characters/jayne-folest/front-clothed.svg",
  18799. extra: 2115 / 2007,
  18800. bottom: 0.035
  18801. }
  18802. },
  18803. hand: {
  18804. height: math.unit(1 / 1.260, "feet"),
  18805. name: "Hand",
  18806. image: {
  18807. source: "./media/characters/jayne-folest/hand.svg"
  18808. }
  18809. },
  18810. foot: {
  18811. height: math.unit(1 / 0.918, "feet"),
  18812. name: "Foot",
  18813. image: {
  18814. source: "./media/characters/jayne-folest/foot.svg"
  18815. }
  18816. },
  18817. },
  18818. [
  18819. {
  18820. name: "Micro",
  18821. height: math.unit(4, "cm")
  18822. },
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(1.75, "meters")
  18826. },
  18827. {
  18828. name: "Macro",
  18829. height: math.unit(47.5, "meters"),
  18830. default: true
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18836. {
  18837. front: {
  18838. height: math.unit(180, "cm"),
  18839. weight: math.unit(70, "kg"),
  18840. name: "Front",
  18841. image: {
  18842. source: "./media/characters/algier/front.svg",
  18843. extra: 596 / 572,
  18844. bottom: 0.04
  18845. }
  18846. },
  18847. back: {
  18848. height: math.unit(180, "cm"),
  18849. weight: math.unit(70, "kg"),
  18850. name: "Back",
  18851. image: {
  18852. source: "./media/characters/algier/back.svg",
  18853. extra: 596 / 572,
  18854. bottom: 0.025
  18855. }
  18856. },
  18857. frontdressed: {
  18858. height: math.unit(180, "cm"),
  18859. weight: math.unit(150, "kg"),
  18860. name: "Front-dressed",
  18861. image: {
  18862. source: "./media/characters/algier/front-dressed.svg",
  18863. extra: 596 / 572,
  18864. bottom: 0.038
  18865. }
  18866. },
  18867. },
  18868. [
  18869. {
  18870. name: "Micro",
  18871. height: math.unit(5, "cm")
  18872. },
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(180, "cm"),
  18876. default: true
  18877. },
  18878. {
  18879. name: "Macro",
  18880. height: math.unit(64, "m")
  18881. },
  18882. ]
  18883. ))
  18884. characterMakers.push(() => makeCharacter(
  18885. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18886. {
  18887. upright: {
  18888. height: math.unit(7, "feet"),
  18889. weight: math.unit(300, "lb"),
  18890. name: "Upright",
  18891. image: {
  18892. source: "./media/characters/pretzel/upright.svg",
  18893. extra: 534 / 522,
  18894. bottom: 0.065
  18895. }
  18896. },
  18897. sprawling: {
  18898. height: math.unit(3.75, "feet"),
  18899. weight: math.unit(300, "lb"),
  18900. name: "Sprawling",
  18901. image: {
  18902. source: "./media/characters/pretzel/sprawling.svg",
  18903. extra: 314 / 281,
  18904. bottom: 0.1
  18905. }
  18906. },
  18907. tongue: {
  18908. height: math.unit(2, "feet"),
  18909. name: "Tongue",
  18910. image: {
  18911. source: "./media/characters/pretzel/tongue.svg"
  18912. }
  18913. },
  18914. },
  18915. [
  18916. {
  18917. name: "Normal",
  18918. height: math.unit(7, "feet"),
  18919. default: true
  18920. },
  18921. {
  18922. name: "Oversized",
  18923. height: math.unit(15, "feet")
  18924. },
  18925. {
  18926. name: "Huge",
  18927. height: math.unit(30, "feet")
  18928. },
  18929. {
  18930. name: "Macro",
  18931. height: math.unit(250, "feet")
  18932. },
  18933. ]
  18934. ))
  18935. characterMakers.push(() => makeCharacter(
  18936. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18937. {
  18938. sideFront: {
  18939. height: math.unit(5 + 2 / 12, "feet"),
  18940. weight: math.unit(120, "lb"),
  18941. name: "Front Side",
  18942. image: {
  18943. source: "./media/characters/roxi/side-front.svg",
  18944. extra: 2924 / 2717,
  18945. bottom: 0.08
  18946. }
  18947. },
  18948. sideBack: {
  18949. height: math.unit(5 + 2 / 12, "feet"),
  18950. weight: math.unit(120, "lb"),
  18951. name: "Back Side",
  18952. image: {
  18953. source: "./media/characters/roxi/side-back.svg",
  18954. extra: 2904 / 2693,
  18955. bottom: 0.06
  18956. }
  18957. },
  18958. front: {
  18959. height: math.unit(5 + 2 / 12, "feet"),
  18960. weight: math.unit(120, "lb"),
  18961. name: "Front",
  18962. image: {
  18963. source: "./media/characters/roxi/front.svg",
  18964. extra: 2028 / 1907,
  18965. bottom: 0.01
  18966. }
  18967. },
  18968. frontAlt: {
  18969. height: math.unit(5 + 2 / 12, "feet"),
  18970. weight: math.unit(120, "lb"),
  18971. name: "Front (Alt)",
  18972. image: {
  18973. source: "./media/characters/roxi/front-alt.svg",
  18974. extra: 1828 / 1798,
  18975. bottom: 0.01
  18976. }
  18977. },
  18978. sitting: {
  18979. height: math.unit(2.8, "feet"),
  18980. weight: math.unit(120, "lb"),
  18981. name: "Sitting",
  18982. image: {
  18983. source: "./media/characters/roxi/sitting.svg",
  18984. extra: 2660 / 2462,
  18985. bottom: 0.1
  18986. }
  18987. },
  18988. },
  18989. [
  18990. {
  18991. name: "Normal",
  18992. height: math.unit(5 + 2 / 12, "feet"),
  18993. default: true
  18994. },
  18995. ]
  18996. ))
  18997. characterMakers.push(() => makeCharacter(
  18998. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18999. {
  19000. side: {
  19001. height: math.unit(55, "feet"),
  19002. weight: math.unit(153, "tons"),
  19003. name: "Side",
  19004. image: {
  19005. source: "./media/characters/shadow/side.svg",
  19006. extra: 701 / 628,
  19007. bottom: 0.02
  19008. }
  19009. },
  19010. flying: {
  19011. height: math.unit(145, "feet"),
  19012. weight: math.unit(153, "tons"),
  19013. name: "Flying",
  19014. image: {
  19015. source: "./media/characters/shadow/flying.svg"
  19016. }
  19017. },
  19018. },
  19019. [
  19020. {
  19021. name: "Normal",
  19022. height: math.unit(55, "feet"),
  19023. default: true
  19024. },
  19025. ]
  19026. ))
  19027. characterMakers.push(() => makeCharacter(
  19028. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19029. {
  19030. front: {
  19031. height: math.unit(6, "feet"),
  19032. weight: math.unit(200, "lb"),
  19033. name: "Front",
  19034. image: {
  19035. source: "./media/characters/marcie/front.svg",
  19036. extra: 960 / 876,
  19037. bottom: 58 / 1017.87
  19038. }
  19039. },
  19040. },
  19041. [
  19042. {
  19043. name: "Macro",
  19044. height: math.unit(1, "mile"),
  19045. default: true
  19046. },
  19047. ]
  19048. ))
  19049. characterMakers.push(() => makeCharacter(
  19050. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19051. {
  19052. front: {
  19053. height: math.unit(7, "feet"),
  19054. weight: math.unit(200, "lb"),
  19055. name: "Front",
  19056. image: {
  19057. source: "./media/characters/kachina/front.svg",
  19058. extra: 1290.68 / 1119,
  19059. bottom: 36.5 / 1327.18
  19060. }
  19061. },
  19062. },
  19063. [
  19064. {
  19065. name: "Normal",
  19066. height: math.unit(7, "feet"),
  19067. default: true
  19068. },
  19069. ]
  19070. ))
  19071. characterMakers.push(() => makeCharacter(
  19072. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19073. {
  19074. looking: {
  19075. height: math.unit(2, "meters"),
  19076. weight: math.unit(300, "kg"),
  19077. name: "Looking",
  19078. image: {
  19079. source: "./media/characters/kash/looking.svg",
  19080. extra: 474 / 344,
  19081. bottom: 0.03
  19082. }
  19083. },
  19084. side: {
  19085. height: math.unit(2, "meters"),
  19086. weight: math.unit(300, "kg"),
  19087. name: "Side",
  19088. image: {
  19089. source: "./media/characters/kash/side.svg",
  19090. extra: 302 / 251,
  19091. bottom: 0.03
  19092. }
  19093. },
  19094. front: {
  19095. height: math.unit(2, "meters"),
  19096. weight: math.unit(300, "kg"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/kash/front.svg",
  19100. extra: 495 / 360,
  19101. bottom: 0.015
  19102. }
  19103. },
  19104. },
  19105. [
  19106. {
  19107. name: "Normal",
  19108. height: math.unit(2, "meters"),
  19109. default: true
  19110. },
  19111. {
  19112. name: "Big",
  19113. height: math.unit(3, "meters")
  19114. },
  19115. {
  19116. name: "Large",
  19117. height: math.unit(5, "meters")
  19118. },
  19119. ]
  19120. ))
  19121. characterMakers.push(() => makeCharacter(
  19122. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19123. {
  19124. feeding: {
  19125. height: math.unit(6.7, "feet"),
  19126. weight: math.unit(350, "lb"),
  19127. name: "Feeding",
  19128. image: {
  19129. source: "./media/characters/lalim/feeding.svg",
  19130. }
  19131. },
  19132. },
  19133. [
  19134. {
  19135. name: "Normal",
  19136. height: math.unit(6.7, "feet"),
  19137. default: true
  19138. },
  19139. ]
  19140. ))
  19141. characterMakers.push(() => makeCharacter(
  19142. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19143. {
  19144. front: {
  19145. height: math.unit(9.5, "feet"),
  19146. weight: math.unit(600, "lb"),
  19147. name: "Front",
  19148. image: {
  19149. source: "./media/characters/de'vout/front.svg",
  19150. extra: 1443 / 1328,
  19151. bottom: 0.025
  19152. }
  19153. },
  19154. back: {
  19155. height: math.unit(9.5, "feet"),
  19156. weight: math.unit(600, "lb"),
  19157. name: "Back",
  19158. image: {
  19159. source: "./media/characters/de'vout/back.svg",
  19160. extra: 1443 / 1328
  19161. }
  19162. },
  19163. frontDressed: {
  19164. height: math.unit(9.5, "feet"),
  19165. weight: math.unit(600, "lb"),
  19166. name: "Front (Dressed",
  19167. image: {
  19168. source: "./media/characters/de'vout/front-dressed.svg",
  19169. extra: 1443 / 1328,
  19170. bottom: 0.025
  19171. }
  19172. },
  19173. backDressed: {
  19174. height: math.unit(9.5, "feet"),
  19175. weight: math.unit(600, "lb"),
  19176. name: "Back (Dressed",
  19177. image: {
  19178. source: "./media/characters/de'vout/back-dressed.svg",
  19179. extra: 1443 / 1328
  19180. }
  19181. },
  19182. },
  19183. [
  19184. {
  19185. name: "Normal",
  19186. height: math.unit(9.5, "feet"),
  19187. default: true
  19188. },
  19189. ]
  19190. ))
  19191. characterMakers.push(() => makeCharacter(
  19192. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19193. {
  19194. front: {
  19195. height: math.unit(8, "feet"),
  19196. weight: math.unit(225, "lb"),
  19197. name: "Front",
  19198. image: {
  19199. source: "./media/characters/talana/front.svg",
  19200. extra: 1410 / 1300,
  19201. bottom: 0.015
  19202. }
  19203. },
  19204. frontDressed: {
  19205. height: math.unit(8, "feet"),
  19206. weight: math.unit(225, "lb"),
  19207. name: "Front (Dressed",
  19208. image: {
  19209. source: "./media/characters/talana/front-dressed.svg",
  19210. extra: 1410 / 1300,
  19211. bottom: 0.015
  19212. }
  19213. },
  19214. },
  19215. [
  19216. {
  19217. name: "Normal",
  19218. height: math.unit(8, "feet"),
  19219. default: true
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19225. {
  19226. side: {
  19227. height: math.unit(7.2, "feet"),
  19228. weight: math.unit(150, "lb"),
  19229. name: "Side",
  19230. image: {
  19231. source: "./media/characters/xeauvok/side.svg",
  19232. extra: 1975 / 1523,
  19233. bottom: 0.07
  19234. }
  19235. },
  19236. },
  19237. [
  19238. {
  19239. name: "Normal",
  19240. height: math.unit(7.2, "feet"),
  19241. default: true
  19242. },
  19243. ]
  19244. ))
  19245. characterMakers.push(() => makeCharacter(
  19246. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19247. {
  19248. side: {
  19249. height: math.unit(4, "meters"),
  19250. weight: math.unit(2200, "kg"),
  19251. name: "Side",
  19252. image: {
  19253. source: "./media/characters/zara/side.svg",
  19254. extra: 765/744,
  19255. bottom: 156/921
  19256. }
  19257. },
  19258. },
  19259. [
  19260. {
  19261. name: "Normal",
  19262. height: math.unit(4, "meters"),
  19263. default: true
  19264. },
  19265. ]
  19266. ))
  19267. characterMakers.push(() => makeCharacter(
  19268. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19269. {
  19270. side: {
  19271. height: math.unit(6, "feet"),
  19272. weight: math.unit(150, "lb"),
  19273. name: "Side",
  19274. image: {
  19275. source: "./media/characters/richard-dragon/side.svg",
  19276. extra: 845 / 340,
  19277. bottom: 0.017
  19278. }
  19279. },
  19280. maw: {
  19281. height: math.unit(2.97, "feet"),
  19282. name: "Maw",
  19283. image: {
  19284. source: "./media/characters/richard-dragon/maw.svg"
  19285. }
  19286. },
  19287. },
  19288. [
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19293. {
  19294. front: {
  19295. height: math.unit(4, "feet"),
  19296. weight: math.unit(100, "lb"),
  19297. name: "Front",
  19298. image: {
  19299. source: "./media/characters/richard-smeargle/front.svg",
  19300. extra: 2952 / 2820,
  19301. bottom: 0.028
  19302. }
  19303. },
  19304. },
  19305. [
  19306. {
  19307. name: "Normal",
  19308. height: math.unit(4, "feet"),
  19309. default: true
  19310. },
  19311. {
  19312. name: "Dynamax",
  19313. height: math.unit(20, "meters")
  19314. },
  19315. ]
  19316. ))
  19317. characterMakers.push(() => makeCharacter(
  19318. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19319. {
  19320. front: {
  19321. height: math.unit(6, "feet"),
  19322. weight: math.unit(110, "lb"),
  19323. name: "Front",
  19324. image: {
  19325. source: "./media/characters/klay/front.svg",
  19326. extra: 962 / 883,
  19327. bottom: 0.04
  19328. }
  19329. },
  19330. back: {
  19331. height: math.unit(6, "feet"),
  19332. weight: math.unit(110, "lb"),
  19333. name: "Back",
  19334. image: {
  19335. source: "./media/characters/klay/back.svg",
  19336. extra: 962 / 883
  19337. }
  19338. },
  19339. beans: {
  19340. height: math.unit(1.15, "feet"),
  19341. name: "Beans",
  19342. image: {
  19343. source: "./media/characters/klay/beans.svg"
  19344. }
  19345. },
  19346. },
  19347. [
  19348. {
  19349. name: "Micro",
  19350. height: math.unit(6, "inches")
  19351. },
  19352. {
  19353. name: "Mini",
  19354. height: math.unit(3, "feet")
  19355. },
  19356. {
  19357. name: "Normal",
  19358. height: math.unit(6, "feet"),
  19359. default: true
  19360. },
  19361. {
  19362. name: "Big",
  19363. height: math.unit(25, "feet")
  19364. },
  19365. {
  19366. name: "Macro",
  19367. height: math.unit(100, "feet")
  19368. },
  19369. {
  19370. name: "Megamacro",
  19371. height: math.unit(400, "feet")
  19372. },
  19373. ]
  19374. ))
  19375. characterMakers.push(() => makeCharacter(
  19376. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19377. {
  19378. front: {
  19379. height: math.unit(6, "feet"),
  19380. weight: math.unit(160, "lb"),
  19381. name: "Front",
  19382. image: {
  19383. source: "./media/characters/marcus/front.svg",
  19384. extra: 734 / 676,
  19385. bottom: 0.03
  19386. }
  19387. },
  19388. },
  19389. [
  19390. {
  19391. name: "Little",
  19392. height: math.unit(6, "feet")
  19393. },
  19394. {
  19395. name: "Normal",
  19396. height: math.unit(110, "feet"),
  19397. default: true
  19398. },
  19399. {
  19400. name: "Macro",
  19401. height: math.unit(250, "feet")
  19402. },
  19403. {
  19404. name: "Megamacro",
  19405. height: math.unit(1000, "feet")
  19406. },
  19407. ]
  19408. ))
  19409. characterMakers.push(() => makeCharacter(
  19410. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19411. {
  19412. front: {
  19413. height: math.unit(7, "feet"),
  19414. weight: math.unit(275, "lb"),
  19415. name: "Front",
  19416. image: {
  19417. source: "./media/characters/claude-delroute/front.svg",
  19418. extra: 902/827,
  19419. bottom: 26/928
  19420. }
  19421. },
  19422. side: {
  19423. height: math.unit(7, "feet"),
  19424. weight: math.unit(275, "lb"),
  19425. name: "Side",
  19426. image: {
  19427. source: "./media/characters/claude-delroute/side.svg",
  19428. extra: 908/853,
  19429. bottom: 16/924
  19430. }
  19431. },
  19432. back: {
  19433. height: math.unit(7, "feet"),
  19434. weight: math.unit(275, "lb"),
  19435. name: "Back",
  19436. image: {
  19437. source: "./media/characters/claude-delroute/back.svg",
  19438. extra: 911/829,
  19439. bottom: 18/929
  19440. }
  19441. },
  19442. maw: {
  19443. height: math.unit(0.6407, "meters"),
  19444. name: "Maw",
  19445. image: {
  19446. source: "./media/characters/claude-delroute/maw.svg"
  19447. }
  19448. },
  19449. },
  19450. [
  19451. {
  19452. name: "Normal",
  19453. height: math.unit(7, "feet"),
  19454. default: true
  19455. },
  19456. {
  19457. name: "Lorge",
  19458. height: math.unit(20, "feet")
  19459. },
  19460. ]
  19461. ))
  19462. characterMakers.push(() => makeCharacter(
  19463. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19464. {
  19465. front: {
  19466. height: math.unit(8 + 4 / 12, "feet"),
  19467. weight: math.unit(600, "lb"),
  19468. name: "Front",
  19469. image: {
  19470. source: "./media/characters/dragonien/front.svg",
  19471. extra: 100 / 94,
  19472. bottom: 3.3 / 103.3445
  19473. }
  19474. },
  19475. back: {
  19476. height: math.unit(8 + 4 / 12, "feet"),
  19477. weight: math.unit(600, "lb"),
  19478. name: "Back",
  19479. image: {
  19480. source: "./media/characters/dragonien/back.svg",
  19481. extra: 776 / 746,
  19482. bottom: 6.4 / 782.0616
  19483. }
  19484. },
  19485. foot: {
  19486. height: math.unit(1.54, "feet"),
  19487. name: "Foot",
  19488. image: {
  19489. source: "./media/characters/dragonien/foot.svg",
  19490. }
  19491. },
  19492. },
  19493. [
  19494. {
  19495. name: "Normal",
  19496. height: math.unit(8 + 4 / 12, "feet"),
  19497. default: true
  19498. },
  19499. {
  19500. name: "Macro",
  19501. height: math.unit(200, "feet")
  19502. },
  19503. {
  19504. name: "Megamacro",
  19505. height: math.unit(1, "mile")
  19506. },
  19507. {
  19508. name: "Gigamacro",
  19509. height: math.unit(1000, "miles")
  19510. },
  19511. ]
  19512. ))
  19513. characterMakers.push(() => makeCharacter(
  19514. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19515. {
  19516. front: {
  19517. height: math.unit(5 + 2 / 12, "feet"),
  19518. weight: math.unit(110, "lb"),
  19519. name: "Front",
  19520. image: {
  19521. source: "./media/characters/desta/front.svg",
  19522. extra: 767 / 726,
  19523. bottom: 11.7 / 779
  19524. }
  19525. },
  19526. back: {
  19527. height: math.unit(5 + 2 / 12, "feet"),
  19528. weight: math.unit(110, "lb"),
  19529. name: "Back",
  19530. image: {
  19531. source: "./media/characters/desta/back.svg",
  19532. extra: 777 / 728,
  19533. bottom: 6 / 784
  19534. }
  19535. },
  19536. frontAlt: {
  19537. height: math.unit(5 + 2 / 12, "feet"),
  19538. weight: math.unit(110, "lb"),
  19539. name: "Front",
  19540. image: {
  19541. source: "./media/characters/desta/front-alt.svg",
  19542. extra: 1482 / 1417
  19543. }
  19544. },
  19545. side: {
  19546. height: math.unit(5 + 2 / 12, "feet"),
  19547. weight: math.unit(110, "lb"),
  19548. name: "Side",
  19549. image: {
  19550. source: "./media/characters/desta/side.svg",
  19551. extra: 2579 / 2491,
  19552. bottom: 0.053
  19553. }
  19554. },
  19555. },
  19556. [
  19557. {
  19558. name: "Micro",
  19559. height: math.unit(6, "inches")
  19560. },
  19561. {
  19562. name: "Normal",
  19563. height: math.unit(5 + 2 / 12, "feet"),
  19564. default: true
  19565. },
  19566. {
  19567. name: "Macro",
  19568. height: math.unit(62, "feet")
  19569. },
  19570. {
  19571. name: "Megamacro",
  19572. height: math.unit(1800, "feet")
  19573. },
  19574. ]
  19575. ))
  19576. characterMakers.push(() => makeCharacter(
  19577. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19578. {
  19579. front: {
  19580. height: math.unit(10, "feet"),
  19581. weight: math.unit(700, "lb"),
  19582. name: "Front",
  19583. image: {
  19584. source: "./media/characters/storm-alystar/front.svg",
  19585. extra: 2112 / 1898,
  19586. bottom: 0.034
  19587. }
  19588. },
  19589. },
  19590. [
  19591. {
  19592. name: "Micro",
  19593. height: math.unit(3.5, "inches")
  19594. },
  19595. {
  19596. name: "Normal",
  19597. height: math.unit(10, "feet"),
  19598. default: true
  19599. },
  19600. {
  19601. name: "Macro",
  19602. height: math.unit(400, "feet")
  19603. },
  19604. {
  19605. name: "Deific",
  19606. height: math.unit(60, "miles")
  19607. },
  19608. ]
  19609. ))
  19610. characterMakers.push(() => makeCharacter(
  19611. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19612. {
  19613. front: {
  19614. height: math.unit(2.35, "meters"),
  19615. weight: math.unit(119, "kg"),
  19616. name: "Front",
  19617. image: {
  19618. source: "./media/characters/ilia/front.svg",
  19619. extra: 1285 / 1255,
  19620. bottom: 0.06
  19621. }
  19622. },
  19623. },
  19624. [
  19625. {
  19626. name: "Normal",
  19627. height: math.unit(2.35, "meters")
  19628. },
  19629. {
  19630. name: "Macro",
  19631. height: math.unit(140, "meters"),
  19632. default: true
  19633. },
  19634. {
  19635. name: "Megamacro",
  19636. height: math.unit(100, "miles")
  19637. },
  19638. ]
  19639. ))
  19640. characterMakers.push(() => makeCharacter(
  19641. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19642. {
  19643. front: {
  19644. height: math.unit(6 + 5 / 12, "feet"),
  19645. weight: math.unit(190, "lb"),
  19646. name: "Front",
  19647. image: {
  19648. source: "./media/characters/kingdead/front.svg",
  19649. extra: 1228 / 1177
  19650. }
  19651. },
  19652. },
  19653. [
  19654. {
  19655. name: "Micro",
  19656. height: math.unit(7, "inches")
  19657. },
  19658. {
  19659. name: "Normal",
  19660. height: math.unit(6 + 5 / 12, "feet")
  19661. },
  19662. {
  19663. name: "Macro",
  19664. height: math.unit(150, "feet"),
  19665. default: true
  19666. },
  19667. {
  19668. name: "Megamacro",
  19669. height: math.unit(200, "miles")
  19670. },
  19671. ]
  19672. ))
  19673. characterMakers.push(() => makeCharacter(
  19674. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19675. {
  19676. front: {
  19677. height: math.unit(8, "feet"),
  19678. weight: math.unit(600, "lb"),
  19679. name: "Front",
  19680. image: {
  19681. source: "./media/characters/kyrehx/front.svg",
  19682. extra: 1195 / 1095,
  19683. bottom: 0.034
  19684. }
  19685. },
  19686. },
  19687. [
  19688. {
  19689. name: "Micro",
  19690. height: math.unit(2, "inches")
  19691. },
  19692. {
  19693. name: "Normal",
  19694. height: math.unit(8, "feet"),
  19695. default: true
  19696. },
  19697. {
  19698. name: "Macro",
  19699. height: math.unit(255, "feet")
  19700. },
  19701. ]
  19702. ))
  19703. characterMakers.push(() => makeCharacter(
  19704. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19705. {
  19706. front: {
  19707. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19708. weight: math.unit(184, "lb"),
  19709. name: "Front",
  19710. image: {
  19711. source: "./media/characters/xang/front.svg",
  19712. extra: 845 / 755
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19720. default: true
  19721. },
  19722. {
  19723. name: "Macro",
  19724. height: math.unit(0.935 * 146, "feet")
  19725. },
  19726. {
  19727. name: "Megamacro",
  19728. height: math.unit(0.935 * 3, "miles")
  19729. },
  19730. ]
  19731. ))
  19732. characterMakers.push(() => makeCharacter(
  19733. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19734. {
  19735. frontDressed: {
  19736. height: math.unit(5 + 7 / 12, "feet"),
  19737. weight: math.unit(140, "lb"),
  19738. name: "Front (Dressed)",
  19739. image: {
  19740. source: "./media/characters/doc-weardno/front-dressed.svg",
  19741. extra: 263 / 234
  19742. }
  19743. },
  19744. backDressed: {
  19745. height: math.unit(5 + 7 / 12, "feet"),
  19746. weight: math.unit(140, "lb"),
  19747. name: "Back (Dressed)",
  19748. image: {
  19749. source: "./media/characters/doc-weardno/back-dressed.svg",
  19750. extra: 266 / 238
  19751. }
  19752. },
  19753. front: {
  19754. height: math.unit(5 + 7 / 12, "feet"),
  19755. weight: math.unit(140, "lb"),
  19756. name: "Front",
  19757. image: {
  19758. source: "./media/characters/doc-weardno/front.svg",
  19759. extra: 254 / 233
  19760. }
  19761. },
  19762. },
  19763. [
  19764. {
  19765. name: "Micro",
  19766. height: math.unit(3, "inches")
  19767. },
  19768. {
  19769. name: "Normal",
  19770. height: math.unit(5 + 7 / 12, "feet"),
  19771. default: true
  19772. },
  19773. {
  19774. name: "Macro",
  19775. height: math.unit(25, "feet")
  19776. },
  19777. {
  19778. name: "Megamacro",
  19779. height: math.unit(2, "miles")
  19780. },
  19781. ]
  19782. ))
  19783. characterMakers.push(() => makeCharacter(
  19784. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19785. {
  19786. front: {
  19787. height: math.unit(6 + 2 / 12, "feet"),
  19788. weight: math.unit(153, "lb"),
  19789. name: "Front",
  19790. image: {
  19791. source: "./media/characters/seth-whilst/front.svg",
  19792. bottom: 0.07
  19793. }
  19794. },
  19795. },
  19796. [
  19797. {
  19798. name: "Micro",
  19799. height: math.unit(5, "inches")
  19800. },
  19801. {
  19802. name: "Normal",
  19803. height: math.unit(6 + 2 / 12, "feet"),
  19804. default: true
  19805. },
  19806. ]
  19807. ))
  19808. characterMakers.push(() => makeCharacter(
  19809. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19810. {
  19811. front: {
  19812. height: math.unit(3, "inches"),
  19813. weight: math.unit(8, "grams"),
  19814. name: "Front",
  19815. image: {
  19816. source: "./media/characters/pocket-jabari/front.svg",
  19817. extra: 1024 / 974,
  19818. bottom: 0.039
  19819. }
  19820. },
  19821. },
  19822. [
  19823. {
  19824. name: "Minimicro",
  19825. height: math.unit(8, "mm")
  19826. },
  19827. {
  19828. name: "Micro",
  19829. height: math.unit(3, "inches"),
  19830. default: true
  19831. },
  19832. {
  19833. name: "Normal",
  19834. height: math.unit(3, "feet")
  19835. },
  19836. ]
  19837. ))
  19838. characterMakers.push(() => makeCharacter(
  19839. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19840. {
  19841. frontDressed: {
  19842. height: math.unit(15, "feet"),
  19843. weight: math.unit(3280, "lb"),
  19844. name: "Front (Dressed)",
  19845. image: {
  19846. source: "./media/characters/sapphy/front-dressed.svg",
  19847. extra: 1951/1654,
  19848. bottom: 194/2145
  19849. },
  19850. form: "anthro",
  19851. default: true
  19852. },
  19853. backDressed: {
  19854. height: math.unit(15, "feet"),
  19855. weight: math.unit(3280, "lb"),
  19856. name: "Back (Dressed)",
  19857. image: {
  19858. source: "./media/characters/sapphy/back-dressed.svg",
  19859. extra: 2058/1918,
  19860. bottom: 125/2183
  19861. },
  19862. form: "anthro"
  19863. },
  19864. frontNude: {
  19865. height: math.unit(15, "feet"),
  19866. weight: math.unit(3280, "lb"),
  19867. name: "Front (Nude)",
  19868. image: {
  19869. source: "./media/characters/sapphy/front-nude.svg",
  19870. extra: 1951/1654,
  19871. bottom: 194/2145
  19872. },
  19873. form: "anthro"
  19874. },
  19875. backNude: {
  19876. height: math.unit(15, "feet"),
  19877. weight: math.unit(3280, "lb"),
  19878. name: "Back (Nude)",
  19879. image: {
  19880. source: "./media/characters/sapphy/back-nude.svg",
  19881. extra: 2058/1918,
  19882. bottom: 125/2183
  19883. },
  19884. form: "anthro"
  19885. },
  19886. full: {
  19887. height: math.unit(15, "feet"),
  19888. weight: math.unit(3280, "lb"),
  19889. name: "Full",
  19890. image: {
  19891. source: "./media/characters/sapphy/full.svg",
  19892. extra: 1396/1317,
  19893. bottom: 44/1440
  19894. },
  19895. form: "anthro"
  19896. },
  19897. dick: {
  19898. height: math.unit(3.8, "feet"),
  19899. name: "Dick",
  19900. image: {
  19901. source: "./media/characters/sapphy/dick.svg"
  19902. },
  19903. form: "anthro"
  19904. },
  19905. feral: {
  19906. height: math.unit(35, "feet"),
  19907. weight: math.unit(160, "tons"),
  19908. name: "Feral",
  19909. image: {
  19910. source: "./media/characters/sapphy/feral.svg",
  19911. extra: 1050/573,
  19912. bottom: 60/1110
  19913. },
  19914. form: "feral",
  19915. default: true
  19916. },
  19917. },
  19918. [
  19919. {
  19920. name: "Normal",
  19921. height: math.unit(15, "feet"),
  19922. form: "anthro"
  19923. },
  19924. {
  19925. name: "Casual Macro",
  19926. height: math.unit(120, "feet"),
  19927. form: "anthro"
  19928. },
  19929. {
  19930. name: "Macro",
  19931. height: math.unit(2150, "feet"),
  19932. default: true,
  19933. form: "anthro"
  19934. },
  19935. {
  19936. name: "Megamacro",
  19937. height: math.unit(8, "miles"),
  19938. form: "anthro"
  19939. },
  19940. {
  19941. name: "Galaxy Mom",
  19942. height: math.unit(6, "megalightyears"),
  19943. form: "anthro"
  19944. },
  19945. {
  19946. name: "Normal",
  19947. height: math.unit(35, "feet"),
  19948. form: "feral",
  19949. default: true
  19950. },
  19951. {
  19952. name: "Macro",
  19953. height: math.unit(300, "feet"),
  19954. form: "feral"
  19955. },
  19956. {
  19957. name: "Galaxy Mom",
  19958. height: math.unit(10, "megalightyears"),
  19959. form: "feral"
  19960. },
  19961. ],
  19962. {
  19963. "anthro": {
  19964. name: "Anthro",
  19965. default: true
  19966. },
  19967. "feral": {
  19968. name: "Feral"
  19969. }
  19970. }
  19971. ))
  19972. characterMakers.push(() => makeCharacter(
  19973. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  19974. {
  19975. hyenaFront: {
  19976. height: math.unit(6, "feet"),
  19977. weight: math.unit(190, "lb"),
  19978. name: "Front",
  19979. image: {
  19980. source: "./media/characters/kiro/hyena-front.svg",
  19981. extra: 927/839,
  19982. bottom: 91/1018
  19983. },
  19984. form: "hyena",
  19985. default: true
  19986. },
  19987. front: {
  19988. height: math.unit(6, "feet"),
  19989. weight: math.unit(170, "lb"),
  19990. name: "Front",
  19991. image: {
  19992. source: "./media/characters/kiro/front.svg",
  19993. extra: 1064 / 1012,
  19994. bottom: 0.052
  19995. },
  19996. form: "folf",
  19997. default: true
  19998. },
  19999. },
  20000. [
  20001. {
  20002. name: "Micro",
  20003. height: math.unit(6, "inches"),
  20004. form: "folf"
  20005. },
  20006. {
  20007. name: "Normal",
  20008. height: math.unit(6, "feet"),
  20009. form: "folf",
  20010. default: true
  20011. },
  20012. {
  20013. name: "Macro",
  20014. height: math.unit(72, "feet"),
  20015. form: "folf"
  20016. },
  20017. {
  20018. name: "Micro",
  20019. height: math.unit(6, "inches"),
  20020. form: "hyena"
  20021. },
  20022. {
  20023. name: "Normal",
  20024. height: math.unit(6, "feet"),
  20025. form: "hyena",
  20026. default: true
  20027. },
  20028. {
  20029. name: "Macro",
  20030. height: math.unit(72, "feet"),
  20031. form: "hyena"
  20032. },
  20033. ],
  20034. {
  20035. "hyena": {
  20036. name: "Hyena",
  20037. default: true
  20038. },
  20039. "folf": {
  20040. name: "Folf",
  20041. },
  20042. }
  20043. ))
  20044. characterMakers.push(() => makeCharacter(
  20045. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20046. {
  20047. front: {
  20048. height: math.unit(5 + 9 / 12, "feet"),
  20049. weight: math.unit(175, "lb"),
  20050. name: "Front",
  20051. image: {
  20052. source: "./media/characters/irishfox/front.svg",
  20053. extra: 1912 / 1680,
  20054. bottom: 0.02
  20055. }
  20056. },
  20057. },
  20058. [
  20059. {
  20060. name: "Nano",
  20061. height: math.unit(1, "mm")
  20062. },
  20063. {
  20064. name: "Micro",
  20065. height: math.unit(2, "inches")
  20066. },
  20067. {
  20068. name: "Normal",
  20069. height: math.unit(5 + 9 / 12, "feet"),
  20070. default: true
  20071. },
  20072. {
  20073. name: "Macro",
  20074. height: math.unit(45, "feet")
  20075. },
  20076. ]
  20077. ))
  20078. characterMakers.push(() => makeCharacter(
  20079. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20080. {
  20081. front: {
  20082. height: math.unit(6 + 1 / 12, "feet"),
  20083. weight: math.unit(75, "lb"),
  20084. name: "Front",
  20085. image: {
  20086. source: "./media/characters/aronai-sieyes/front.svg",
  20087. extra: 1532/1450,
  20088. bottom: 42/1574
  20089. }
  20090. },
  20091. side: {
  20092. height: math.unit(6 + 1 / 12, "feet"),
  20093. weight: math.unit(75, "lb"),
  20094. name: "Side",
  20095. image: {
  20096. source: "./media/characters/aronai-sieyes/side.svg",
  20097. extra: 1422/1365,
  20098. bottom: 148/1570
  20099. }
  20100. },
  20101. back: {
  20102. height: math.unit(6 + 1 / 12, "feet"),
  20103. weight: math.unit(75, "lb"),
  20104. name: "Back",
  20105. image: {
  20106. source: "./media/characters/aronai-sieyes/back.svg",
  20107. extra: 1526/1464,
  20108. bottom: 51/1577
  20109. }
  20110. },
  20111. dressed: {
  20112. height: math.unit(6 + 1 / 12, "feet"),
  20113. weight: math.unit(75, "lb"),
  20114. name: "Dressed",
  20115. image: {
  20116. source: "./media/characters/aronai-sieyes/dressed.svg",
  20117. extra: 1559/1483,
  20118. bottom: 39/1598
  20119. }
  20120. },
  20121. slit: {
  20122. height: math.unit(1.3, "feet"),
  20123. name: "Slit",
  20124. image: {
  20125. source: "./media/characters/aronai-sieyes/slit.svg"
  20126. }
  20127. },
  20128. slitSpread: {
  20129. height: math.unit(0.9, "feet"),
  20130. name: "Slit (Spread)",
  20131. image: {
  20132. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20133. }
  20134. },
  20135. rump: {
  20136. height: math.unit(1.3, "feet"),
  20137. name: "Rump",
  20138. image: {
  20139. source: "./media/characters/aronai-sieyes/rump.svg"
  20140. }
  20141. },
  20142. maw: {
  20143. height: math.unit(1.25, "feet"),
  20144. name: "Maw",
  20145. image: {
  20146. source: "./media/characters/aronai-sieyes/maw.svg"
  20147. }
  20148. },
  20149. feral: {
  20150. height: math.unit(18, "feet"),
  20151. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20152. name: "Feral",
  20153. image: {
  20154. source: "./media/characters/aronai-sieyes/feral.svg",
  20155. extra: 1530 / 1240,
  20156. bottom: 0.035
  20157. }
  20158. },
  20159. },
  20160. [
  20161. {
  20162. name: "Micro",
  20163. height: math.unit(2, "inches")
  20164. },
  20165. {
  20166. name: "Normal",
  20167. height: math.unit(6 + 1 / 12, "feet"),
  20168. default: true
  20169. }
  20170. ]
  20171. ))
  20172. characterMakers.push(() => makeCharacter(
  20173. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20174. {
  20175. front: {
  20176. height: math.unit(12, "feet"),
  20177. weight: math.unit(410, "kg"),
  20178. name: "Front",
  20179. image: {
  20180. source: "./media/characters/xuna/front.svg",
  20181. extra: 2184 / 1980
  20182. }
  20183. },
  20184. side: {
  20185. height: math.unit(12, "feet"),
  20186. weight: math.unit(410, "kg"),
  20187. name: "Side",
  20188. image: {
  20189. source: "./media/characters/xuna/side.svg",
  20190. extra: 2184 / 1980
  20191. }
  20192. },
  20193. back: {
  20194. height: math.unit(12, "feet"),
  20195. weight: math.unit(410, "kg"),
  20196. name: "Back",
  20197. image: {
  20198. source: "./media/characters/xuna/back.svg",
  20199. extra: 2184 / 1980
  20200. }
  20201. },
  20202. },
  20203. [
  20204. {
  20205. name: "Nano glow",
  20206. height: math.unit(10, "nm")
  20207. },
  20208. {
  20209. name: "Micro floof",
  20210. height: math.unit(0.3, "m")
  20211. },
  20212. {
  20213. name: "Huggable softy boi",
  20214. height: math.unit(3.6576, "m"),
  20215. default: true
  20216. },
  20217. {
  20218. name: "Admirable floof",
  20219. height: math.unit(80, "meters")
  20220. },
  20221. {
  20222. name: "Gentle macro",
  20223. height: math.unit(300, "meters")
  20224. },
  20225. {
  20226. name: "Very careful floof",
  20227. height: math.unit(3200, "meters")
  20228. },
  20229. {
  20230. name: "The mega floof",
  20231. height: math.unit(36000, "meters")
  20232. },
  20233. {
  20234. name: "Giga-fur-Wicker",
  20235. height: math.unit(4800000, "meters")
  20236. },
  20237. {
  20238. name: "Licky world",
  20239. height: math.unit(20000000, "meters")
  20240. },
  20241. {
  20242. name: "Floofy cyan sun",
  20243. height: math.unit(1500000000, "meters")
  20244. },
  20245. {
  20246. name: "Milky Wicker",
  20247. height: math.unit(1000000000000000000000, "meters")
  20248. },
  20249. {
  20250. name: "The observing Wicker",
  20251. height: math.unit(999999999999999999999999999, "meters")
  20252. },
  20253. ]
  20254. ))
  20255. characterMakers.push(() => makeCharacter(
  20256. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20257. {
  20258. front: {
  20259. height: math.unit(5 + 9 / 12, "feet"),
  20260. weight: math.unit(150, "lb"),
  20261. name: "Front",
  20262. image: {
  20263. source: "./media/characters/arokha-sieyes/front.svg",
  20264. extra: 1425 / 1284,
  20265. bottom: 0.05
  20266. }
  20267. },
  20268. },
  20269. [
  20270. {
  20271. name: "Normal",
  20272. height: math.unit(5 + 9 / 12, "feet")
  20273. },
  20274. {
  20275. name: "Macro",
  20276. height: math.unit(30, "meters"),
  20277. default: true
  20278. },
  20279. ]
  20280. ))
  20281. characterMakers.push(() => makeCharacter(
  20282. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20283. {
  20284. front: {
  20285. height: math.unit(6, "feet"),
  20286. weight: math.unit(180, "lb"),
  20287. name: "Front",
  20288. image: {
  20289. source: "./media/characters/arokh-sieyes/front.svg",
  20290. extra: 1830 / 1769,
  20291. bottom: 0.01
  20292. }
  20293. },
  20294. },
  20295. [
  20296. {
  20297. name: "Normal",
  20298. height: math.unit(6, "feet")
  20299. },
  20300. {
  20301. name: "Macro",
  20302. height: math.unit(30, "meters"),
  20303. default: true
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20309. {
  20310. side: {
  20311. height: math.unit(13 + 1 / 12, "feet"),
  20312. weight: math.unit(8.5, "tonnes"),
  20313. preyCapacity: math.unit(36, "people"),
  20314. name: "Side",
  20315. image: {
  20316. source: "./media/characters/goldeneye/side.svg",
  20317. extra: 1139/741,
  20318. bottom: 98/1237
  20319. }
  20320. },
  20321. front: {
  20322. height: math.unit(5.1, "feet"),
  20323. weight: math.unit(8.5, "tonnes"),
  20324. preyCapacity: math.unit(36, "people"),
  20325. name: "Front",
  20326. image: {
  20327. source: "./media/characters/goldeneye/front.svg",
  20328. extra: 635/365,
  20329. bottom: 598/1233
  20330. }
  20331. },
  20332. maw: {
  20333. height: math.unit(6.6, "feet"),
  20334. name: "Maw",
  20335. image: {
  20336. source: "./media/characters/goldeneye/maw.svg"
  20337. }
  20338. },
  20339. headFront: {
  20340. height: math.unit(8, "feet"),
  20341. name: "Head (Front)",
  20342. image: {
  20343. source: "./media/characters/goldeneye/head-front.svg"
  20344. }
  20345. },
  20346. headSide: {
  20347. height: math.unit(6, "feet"),
  20348. name: "Head (Side)",
  20349. image: {
  20350. source: "./media/characters/goldeneye/head-side.svg"
  20351. }
  20352. },
  20353. headBack: {
  20354. height: math.unit(8, "feet"),
  20355. name: "Head (Back)",
  20356. image: {
  20357. source: "./media/characters/goldeneye/head-back.svg"
  20358. }
  20359. },
  20360. paw: {
  20361. height: math.unit(3.4, "feet"),
  20362. name: "Paw",
  20363. image: {
  20364. source: "./media/characters/goldeneye/paw.svg"
  20365. }
  20366. },
  20367. toering: {
  20368. height: math.unit(0.45, "feet"),
  20369. name: "Toering",
  20370. image: {
  20371. source: "./media/characters/goldeneye/toering.svg"
  20372. }
  20373. },
  20374. eyes: {
  20375. height: math.unit(0.5, "feet"),
  20376. name: "Eyes",
  20377. image: {
  20378. source: "./media/characters/goldeneye/eyes.svg"
  20379. }
  20380. },
  20381. },
  20382. [
  20383. {
  20384. name: "Normal",
  20385. height: math.unit(13 + 1 / 12, "feet"),
  20386. default: true
  20387. },
  20388. ]
  20389. ))
  20390. characterMakers.push(() => makeCharacter(
  20391. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20392. {
  20393. front: {
  20394. height: math.unit(6 + 1 / 12, "feet"),
  20395. weight: math.unit(210, "lb"),
  20396. name: "Front",
  20397. image: {
  20398. source: "./media/characters/leonardo-lycheborne/front.svg",
  20399. extra: 776/723,
  20400. bottom: 34/810
  20401. }
  20402. },
  20403. side: {
  20404. height: math.unit(6 + 1 / 12, "feet"),
  20405. weight: math.unit(210, "lb"),
  20406. name: "Side",
  20407. image: {
  20408. source: "./media/characters/leonardo-lycheborne/side.svg",
  20409. extra: 780/728,
  20410. bottom: 12/792
  20411. }
  20412. },
  20413. back: {
  20414. height: math.unit(6 + 1 / 12, "feet"),
  20415. weight: math.unit(210, "lb"),
  20416. name: "Back",
  20417. image: {
  20418. source: "./media/characters/leonardo-lycheborne/back.svg",
  20419. extra: 775/721,
  20420. bottom: 17/792
  20421. }
  20422. },
  20423. hand: {
  20424. height: math.unit(1.08, "feet"),
  20425. name: "Hand",
  20426. image: {
  20427. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20428. }
  20429. },
  20430. foot: {
  20431. height: math.unit(1.32, "feet"),
  20432. name: "Foot",
  20433. image: {
  20434. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20435. }
  20436. },
  20437. maw: {
  20438. height: math.unit(1, "feet"),
  20439. name: "Maw",
  20440. image: {
  20441. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20442. }
  20443. },
  20444. were: {
  20445. height: math.unit(20, "feet"),
  20446. weight: math.unit(7800, "lb"),
  20447. name: "Were",
  20448. image: {
  20449. source: "./media/characters/leonardo-lycheborne/were.svg",
  20450. extra: 1224/1165,
  20451. bottom: 72/1296
  20452. }
  20453. },
  20454. feral: {
  20455. height: math.unit(7.5, "feet"),
  20456. weight: math.unit(600, "lb"),
  20457. name: "Feral",
  20458. image: {
  20459. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20460. extra: 797/702,
  20461. bottom: 139/936
  20462. }
  20463. },
  20464. taur: {
  20465. height: math.unit(11, "feet"),
  20466. weight: math.unit(3300, "lb"),
  20467. name: "Taur",
  20468. image: {
  20469. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20470. extra: 1271/1197,
  20471. bottom: 47/1318
  20472. }
  20473. },
  20474. barghest: {
  20475. height: math.unit(11, "feet"),
  20476. weight: math.unit(1300, "lb"),
  20477. name: "Barghest",
  20478. image: {
  20479. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20480. extra: 1291/1204,
  20481. bottom: 37/1328
  20482. }
  20483. },
  20484. dick: {
  20485. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20486. name: "Dick",
  20487. image: {
  20488. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20489. }
  20490. },
  20491. dickWere: {
  20492. height: math.unit((20) / 3.8, "feet"),
  20493. name: "Dick (Were)",
  20494. image: {
  20495. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20496. }
  20497. },
  20498. },
  20499. [
  20500. {
  20501. name: "Normal",
  20502. height: math.unit(6 + 1 / 12, "feet"),
  20503. default: true
  20504. },
  20505. ]
  20506. ))
  20507. characterMakers.push(() => makeCharacter(
  20508. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20509. {
  20510. front: {
  20511. height: math.unit(10, "feet"),
  20512. weight: math.unit(350, "lb"),
  20513. name: "Front",
  20514. image: {
  20515. source: "./media/characters/jet/front.svg",
  20516. extra: 2050 / 1980,
  20517. bottom: 0.013
  20518. }
  20519. },
  20520. back: {
  20521. height: math.unit(10, "feet"),
  20522. weight: math.unit(350, "lb"),
  20523. name: "Back",
  20524. image: {
  20525. source: "./media/characters/jet/back.svg",
  20526. extra: 2050 / 1980,
  20527. bottom: 0.013
  20528. }
  20529. },
  20530. },
  20531. [
  20532. {
  20533. name: "Micro",
  20534. height: math.unit(6, "inches")
  20535. },
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(10, "feet"),
  20539. default: true
  20540. },
  20541. {
  20542. name: "Macro",
  20543. height: math.unit(100, "feet")
  20544. },
  20545. ]
  20546. ))
  20547. characterMakers.push(() => makeCharacter(
  20548. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20549. {
  20550. front: {
  20551. height: math.unit(15, "feet"),
  20552. weight: math.unit(2800, "lb"),
  20553. name: "Front",
  20554. image: {
  20555. source: "./media/characters/tanarath/front.svg",
  20556. extra: 2392 / 2220,
  20557. bottom: 0.03
  20558. }
  20559. },
  20560. back: {
  20561. height: math.unit(15, "feet"),
  20562. weight: math.unit(2800, "lb"),
  20563. name: "Back",
  20564. image: {
  20565. source: "./media/characters/tanarath/back.svg",
  20566. extra: 2392 / 2220,
  20567. bottom: 0.03
  20568. }
  20569. },
  20570. },
  20571. [
  20572. {
  20573. name: "Normal",
  20574. height: math.unit(15, "feet"),
  20575. default: true
  20576. },
  20577. ]
  20578. ))
  20579. characterMakers.push(() => makeCharacter(
  20580. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20581. {
  20582. front: {
  20583. height: math.unit(7 + 1 / 12, "feet"),
  20584. weight: math.unit(175, "lb"),
  20585. name: "Front",
  20586. image: {
  20587. source: "./media/characters/patty-cattybatty/front.svg",
  20588. extra: 908 / 874,
  20589. bottom: 0.025
  20590. }
  20591. },
  20592. },
  20593. [
  20594. {
  20595. name: "Micro",
  20596. height: math.unit(1, "inch")
  20597. },
  20598. {
  20599. name: "Normal",
  20600. height: math.unit(7 + 1 / 12, "feet")
  20601. },
  20602. {
  20603. name: "Mini Macro",
  20604. height: math.unit(155, "feet")
  20605. },
  20606. {
  20607. name: "Macro",
  20608. height: math.unit(1077, "feet")
  20609. },
  20610. {
  20611. name: "Mega Macro",
  20612. height: math.unit(47650, "feet"),
  20613. default: true
  20614. },
  20615. {
  20616. name: "Giga Macro",
  20617. height: math.unit(440, "miles")
  20618. },
  20619. {
  20620. name: "Tera Macro",
  20621. height: math.unit(8700, "miles")
  20622. },
  20623. {
  20624. name: "Planetary Macro",
  20625. height: math.unit(32700, "miles")
  20626. },
  20627. {
  20628. name: "Solar Macro",
  20629. height: math.unit(550000, "miles")
  20630. },
  20631. {
  20632. name: "Celestial Macro",
  20633. height: math.unit(2.5, "AU")
  20634. },
  20635. ]
  20636. ))
  20637. characterMakers.push(() => makeCharacter(
  20638. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20639. {
  20640. front: {
  20641. height: math.unit(4 + 5 / 12, "feet"),
  20642. weight: math.unit(90, "lb"),
  20643. name: "Front",
  20644. image: {
  20645. source: "./media/characters/cappu/front.svg",
  20646. extra: 1247 / 1152,
  20647. bottom: 0.012
  20648. }
  20649. },
  20650. },
  20651. [
  20652. {
  20653. name: "Normal",
  20654. height: math.unit(4 + 5 / 12, "feet"),
  20655. default: true
  20656. },
  20657. ]
  20658. ))
  20659. characterMakers.push(() => makeCharacter(
  20660. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20661. {
  20662. frontDressed: {
  20663. height: math.unit(70, "cm"),
  20664. weight: math.unit(6, "kg"),
  20665. name: "Front (Dressed)",
  20666. image: {
  20667. source: "./media/characters/sebi/front-dressed.svg",
  20668. extra: 713.5 / 686.5,
  20669. bottom: 0.003
  20670. }
  20671. },
  20672. front: {
  20673. height: math.unit(70, "cm"),
  20674. weight: math.unit(5, "kg"),
  20675. name: "Front",
  20676. image: {
  20677. source: "./media/characters/sebi/front.svg",
  20678. extra: 713.5 / 686.5,
  20679. bottom: 0.003
  20680. }
  20681. }
  20682. },
  20683. [
  20684. {
  20685. name: "Normal",
  20686. height: math.unit(70, "cm"),
  20687. default: true
  20688. },
  20689. {
  20690. name: "Macro",
  20691. height: math.unit(8, "meters")
  20692. },
  20693. ]
  20694. ))
  20695. characterMakers.push(() => makeCharacter(
  20696. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20697. {
  20698. front: {
  20699. height: math.unit(6, "feet"),
  20700. weight: math.unit(150, "lb"),
  20701. name: "Front",
  20702. image: {
  20703. source: "./media/characters/typhek/front.svg",
  20704. extra: 1948 / 1929,
  20705. bottom: 0.025
  20706. }
  20707. },
  20708. side: {
  20709. height: math.unit(6, "feet"),
  20710. weight: math.unit(150, "lb"),
  20711. name: "Side",
  20712. image: {
  20713. source: "./media/characters/typhek/side.svg",
  20714. extra: 2034 / 2010,
  20715. bottom: 0.003
  20716. }
  20717. },
  20718. back: {
  20719. height: math.unit(6, "feet"),
  20720. weight: math.unit(150, "lb"),
  20721. name: "Back",
  20722. image: {
  20723. source: "./media/characters/typhek/back.svg",
  20724. extra: 2005 / 1978,
  20725. bottom: 0.004
  20726. }
  20727. },
  20728. palm: {
  20729. height: math.unit(1.2, "feet"),
  20730. name: "Palm",
  20731. image: {
  20732. source: "./media/characters/typhek/palm.svg"
  20733. }
  20734. },
  20735. fist: {
  20736. height: math.unit(1.1, "feet"),
  20737. name: "Fist",
  20738. image: {
  20739. source: "./media/characters/typhek/fist.svg"
  20740. }
  20741. },
  20742. foot: {
  20743. height: math.unit(1.57, "feet"),
  20744. name: "Foot",
  20745. image: {
  20746. source: "./media/characters/typhek/foot.svg"
  20747. }
  20748. },
  20749. sole: {
  20750. height: math.unit(2.05, "feet"),
  20751. name: "Sole",
  20752. image: {
  20753. source: "./media/characters/typhek/sole.svg"
  20754. }
  20755. },
  20756. },
  20757. [
  20758. {
  20759. name: "Macro",
  20760. height: math.unit(40, "stories"),
  20761. default: true
  20762. },
  20763. {
  20764. name: "Megamacro",
  20765. height: math.unit(1, "mile")
  20766. },
  20767. {
  20768. name: "Gigamacro",
  20769. height: math.unit(4000, "solarradii")
  20770. },
  20771. {
  20772. name: "Universal",
  20773. height: math.unit(1.1, "universes")
  20774. }
  20775. ]
  20776. ))
  20777. characterMakers.push(() => makeCharacter(
  20778. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20779. {
  20780. side: {
  20781. height: math.unit(5 + 7 / 12, "feet"),
  20782. weight: math.unit(150, "lb"),
  20783. name: "Side",
  20784. image: {
  20785. source: "./media/characters/kassy/side.svg",
  20786. extra: 1280 / 1225,
  20787. bottom: 0.002
  20788. }
  20789. },
  20790. front: {
  20791. height: math.unit(5 + 7 / 12, "feet"),
  20792. weight: math.unit(150, "lb"),
  20793. name: "Front",
  20794. image: {
  20795. source: "./media/characters/kassy/front.svg",
  20796. extra: 1280 / 1225,
  20797. bottom: 0.025
  20798. }
  20799. },
  20800. back: {
  20801. height: math.unit(5 + 7 / 12, "feet"),
  20802. weight: math.unit(150, "lb"),
  20803. name: "Back",
  20804. image: {
  20805. source: "./media/characters/kassy/back.svg",
  20806. extra: 1280 / 1225,
  20807. bottom: 0.002
  20808. }
  20809. },
  20810. foot: {
  20811. height: math.unit(1.266, "feet"),
  20812. name: "Foot",
  20813. image: {
  20814. source: "./media/characters/kassy/foot.svg"
  20815. }
  20816. },
  20817. },
  20818. [
  20819. {
  20820. name: "Normal",
  20821. height: math.unit(5 + 7 / 12, "feet")
  20822. },
  20823. {
  20824. name: "Macro",
  20825. height: math.unit(137, "feet"),
  20826. default: true
  20827. },
  20828. {
  20829. name: "Megamacro",
  20830. height: math.unit(1, "mile")
  20831. },
  20832. ]
  20833. ))
  20834. characterMakers.push(() => makeCharacter(
  20835. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20836. {
  20837. front: {
  20838. height: math.unit(6 + 1 / 12, "feet"),
  20839. weight: math.unit(200, "lb"),
  20840. name: "Front",
  20841. image: {
  20842. source: "./media/characters/neil/front.svg",
  20843. extra: 1326 / 1250,
  20844. bottom: 0.023
  20845. }
  20846. },
  20847. },
  20848. [
  20849. {
  20850. name: "Normal",
  20851. height: math.unit(6 + 1 / 12, "feet"),
  20852. default: true
  20853. },
  20854. {
  20855. name: "Macro",
  20856. height: math.unit(200, "feet")
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20862. {
  20863. front: {
  20864. height: math.unit(5 + 9 / 12, "feet"),
  20865. weight: math.unit(190, "lb"),
  20866. name: "Front",
  20867. image: {
  20868. source: "./media/characters/atticus/front.svg",
  20869. extra: 2934 / 2785,
  20870. bottom: 0.025
  20871. }
  20872. },
  20873. },
  20874. [
  20875. {
  20876. name: "Normal",
  20877. height: math.unit(5 + 9 / 12, "feet"),
  20878. default: true
  20879. },
  20880. {
  20881. name: "Macro",
  20882. height: math.unit(180, "feet")
  20883. },
  20884. ]
  20885. ))
  20886. characterMakers.push(() => makeCharacter(
  20887. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20888. {
  20889. side: {
  20890. height: math.unit(9, "feet"),
  20891. weight: math.unit(650, "lb"),
  20892. name: "Side",
  20893. image: {
  20894. source: "./media/characters/milo/side.svg",
  20895. extra: 2644 / 2310,
  20896. bottom: 0.032
  20897. }
  20898. },
  20899. },
  20900. [
  20901. {
  20902. name: "Normal",
  20903. height: math.unit(9, "feet"),
  20904. default: true
  20905. },
  20906. {
  20907. name: "Macro",
  20908. height: math.unit(300, "feet")
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20914. {
  20915. side: {
  20916. height: math.unit(8, "meters"),
  20917. weight: math.unit(90000, "kg"),
  20918. name: "Side",
  20919. image: {
  20920. source: "./media/characters/ijzer/side.svg",
  20921. extra: 2756 / 1600,
  20922. bottom: 0.01
  20923. }
  20924. },
  20925. },
  20926. [
  20927. {
  20928. name: "Small",
  20929. height: math.unit(3, "meters")
  20930. },
  20931. {
  20932. name: "Normal",
  20933. height: math.unit(8, "meters"),
  20934. default: true
  20935. },
  20936. {
  20937. name: "Normal+",
  20938. height: math.unit(10, "meters")
  20939. },
  20940. {
  20941. name: "Bigger",
  20942. height: math.unit(24, "meters")
  20943. },
  20944. {
  20945. name: "Huge",
  20946. height: math.unit(80, "meters")
  20947. },
  20948. ]
  20949. ))
  20950. characterMakers.push(() => makeCharacter(
  20951. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20952. {
  20953. front: {
  20954. height: math.unit(6 + 2 / 12, "feet"),
  20955. weight: math.unit(153, "lb"),
  20956. name: "Front",
  20957. image: {
  20958. source: "./media/characters/luca-cervicum/front.svg",
  20959. extra: 370 / 327,
  20960. bottom: 0.015
  20961. }
  20962. },
  20963. back: {
  20964. height: math.unit(6 + 2 / 12, "feet"),
  20965. weight: math.unit(153, "lb"),
  20966. name: "Back",
  20967. image: {
  20968. source: "./media/characters/luca-cervicum/back.svg",
  20969. extra: 367 / 333,
  20970. bottom: 0.005
  20971. }
  20972. },
  20973. frontGear: {
  20974. height: math.unit(6 + 2 / 12, "feet"),
  20975. weight: math.unit(173, "lb"),
  20976. name: "Front (Gear)",
  20977. image: {
  20978. source: "./media/characters/luca-cervicum/front-gear.svg",
  20979. extra: 377 / 333,
  20980. bottom: 0.006
  20981. }
  20982. },
  20983. },
  20984. [
  20985. {
  20986. name: "Normal",
  20987. height: math.unit(6 + 2 / 12, "feet"),
  20988. default: true
  20989. },
  20990. ]
  20991. ))
  20992. characterMakers.push(() => makeCharacter(
  20993. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20994. {
  20995. front: {
  20996. height: math.unit(6 + 1 / 12, "feet"),
  20997. weight: math.unit(304, "lb"),
  20998. name: "Front",
  20999. image: {
  21000. source: "./media/characters/oliver/front.svg",
  21001. extra: 157 / 143,
  21002. bottom: 0.08
  21003. }
  21004. },
  21005. },
  21006. [
  21007. {
  21008. name: "Normal",
  21009. height: math.unit(6 + 1 / 12, "feet"),
  21010. default: true
  21011. },
  21012. ]
  21013. ))
  21014. characterMakers.push(() => makeCharacter(
  21015. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21016. {
  21017. front: {
  21018. height: math.unit(5 + 7 / 12, "feet"),
  21019. weight: math.unit(140, "lb"),
  21020. name: "Front",
  21021. image: {
  21022. source: "./media/characters/shane/front.svg",
  21023. extra: 304 / 289,
  21024. bottom: 0.005
  21025. }
  21026. },
  21027. },
  21028. [
  21029. {
  21030. name: "Normal",
  21031. height: math.unit(5 + 7 / 12, "feet"),
  21032. default: true
  21033. },
  21034. ]
  21035. ))
  21036. characterMakers.push(() => makeCharacter(
  21037. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21038. {
  21039. front: {
  21040. height: math.unit(5 + 9 / 12, "feet"),
  21041. weight: math.unit(178, "lb"),
  21042. name: "Front",
  21043. image: {
  21044. source: "./media/characters/shin/front.svg",
  21045. extra: 159 / 151,
  21046. bottom: 0.015
  21047. }
  21048. },
  21049. },
  21050. [
  21051. {
  21052. name: "Normal",
  21053. height: math.unit(5 + 9 / 12, "feet"),
  21054. default: true
  21055. },
  21056. ]
  21057. ))
  21058. characterMakers.push(() => makeCharacter(
  21059. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21060. {
  21061. front: {
  21062. height: math.unit(5 + 10 / 12, "feet"),
  21063. weight: math.unit(168, "lb"),
  21064. name: "Front",
  21065. image: {
  21066. source: "./media/characters/xerxes/front.svg",
  21067. extra: 282 / 260,
  21068. bottom: 0.045
  21069. }
  21070. },
  21071. },
  21072. [
  21073. {
  21074. name: "Normal",
  21075. height: math.unit(5 + 10 / 12, "feet"),
  21076. default: true
  21077. },
  21078. ]
  21079. ))
  21080. characterMakers.push(() => makeCharacter(
  21081. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21082. {
  21083. front: {
  21084. height: math.unit(6 + 7 / 12, "feet"),
  21085. weight: math.unit(208, "lb"),
  21086. name: "Front",
  21087. image: {
  21088. source: "./media/characters/chaska/front.svg",
  21089. extra: 332 / 319,
  21090. bottom: 0.015
  21091. }
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Normal",
  21097. height: math.unit(6 + 7 / 12, "feet"),
  21098. default: true
  21099. },
  21100. ]
  21101. ))
  21102. characterMakers.push(() => makeCharacter(
  21103. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21104. {
  21105. front: {
  21106. height: math.unit(5 + 8 / 12, "feet"),
  21107. weight: math.unit(208, "lb"),
  21108. name: "Front",
  21109. image: {
  21110. source: "./media/characters/enuk/front.svg",
  21111. extra: 437 / 406,
  21112. bottom: 0.02
  21113. }
  21114. },
  21115. },
  21116. [
  21117. {
  21118. name: "Normal",
  21119. height: math.unit(5 + 8 / 12, "feet"),
  21120. default: true
  21121. },
  21122. ]
  21123. ))
  21124. characterMakers.push(() => makeCharacter(
  21125. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21126. {
  21127. front: {
  21128. height: math.unit(5 + 10 / 12, "feet"),
  21129. weight: math.unit(252, "lb"),
  21130. name: "Front",
  21131. image: {
  21132. source: "./media/characters/bruun/front.svg",
  21133. extra: 197 / 187,
  21134. bottom: 0.012
  21135. }
  21136. },
  21137. },
  21138. [
  21139. {
  21140. name: "Normal",
  21141. height: math.unit(5 + 10 / 12, "feet"),
  21142. default: true
  21143. },
  21144. ]
  21145. ))
  21146. characterMakers.push(() => makeCharacter(
  21147. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21148. {
  21149. front: {
  21150. height: math.unit(6 + 10 / 12, "feet"),
  21151. weight: math.unit(255, "lb"),
  21152. name: "Front",
  21153. image: {
  21154. source: "./media/characters/alexeev/front.svg",
  21155. extra: 213 / 200,
  21156. bottom: 0.05
  21157. }
  21158. },
  21159. },
  21160. [
  21161. {
  21162. name: "Normal",
  21163. height: math.unit(6 + 10 / 12, "feet"),
  21164. default: true
  21165. },
  21166. ]
  21167. ))
  21168. characterMakers.push(() => makeCharacter(
  21169. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21170. {
  21171. front: {
  21172. height: math.unit(2 + 8 / 12, "feet"),
  21173. weight: math.unit(22, "lb"),
  21174. name: "Front",
  21175. image: {
  21176. source: "./media/characters/evelyn/front.svg",
  21177. extra: 208 / 180
  21178. }
  21179. },
  21180. },
  21181. [
  21182. {
  21183. name: "Normal",
  21184. height: math.unit(2 + 8 / 12, "feet"),
  21185. default: true
  21186. },
  21187. ]
  21188. ))
  21189. characterMakers.push(() => makeCharacter(
  21190. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21191. {
  21192. front: {
  21193. height: math.unit(5 + 9 / 12, "feet"),
  21194. weight: math.unit(139, "lb"),
  21195. name: "Front",
  21196. image: {
  21197. source: "./media/characters/inca/front.svg",
  21198. extra: 294 / 291,
  21199. bottom: 0.03
  21200. }
  21201. },
  21202. },
  21203. [
  21204. {
  21205. name: "Normal",
  21206. height: math.unit(5 + 9 / 12, "feet"),
  21207. default: true
  21208. },
  21209. ]
  21210. ))
  21211. characterMakers.push(() => makeCharacter(
  21212. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21213. {
  21214. front: {
  21215. height: math.unit(6 + 3 / 12, "feet"),
  21216. weight: math.unit(185, "lb"),
  21217. name: "Front",
  21218. image: {
  21219. source: "./media/characters/mera/front.svg",
  21220. extra: 291 / 277,
  21221. bottom: 0.03
  21222. }
  21223. },
  21224. },
  21225. [
  21226. {
  21227. name: "Normal",
  21228. height: math.unit(6 + 3 / 12, "feet"),
  21229. default: true
  21230. },
  21231. ]
  21232. ))
  21233. characterMakers.push(() => makeCharacter(
  21234. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21235. {
  21236. front: {
  21237. height: math.unit(6 + 7 / 12, "feet"),
  21238. weight: math.unit(160, "lb"),
  21239. name: "Front",
  21240. image: {
  21241. source: "./media/characters/ceres/front.svg",
  21242. extra: 1023 / 950,
  21243. bottom: 0.027
  21244. }
  21245. },
  21246. back: {
  21247. height: math.unit(6 + 7 / 12, "feet"),
  21248. weight: math.unit(160, "lb"),
  21249. name: "Back",
  21250. image: {
  21251. source: "./media/characters/ceres/back.svg",
  21252. extra: 1023 / 950
  21253. }
  21254. },
  21255. },
  21256. [
  21257. {
  21258. name: "Normal",
  21259. height: math.unit(6 + 7 / 12, "feet"),
  21260. default: true
  21261. },
  21262. ]
  21263. ))
  21264. characterMakers.push(() => makeCharacter(
  21265. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21266. {
  21267. front: {
  21268. height: math.unit(5 + 10 / 12, "feet"),
  21269. weight: math.unit(150, "lb"),
  21270. name: "Front",
  21271. image: {
  21272. source: "./media/characters/kris/front.svg",
  21273. extra: 885 / 803,
  21274. bottom: 0.03
  21275. }
  21276. },
  21277. },
  21278. [
  21279. {
  21280. name: "Normal",
  21281. height: math.unit(5 + 10 / 12, "feet"),
  21282. default: true
  21283. },
  21284. ]
  21285. ))
  21286. characterMakers.push(() => makeCharacter(
  21287. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21288. {
  21289. front: {
  21290. height: math.unit(7, "feet"),
  21291. weight: math.unit(120, "kg"),
  21292. name: "Front",
  21293. image: {
  21294. source: "./media/characters/taluthus/front.svg",
  21295. extra: 903 / 833,
  21296. bottom: 0.015
  21297. }
  21298. },
  21299. },
  21300. [
  21301. {
  21302. name: "Normal",
  21303. height: math.unit(7, "feet"),
  21304. default: true
  21305. },
  21306. {
  21307. name: "Macro",
  21308. height: math.unit(300, "feet")
  21309. },
  21310. ]
  21311. ))
  21312. characterMakers.push(() => makeCharacter(
  21313. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21314. {
  21315. front: {
  21316. height: math.unit(5 + 9 / 12, "feet"),
  21317. weight: math.unit(145, "lb"),
  21318. name: "Front",
  21319. image: {
  21320. source: "./media/characters/dawn/front.svg",
  21321. extra: 2094 / 2016,
  21322. bottom: 0.025
  21323. }
  21324. },
  21325. back: {
  21326. height: math.unit(5 + 9 / 12, "feet"),
  21327. weight: math.unit(160, "lb"),
  21328. name: "Back",
  21329. image: {
  21330. source: "./media/characters/dawn/back.svg",
  21331. extra: 2112 / 2080,
  21332. bottom: 0.005
  21333. }
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Normal",
  21339. height: math.unit(6 + 7 / 12, "feet"),
  21340. default: true
  21341. },
  21342. ]
  21343. ))
  21344. characterMakers.push(() => makeCharacter(
  21345. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21346. {
  21347. anthro: {
  21348. height: math.unit(8 + 3 / 12, "feet"),
  21349. weight: math.unit(450, "lb"),
  21350. name: "Anthro",
  21351. image: {
  21352. source: "./media/characters/arador/anthro.svg",
  21353. extra: 1835 / 1718,
  21354. bottom: 0.025
  21355. }
  21356. },
  21357. feral: {
  21358. height: math.unit(4, "feet"),
  21359. weight: math.unit(200, "lb"),
  21360. name: "Feral",
  21361. image: {
  21362. source: "./media/characters/arador/feral.svg",
  21363. extra: 1683 / 1514,
  21364. bottom: 0.07
  21365. }
  21366. },
  21367. },
  21368. [
  21369. {
  21370. name: "Normal",
  21371. height: math.unit(8 + 3 / 12, "feet")
  21372. },
  21373. {
  21374. name: "Macro",
  21375. height: math.unit(82.5, "feet"),
  21376. default: true
  21377. },
  21378. ]
  21379. ))
  21380. characterMakers.push(() => makeCharacter(
  21381. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21382. {
  21383. front: {
  21384. height: math.unit(5 + 10 / 12, "feet"),
  21385. weight: math.unit(125, "lb"),
  21386. name: "Front",
  21387. image: {
  21388. source: "./media/characters/dharsi/front.svg",
  21389. extra: 716 / 630,
  21390. bottom: 0.035
  21391. }
  21392. },
  21393. },
  21394. [
  21395. {
  21396. name: "Nano",
  21397. height: math.unit(100, "nm")
  21398. },
  21399. {
  21400. name: "Micro",
  21401. height: math.unit(2, "inches")
  21402. },
  21403. {
  21404. name: "Normal",
  21405. height: math.unit(5 + 10 / 12, "feet"),
  21406. default: true
  21407. },
  21408. {
  21409. name: "Macro",
  21410. height: math.unit(1000, "feet")
  21411. },
  21412. {
  21413. name: "Megamacro",
  21414. height: math.unit(10, "miles")
  21415. },
  21416. {
  21417. name: "Gigamacro",
  21418. height: math.unit(3000, "miles")
  21419. },
  21420. {
  21421. name: "Teramacro",
  21422. height: math.unit(500000, "miles")
  21423. },
  21424. {
  21425. name: "Teramacro+",
  21426. height: math.unit(30, "galaxies")
  21427. },
  21428. ]
  21429. ))
  21430. characterMakers.push(() => makeCharacter(
  21431. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21432. {
  21433. front: {
  21434. height: math.unit(6, "feet"),
  21435. weight: math.unit(150, "lb"),
  21436. name: "Front",
  21437. image: {
  21438. source: "./media/characters/deathy/front.svg",
  21439. extra: 1552 / 1463,
  21440. bottom: 0.025
  21441. }
  21442. },
  21443. side: {
  21444. height: math.unit(6, "feet"),
  21445. weight: math.unit(150, "lb"),
  21446. name: "Side",
  21447. image: {
  21448. source: "./media/characters/deathy/side.svg",
  21449. extra: 1604 / 1455,
  21450. bottom: 0.025
  21451. }
  21452. },
  21453. back: {
  21454. height: math.unit(6, "feet"),
  21455. weight: math.unit(150, "lb"),
  21456. name: "Back",
  21457. image: {
  21458. source: "./media/characters/deathy/back.svg",
  21459. extra: 1580 / 1463,
  21460. bottom: 0.005
  21461. }
  21462. },
  21463. },
  21464. [
  21465. {
  21466. name: "Micro",
  21467. height: math.unit(5, "millimeters")
  21468. },
  21469. {
  21470. name: "Normal",
  21471. height: math.unit(6 + 5 / 12, "feet"),
  21472. default: true
  21473. },
  21474. ]
  21475. ))
  21476. characterMakers.push(() => makeCharacter(
  21477. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21478. {
  21479. front: {
  21480. height: math.unit(16, "feet"),
  21481. weight: math.unit(4000, "lb"),
  21482. name: "Front",
  21483. image: {
  21484. source: "./media/characters/juniper/front.svg",
  21485. bottom: 0.04
  21486. }
  21487. },
  21488. },
  21489. [
  21490. {
  21491. name: "Normal",
  21492. height: math.unit(16, "feet"),
  21493. default: true
  21494. },
  21495. ]
  21496. ))
  21497. characterMakers.push(() => makeCharacter(
  21498. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21499. {
  21500. front: {
  21501. height: math.unit(6, "feet"),
  21502. weight: math.unit(150, "lb"),
  21503. name: "Front",
  21504. image: {
  21505. source: "./media/characters/hipster/front.svg",
  21506. extra: 1312 / 1209,
  21507. bottom: 0.025
  21508. }
  21509. },
  21510. back: {
  21511. height: math.unit(6, "feet"),
  21512. weight: math.unit(150, "lb"),
  21513. name: "Back",
  21514. image: {
  21515. source: "./media/characters/hipster/back.svg",
  21516. extra: 1281 / 1196,
  21517. bottom: 0.01
  21518. }
  21519. },
  21520. },
  21521. [
  21522. {
  21523. name: "Micro",
  21524. height: math.unit(1, "mm")
  21525. },
  21526. {
  21527. name: "Normal",
  21528. height: math.unit(4, "inches"),
  21529. default: true
  21530. },
  21531. {
  21532. name: "Macro",
  21533. height: math.unit(500, "feet")
  21534. },
  21535. {
  21536. name: "Megamacro",
  21537. height: math.unit(1000, "miles")
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21543. {
  21544. front: {
  21545. height: math.unit(6, "feet"),
  21546. weight: math.unit(150, "lb"),
  21547. name: "Front",
  21548. image: {
  21549. source: "./media/characters/tendirmuldr/front.svg",
  21550. extra: 1878 / 1772,
  21551. bottom: 0.015
  21552. }
  21553. },
  21554. },
  21555. [
  21556. {
  21557. name: "Megamacro",
  21558. height: math.unit(1500, "miles"),
  21559. default: true
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21565. {
  21566. front: {
  21567. height: math.unit(14, "feet"),
  21568. weight: math.unit(12000, "lb"),
  21569. name: "Front",
  21570. image: {
  21571. source: "./media/characters/mort/front.svg",
  21572. extra: 365 / 318,
  21573. bottom: 0.01
  21574. }
  21575. },
  21576. side: {
  21577. height: math.unit(14, "feet"),
  21578. weight: math.unit(12000, "lb"),
  21579. name: "Side",
  21580. image: {
  21581. source: "./media/characters/mort/side.svg",
  21582. extra: 365 / 318,
  21583. bottom: 0.052
  21584. },
  21585. default: true
  21586. },
  21587. back: {
  21588. height: math.unit(14, "feet"),
  21589. weight: math.unit(12000, "lb"),
  21590. name: "Back",
  21591. image: {
  21592. source: "./media/characters/mort/back.svg",
  21593. extra: 371 / 332,
  21594. bottom: 0.18
  21595. }
  21596. },
  21597. },
  21598. [
  21599. {
  21600. name: "Normal",
  21601. height: math.unit(14, "feet"),
  21602. default: true
  21603. },
  21604. ]
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21608. {
  21609. front: {
  21610. height: math.unit(8, "feet"),
  21611. weight: math.unit(1, "ton"),
  21612. name: "Front",
  21613. image: {
  21614. source: "./media/characters/lycoa/front.svg",
  21615. extra: 1836/1728,
  21616. bottom: 81/1917
  21617. }
  21618. },
  21619. back: {
  21620. height: math.unit(8, "feet"),
  21621. weight: math.unit(1, "ton"),
  21622. name: "Back",
  21623. image: {
  21624. source: "./media/characters/lycoa/back.svg",
  21625. extra: 1785/1720,
  21626. bottom: 91/1876
  21627. }
  21628. },
  21629. head: {
  21630. height: math.unit(1.6243, "feet"),
  21631. name: "Head",
  21632. image: {
  21633. source: "./media/characters/lycoa/head.svg",
  21634. extra: 1011/782,
  21635. bottom: 0/1011
  21636. }
  21637. },
  21638. tailmaw: {
  21639. height: math.unit(1.9, "feet"),
  21640. name: "Tailmaw",
  21641. image: {
  21642. source: "./media/characters/lycoa/tailmaw.svg"
  21643. }
  21644. },
  21645. tentacles: {
  21646. height: math.unit(2.1, "feet"),
  21647. name: "Tentacles",
  21648. image: {
  21649. source: "./media/characters/lycoa/tentacles.svg"
  21650. }
  21651. },
  21652. dick: {
  21653. height: math.unit(1.73, "feet"),
  21654. name: "Dick",
  21655. image: {
  21656. source: "./media/characters/lycoa/dick.svg"
  21657. }
  21658. },
  21659. },
  21660. [
  21661. {
  21662. name: "Normal",
  21663. height: math.unit(8, "feet"),
  21664. default: true
  21665. },
  21666. {
  21667. name: "Macro",
  21668. height: math.unit(30, "feet")
  21669. },
  21670. ]
  21671. ))
  21672. characterMakers.push(() => makeCharacter(
  21673. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21674. {
  21675. front: {
  21676. height: math.unit(4 + 2 / 12, "feet"),
  21677. weight: math.unit(70, "lb"),
  21678. name: "Front",
  21679. image: {
  21680. source: "./media/characters/naldara/front.svg",
  21681. extra: 1664/1387,
  21682. bottom: 81/1745
  21683. },
  21684. form: "anthro",
  21685. default: true
  21686. },
  21687. naga: {
  21688. height: math.unit(20, "feet"),
  21689. weight: math.unit(15000, "kg"),
  21690. name: "Front",
  21691. image: {
  21692. source: "./media/characters/naldara/naga.svg",
  21693. extra: 1590/1396,
  21694. bottom: 285/1875
  21695. },
  21696. form: "naga",
  21697. default: true
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Normal",
  21703. height: math.unit(4 + 2 / 12, "feet"),
  21704. form: "anthro",
  21705. default: true
  21706. },
  21707. {
  21708. name: "Normal",
  21709. height: math.unit(20, "feet"),
  21710. form: "naga",
  21711. default: true
  21712. },
  21713. ],
  21714. {
  21715. "anthro": {
  21716. name: "Anthro",
  21717. default: true
  21718. },
  21719. "naga": {
  21720. name: "Naga"
  21721. }
  21722. }
  21723. ))
  21724. characterMakers.push(() => makeCharacter(
  21725. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21726. {
  21727. front: {
  21728. height: math.unit(13 + 7 / 12, "feet"),
  21729. weight: math.unit(1500, "lb"),
  21730. name: "Front",
  21731. image: {
  21732. source: "./media/characters/briar/front.svg",
  21733. extra: 1223/1157,
  21734. bottom: 123/1346
  21735. }
  21736. },
  21737. },
  21738. [
  21739. {
  21740. name: "Normal",
  21741. height: math.unit(13 + 7 / 12, "feet"),
  21742. default: true
  21743. },
  21744. ]
  21745. ))
  21746. characterMakers.push(() => makeCharacter(
  21747. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21748. {
  21749. side: {
  21750. height: math.unit(16, "feet"),
  21751. weight: math.unit(500, "lb"),
  21752. name: "Side",
  21753. image: {
  21754. source: "./media/characters/vanguard/side.svg",
  21755. extra: 1022/914,
  21756. bottom: 30/1052
  21757. }
  21758. },
  21759. sideAlt: {
  21760. height: math.unit(10, "feet"),
  21761. weight: math.unit(500, "lb"),
  21762. name: "Side (Alt)",
  21763. image: {
  21764. source: "./media/characters/vanguard/side-alt.svg",
  21765. extra: 502 / 425,
  21766. bottom: 0.087
  21767. }
  21768. },
  21769. },
  21770. [
  21771. {
  21772. name: "Normal",
  21773. height: math.unit(17.71, "feet"),
  21774. default: true
  21775. },
  21776. ]
  21777. ))
  21778. characterMakers.push(() => makeCharacter(
  21779. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21780. {
  21781. front: {
  21782. height: math.unit(7.5, "feet"),
  21783. weight: math.unit(2, "lb"),
  21784. name: "Front",
  21785. image: {
  21786. source: "./media/characters/artemis/work-safe-front.svg",
  21787. extra: 1192 / 1075,
  21788. bottom: 0.07
  21789. },
  21790. form: "work-safe",
  21791. default: true
  21792. },
  21793. frontNsfw: {
  21794. height: math.unit(7.5, "feet"),
  21795. weight: math.unit(2, "lb"),
  21796. name: "Front",
  21797. image: {
  21798. source: "./media/characters/artemis/calibrating-front.svg",
  21799. extra: 1192 / 1075,
  21800. bottom: 0.07
  21801. },
  21802. form: "calibrating",
  21803. default: true
  21804. },
  21805. frontNsfwer: {
  21806. height: math.unit(7.5, "feet"),
  21807. weight: math.unit(2, "lb"),
  21808. name: "Front",
  21809. image: {
  21810. source: "./media/characters/artemis/oversize-load-front.svg",
  21811. extra: 1192 / 1075,
  21812. bottom: 0.07
  21813. },
  21814. form: "oversize-load",
  21815. default: true
  21816. },
  21817. side: {
  21818. height: math.unit(7.5, "feet"),
  21819. weight: math.unit(2, "lb"),
  21820. name: "Side",
  21821. image: {
  21822. source: "./media/characters/artemis/work-safe-side.svg",
  21823. extra: 1192 / 1075,
  21824. bottom: 0.07
  21825. },
  21826. form: "work-safe"
  21827. },
  21828. sideNsfw: {
  21829. height: math.unit(7.5, "feet"),
  21830. weight: math.unit(2, "lb"),
  21831. name: "Side",
  21832. image: {
  21833. source: "./media/characters/artemis/calibrating-side.svg",
  21834. extra: 1192 / 1075,
  21835. bottom: 0.07
  21836. },
  21837. form: "calibrating"
  21838. },
  21839. sideNsfwer: {
  21840. height: math.unit(7.5, "feet"),
  21841. weight: math.unit(2, "lb"),
  21842. name: "Side",
  21843. image: {
  21844. source: "./media/characters/artemis/oversize-load-side.svg",
  21845. extra: 1192 / 1075,
  21846. bottom: 0.07
  21847. },
  21848. form: "oversize-load"
  21849. },
  21850. maw: {
  21851. height: math.unit(1.1, "feet"),
  21852. name: "Maw",
  21853. image: {
  21854. source: "./media/characters/artemis/maw.svg"
  21855. },
  21856. form: "work-safe"
  21857. },
  21858. stomach: {
  21859. height: math.unit(0.95, "feet"),
  21860. name: "Stomach",
  21861. image: {
  21862. source: "./media/characters/artemis/stomach.svg"
  21863. },
  21864. form: "work-safe"
  21865. },
  21866. dickCanine: {
  21867. height: math.unit(1, "feet"),
  21868. name: "Dick (Canine)",
  21869. image: {
  21870. source: "./media/characters/artemis/dick-canine.svg"
  21871. },
  21872. form: "calibrating"
  21873. },
  21874. dickEquine: {
  21875. height: math.unit(0.85, "feet"),
  21876. name: "Dick (Equine)",
  21877. image: {
  21878. source: "./media/characters/artemis/dick-equine.svg"
  21879. },
  21880. form: "calibrating"
  21881. },
  21882. dickExotic: {
  21883. height: math.unit(0.85, "feet"),
  21884. name: "Dick (Exotic)",
  21885. image: {
  21886. source: "./media/characters/artemis/dick-exotic.svg"
  21887. },
  21888. form: "calibrating"
  21889. },
  21890. dickCanineBigger: {
  21891. height: math.unit(1 * 1.33, "feet"),
  21892. name: "Dick (Canine)",
  21893. image: {
  21894. source: "./media/characters/artemis/dick-canine.svg"
  21895. },
  21896. form: "oversize-load"
  21897. },
  21898. dickEquineBigger: {
  21899. height: math.unit(0.85 * 1.33, "feet"),
  21900. name: "Dick (Equine)",
  21901. image: {
  21902. source: "./media/characters/artemis/dick-equine.svg"
  21903. },
  21904. form: "oversize-load"
  21905. },
  21906. dickExoticBigger: {
  21907. height: math.unit(0.85 * 1.33, "feet"),
  21908. name: "Dick (Exotic)",
  21909. image: {
  21910. source: "./media/characters/artemis/dick-exotic.svg"
  21911. },
  21912. form: "oversize-load"
  21913. },
  21914. },
  21915. [
  21916. {
  21917. name: "Normal",
  21918. height: math.unit(7.5, "feet"),
  21919. form: "work-safe",
  21920. default: true
  21921. },
  21922. {
  21923. name: "Normal",
  21924. height: math.unit(7.5, "feet"),
  21925. form: "calibrating",
  21926. default: true
  21927. },
  21928. {
  21929. name: "Normal",
  21930. height: math.unit(7.5, "feet"),
  21931. form: "oversize-load",
  21932. default: true
  21933. },
  21934. {
  21935. name: "Enlarged",
  21936. height: math.unit(12, "feet"),
  21937. form: "work-safe",
  21938. },
  21939. {
  21940. name: "Enlarged",
  21941. height: math.unit(12, "feet"),
  21942. form: "calibrating",
  21943. },
  21944. {
  21945. name: "Enlarged",
  21946. height: math.unit(12, "feet"),
  21947. form: "oversize-load",
  21948. },
  21949. ],
  21950. {
  21951. "work-safe": {
  21952. name: "Work-Safe",
  21953. default: true
  21954. },
  21955. "calibrating": {
  21956. name: "Calibrating"
  21957. },
  21958. "oversize-load": {
  21959. name: "Oversize Load"
  21960. }
  21961. }
  21962. ))
  21963. characterMakers.push(() => makeCharacter(
  21964. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21965. {
  21966. front: {
  21967. height: math.unit(5 + 3 / 12, "feet"),
  21968. weight: math.unit(160, "lb"),
  21969. name: "Front",
  21970. image: {
  21971. source: "./media/characters/kira/front.svg",
  21972. extra: 906 / 786,
  21973. bottom: 0.01
  21974. }
  21975. },
  21976. back: {
  21977. height: math.unit(5 + 3 / 12, "feet"),
  21978. weight: math.unit(160, "lb"),
  21979. name: "Back",
  21980. image: {
  21981. source: "./media/characters/kira/back.svg",
  21982. extra: 882 / 757,
  21983. bottom: 0.005
  21984. }
  21985. },
  21986. frontDressed: {
  21987. height: math.unit(5 + 3 / 12, "feet"),
  21988. weight: math.unit(160, "lb"),
  21989. name: "Front (Dressed)",
  21990. image: {
  21991. source: "./media/characters/kira/front-dressed.svg",
  21992. extra: 906 / 786,
  21993. bottom: 0.01
  21994. }
  21995. },
  21996. beans: {
  21997. height: math.unit(0.92, "feet"),
  21998. name: "Beans",
  21999. image: {
  22000. source: "./media/characters/kira/beans.svg"
  22001. }
  22002. },
  22003. },
  22004. [
  22005. {
  22006. name: "Normal",
  22007. height: math.unit(5 + 3 / 12, "feet"),
  22008. default: true
  22009. },
  22010. ]
  22011. ))
  22012. characterMakers.push(() => makeCharacter(
  22013. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22014. {
  22015. front: {
  22016. height: math.unit(5 + 4 / 12, "feet"),
  22017. weight: math.unit(145, "lb"),
  22018. name: "Front",
  22019. image: {
  22020. source: "./media/characters/scramble/front.svg",
  22021. extra: 763 / 727,
  22022. bottom: 0.05
  22023. }
  22024. },
  22025. back: {
  22026. height: math.unit(5 + 4 / 12, "feet"),
  22027. weight: math.unit(145, "lb"),
  22028. name: "Back",
  22029. image: {
  22030. source: "./media/characters/scramble/back.svg",
  22031. extra: 826 / 737,
  22032. bottom: 0.002
  22033. }
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Normal",
  22039. height: math.unit(5 + 4 / 12, "feet"),
  22040. default: true
  22041. },
  22042. ]
  22043. ))
  22044. characterMakers.push(() => makeCharacter(
  22045. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22046. {
  22047. side: {
  22048. height: math.unit(6 + 2 / 12, "feet"),
  22049. weight: math.unit(190, "lb"),
  22050. name: "Side",
  22051. image: {
  22052. source: "./media/characters/biscuit/side.svg",
  22053. extra: 858 / 791,
  22054. bottom: 0.044
  22055. }
  22056. },
  22057. },
  22058. [
  22059. {
  22060. name: "Normal",
  22061. height: math.unit(6 + 2 / 12, "feet"),
  22062. default: true
  22063. },
  22064. ]
  22065. ))
  22066. characterMakers.push(() => makeCharacter(
  22067. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22068. {
  22069. front: {
  22070. height: math.unit(5 + 2 / 12, "feet"),
  22071. weight: math.unit(120, "lb"),
  22072. name: "Front",
  22073. image: {
  22074. source: "./media/characters/poffin/front.svg",
  22075. extra: 786 / 680,
  22076. bottom: 0.005
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Normal",
  22083. height: math.unit(5 + 2 / 12, "feet"),
  22084. default: true
  22085. },
  22086. ]
  22087. ))
  22088. characterMakers.push(() => makeCharacter(
  22089. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22090. {
  22091. front: {
  22092. height: math.unit(6 + 3 / 12, "feet"),
  22093. weight: math.unit(519, "lb"),
  22094. name: "Front",
  22095. image: {
  22096. source: "./media/characters/dhari/front.svg",
  22097. extra: 1048 / 946,
  22098. bottom: 0.015
  22099. }
  22100. },
  22101. back: {
  22102. height: math.unit(6 + 3 / 12, "feet"),
  22103. weight: math.unit(519, "lb"),
  22104. name: "Back",
  22105. image: {
  22106. source: "./media/characters/dhari/back.svg",
  22107. extra: 1048 / 931,
  22108. bottom: 0.005
  22109. }
  22110. },
  22111. frontDressed: {
  22112. height: math.unit(6 + 3 / 12, "feet"),
  22113. weight: math.unit(519, "lb"),
  22114. name: "Front (Dressed)",
  22115. image: {
  22116. source: "./media/characters/dhari/front-dressed.svg",
  22117. extra: 1713 / 1546,
  22118. bottom: 0.02
  22119. }
  22120. },
  22121. backDressed: {
  22122. height: math.unit(6 + 3 / 12, "feet"),
  22123. weight: math.unit(519, "lb"),
  22124. name: "Back (Dressed)",
  22125. image: {
  22126. source: "./media/characters/dhari/back-dressed.svg",
  22127. extra: 1699 / 1537,
  22128. bottom: 0.01
  22129. }
  22130. },
  22131. maw: {
  22132. height: math.unit(0.95, "feet"),
  22133. name: "Maw",
  22134. image: {
  22135. source: "./media/characters/dhari/maw.svg"
  22136. }
  22137. },
  22138. wereFront: {
  22139. height: math.unit(12 + 8 / 12, "feet"),
  22140. weight: math.unit(4000, "lb"),
  22141. name: "Front (Were)",
  22142. image: {
  22143. source: "./media/characters/dhari/were-front.svg",
  22144. extra: 1065 / 969,
  22145. bottom: 0.015
  22146. }
  22147. },
  22148. wereBack: {
  22149. height: math.unit(12 + 8 / 12, "feet"),
  22150. weight: math.unit(4000, "lb"),
  22151. name: "Back (Were)",
  22152. image: {
  22153. source: "./media/characters/dhari/were-back.svg",
  22154. extra: 1065 / 969,
  22155. bottom: 0.012
  22156. }
  22157. },
  22158. wereMaw: {
  22159. height: math.unit(0.625, "meters"),
  22160. name: "Maw (Were)",
  22161. image: {
  22162. source: "./media/characters/dhari/were-maw.svg"
  22163. }
  22164. },
  22165. },
  22166. [
  22167. {
  22168. name: "Normal",
  22169. height: math.unit(6 + 3 / 12, "feet"),
  22170. default: true
  22171. },
  22172. ]
  22173. ))
  22174. characterMakers.push(() => makeCharacter(
  22175. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22176. {
  22177. anthro: {
  22178. height: math.unit(5 + 7 / 12, "feet"),
  22179. weight: math.unit(175, "lb"),
  22180. name: "Anthro",
  22181. image: {
  22182. source: "./media/characters/rena-dyne/anthro.svg",
  22183. extra: 1849 / 1785,
  22184. bottom: 0.005
  22185. }
  22186. },
  22187. taur: {
  22188. height: math.unit(15 + 6 / 12, "feet"),
  22189. weight: math.unit(8000, "lb"),
  22190. name: "Taur",
  22191. image: {
  22192. source: "./media/characters/rena-dyne/taur.svg",
  22193. extra: 2315 / 2234,
  22194. bottom: 0.033
  22195. }
  22196. },
  22197. },
  22198. [
  22199. {
  22200. name: "Normal",
  22201. height: math.unit(5 + 7 / 12, "feet"),
  22202. default: true
  22203. },
  22204. ]
  22205. ))
  22206. characterMakers.push(() => makeCharacter(
  22207. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22208. {
  22209. front: {
  22210. height: math.unit(8, "feet"),
  22211. weight: math.unit(600, "lb"),
  22212. name: "Front",
  22213. image: {
  22214. source: "./media/characters/weremeep/front.svg",
  22215. extra: 970/849,
  22216. bottom: 7/977
  22217. }
  22218. },
  22219. },
  22220. [
  22221. {
  22222. name: "Normal",
  22223. height: math.unit(8, "feet"),
  22224. default: true
  22225. },
  22226. {
  22227. name: "Lorg",
  22228. height: math.unit(12, "feet")
  22229. },
  22230. {
  22231. name: "Oh Lawd She Comin'",
  22232. height: math.unit(20, "feet")
  22233. },
  22234. ]
  22235. ))
  22236. characterMakers.push(() => makeCharacter(
  22237. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22238. {
  22239. front: {
  22240. height: math.unit(4, "feet"),
  22241. weight: math.unit(90, "lb"),
  22242. name: "Front",
  22243. image: {
  22244. source: "./media/characters/reza/front.svg",
  22245. extra: 1183 / 1111,
  22246. bottom: 0.017
  22247. }
  22248. },
  22249. back: {
  22250. height: math.unit(4, "feet"),
  22251. weight: math.unit(90, "lb"),
  22252. name: "Back",
  22253. image: {
  22254. source: "./media/characters/reza/back.svg",
  22255. extra: 1183 / 1111,
  22256. bottom: 0.01
  22257. }
  22258. },
  22259. drake: {
  22260. height: math.unit(30, "feet"),
  22261. weight: math.unit(246960, "lb"),
  22262. name: "Drake",
  22263. image: {
  22264. source: "./media/characters/reza/drake.svg",
  22265. extra: 2350 / 2024,
  22266. bottom: 60.7 / 2403
  22267. }
  22268. },
  22269. },
  22270. [
  22271. {
  22272. name: "Normal",
  22273. height: math.unit(4, "feet"),
  22274. default: true
  22275. },
  22276. ]
  22277. ))
  22278. characterMakers.push(() => makeCharacter(
  22279. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22280. {
  22281. side: {
  22282. height: math.unit(15, "feet"),
  22283. weight: math.unit(14, "tons"),
  22284. name: "Side",
  22285. image: {
  22286. source: "./media/characters/athea/side.svg",
  22287. extra: 960 / 540,
  22288. bottom: 0.003
  22289. }
  22290. },
  22291. sitting: {
  22292. height: math.unit(6 * 2.85, "feet"),
  22293. weight: math.unit(14, "tons"),
  22294. name: "Sitting",
  22295. image: {
  22296. source: "./media/characters/athea/sitting.svg",
  22297. extra: 621 / 581,
  22298. bottom: 0.075
  22299. }
  22300. },
  22301. maw: {
  22302. height: math.unit(7.59498031496063, "feet"),
  22303. name: "Maw",
  22304. image: {
  22305. source: "./media/characters/athea/maw.svg"
  22306. }
  22307. },
  22308. },
  22309. [
  22310. {
  22311. name: "Lap Cat",
  22312. height: math.unit(2.5, "feet")
  22313. },
  22314. {
  22315. name: "Minimacro",
  22316. height: math.unit(15, "feet"),
  22317. default: true
  22318. },
  22319. {
  22320. name: "Macro",
  22321. height: math.unit(120, "feet")
  22322. },
  22323. {
  22324. name: "Macro+",
  22325. height: math.unit(640, "feet")
  22326. },
  22327. {
  22328. name: "Colossus",
  22329. height: math.unit(2.2, "miles")
  22330. },
  22331. ]
  22332. ))
  22333. characterMakers.push(() => makeCharacter(
  22334. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22335. {
  22336. front: {
  22337. height: math.unit(8 + 8 / 12, "feet"),
  22338. weight: math.unit(130, "kg"),
  22339. name: "Front",
  22340. image: {
  22341. source: "./media/characters/seroko/front.svg",
  22342. extra: 1385 / 1280,
  22343. bottom: 0.025
  22344. }
  22345. },
  22346. back: {
  22347. height: math.unit(8 + 8 / 12, "feet"),
  22348. weight: math.unit(130, "kg"),
  22349. name: "Back",
  22350. image: {
  22351. source: "./media/characters/seroko/back.svg",
  22352. extra: 1369 / 1238,
  22353. bottom: 0.018
  22354. }
  22355. },
  22356. frontDressed: {
  22357. height: math.unit(8 + 8 / 12, "feet"),
  22358. weight: math.unit(130, "kg"),
  22359. name: "Front (Dressed)",
  22360. image: {
  22361. source: "./media/characters/seroko/front-dressed.svg",
  22362. extra: 1366 / 1275,
  22363. bottom: 0.03
  22364. }
  22365. },
  22366. },
  22367. [
  22368. {
  22369. name: "Normal",
  22370. height: math.unit(8 + 8 / 12, "feet"),
  22371. default: true
  22372. },
  22373. ]
  22374. ))
  22375. characterMakers.push(() => makeCharacter(
  22376. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22377. {
  22378. front: {
  22379. height: math.unit(5.5, "feet"),
  22380. weight: math.unit(160, "lb"),
  22381. name: "Front",
  22382. image: {
  22383. source: "./media/characters/quatzi/front.svg",
  22384. extra: 2346 / 2242,
  22385. bottom: 0.015
  22386. }
  22387. },
  22388. },
  22389. [
  22390. {
  22391. name: "Normal",
  22392. height: math.unit(5.5, "feet"),
  22393. default: true
  22394. },
  22395. {
  22396. name: "Big",
  22397. height: math.unit(7.7, "feet")
  22398. },
  22399. ]
  22400. ))
  22401. characterMakers.push(() => makeCharacter(
  22402. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22403. {
  22404. front: {
  22405. height: math.unit(5 + 11 / 12, "feet"),
  22406. weight: math.unit(180, "lb"),
  22407. name: "Front",
  22408. image: {
  22409. source: "./media/characters/sen/front.svg",
  22410. extra: 1321 / 1254,
  22411. bottom: 0.015
  22412. }
  22413. },
  22414. side: {
  22415. height: math.unit(5 + 11 / 12, "feet"),
  22416. weight: math.unit(180, "lb"),
  22417. name: "Side",
  22418. image: {
  22419. source: "./media/characters/sen/side.svg",
  22420. extra: 1321 / 1254,
  22421. bottom: 0.007
  22422. }
  22423. },
  22424. back: {
  22425. height: math.unit(5 + 11 / 12, "feet"),
  22426. weight: math.unit(180, "lb"),
  22427. name: "Back",
  22428. image: {
  22429. source: "./media/characters/sen/back.svg",
  22430. extra: 1321 / 1254
  22431. }
  22432. },
  22433. },
  22434. [
  22435. {
  22436. name: "Normal",
  22437. height: math.unit(5 + 11 / 12, "feet"),
  22438. default: true
  22439. },
  22440. ]
  22441. ))
  22442. characterMakers.push(() => makeCharacter(
  22443. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22444. {
  22445. front: {
  22446. height: math.unit(166.6, "cm"),
  22447. weight: math.unit(66.6, "kg"),
  22448. name: "Front",
  22449. image: {
  22450. source: "./media/characters/fruity/front.svg",
  22451. extra: 1510 / 1386,
  22452. bottom: 0.04
  22453. }
  22454. },
  22455. back: {
  22456. height: math.unit(166.6, "cm"),
  22457. weight: math.unit(66.6, "lb"),
  22458. name: "Back",
  22459. image: {
  22460. source: "./media/characters/fruity/back.svg",
  22461. extra: 1563 / 1435,
  22462. bottom: 0.005
  22463. }
  22464. },
  22465. },
  22466. [
  22467. {
  22468. name: "Normal",
  22469. height: math.unit(166.6, "cm"),
  22470. default: true
  22471. },
  22472. {
  22473. name: "Demonic",
  22474. height: math.unit(166.6, "feet")
  22475. },
  22476. ]
  22477. ))
  22478. characterMakers.push(() => makeCharacter(
  22479. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22480. {
  22481. side: {
  22482. height: math.unit(10, "feet"),
  22483. weight: math.unit(500, "lb"),
  22484. name: "Side",
  22485. image: {
  22486. source: "./media/characters/zost/side.svg",
  22487. extra: 2870/2533,
  22488. bottom: 252/3122
  22489. }
  22490. },
  22491. mawFront: {
  22492. height: math.unit(1.08, "meters"),
  22493. name: "Maw (Front)",
  22494. image: {
  22495. source: "./media/characters/zost/maw-front.svg"
  22496. }
  22497. },
  22498. mawSide: {
  22499. height: math.unit(2.66, "feet"),
  22500. name: "Maw (Side)",
  22501. image: {
  22502. source: "./media/characters/zost/maw-side.svg"
  22503. }
  22504. },
  22505. wingspan: {
  22506. height: math.unit(7.4, "feet"),
  22507. name: "Wingspan",
  22508. image: {
  22509. source: "./media/characters/zost/wingspan.svg"
  22510. }
  22511. },
  22512. },
  22513. [
  22514. {
  22515. name: "Normal",
  22516. height: math.unit(10, "feet"),
  22517. default: true
  22518. },
  22519. ]
  22520. ))
  22521. characterMakers.push(() => makeCharacter(
  22522. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22523. {
  22524. front: {
  22525. height: math.unit(5 + 4 / 12, "feet"),
  22526. weight: math.unit(120, "lb"),
  22527. name: "Front",
  22528. image: {
  22529. source: "./media/characters/luci/front.svg",
  22530. extra: 1985 / 1884,
  22531. bottom: 0.04
  22532. }
  22533. },
  22534. back: {
  22535. height: math.unit(5 + 4 / 12, "feet"),
  22536. weight: math.unit(120, "lb"),
  22537. name: "Back",
  22538. image: {
  22539. source: "./media/characters/luci/back.svg",
  22540. extra: 1892 / 1791,
  22541. bottom: 0.002
  22542. }
  22543. },
  22544. },
  22545. [
  22546. {
  22547. name: "Normal",
  22548. height: math.unit(5 + 4 / 12, "feet"),
  22549. default: true
  22550. },
  22551. ]
  22552. ))
  22553. characterMakers.push(() => makeCharacter(
  22554. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22555. {
  22556. front: {
  22557. height: math.unit(1500, "feet"),
  22558. weight: math.unit(3.8e6, "tons"),
  22559. name: "Front",
  22560. image: {
  22561. source: "./media/characters/2th/front.svg",
  22562. extra: 3489 / 3350,
  22563. bottom: 0.1
  22564. }
  22565. },
  22566. foot: {
  22567. height: math.unit(461, "feet"),
  22568. name: "Foot",
  22569. image: {
  22570. source: "./media/characters/2th/foot.svg"
  22571. }
  22572. },
  22573. },
  22574. [
  22575. {
  22576. name: "\"Micro\"",
  22577. height: math.unit(15 + 7 / 12, "feet")
  22578. },
  22579. {
  22580. name: "Normal",
  22581. height: math.unit(1500, "feet"),
  22582. default: true
  22583. },
  22584. {
  22585. name: "Macro",
  22586. height: math.unit(5000, "feet")
  22587. },
  22588. {
  22589. name: "Megamacro",
  22590. height: math.unit(15, "miles")
  22591. },
  22592. {
  22593. name: "Gigamacro",
  22594. height: math.unit(4000, "miles")
  22595. },
  22596. {
  22597. name: "Galactic",
  22598. height: math.unit(50, "AU")
  22599. },
  22600. ]
  22601. ))
  22602. characterMakers.push(() => makeCharacter(
  22603. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22604. {
  22605. front: {
  22606. height: math.unit(5 + 6 / 12, "feet"),
  22607. weight: math.unit(220, "lb"),
  22608. name: "Front",
  22609. image: {
  22610. source: "./media/characters/amethyst/front.svg",
  22611. extra: 2078 / 2040,
  22612. bottom: 0.045
  22613. }
  22614. },
  22615. back: {
  22616. height: math.unit(5 + 6 / 12, "feet"),
  22617. weight: math.unit(220, "lb"),
  22618. name: "Back",
  22619. image: {
  22620. source: "./media/characters/amethyst/back.svg",
  22621. extra: 2021 / 1989,
  22622. bottom: 0.02
  22623. }
  22624. },
  22625. },
  22626. [
  22627. {
  22628. name: "Normal",
  22629. height: math.unit(5 + 6 / 12, "feet"),
  22630. default: true
  22631. },
  22632. ]
  22633. ))
  22634. characterMakers.push(() => makeCharacter(
  22635. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22636. {
  22637. front: {
  22638. height: math.unit(4 + 11 / 12, "feet"),
  22639. weight: math.unit(120, "lb"),
  22640. name: "Front",
  22641. image: {
  22642. source: "./media/characters/yumi-akiyama/front.svg",
  22643. extra: 1327 / 1235,
  22644. bottom: 0.02
  22645. }
  22646. },
  22647. back: {
  22648. height: math.unit(4 + 11 / 12, "feet"),
  22649. weight: math.unit(120, "lb"),
  22650. name: "Back",
  22651. image: {
  22652. source: "./media/characters/yumi-akiyama/back.svg",
  22653. extra: 1287 / 1245,
  22654. bottom: 0.002
  22655. }
  22656. },
  22657. },
  22658. [
  22659. {
  22660. name: "Galactic",
  22661. height: math.unit(50, "galaxies"),
  22662. default: true
  22663. },
  22664. {
  22665. name: "Universal",
  22666. height: math.unit(100, "universes")
  22667. },
  22668. ]
  22669. ))
  22670. characterMakers.push(() => makeCharacter(
  22671. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22672. {
  22673. front: {
  22674. height: math.unit(8, "feet"),
  22675. weight: math.unit(500, "lb"),
  22676. name: "Front",
  22677. image: {
  22678. source: "./media/characters/rifter-yrmori/front.svg",
  22679. extra: 1180 / 1125,
  22680. bottom: 0.02
  22681. }
  22682. },
  22683. back: {
  22684. height: math.unit(8, "feet"),
  22685. weight: math.unit(500, "lb"),
  22686. name: "Back",
  22687. image: {
  22688. source: "./media/characters/rifter-yrmori/back.svg",
  22689. extra: 1190 / 1145,
  22690. bottom: 0.001
  22691. }
  22692. },
  22693. wings: {
  22694. height: math.unit(7.75, "feet"),
  22695. weight: math.unit(500, "lb"),
  22696. name: "Wings",
  22697. image: {
  22698. source: "./media/characters/rifter-yrmori/wings.svg",
  22699. extra: 1357 / 1285
  22700. }
  22701. },
  22702. maw: {
  22703. height: math.unit(0.8, "feet"),
  22704. name: "Maw",
  22705. image: {
  22706. source: "./media/characters/rifter-yrmori/maw.svg"
  22707. }
  22708. },
  22709. mawfront: {
  22710. height: math.unit(1.45, "feet"),
  22711. name: "Maw (Front)",
  22712. image: {
  22713. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22714. }
  22715. },
  22716. },
  22717. [
  22718. {
  22719. name: "Normal",
  22720. height: math.unit(8, "feet"),
  22721. default: true
  22722. },
  22723. {
  22724. name: "Macro",
  22725. height: math.unit(42, "meters")
  22726. },
  22727. ]
  22728. ))
  22729. characterMakers.push(() => makeCharacter(
  22730. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22731. {
  22732. were: {
  22733. height: math.unit(25 + 6 / 12, "feet"),
  22734. weight: math.unit(10000, "lb"),
  22735. name: "Were",
  22736. image: {
  22737. source: "./media/characters/tahajin/were.svg",
  22738. extra: 801 / 770,
  22739. bottom: 0.042
  22740. }
  22741. },
  22742. aquatic: {
  22743. height: math.unit(6 + 4 / 12, "feet"),
  22744. weight: math.unit(160, "lb"),
  22745. name: "Aquatic",
  22746. image: {
  22747. source: "./media/characters/tahajin/aquatic.svg",
  22748. extra: 572 / 542,
  22749. bottom: 0.04
  22750. }
  22751. },
  22752. chow: {
  22753. height: math.unit(8 + 11 / 12, "feet"),
  22754. weight: math.unit(450, "lb"),
  22755. name: "Chow",
  22756. image: {
  22757. source: "./media/characters/tahajin/chow.svg",
  22758. extra: 660 / 640,
  22759. bottom: 0.015
  22760. }
  22761. },
  22762. demiNaga: {
  22763. height: math.unit(6 + 8 / 12, "feet"),
  22764. weight: math.unit(300, "lb"),
  22765. name: "Demi Naga",
  22766. image: {
  22767. source: "./media/characters/tahajin/demi-naga.svg",
  22768. extra: 643 / 615,
  22769. bottom: 0.1
  22770. }
  22771. },
  22772. data: {
  22773. height: math.unit(5, "inches"),
  22774. weight: math.unit(0.1, "lb"),
  22775. name: "Data",
  22776. image: {
  22777. source: "./media/characters/tahajin/data.svg"
  22778. }
  22779. },
  22780. fluu: {
  22781. height: math.unit(5 + 7 / 12, "feet"),
  22782. weight: math.unit(140, "lb"),
  22783. name: "Fluu",
  22784. image: {
  22785. source: "./media/characters/tahajin/fluu.svg",
  22786. extra: 628 / 592,
  22787. bottom: 0.02
  22788. }
  22789. },
  22790. starWarrior: {
  22791. height: math.unit(4 + 5 / 12, "feet"),
  22792. weight: math.unit(50, "lb"),
  22793. name: "Star Warrior",
  22794. image: {
  22795. source: "./media/characters/tahajin/star-warrior.svg"
  22796. }
  22797. },
  22798. },
  22799. [
  22800. {
  22801. name: "Normal",
  22802. height: math.unit(25 + 6 / 12, "feet"),
  22803. default: true
  22804. },
  22805. ]
  22806. ))
  22807. characterMakers.push(() => makeCharacter(
  22808. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22809. {
  22810. front: {
  22811. height: math.unit(8, "feet"),
  22812. weight: math.unit(350, "lb"),
  22813. name: "Front",
  22814. image: {
  22815. source: "./media/characters/gabira/front.svg",
  22816. extra: 1261/1154,
  22817. bottom: 51/1312
  22818. }
  22819. },
  22820. back: {
  22821. height: math.unit(8, "feet"),
  22822. weight: math.unit(350, "lb"),
  22823. name: "Back",
  22824. image: {
  22825. source: "./media/characters/gabira/back.svg",
  22826. extra: 1265/1163,
  22827. bottom: 46/1311
  22828. }
  22829. },
  22830. head: {
  22831. height: math.unit(2.85, "feet"),
  22832. name: "Head",
  22833. image: {
  22834. source: "./media/characters/gabira/head.svg"
  22835. }
  22836. },
  22837. },
  22838. [
  22839. {
  22840. name: "Normal",
  22841. height: math.unit(8, "feet"),
  22842. default: true
  22843. },
  22844. ]
  22845. ))
  22846. characterMakers.push(() => makeCharacter(
  22847. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22848. {
  22849. front: {
  22850. height: math.unit(5 + 3 / 12, "feet"),
  22851. weight: math.unit(137, "lb"),
  22852. name: "Front",
  22853. image: {
  22854. source: "./media/characters/sasha-katraine/front.svg",
  22855. extra: 1745/1694,
  22856. bottom: 37/1782
  22857. }
  22858. },
  22859. back: {
  22860. height: math.unit(5 + 3 / 12, "feet"),
  22861. weight: math.unit(137, "lb"),
  22862. name: "Back",
  22863. image: {
  22864. source: "./media/characters/sasha-katraine/back.svg",
  22865. extra: 1776/1699,
  22866. bottom: 26/1802
  22867. }
  22868. },
  22869. },
  22870. [
  22871. {
  22872. name: "Micro",
  22873. height: math.unit(5, "inches")
  22874. },
  22875. {
  22876. name: "Normal",
  22877. height: math.unit(5 + 3 / 12, "feet"),
  22878. default: true
  22879. },
  22880. ]
  22881. ))
  22882. characterMakers.push(() => makeCharacter(
  22883. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22884. {
  22885. side: {
  22886. height: math.unit(4, "inches"),
  22887. weight: math.unit(200, "grams"),
  22888. name: "Side",
  22889. image: {
  22890. source: "./media/characters/der/side.svg",
  22891. extra: 719 / 400,
  22892. bottom: 30.6 / 749.9187
  22893. }
  22894. },
  22895. },
  22896. [
  22897. {
  22898. name: "Micro",
  22899. height: math.unit(4, "inches"),
  22900. default: true
  22901. },
  22902. ]
  22903. ))
  22904. characterMakers.push(() => makeCharacter(
  22905. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22906. {
  22907. side: {
  22908. height: math.unit(30, "meters"),
  22909. weight: math.unit(700, "tonnes"),
  22910. name: "Side",
  22911. image: {
  22912. source: "./media/characters/fixerdragon/side.svg",
  22913. extra: (1293.0514 - 116.03) / 1106.86,
  22914. bottom: 116.03 / 1293.0514
  22915. }
  22916. },
  22917. },
  22918. [
  22919. {
  22920. name: "Planck",
  22921. height: math.unit(1.6e-35, "meters")
  22922. },
  22923. {
  22924. name: "Micro",
  22925. height: math.unit(0.4, "meters")
  22926. },
  22927. {
  22928. name: "Normal",
  22929. height: math.unit(30, "meters"),
  22930. default: true
  22931. },
  22932. {
  22933. name: "Megamacro",
  22934. height: math.unit(1.2, "megameters")
  22935. },
  22936. {
  22937. name: "Teramacro",
  22938. height: math.unit(130, "terameters")
  22939. },
  22940. {
  22941. name: "Yottamacro",
  22942. height: math.unit(6200, "yottameters")
  22943. },
  22944. ]
  22945. ));
  22946. characterMakers.push(() => makeCharacter(
  22947. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22948. {
  22949. front: {
  22950. height: math.unit(8, "feet"),
  22951. weight: math.unit(250, "lb"),
  22952. name: "Front",
  22953. image: {
  22954. source: "./media/characters/kite/front.svg",
  22955. extra: 2796 / 2659,
  22956. bottom: 0.002
  22957. }
  22958. },
  22959. },
  22960. [
  22961. {
  22962. name: "Normal",
  22963. height: math.unit(8, "feet"),
  22964. default: true
  22965. },
  22966. {
  22967. name: "Macro",
  22968. height: math.unit(360, "feet")
  22969. },
  22970. {
  22971. name: "Megamacro",
  22972. height: math.unit(1500, "feet")
  22973. },
  22974. ]
  22975. ))
  22976. characterMakers.push(() => makeCharacter(
  22977. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22978. {
  22979. front: {
  22980. height: math.unit(5 + 11/12, "feet"),
  22981. weight: math.unit(170, "lb"),
  22982. name: "Front",
  22983. image: {
  22984. source: "./media/characters/poojawa-vynar/front.svg",
  22985. extra: 1735/1585,
  22986. bottom: 96/1831
  22987. }
  22988. },
  22989. back: {
  22990. height: math.unit(5 + 11/12, "feet"),
  22991. weight: math.unit(170, "lb"),
  22992. name: "Back",
  22993. image: {
  22994. source: "./media/characters/poojawa-vynar/back.svg",
  22995. extra: 1749/1607,
  22996. bottom: 28/1777
  22997. }
  22998. },
  22999. male: {
  23000. height: math.unit(5 + 11/12, "feet"),
  23001. weight: math.unit(170, "lb"),
  23002. name: "Male",
  23003. image: {
  23004. source: "./media/characters/poojawa-vynar/male.svg",
  23005. extra: 1855/1713,
  23006. bottom: 63/1918
  23007. }
  23008. },
  23009. taur: {
  23010. height: math.unit(5 + 11/12, "feet"),
  23011. weight: math.unit(170, "lb"),
  23012. name: "Taur",
  23013. image: {
  23014. source: "./media/characters/poojawa-vynar/taur.svg",
  23015. extra: 1151/1059,
  23016. bottom: 356/1507
  23017. }
  23018. },
  23019. frontDressed: {
  23020. height: math.unit(5 + 11/12, "feet"),
  23021. weight: math.unit(170, "lb"),
  23022. name: "Front (Dressed)",
  23023. image: {
  23024. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23025. extra: 1735/1585,
  23026. bottom: 96/1831
  23027. }
  23028. },
  23029. backDressed: {
  23030. height: math.unit(5 + 11/12, "feet"),
  23031. weight: math.unit(170, "lb"),
  23032. name: "Back (Dressed)",
  23033. image: {
  23034. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23035. extra: 1749/1607,
  23036. bottom: 28/1777
  23037. }
  23038. },
  23039. maleDressed: {
  23040. height: math.unit(5 + 11/12, "feet"),
  23041. weight: math.unit(170, "lb"),
  23042. name: "Male (Dressed)",
  23043. image: {
  23044. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23045. extra: 1855/1713,
  23046. bottom: 63/1918
  23047. }
  23048. },
  23049. taurDressed: {
  23050. height: math.unit(5 + 11/12, "feet"),
  23051. weight: math.unit(170, "lb"),
  23052. name: "Taur (Dressed)",
  23053. image: {
  23054. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23055. extra: 1151/1059,
  23056. bottom: 356/1507
  23057. }
  23058. },
  23059. maw: {
  23060. height: math.unit(1.46, "feet"),
  23061. name: "Maw",
  23062. image: {
  23063. source: "./media/characters/poojawa-vynar/maw.svg"
  23064. }
  23065. },
  23066. head: {
  23067. height: math.unit(2.34, "feet"),
  23068. name: "Head",
  23069. image: {
  23070. source: "./media/characters/poojawa-vynar/head.svg"
  23071. }
  23072. },
  23073. paw: {
  23074. height: math.unit(1.61, "feet"),
  23075. name: "Paw",
  23076. image: {
  23077. source: "./media/characters/poojawa-vynar/paw.svg"
  23078. }
  23079. },
  23080. pawToering: {
  23081. height: math.unit(1.72, "feet"),
  23082. name: "Paw (Toering)",
  23083. image: {
  23084. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23085. }
  23086. },
  23087. toering: {
  23088. height: math.unit(2.9, "inches"),
  23089. name: "Toering",
  23090. image: {
  23091. source: "./media/characters/poojawa-vynar/toering.svg"
  23092. }
  23093. },
  23094. shaft: {
  23095. height: math.unit(0.625, "feet"),
  23096. name: "Shaft",
  23097. image: {
  23098. source: "./media/characters/poojawa-vynar/shaft.svg"
  23099. }
  23100. },
  23101. spade: {
  23102. height: math.unit(0.42, "feet"),
  23103. name: "Spade",
  23104. image: {
  23105. source: "./media/characters/poojawa-vynar/spade.svg"
  23106. }
  23107. },
  23108. },
  23109. [
  23110. {
  23111. name: "Shortstack",
  23112. height: math.unit(4, "feet")
  23113. },
  23114. {
  23115. name: "Normal",
  23116. height: math.unit(5 + 11 / 12, "feet"),
  23117. default: true
  23118. },
  23119. {
  23120. name: "Tauric",
  23121. height: math.unit(4, "meters")
  23122. },
  23123. ]
  23124. ))
  23125. characterMakers.push(() => makeCharacter(
  23126. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23127. {
  23128. front: {
  23129. height: math.unit(293, "meters"),
  23130. weight: math.unit(70400, "tons"),
  23131. name: "Front",
  23132. image: {
  23133. source: "./media/characters/violette/front.svg",
  23134. extra: 1227 / 1180,
  23135. bottom: 0.005
  23136. }
  23137. },
  23138. back: {
  23139. height: math.unit(293, "meters"),
  23140. weight: math.unit(70400, "tons"),
  23141. name: "Back",
  23142. image: {
  23143. source: "./media/characters/violette/back.svg",
  23144. extra: 1227 / 1180,
  23145. bottom: 0.005
  23146. }
  23147. },
  23148. },
  23149. [
  23150. {
  23151. name: "Macro",
  23152. height: math.unit(293, "meters"),
  23153. default: true
  23154. },
  23155. ]
  23156. ))
  23157. characterMakers.push(() => makeCharacter(
  23158. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23159. {
  23160. front: {
  23161. height: math.unit(1050, "feet"),
  23162. weight: math.unit(200000, "tons"),
  23163. name: "Front",
  23164. image: {
  23165. source: "./media/characters/alessandra/front.svg",
  23166. extra: 960 / 912,
  23167. bottom: 0.06
  23168. }
  23169. },
  23170. },
  23171. [
  23172. {
  23173. name: "Macro",
  23174. height: math.unit(1050, "feet")
  23175. },
  23176. {
  23177. name: "Macro+",
  23178. height: math.unit(900, "meters"),
  23179. default: true
  23180. },
  23181. ]
  23182. ))
  23183. characterMakers.push(() => makeCharacter(
  23184. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23185. {
  23186. front: {
  23187. height: math.unit(5, "feet"),
  23188. weight: math.unit(187, "lb"),
  23189. name: "Front",
  23190. image: {
  23191. source: "./media/characters/person/front.svg",
  23192. extra: 3087 / 2945,
  23193. bottom: 91 / 3181
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Micro",
  23200. height: math.unit(3, "inches")
  23201. },
  23202. {
  23203. name: "Normal",
  23204. height: math.unit(5, "feet"),
  23205. default: true
  23206. },
  23207. {
  23208. name: "Macro",
  23209. height: math.unit(90, "feet")
  23210. },
  23211. {
  23212. name: "Max Size",
  23213. height: math.unit(280, "feet")
  23214. },
  23215. ]
  23216. ))
  23217. characterMakers.push(() => makeCharacter(
  23218. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23219. {
  23220. front: {
  23221. height: math.unit(4.5, "meters"),
  23222. weight: math.unit(3200, "lb"),
  23223. name: "Front",
  23224. image: {
  23225. source: "./media/characters/ty/front.svg",
  23226. extra: 1038 / 960,
  23227. bottom: 31.156 / 1068
  23228. }
  23229. },
  23230. back: {
  23231. height: math.unit(4.5, "meters"),
  23232. weight: math.unit(3200, "lb"),
  23233. name: "Back",
  23234. image: {
  23235. source: "./media/characters/ty/back.svg",
  23236. extra: 1044 / 966,
  23237. bottom: 7.48 / 1049
  23238. }
  23239. },
  23240. },
  23241. [
  23242. {
  23243. name: "Normal",
  23244. height: math.unit(4.5, "meters"),
  23245. default: true
  23246. },
  23247. ]
  23248. ))
  23249. characterMakers.push(() => makeCharacter(
  23250. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23251. {
  23252. front: {
  23253. height: math.unit(5 + 4 / 12, "feet"),
  23254. weight: math.unit(115, "lb"),
  23255. name: "Front",
  23256. image: {
  23257. source: "./media/characters/rocky/front.svg",
  23258. extra: 1012 / 975,
  23259. bottom: 54 / 1066
  23260. }
  23261. },
  23262. },
  23263. [
  23264. {
  23265. name: "Normal",
  23266. height: math.unit(5 + 4 / 12, "feet"),
  23267. default: true
  23268. },
  23269. ]
  23270. ))
  23271. characterMakers.push(() => makeCharacter(
  23272. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23273. {
  23274. upright: {
  23275. height: math.unit(6, "meters"),
  23276. weight: math.unit(4000, "kg"),
  23277. name: "Upright",
  23278. image: {
  23279. source: "./media/characters/ruin/upright.svg",
  23280. extra: 668 / 661,
  23281. bottom: 42 / 799.8396
  23282. }
  23283. },
  23284. },
  23285. [
  23286. {
  23287. name: "Normal",
  23288. height: math.unit(6, "meters"),
  23289. default: true
  23290. },
  23291. ]
  23292. ))
  23293. characterMakers.push(() => makeCharacter(
  23294. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23295. {
  23296. front: {
  23297. height: math.unit(5, "feet"),
  23298. weight: math.unit(106, "lb"),
  23299. name: "Front",
  23300. image: {
  23301. source: "./media/characters/robin/front.svg",
  23302. extra: 862 / 799,
  23303. bottom: 42.4 / 914.8856
  23304. }
  23305. },
  23306. },
  23307. [
  23308. {
  23309. name: "Normal",
  23310. height: math.unit(5, "feet"),
  23311. default: true
  23312. },
  23313. ]
  23314. ))
  23315. characterMakers.push(() => makeCharacter(
  23316. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23317. {
  23318. side: {
  23319. height: math.unit(3, "feet"),
  23320. weight: math.unit(225, "lb"),
  23321. name: "Side",
  23322. image: {
  23323. source: "./media/characters/saian/side.svg",
  23324. extra: 566 / 356,
  23325. bottom: 79.7 / 643
  23326. }
  23327. },
  23328. maw: {
  23329. height: math.unit(2.85, "feet"),
  23330. name: "Maw",
  23331. image: {
  23332. source: "./media/characters/saian/maw.svg"
  23333. }
  23334. },
  23335. },
  23336. [
  23337. {
  23338. name: "Normal",
  23339. height: math.unit(3, "feet"),
  23340. default: true
  23341. },
  23342. ]
  23343. ))
  23344. characterMakers.push(() => makeCharacter(
  23345. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23346. {
  23347. side: {
  23348. height: math.unit(8, "feet"),
  23349. weight: math.unit(300, "lb"),
  23350. name: "Side",
  23351. image: {
  23352. source: "./media/characters/equus-silvermane/side.svg",
  23353. extra: 2176 / 2050,
  23354. bottom: 65.7 / 2245
  23355. }
  23356. },
  23357. front: {
  23358. height: math.unit(8, "feet"),
  23359. weight: math.unit(300, "lb"),
  23360. name: "Front",
  23361. image: {
  23362. source: "./media/characters/equus-silvermane/front.svg",
  23363. extra: 4633 / 4400,
  23364. bottom: 71.3 / 4706.915
  23365. }
  23366. },
  23367. sideStepping: {
  23368. height: math.unit(8, "feet"),
  23369. weight: math.unit(300, "lb"),
  23370. name: "Side (Stepping)",
  23371. image: {
  23372. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23373. extra: 1968 / 1860,
  23374. bottom: 16.4 / 1989
  23375. }
  23376. },
  23377. },
  23378. [
  23379. {
  23380. name: "Normal",
  23381. height: math.unit(8, "feet")
  23382. },
  23383. {
  23384. name: "Minimacro",
  23385. height: math.unit(75, "feet"),
  23386. default: true
  23387. },
  23388. {
  23389. name: "Macro",
  23390. height: math.unit(150, "feet")
  23391. },
  23392. {
  23393. name: "Macro+",
  23394. height: math.unit(1000, "feet")
  23395. },
  23396. {
  23397. name: "Megamacro",
  23398. height: math.unit(1, "mile")
  23399. },
  23400. ]
  23401. ))
  23402. characterMakers.push(() => makeCharacter(
  23403. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23404. {
  23405. side: {
  23406. height: math.unit(20, "feet"),
  23407. weight: math.unit(30000, "kg"),
  23408. name: "Side",
  23409. image: {
  23410. source: "./media/characters/windar/side.svg",
  23411. extra: 1491 / 1248,
  23412. bottom: 82.56 / 1568
  23413. }
  23414. },
  23415. },
  23416. [
  23417. {
  23418. name: "Normal",
  23419. height: math.unit(20, "feet"),
  23420. default: true
  23421. },
  23422. ]
  23423. ))
  23424. characterMakers.push(() => makeCharacter(
  23425. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23426. {
  23427. side: {
  23428. height: math.unit(15.66, "feet"),
  23429. weight: math.unit(150, "lb"),
  23430. name: "Side",
  23431. image: {
  23432. source: "./media/characters/melody/side.svg",
  23433. extra: 1097 / 944,
  23434. bottom: 11.8 / 1109
  23435. }
  23436. },
  23437. sideOutfit: {
  23438. height: math.unit(15.66, "feet"),
  23439. weight: math.unit(150, "lb"),
  23440. name: "Side (Outfit)",
  23441. image: {
  23442. source: "./media/characters/melody/side-outfit.svg",
  23443. extra: 1097 / 944,
  23444. bottom: 11.8 / 1109
  23445. }
  23446. },
  23447. },
  23448. [
  23449. {
  23450. name: "Normal",
  23451. height: math.unit(15.66, "feet"),
  23452. default: true
  23453. },
  23454. ]
  23455. ))
  23456. characterMakers.push(() => makeCharacter(
  23457. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23458. {
  23459. armoredFront: {
  23460. height: math.unit(8, "feet"),
  23461. weight: math.unit(325, "lb"),
  23462. name: "Front",
  23463. image: {
  23464. source: "./media/characters/windera/armored-front.svg",
  23465. extra: 1830/1598,
  23466. bottom: 151/1981
  23467. },
  23468. form: "armored",
  23469. default: true
  23470. },
  23471. macroFront: {
  23472. height: math.unit(70, "feet"),
  23473. weight: math.unit(315453, "lb"),
  23474. name: "Front",
  23475. image: {
  23476. source: "./media/characters/windera/macro-front.svg",
  23477. extra: 963/883,
  23478. bottom: 23/986
  23479. },
  23480. form: "macro",
  23481. default: true
  23482. },
  23483. },
  23484. [
  23485. {
  23486. name: "Normal",
  23487. height: math.unit(8, "feet"),
  23488. default: true,
  23489. form: "armored"
  23490. },
  23491. {
  23492. name: "Normal",
  23493. height: math.unit(70, "feet"),
  23494. default: true,
  23495. form: "macro"
  23496. },
  23497. ],
  23498. {
  23499. "armored": {
  23500. name: "Armored",
  23501. default: true
  23502. },
  23503. "macro": {
  23504. name: "Macro",
  23505. },
  23506. }
  23507. ))
  23508. characterMakers.push(() => makeCharacter(
  23509. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23510. {
  23511. front: {
  23512. height: math.unit(28.75, "feet"),
  23513. weight: math.unit(2000, "kg"),
  23514. name: "Front",
  23515. image: {
  23516. source: "./media/characters/sonear/front.svg",
  23517. extra: 1041.1 / 964.9,
  23518. bottom: 53.7 / 1096.6
  23519. }
  23520. },
  23521. },
  23522. [
  23523. {
  23524. name: "Normal",
  23525. height: math.unit(28.75, "feet"),
  23526. default: true
  23527. },
  23528. ]
  23529. ))
  23530. characterMakers.push(() => makeCharacter(
  23531. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23532. {
  23533. side: {
  23534. height: math.unit(25.5, "feet"),
  23535. weight: math.unit(23000, "kg"),
  23536. name: "Side",
  23537. image: {
  23538. source: "./media/characters/kanara/side.svg"
  23539. }
  23540. },
  23541. },
  23542. [
  23543. {
  23544. name: "Normal",
  23545. height: math.unit(25.5, "feet"),
  23546. default: true
  23547. },
  23548. ]
  23549. ))
  23550. characterMakers.push(() => makeCharacter(
  23551. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23552. {
  23553. side: {
  23554. height: math.unit(10, "feet"),
  23555. weight: math.unit(1000, "kg"),
  23556. name: "Side",
  23557. image: {
  23558. source: "./media/characters/ereus/side.svg",
  23559. extra: 1157 / 959,
  23560. bottom: 153 / 1312.5
  23561. }
  23562. },
  23563. },
  23564. [
  23565. {
  23566. name: "Normal",
  23567. height: math.unit(10, "feet"),
  23568. default: true
  23569. },
  23570. ]
  23571. ))
  23572. characterMakers.push(() => makeCharacter(
  23573. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23574. {
  23575. side: {
  23576. height: math.unit(4.5, "feet"),
  23577. weight: math.unit(500, "lb"),
  23578. name: "Side",
  23579. image: {
  23580. source: "./media/characters/e-ter/side.svg",
  23581. extra: 1550 / 1248,
  23582. bottom: 146 / 1694
  23583. }
  23584. },
  23585. },
  23586. [
  23587. {
  23588. name: "Normal",
  23589. height: math.unit(4.5, "feet"),
  23590. default: true
  23591. },
  23592. ]
  23593. ))
  23594. characterMakers.push(() => makeCharacter(
  23595. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23596. {
  23597. side: {
  23598. height: math.unit(9.7, "feet"),
  23599. weight: math.unit(4000, "kg"),
  23600. name: "Side",
  23601. image: {
  23602. source: "./media/characters/yamie/side.svg"
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Normal",
  23609. height: math.unit(9.7, "feet"),
  23610. default: true
  23611. },
  23612. ]
  23613. ))
  23614. characterMakers.push(() => makeCharacter(
  23615. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23616. {
  23617. front: {
  23618. height: math.unit(50, "feet"),
  23619. weight: math.unit(50000, "kg"),
  23620. name: "Front",
  23621. image: {
  23622. source: "./media/characters/anders/front.svg",
  23623. extra: 570 / 539,
  23624. bottom: 14.7 / 586.7
  23625. }
  23626. },
  23627. },
  23628. [
  23629. {
  23630. name: "Large",
  23631. height: math.unit(50, "feet")
  23632. },
  23633. {
  23634. name: "Macro",
  23635. height: math.unit(2000, "feet"),
  23636. default: true
  23637. },
  23638. {
  23639. name: "Megamacro",
  23640. height: math.unit(12, "miles")
  23641. },
  23642. ]
  23643. ))
  23644. characterMakers.push(() => makeCharacter(
  23645. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23646. {
  23647. front: {
  23648. height: math.unit(7 + 2 / 12, "feet"),
  23649. weight: math.unit(300, "lb"),
  23650. name: "Front",
  23651. image: {
  23652. source: "./media/characters/reban/front.svg",
  23653. extra: 1287/1212,
  23654. bottom: 148/1435
  23655. }
  23656. },
  23657. head: {
  23658. height: math.unit(1.95, "feet"),
  23659. name: "Head",
  23660. image: {
  23661. source: "./media/characters/reban/head.svg"
  23662. }
  23663. },
  23664. maw: {
  23665. height: math.unit(0.95, "feet"),
  23666. name: "Maw",
  23667. image: {
  23668. source: "./media/characters/reban/maw.svg"
  23669. }
  23670. },
  23671. foot: {
  23672. height: math.unit(1.65, "feet"),
  23673. name: "Foot",
  23674. image: {
  23675. source: "./media/characters/reban/foot.svg"
  23676. }
  23677. },
  23678. dick: {
  23679. height: math.unit(7 / 5, "feet"),
  23680. name: "Dick",
  23681. image: {
  23682. source: "./media/characters/reban/dick.svg"
  23683. }
  23684. },
  23685. },
  23686. [
  23687. {
  23688. name: "Natural Height",
  23689. height: math.unit(7 + 2 / 12, "feet")
  23690. },
  23691. {
  23692. name: "Macro",
  23693. height: math.unit(500, "feet"),
  23694. default: true
  23695. },
  23696. {
  23697. name: "Canon Height",
  23698. height: math.unit(50, "AU")
  23699. },
  23700. ]
  23701. ))
  23702. characterMakers.push(() => makeCharacter(
  23703. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23704. {
  23705. front: {
  23706. height: math.unit(6, "feet"),
  23707. weight: math.unit(150, "lb"),
  23708. name: "Front",
  23709. image: {
  23710. source: "./media/characters/terrance-keayes/front.svg",
  23711. extra: 1.005,
  23712. bottom: 151 / 1615
  23713. }
  23714. },
  23715. side: {
  23716. height: math.unit(6, "feet"),
  23717. weight: math.unit(150, "lb"),
  23718. name: "Side",
  23719. image: {
  23720. source: "./media/characters/terrance-keayes/side.svg",
  23721. extra: 1.005,
  23722. bottom: 129.4 / 1544
  23723. }
  23724. },
  23725. back: {
  23726. height: math.unit(6, "feet"),
  23727. weight: math.unit(150, "lb"),
  23728. name: "Back",
  23729. image: {
  23730. source: "./media/characters/terrance-keayes/back.svg",
  23731. extra: 1.005,
  23732. bottom: 58.4 / 1557.3
  23733. }
  23734. },
  23735. dick: {
  23736. height: math.unit(6 * 0.208, "feet"),
  23737. name: "Dick",
  23738. image: {
  23739. source: "./media/characters/terrance-keayes/dick.svg"
  23740. }
  23741. },
  23742. },
  23743. [
  23744. {
  23745. name: "Canon Height",
  23746. height: math.unit(35, "miles"),
  23747. default: true
  23748. },
  23749. ]
  23750. ))
  23751. characterMakers.push(() => makeCharacter(
  23752. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23753. {
  23754. front: {
  23755. height: math.unit(6, "feet"),
  23756. weight: math.unit(150, "lb"),
  23757. name: "Front",
  23758. image: {
  23759. source: "./media/characters/ofelia/front.svg",
  23760. extra: 1130/1117,
  23761. bottom: 91/1221
  23762. }
  23763. },
  23764. back: {
  23765. height: math.unit(6, "feet"),
  23766. weight: math.unit(150, "lb"),
  23767. name: "Back",
  23768. image: {
  23769. source: "./media/characters/ofelia/back.svg",
  23770. extra: 1172/1159,
  23771. bottom: 28/1200
  23772. }
  23773. },
  23774. maw: {
  23775. height: math.unit(1, "feet"),
  23776. name: "Maw",
  23777. image: {
  23778. source: "./media/characters/ofelia/maw.svg"
  23779. }
  23780. },
  23781. foot: {
  23782. height: math.unit(1.949, "feet"),
  23783. name: "Foot",
  23784. image: {
  23785. source: "./media/characters/ofelia/foot.svg"
  23786. }
  23787. },
  23788. },
  23789. [
  23790. {
  23791. name: "Canon Height",
  23792. height: math.unit(2000, "miles"),
  23793. default: true
  23794. },
  23795. ]
  23796. ))
  23797. characterMakers.push(() => makeCharacter(
  23798. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23799. {
  23800. front: {
  23801. height: math.unit(6, "feet"),
  23802. weight: math.unit(150, "lb"),
  23803. name: "Front",
  23804. image: {
  23805. source: "./media/characters/samuel/front.svg",
  23806. extra: 265 / 258,
  23807. bottom: 2 / 266.1566
  23808. }
  23809. },
  23810. },
  23811. [
  23812. {
  23813. name: "Macro",
  23814. height: math.unit(100, "feet"),
  23815. default: true
  23816. },
  23817. {
  23818. name: "Full Size",
  23819. height: math.unit(1000, "miles")
  23820. },
  23821. ]
  23822. ))
  23823. characterMakers.push(() => makeCharacter(
  23824. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23825. {
  23826. front: {
  23827. height: math.unit(6, "feet"),
  23828. weight: math.unit(300, "lb"),
  23829. name: "Front",
  23830. image: {
  23831. source: "./media/characters/beishir-kiel/front.svg",
  23832. extra: 569 / 547,
  23833. bottom: 41.9 / 609
  23834. }
  23835. },
  23836. maw: {
  23837. height: math.unit(6 * 0.202, "feet"),
  23838. name: "Maw",
  23839. image: {
  23840. source: "./media/characters/beishir-kiel/maw.svg"
  23841. }
  23842. },
  23843. },
  23844. [
  23845. {
  23846. name: "Macro",
  23847. height: math.unit(300, "feet"),
  23848. default: true
  23849. },
  23850. ]
  23851. ))
  23852. characterMakers.push(() => makeCharacter(
  23853. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23854. {
  23855. front: {
  23856. height: math.unit(5 + 7/12, "feet"),
  23857. weight: math.unit(120, "lb"),
  23858. name: "Front",
  23859. image: {
  23860. source: "./media/characters/logan-grey/front.svg",
  23861. extra: 1836/1738,
  23862. bottom: 108/1944
  23863. }
  23864. },
  23865. back: {
  23866. height: math.unit(5 + 7/12, "feet"),
  23867. weight: math.unit(120, "lb"),
  23868. name: "Back",
  23869. image: {
  23870. source: "./media/characters/logan-grey/back.svg",
  23871. extra: 1880/1794,
  23872. bottom: 24/1904
  23873. }
  23874. },
  23875. frontSfw: {
  23876. height: math.unit(5 + 7/12, "feet"),
  23877. weight: math.unit(120, "lb"),
  23878. name: "Front (SFW)",
  23879. image: {
  23880. source: "./media/characters/logan-grey/front-sfw.svg",
  23881. extra: 1836/1738,
  23882. bottom: 108/1944
  23883. }
  23884. },
  23885. backSfw: {
  23886. height: math.unit(5 + 7/12, "feet"),
  23887. weight: math.unit(120, "lb"),
  23888. name: "Back (SFW)",
  23889. image: {
  23890. source: "./media/characters/logan-grey/back-sfw.svg",
  23891. extra: 1880/1794,
  23892. bottom: 24/1904
  23893. }
  23894. },
  23895. hands: {
  23896. height: math.unit(0.84, "feet"),
  23897. name: "Hands",
  23898. image: {
  23899. source: "./media/characters/logan-grey/hands.svg"
  23900. }
  23901. },
  23902. paws: {
  23903. height: math.unit(0.72, "feet"),
  23904. name: "Paws",
  23905. image: {
  23906. source: "./media/characters/logan-grey/paws.svg"
  23907. }
  23908. },
  23909. cock: {
  23910. height: math.unit(1.45, "feet"),
  23911. name: "Cock",
  23912. image: {
  23913. source: "./media/characters/logan-grey/cock.svg"
  23914. }
  23915. },
  23916. cockAlt: {
  23917. height: math.unit(1.437, "feet"),
  23918. name: "Cock (alt)",
  23919. image: {
  23920. source: "./media/characters/logan-grey/cock-alt.svg"
  23921. }
  23922. },
  23923. },
  23924. [
  23925. {
  23926. name: "Normal",
  23927. height: math.unit(5 + 8 / 12, "feet")
  23928. },
  23929. {
  23930. name: "The 500 Foot Femboy",
  23931. height: math.unit(500, "feet"),
  23932. default: true
  23933. },
  23934. {
  23935. name: "Megmacro",
  23936. height: math.unit(20, "miles")
  23937. },
  23938. ]
  23939. ))
  23940. characterMakers.push(() => makeCharacter(
  23941. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23942. {
  23943. front: {
  23944. height: math.unit(8 + 2 / 12, "feet"),
  23945. weight: math.unit(275, "lb"),
  23946. name: "Front",
  23947. image: {
  23948. source: "./media/characters/draganta/front.svg",
  23949. extra: 1177 / 1135,
  23950. bottom: 33.46 / 1212.1
  23951. }
  23952. },
  23953. },
  23954. [
  23955. {
  23956. name: "Normal",
  23957. height: math.unit(8 + 6 / 12, "feet"),
  23958. default: true
  23959. },
  23960. {
  23961. name: "Macro",
  23962. height: math.unit(150, "feet")
  23963. },
  23964. {
  23965. name: "Megamacro",
  23966. height: math.unit(1000, "miles")
  23967. },
  23968. ]
  23969. ))
  23970. characterMakers.push(() => makeCharacter(
  23971. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23972. {
  23973. front: {
  23974. height: math.unit(1.72, "m"),
  23975. weight: math.unit(80, "lb"),
  23976. name: "Front",
  23977. image: {
  23978. source: "./media/characters/voski/front.svg",
  23979. extra: 2076.22 / 2022.4,
  23980. bottom: 102.7 / 2177.3866
  23981. }
  23982. },
  23983. frontFlaccid: {
  23984. height: math.unit(1.72, "m"),
  23985. weight: math.unit(80, "lb"),
  23986. name: "Front (Flaccid)",
  23987. image: {
  23988. source: "./media/characters/voski/front-flaccid.svg",
  23989. extra: 2076.22 / 2022.4,
  23990. bottom: 102.7 / 2177.3866
  23991. }
  23992. },
  23993. frontErect: {
  23994. height: math.unit(1.72, "m"),
  23995. weight: math.unit(80, "lb"),
  23996. name: "Front (Erect)",
  23997. image: {
  23998. source: "./media/characters/voski/front-erect.svg",
  23999. extra: 2076.22 / 2022.4,
  24000. bottom: 102.7 / 2177.3866
  24001. }
  24002. },
  24003. back: {
  24004. height: math.unit(1.72, "m"),
  24005. weight: math.unit(80, "lb"),
  24006. name: "Back",
  24007. image: {
  24008. source: "./media/characters/voski/back.svg",
  24009. extra: 2104 / 2051,
  24010. bottom: 10.45 / 2113.63
  24011. }
  24012. },
  24013. },
  24014. [
  24015. {
  24016. name: "Normal",
  24017. height: math.unit(1.72, "m")
  24018. },
  24019. {
  24020. name: "Macro",
  24021. height: math.unit(55, "m"),
  24022. default: true
  24023. },
  24024. {
  24025. name: "Macro+",
  24026. height: math.unit(300, "m")
  24027. },
  24028. {
  24029. name: "Macro++",
  24030. height: math.unit(700, "m")
  24031. },
  24032. {
  24033. name: "Macro+++",
  24034. height: math.unit(4500, "m")
  24035. },
  24036. {
  24037. name: "Macro++++",
  24038. height: math.unit(45, "km")
  24039. },
  24040. {
  24041. name: "Macro+++++",
  24042. height: math.unit(1220, "km")
  24043. },
  24044. ]
  24045. ))
  24046. characterMakers.push(() => makeCharacter(
  24047. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24048. {
  24049. front: {
  24050. height: math.unit(2.3, "m"),
  24051. weight: math.unit(304, "kg"),
  24052. name: "Front",
  24053. image: {
  24054. source: "./media/characters/icowom-lee/front.svg",
  24055. extra: 985 / 955,
  24056. bottom: 25.4 / 1012
  24057. }
  24058. },
  24059. fronttentacles: {
  24060. height: math.unit(2.3, "m"),
  24061. weight: math.unit(304, "kg"),
  24062. name: "Front-tentacles",
  24063. image: {
  24064. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24065. extra: 985 / 955,
  24066. bottom: 25.4 / 1012
  24067. }
  24068. },
  24069. back: {
  24070. height: math.unit(2.3, "m"),
  24071. weight: math.unit(304, "kg"),
  24072. name: "Back",
  24073. image: {
  24074. source: "./media/characters/icowom-lee/back.svg",
  24075. extra: 975 / 954,
  24076. bottom: 9.5 / 985
  24077. }
  24078. },
  24079. backtentacles: {
  24080. height: math.unit(2.3, "m"),
  24081. weight: math.unit(304, "kg"),
  24082. name: "Back-tentacles",
  24083. image: {
  24084. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24085. extra: 975 / 954,
  24086. bottom: 9.5 / 985
  24087. }
  24088. },
  24089. frontDressed: {
  24090. height: math.unit(2.3, "m"),
  24091. weight: math.unit(304, "kg"),
  24092. name: "Front (Dressed)",
  24093. image: {
  24094. source: "./media/characters/icowom-lee/front-dressed.svg",
  24095. extra: 3076 / 2933,
  24096. bottom: 51.4 / 3125.1889
  24097. }
  24098. },
  24099. rump: {
  24100. height: math.unit(0.776, "meters"),
  24101. name: "Rump",
  24102. image: {
  24103. source: "./media/characters/icowom-lee/rump.svg"
  24104. }
  24105. },
  24106. genitals: {
  24107. height: math.unit(0.78, "meters"),
  24108. name: "Genitals",
  24109. image: {
  24110. source: "./media/characters/icowom-lee/genitals.svg"
  24111. }
  24112. },
  24113. },
  24114. [
  24115. {
  24116. name: "Normal",
  24117. height: math.unit(2.3, "meters"),
  24118. default: true
  24119. },
  24120. {
  24121. name: "Macro",
  24122. height: math.unit(94, "meters"),
  24123. default: true
  24124. },
  24125. ]
  24126. ))
  24127. characterMakers.push(() => makeCharacter(
  24128. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24129. {
  24130. front: {
  24131. height: math.unit(22, "meters"),
  24132. weight: math.unit(21000, "kg"),
  24133. name: "Front",
  24134. image: {
  24135. source: "./media/characters/shock-diamond/front.svg",
  24136. extra: 2204 / 2053,
  24137. bottom: 65 / 2239.47
  24138. }
  24139. },
  24140. frontNude: {
  24141. height: math.unit(22, "meters"),
  24142. weight: math.unit(21000, "kg"),
  24143. name: "Front (Nude)",
  24144. image: {
  24145. source: "./media/characters/shock-diamond/front-nude.svg",
  24146. extra: 2514 / 2285,
  24147. bottom: 13 / 2527.56
  24148. }
  24149. },
  24150. },
  24151. [
  24152. {
  24153. name: "Normal",
  24154. height: math.unit(3, "meters")
  24155. },
  24156. {
  24157. name: "Macro",
  24158. height: math.unit(22, "meters"),
  24159. default: true
  24160. },
  24161. ]
  24162. ))
  24163. characterMakers.push(() => makeCharacter(
  24164. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24165. {
  24166. front: {
  24167. height: math.unit(5 + 4/12, "feet"),
  24168. weight: math.unit(125, "lb"),
  24169. name: "Front",
  24170. image: {
  24171. source: "./media/characters/rory/front.svg",
  24172. extra: 1790/1681,
  24173. bottom: 66/1856
  24174. }
  24175. },
  24176. back: {
  24177. height: math.unit(5 + 4/12, "feet"),
  24178. weight: math.unit(125, "lb"),
  24179. name: "Back",
  24180. image: {
  24181. source: "./media/characters/rory/back.svg",
  24182. extra: 1805/1690,
  24183. bottom: 56/1861
  24184. }
  24185. },
  24186. frontDressed: {
  24187. height: math.unit(5 + 4/12, "feet"),
  24188. weight: math.unit(125, "lb"),
  24189. name: "Front (Dressed)",
  24190. image: {
  24191. source: "./media/characters/rory/front-dressed.svg",
  24192. extra: 1790/1681,
  24193. bottom: 66/1856
  24194. }
  24195. },
  24196. backDressed: {
  24197. height: math.unit(5 + 4/12, "feet"),
  24198. weight: math.unit(125, "lb"),
  24199. name: "Back (Dressed)",
  24200. image: {
  24201. source: "./media/characters/rory/back-dressed.svg",
  24202. extra: 1805/1690,
  24203. bottom: 56/1861
  24204. }
  24205. },
  24206. frontNsfw: {
  24207. height: math.unit(5 + 4/12, "feet"),
  24208. weight: math.unit(125, "lb"),
  24209. name: "Front (NSFW)",
  24210. image: {
  24211. source: "./media/characters/rory/front-nsfw.svg",
  24212. extra: 1790/1681,
  24213. bottom: 66/1856
  24214. }
  24215. },
  24216. backNsfw: {
  24217. height: math.unit(5 + 4/12, "feet"),
  24218. weight: math.unit(125, "lb"),
  24219. name: "Back (NSFW)",
  24220. image: {
  24221. source: "./media/characters/rory/back-nsfw.svg",
  24222. extra: 1805/1690,
  24223. bottom: 56/1861
  24224. }
  24225. },
  24226. dick: {
  24227. height: math.unit(0.8, "feet"),
  24228. name: "Dick",
  24229. image: {
  24230. source: "./media/characters/rory/dick.svg"
  24231. }
  24232. },
  24233. },
  24234. [
  24235. {
  24236. name: "Micro",
  24237. height: math.unit(3, "inches")
  24238. },
  24239. {
  24240. name: "Normal",
  24241. height: math.unit(5 + 4/12, "feet"),
  24242. default: true
  24243. },
  24244. {
  24245. name: "Macro",
  24246. height: math.unit(90, "feet")
  24247. },
  24248. {
  24249. name: "Supercharged",
  24250. height: math.unit(270, "feet")
  24251. },
  24252. ]
  24253. ))
  24254. characterMakers.push(() => makeCharacter(
  24255. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24256. {
  24257. front: {
  24258. height: math.unit(5 + 9 / 12, "feet"),
  24259. weight: math.unit(190, "lb"),
  24260. name: "Front",
  24261. image: {
  24262. source: "./media/characters/sprisk/front.svg",
  24263. extra: 1225 / 1180,
  24264. bottom: 42.7 / 1266.4
  24265. }
  24266. },
  24267. frontNsfw: {
  24268. height: math.unit(5 + 9 / 12, "feet"),
  24269. weight: math.unit(190, "lb"),
  24270. name: "Front (NSFW)",
  24271. image: {
  24272. source: "./media/characters/sprisk/front-nsfw.svg",
  24273. extra: 1225 / 1180,
  24274. bottom: 42.7 / 1266.4
  24275. }
  24276. },
  24277. back: {
  24278. height: math.unit(5 + 9 / 12, "feet"),
  24279. weight: math.unit(190, "lb"),
  24280. name: "Back",
  24281. image: {
  24282. source: "./media/characters/sprisk/back.svg",
  24283. extra: 1247 / 1200,
  24284. bottom: 5.6 / 1253.04
  24285. }
  24286. },
  24287. },
  24288. [
  24289. {
  24290. name: "Tiny",
  24291. height: math.unit(2, "inches")
  24292. },
  24293. {
  24294. name: "Normal",
  24295. height: math.unit(5 + 9 / 12, "feet"),
  24296. default: true
  24297. },
  24298. {
  24299. name: "Mini Macro",
  24300. height: math.unit(18, "feet")
  24301. },
  24302. {
  24303. name: "Macro",
  24304. height: math.unit(100, "feet")
  24305. },
  24306. {
  24307. name: "MACRO",
  24308. height: math.unit(50, "miles")
  24309. },
  24310. {
  24311. name: "M A C R O",
  24312. height: math.unit(300, "miles")
  24313. },
  24314. ]
  24315. ))
  24316. characterMakers.push(() => makeCharacter(
  24317. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24318. {
  24319. side: {
  24320. height: math.unit(15.6, "meters"),
  24321. weight: math.unit(700000, "kg"),
  24322. name: "Side",
  24323. image: {
  24324. source: "./media/characters/bunsen/side.svg",
  24325. extra: 1644 / 358
  24326. }
  24327. },
  24328. foot: {
  24329. height: math.unit(1.611 * 1644 / 358, "meter"),
  24330. name: "Foot",
  24331. image: {
  24332. source: "./media/characters/bunsen/foot.svg"
  24333. }
  24334. },
  24335. },
  24336. [
  24337. {
  24338. name: "Small",
  24339. height: math.unit(10, "feet")
  24340. },
  24341. {
  24342. name: "Normal",
  24343. height: math.unit(15.6, "meters"),
  24344. default: true
  24345. },
  24346. ]
  24347. ))
  24348. characterMakers.push(() => makeCharacter(
  24349. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24350. {
  24351. front: {
  24352. height: math.unit(4 + 11 / 12, "feet"),
  24353. weight: math.unit(140, "lb"),
  24354. name: "Front",
  24355. image: {
  24356. source: "./media/characters/sesh/front.svg",
  24357. extra: 3420 / 3231,
  24358. bottom: 72 / 3949.5
  24359. }
  24360. },
  24361. },
  24362. [
  24363. {
  24364. name: "Normal",
  24365. height: math.unit(4 + 11 / 12, "feet")
  24366. },
  24367. {
  24368. name: "Grown",
  24369. height: math.unit(15, "feet"),
  24370. default: true
  24371. },
  24372. {
  24373. name: "Macro",
  24374. height: math.unit(1500, "feet")
  24375. },
  24376. {
  24377. name: "Megamacro",
  24378. height: math.unit(30, "miles")
  24379. },
  24380. {
  24381. name: "Continental",
  24382. height: math.unit(3000, "miles")
  24383. },
  24384. {
  24385. name: "Gravity Mass",
  24386. height: math.unit(300000, "miles")
  24387. },
  24388. {
  24389. name: "Planet Buster",
  24390. height: math.unit(30000000, "miles")
  24391. },
  24392. {
  24393. name: "Big",
  24394. height: math.unit(3000000000, "miles")
  24395. },
  24396. ]
  24397. ))
  24398. characterMakers.push(() => makeCharacter(
  24399. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24400. {
  24401. front: {
  24402. height: math.unit(9, "feet"),
  24403. weight: math.unit(350, "lb"),
  24404. name: "Front",
  24405. image: {
  24406. source: "./media/characters/pepper/front.svg",
  24407. extra: 1448 / 1312,
  24408. bottom: 9.4 / 1457.88
  24409. }
  24410. },
  24411. back: {
  24412. height: math.unit(9, "feet"),
  24413. weight: math.unit(350, "lb"),
  24414. name: "Back",
  24415. image: {
  24416. source: "./media/characters/pepper/back.svg",
  24417. extra: 1423 / 1300,
  24418. bottom: 4.6 / 1429
  24419. }
  24420. },
  24421. maw: {
  24422. height: math.unit(0.932, "feet"),
  24423. name: "Maw",
  24424. image: {
  24425. source: "./media/characters/pepper/maw.svg"
  24426. }
  24427. },
  24428. },
  24429. [
  24430. {
  24431. name: "Normal",
  24432. height: math.unit(9, "feet"),
  24433. default: true
  24434. },
  24435. ]
  24436. ))
  24437. characterMakers.push(() => makeCharacter(
  24438. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24439. {
  24440. front: {
  24441. height: math.unit(6, "feet"),
  24442. weight: math.unit(150, "lb"),
  24443. name: "Front",
  24444. image: {
  24445. source: "./media/characters/maelstrom/front.svg",
  24446. extra: 2100 / 1883,
  24447. bottom: 94 / 2196.7
  24448. }
  24449. },
  24450. },
  24451. [
  24452. {
  24453. name: "Less Kaiju",
  24454. height: math.unit(200, "feet")
  24455. },
  24456. {
  24457. name: "Kaiju",
  24458. height: math.unit(400, "feet"),
  24459. default: true
  24460. },
  24461. {
  24462. name: "Kaiju-er",
  24463. height: math.unit(600, "feet")
  24464. },
  24465. ]
  24466. ))
  24467. characterMakers.push(() => makeCharacter(
  24468. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24469. {
  24470. front: {
  24471. height: math.unit(6 + 5 / 12, "feet"),
  24472. weight: math.unit(180, "lb"),
  24473. name: "Front",
  24474. image: {
  24475. source: "./media/characters/lexir/front.svg",
  24476. extra: 180 / 172,
  24477. bottom: 12 / 192
  24478. }
  24479. },
  24480. back: {
  24481. height: math.unit(6 + 5 / 12, "feet"),
  24482. weight: math.unit(180, "lb"),
  24483. name: "Back",
  24484. image: {
  24485. source: "./media/characters/lexir/back.svg",
  24486. extra: 1273/1201,
  24487. bottom: 39/1312
  24488. }
  24489. },
  24490. },
  24491. [
  24492. {
  24493. name: "Very Smal",
  24494. height: math.unit(1, "nm")
  24495. },
  24496. {
  24497. name: "Normal",
  24498. height: math.unit(6 + 5 / 12, "feet"),
  24499. default: true
  24500. },
  24501. {
  24502. name: "Macro",
  24503. height: math.unit(1, "mile")
  24504. },
  24505. {
  24506. name: "Megamacro",
  24507. height: math.unit(50, "miles")
  24508. },
  24509. ]
  24510. ))
  24511. characterMakers.push(() => makeCharacter(
  24512. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24513. {
  24514. front: {
  24515. height: math.unit(1.5, "meters"),
  24516. weight: math.unit(100, "lb"),
  24517. name: "Front",
  24518. image: {
  24519. source: "./media/characters/maksio/front.svg",
  24520. extra: 1549 / 1531,
  24521. bottom: 123.7 / 1674.5429
  24522. }
  24523. },
  24524. back: {
  24525. height: math.unit(1.5, "meters"),
  24526. weight: math.unit(100, "lb"),
  24527. name: "Back",
  24528. image: {
  24529. source: "./media/characters/maksio/back.svg",
  24530. extra: 1541 / 1509,
  24531. bottom: 97 / 1639
  24532. }
  24533. },
  24534. hand: {
  24535. height: math.unit(0.621, "feet"),
  24536. name: "Hand",
  24537. image: {
  24538. source: "./media/characters/maksio/hand.svg"
  24539. }
  24540. },
  24541. foot: {
  24542. height: math.unit(1.611, "feet"),
  24543. name: "Foot",
  24544. image: {
  24545. source: "./media/characters/maksio/foot.svg"
  24546. }
  24547. },
  24548. },
  24549. [
  24550. {
  24551. name: "Shrunken",
  24552. height: math.unit(10, "cm")
  24553. },
  24554. {
  24555. name: "Normal",
  24556. height: math.unit(150, "cm"),
  24557. default: true
  24558. },
  24559. ]
  24560. ))
  24561. characterMakers.push(() => makeCharacter(
  24562. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24563. {
  24564. front: {
  24565. height: math.unit(100, "feet"),
  24566. name: "Front",
  24567. image: {
  24568. source: "./media/characters/erza-bear/front.svg",
  24569. extra: 2449 / 2390,
  24570. bottom: 46 / 2494
  24571. }
  24572. },
  24573. back: {
  24574. height: math.unit(100, "feet"),
  24575. name: "Back",
  24576. image: {
  24577. source: "./media/characters/erza-bear/back.svg",
  24578. extra: 2489 / 2430,
  24579. bottom: 85.4 / 2480
  24580. }
  24581. },
  24582. tail: {
  24583. height: math.unit(42, "feet"),
  24584. name: "Tail",
  24585. image: {
  24586. source: "./media/characters/erza-bear/tail.svg"
  24587. }
  24588. },
  24589. tongue: {
  24590. height: math.unit(8, "feet"),
  24591. name: "Tongue",
  24592. image: {
  24593. source: "./media/characters/erza-bear/tongue.svg"
  24594. }
  24595. },
  24596. dick: {
  24597. height: math.unit(10.5, "feet"),
  24598. name: "Dick",
  24599. image: {
  24600. source: "./media/characters/erza-bear/dick.svg"
  24601. }
  24602. },
  24603. dickVertical: {
  24604. height: math.unit(16.9, "feet"),
  24605. name: "Dick (Vertical)",
  24606. image: {
  24607. source: "./media/characters/erza-bear/dick-vertical.svg"
  24608. }
  24609. },
  24610. },
  24611. [
  24612. {
  24613. name: "Macro",
  24614. height: math.unit(100, "feet"),
  24615. default: true
  24616. },
  24617. ]
  24618. ))
  24619. characterMakers.push(() => makeCharacter(
  24620. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24621. {
  24622. front: {
  24623. height: math.unit(172, "cm"),
  24624. weight: math.unit(73, "kg"),
  24625. name: "Front",
  24626. image: {
  24627. source: "./media/characters/violet-flor/front.svg",
  24628. extra: 1530 / 1442,
  24629. bottom: 61.9 / 1588.8
  24630. }
  24631. },
  24632. back: {
  24633. height: math.unit(180, "cm"),
  24634. weight: math.unit(73, "kg"),
  24635. name: "Back",
  24636. image: {
  24637. source: "./media/characters/violet-flor/back.svg",
  24638. extra: 1692 / 1630,
  24639. bottom: 20 / 1712
  24640. }
  24641. },
  24642. },
  24643. [
  24644. {
  24645. name: "Normal",
  24646. height: math.unit(172, "cm"),
  24647. default: true
  24648. },
  24649. ]
  24650. ))
  24651. characterMakers.push(() => makeCharacter(
  24652. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24653. {
  24654. front: {
  24655. height: math.unit(6, "feet"),
  24656. weight: math.unit(220, "lb"),
  24657. name: "Front",
  24658. image: {
  24659. source: "./media/characters/lynn-rhea/front.svg",
  24660. extra: 310 / 273
  24661. }
  24662. },
  24663. back: {
  24664. height: math.unit(6, "feet"),
  24665. weight: math.unit(220, "lb"),
  24666. name: "Back",
  24667. image: {
  24668. source: "./media/characters/lynn-rhea/back.svg",
  24669. extra: 310 / 273
  24670. }
  24671. },
  24672. dicks: {
  24673. height: math.unit(0.9, "feet"),
  24674. name: "Dicks",
  24675. image: {
  24676. source: "./media/characters/lynn-rhea/dicks.svg"
  24677. }
  24678. },
  24679. slit: {
  24680. height: math.unit(0.4, "feet"),
  24681. name: "Slit",
  24682. image: {
  24683. source: "./media/characters/lynn-rhea/slit.svg"
  24684. }
  24685. },
  24686. },
  24687. [
  24688. {
  24689. name: "Micro",
  24690. height: math.unit(1, "inch")
  24691. },
  24692. {
  24693. name: "Macro",
  24694. height: math.unit(60, "feet"),
  24695. default: true
  24696. },
  24697. {
  24698. name: "Megamacro",
  24699. height: math.unit(2, "miles")
  24700. },
  24701. {
  24702. name: "Gigamacro",
  24703. height: math.unit(3, "earths")
  24704. },
  24705. {
  24706. name: "Galactic",
  24707. height: math.unit(0.8, "galaxies")
  24708. },
  24709. ]
  24710. ))
  24711. characterMakers.push(() => makeCharacter(
  24712. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24713. {
  24714. front: {
  24715. height: math.unit(1600, "feet"),
  24716. weight: math.unit(85758785169, "kg"),
  24717. name: "Front",
  24718. image: {
  24719. source: "./media/characters/valathos/front.svg",
  24720. extra: 1451 / 1339
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Macro",
  24727. height: math.unit(1600, "feet"),
  24728. default: true
  24729. },
  24730. ]
  24731. ))
  24732. characterMakers.push(() => makeCharacter(
  24733. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24734. {
  24735. front: {
  24736. height: math.unit(7 + 5 / 12, "feet"),
  24737. weight: math.unit(300, "lb"),
  24738. name: "Front",
  24739. image: {
  24740. source: "./media/characters/azula/front.svg",
  24741. extra: 3208 / 2880,
  24742. bottom: 80.2 / 3277
  24743. }
  24744. },
  24745. back: {
  24746. height: math.unit(7 + 5 / 12, "feet"),
  24747. weight: math.unit(300, "lb"),
  24748. name: "Back",
  24749. image: {
  24750. source: "./media/characters/azula/back.svg",
  24751. extra: 3169 / 2822,
  24752. bottom: 150.6 / 3321
  24753. }
  24754. },
  24755. },
  24756. [
  24757. {
  24758. name: "Normal",
  24759. height: math.unit(7 + 5 / 12, "feet"),
  24760. default: true
  24761. },
  24762. {
  24763. name: "Big",
  24764. height: math.unit(20, "feet")
  24765. },
  24766. ]
  24767. ))
  24768. characterMakers.push(() => makeCharacter(
  24769. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24770. {
  24771. front: {
  24772. height: math.unit(5 + 1 / 12, "feet"),
  24773. weight: math.unit(110, "lb"),
  24774. name: "Front",
  24775. image: {
  24776. source: "./media/characters/rupert/front.svg",
  24777. extra: 1549 / 1495,
  24778. bottom: 54.2 / 1604.4
  24779. }
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Normal",
  24785. height: math.unit(5 + 1 / 12, "feet"),
  24786. default: true
  24787. },
  24788. ]
  24789. ))
  24790. characterMakers.push(() => makeCharacter(
  24791. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24792. {
  24793. front: {
  24794. height: math.unit(8 + 4 / 12, "feet"),
  24795. weight: math.unit(350, "lb"),
  24796. name: "Front",
  24797. image: {
  24798. source: "./media/characters/sheera-castellar/front.svg",
  24799. extra: 1957 / 1894,
  24800. bottom: 26.97 / 1975.017
  24801. }
  24802. },
  24803. side: {
  24804. height: math.unit(8 + 4 / 12, "feet"),
  24805. weight: math.unit(350, "lb"),
  24806. name: "Side",
  24807. image: {
  24808. source: "./media/characters/sheera-castellar/side.svg",
  24809. extra: 1957 / 1894
  24810. }
  24811. },
  24812. back: {
  24813. height: math.unit(8 + 4 / 12, "feet"),
  24814. weight: math.unit(350, "lb"),
  24815. name: "Back",
  24816. image: {
  24817. source: "./media/characters/sheera-castellar/back.svg",
  24818. extra: 1957 / 1894
  24819. }
  24820. },
  24821. angled: {
  24822. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24823. weight: math.unit(350, "lb"),
  24824. name: "Angled",
  24825. image: {
  24826. source: "./media/characters/sheera-castellar/angled.svg",
  24827. extra: 1807 / 1707,
  24828. bottom: 68 / 1875
  24829. }
  24830. },
  24831. genitals: {
  24832. height: math.unit(2.2, "feet"),
  24833. name: "Genitals",
  24834. image: {
  24835. source: "./media/characters/sheera-castellar/genitals.svg"
  24836. }
  24837. },
  24838. taur: {
  24839. height: math.unit(10 + 6/12, "feet"),
  24840. name: "Taur",
  24841. image: {
  24842. source: "./media/characters/sheera-castellar/taur.svg",
  24843. extra: 2017/1909,
  24844. bottom: 185/2202
  24845. }
  24846. },
  24847. },
  24848. [
  24849. {
  24850. name: "Normal",
  24851. height: math.unit(8 + 4 / 12, "feet")
  24852. },
  24853. {
  24854. name: "Macro",
  24855. height: math.unit(150, "feet"),
  24856. default: true
  24857. },
  24858. {
  24859. name: "Macro+",
  24860. height: math.unit(800, "feet")
  24861. },
  24862. ]
  24863. ))
  24864. characterMakers.push(() => makeCharacter(
  24865. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24866. {
  24867. front: {
  24868. height: math.unit(6, "feet"),
  24869. weight: math.unit(150, "lb"),
  24870. name: "Front",
  24871. image: {
  24872. source: "./media/characters/jaipur/front.svg",
  24873. extra: 3860 / 3731,
  24874. bottom: 287 / 4140
  24875. }
  24876. },
  24877. back: {
  24878. height: math.unit(6, "feet"),
  24879. weight: math.unit(150, "lb"),
  24880. name: "Back",
  24881. image: {
  24882. source: "./media/characters/jaipur/back.svg",
  24883. extra: 1637/1561,
  24884. bottom: 154/1791
  24885. }
  24886. },
  24887. },
  24888. [
  24889. {
  24890. name: "Normal",
  24891. height: math.unit(1.85, "meters"),
  24892. default: true
  24893. },
  24894. {
  24895. name: "Macro",
  24896. height: math.unit(150, "meters")
  24897. },
  24898. {
  24899. name: "Macro+",
  24900. height: math.unit(0.5, "miles")
  24901. },
  24902. {
  24903. name: "Macro++",
  24904. height: math.unit(2.5, "miles")
  24905. },
  24906. {
  24907. name: "Macro+++",
  24908. height: math.unit(12, "miles")
  24909. },
  24910. {
  24911. name: "Macro++++",
  24912. height: math.unit(120, "miles")
  24913. },
  24914. {
  24915. name: "Macro+++++",
  24916. height: math.unit(1200, "miles")
  24917. },
  24918. ]
  24919. ))
  24920. characterMakers.push(() => makeCharacter(
  24921. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24922. {
  24923. front: {
  24924. height: math.unit(6, "feet"),
  24925. weight: math.unit(150, "lb"),
  24926. name: "Front",
  24927. image: {
  24928. source: "./media/characters/sheila-wolf/front.svg",
  24929. extra: 1931 / 1808,
  24930. bottom: 29.5 / 1960
  24931. }
  24932. },
  24933. dick: {
  24934. height: math.unit(1.464, "feet"),
  24935. name: "Dick",
  24936. image: {
  24937. source: "./media/characters/sheila-wolf/dick.svg"
  24938. }
  24939. },
  24940. muzzle: {
  24941. height: math.unit(0.513, "feet"),
  24942. name: "Muzzle",
  24943. image: {
  24944. source: "./media/characters/sheila-wolf/muzzle.svg"
  24945. }
  24946. },
  24947. },
  24948. [
  24949. {
  24950. name: "Macro",
  24951. height: math.unit(70, "feet"),
  24952. default: true
  24953. },
  24954. ]
  24955. ))
  24956. characterMakers.push(() => makeCharacter(
  24957. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24958. {
  24959. front: {
  24960. height: math.unit(32, "meters"),
  24961. weight: math.unit(300000, "kg"),
  24962. name: "Front",
  24963. image: {
  24964. source: "./media/characters/almor/front.svg",
  24965. extra: 1408 / 1322,
  24966. bottom: 94.6 / 1506.5
  24967. }
  24968. },
  24969. },
  24970. [
  24971. {
  24972. name: "Macro",
  24973. height: math.unit(32, "meters"),
  24974. default: true
  24975. },
  24976. ]
  24977. ))
  24978. characterMakers.push(() => makeCharacter(
  24979. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24980. {
  24981. front: {
  24982. height: math.unit(7, "feet"),
  24983. weight: math.unit(200, "lb"),
  24984. name: "Front",
  24985. image: {
  24986. source: "./media/characters/silver/front.svg",
  24987. extra: 472.1 / 450.5,
  24988. bottom: 26.5 / 499.424
  24989. }
  24990. },
  24991. },
  24992. [
  24993. {
  24994. name: "Normal",
  24995. height: math.unit(7, "feet"),
  24996. default: true
  24997. },
  24998. {
  24999. name: "Macro",
  25000. height: math.unit(800, "feet")
  25001. },
  25002. {
  25003. name: "Megamacro",
  25004. height: math.unit(250, "miles")
  25005. },
  25006. ]
  25007. ))
  25008. characterMakers.push(() => makeCharacter(
  25009. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25010. {
  25011. front: {
  25012. height: math.unit(6, "feet"),
  25013. weight: math.unit(150, "lb"),
  25014. name: "Front",
  25015. image: {
  25016. source: "./media/characters/pliskin/front.svg",
  25017. extra: 1469 / 1359,
  25018. bottom: 70 / 1540
  25019. }
  25020. },
  25021. },
  25022. [
  25023. {
  25024. name: "Micro",
  25025. height: math.unit(3, "inches")
  25026. },
  25027. {
  25028. name: "Normal",
  25029. height: math.unit(5 + 11 / 12, "feet"),
  25030. default: true
  25031. },
  25032. {
  25033. name: "Macro",
  25034. height: math.unit(120, "feet")
  25035. },
  25036. ]
  25037. ))
  25038. characterMakers.push(() => makeCharacter(
  25039. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25040. {
  25041. front: {
  25042. height: math.unit(6, "feet"),
  25043. weight: math.unit(150, "lb"),
  25044. name: "Front",
  25045. image: {
  25046. source: "./media/characters/sammy/front.svg",
  25047. extra: 1193 / 1089,
  25048. bottom: 30.5 / 1226
  25049. }
  25050. },
  25051. },
  25052. [
  25053. {
  25054. name: "Macro",
  25055. height: math.unit(1700, "feet"),
  25056. default: true
  25057. },
  25058. {
  25059. name: "Examacro",
  25060. height: math.unit(2.5e9, "lightyears")
  25061. },
  25062. ]
  25063. ))
  25064. characterMakers.push(() => makeCharacter(
  25065. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25066. {
  25067. front: {
  25068. height: math.unit(21, "meters"),
  25069. weight: math.unit(12, "tonnes"),
  25070. name: "Front",
  25071. image: {
  25072. source: "./media/characters/kuru/front.svg",
  25073. extra: 4301 / 3785,
  25074. bottom: 371.3 / 4691
  25075. }
  25076. },
  25077. },
  25078. [
  25079. {
  25080. name: "Macro",
  25081. height: math.unit(21, "meters"),
  25082. default: true
  25083. },
  25084. ]
  25085. ))
  25086. characterMakers.push(() => makeCharacter(
  25087. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25088. {
  25089. front: {
  25090. height: math.unit(23, "meters"),
  25091. weight: math.unit(12.2, "tonnes"),
  25092. name: "Front",
  25093. image: {
  25094. source: "./media/characters/rakka/front.svg",
  25095. extra: 4670 / 4169,
  25096. bottom: 301 / 4968.7
  25097. }
  25098. },
  25099. },
  25100. [
  25101. {
  25102. name: "Macro",
  25103. height: math.unit(23, "meters"),
  25104. default: true
  25105. },
  25106. ]
  25107. ))
  25108. characterMakers.push(() => makeCharacter(
  25109. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25110. {
  25111. front: {
  25112. height: math.unit(6, "feet"),
  25113. weight: math.unit(150, "lb"),
  25114. name: "Front",
  25115. image: {
  25116. source: "./media/characters/rhys-feline/front.svg",
  25117. extra: 2488 / 2308,
  25118. bottom: 35.67 / 2519.19
  25119. }
  25120. },
  25121. },
  25122. [
  25123. {
  25124. name: "Really Small",
  25125. height: math.unit(1, "nm")
  25126. },
  25127. {
  25128. name: "Micro",
  25129. height: math.unit(4, "inches")
  25130. },
  25131. {
  25132. name: "Normal",
  25133. height: math.unit(4 + 10 / 12, "feet"),
  25134. default: true
  25135. },
  25136. {
  25137. name: "Macro",
  25138. height: math.unit(100, "feet")
  25139. },
  25140. {
  25141. name: "Megamacto",
  25142. height: math.unit(50, "miles")
  25143. },
  25144. ]
  25145. ))
  25146. characterMakers.push(() => makeCharacter(
  25147. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25148. {
  25149. side: {
  25150. height: math.unit(30, "feet"),
  25151. weight: math.unit(35000, "kg"),
  25152. name: "Side",
  25153. image: {
  25154. source: "./media/characters/alydar/side.svg",
  25155. extra: 234 / 222,
  25156. bottom: 6.5 / 241
  25157. }
  25158. },
  25159. front: {
  25160. height: math.unit(30, "feet"),
  25161. weight: math.unit(35000, "kg"),
  25162. name: "Front",
  25163. image: {
  25164. source: "./media/characters/alydar/front.svg",
  25165. extra: 223.37 / 210.2,
  25166. bottom: 22.3 / 246.76
  25167. }
  25168. },
  25169. top: {
  25170. height: math.unit(64.54, "feet"),
  25171. weight: math.unit(35000, "kg"),
  25172. name: "Top",
  25173. image: {
  25174. source: "./media/characters/alydar/top.svg"
  25175. }
  25176. },
  25177. anthro: {
  25178. height: math.unit(30, "feet"),
  25179. weight: math.unit(9000, "kg"),
  25180. name: "Anthro",
  25181. image: {
  25182. source: "./media/characters/alydar/anthro.svg",
  25183. extra: 432 / 421,
  25184. bottom: 7.18 / 440
  25185. }
  25186. },
  25187. maw: {
  25188. height: math.unit(11.693, "feet"),
  25189. name: "Maw",
  25190. image: {
  25191. source: "./media/characters/alydar/maw.svg"
  25192. }
  25193. },
  25194. head: {
  25195. height: math.unit(11.693, "feet"),
  25196. name: "Head",
  25197. image: {
  25198. source: "./media/characters/alydar/head.svg"
  25199. }
  25200. },
  25201. headAlt: {
  25202. height: math.unit(12.861, "feet"),
  25203. name: "Head (Alt)",
  25204. image: {
  25205. source: "./media/characters/alydar/head-alt.svg"
  25206. }
  25207. },
  25208. wing: {
  25209. height: math.unit(20.712, "feet"),
  25210. name: "Wing",
  25211. image: {
  25212. source: "./media/characters/alydar/wing.svg"
  25213. }
  25214. },
  25215. wingFeather: {
  25216. height: math.unit(9.662, "feet"),
  25217. name: "Wing Feather",
  25218. image: {
  25219. source: "./media/characters/alydar/wing-feather.svg"
  25220. }
  25221. },
  25222. countourFeather: {
  25223. height: math.unit(4.154, "feet"),
  25224. name: "Contour Feather",
  25225. image: {
  25226. source: "./media/characters/alydar/contour-feather.svg"
  25227. }
  25228. },
  25229. },
  25230. [
  25231. {
  25232. name: "Diplomatic",
  25233. height: math.unit(13, "feet"),
  25234. default: true
  25235. },
  25236. {
  25237. name: "Small",
  25238. height: math.unit(30, "feet")
  25239. },
  25240. {
  25241. name: "Normal",
  25242. height: math.unit(95, "feet"),
  25243. default: true
  25244. },
  25245. {
  25246. name: "Large",
  25247. height: math.unit(285, "feet")
  25248. },
  25249. {
  25250. name: "Incomprehensible",
  25251. height: math.unit(450, "megameters")
  25252. },
  25253. ]
  25254. ))
  25255. characterMakers.push(() => makeCharacter(
  25256. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25257. {
  25258. side: {
  25259. height: math.unit(11, "feet"),
  25260. weight: math.unit(1750, "kg"),
  25261. name: "Side",
  25262. image: {
  25263. source: "./media/characters/selicia/side.svg",
  25264. extra: 440 / 396,
  25265. bottom: 24.8 / 465.979
  25266. }
  25267. },
  25268. maw: {
  25269. height: math.unit(4.665, "feet"),
  25270. name: "Maw",
  25271. image: {
  25272. source: "./media/characters/selicia/maw.svg"
  25273. }
  25274. },
  25275. },
  25276. [
  25277. {
  25278. name: "Normal",
  25279. height: math.unit(11, "feet"),
  25280. default: true
  25281. },
  25282. ]
  25283. ))
  25284. characterMakers.push(() => makeCharacter(
  25285. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25286. {
  25287. side: {
  25288. height: math.unit(2 + 6 / 12, "feet"),
  25289. weight: math.unit(30, "lb"),
  25290. name: "Side",
  25291. image: {
  25292. source: "./media/characters/layla/side.svg",
  25293. extra: 244 / 188,
  25294. bottom: 18.2 / 262.1
  25295. }
  25296. },
  25297. back: {
  25298. height: math.unit(2 + 6 / 12, "feet"),
  25299. weight: math.unit(30, "lb"),
  25300. name: "Back",
  25301. image: {
  25302. source: "./media/characters/layla/back.svg",
  25303. extra: 308 / 241.5,
  25304. bottom: 8.9 / 316.8
  25305. }
  25306. },
  25307. cumming: {
  25308. height: math.unit(2 + 6 / 12, "feet"),
  25309. weight: math.unit(30, "lb"),
  25310. name: "Cumming",
  25311. image: {
  25312. source: "./media/characters/layla/cumming.svg",
  25313. extra: 342 / 279,
  25314. bottom: 595 / 938
  25315. }
  25316. },
  25317. dickFlaccid: {
  25318. height: math.unit(2.595, "feet"),
  25319. name: "Flaccid Genitals",
  25320. image: {
  25321. source: "./media/characters/layla/dick-flaccid.svg"
  25322. }
  25323. },
  25324. dickErect: {
  25325. height: math.unit(2.359, "feet"),
  25326. name: "Erect Genitals",
  25327. image: {
  25328. source: "./media/characters/layla/dick-erect.svg"
  25329. }
  25330. },
  25331. dragon: {
  25332. height: math.unit(40, "feet"),
  25333. name: "Dragon",
  25334. image: {
  25335. source: "./media/characters/layla/dragon.svg",
  25336. extra: 610/535,
  25337. bottom: 367/977
  25338. }
  25339. },
  25340. taur: {
  25341. height: math.unit(30, "feet"),
  25342. name: "Taur",
  25343. image: {
  25344. source: "./media/characters/layla/taur.svg",
  25345. extra: 1268/1199,
  25346. bottom: 112/1380
  25347. }
  25348. },
  25349. },
  25350. [
  25351. {
  25352. name: "Micro",
  25353. height: math.unit(1, "inch")
  25354. },
  25355. {
  25356. name: "Small",
  25357. height: math.unit(1, "foot")
  25358. },
  25359. {
  25360. name: "Normal",
  25361. height: math.unit(2 + 6 / 12, "feet"),
  25362. default: true
  25363. },
  25364. {
  25365. name: "Macro",
  25366. height: math.unit(200, "feet")
  25367. },
  25368. {
  25369. name: "Megamacro",
  25370. height: math.unit(1000, "miles")
  25371. },
  25372. {
  25373. name: "Planetary",
  25374. height: math.unit(8000, "miles")
  25375. },
  25376. {
  25377. name: "True Layla",
  25378. height: math.unit(200000 * 7, "multiverses")
  25379. },
  25380. ]
  25381. ))
  25382. characterMakers.push(() => makeCharacter(
  25383. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25384. {
  25385. back: {
  25386. height: math.unit(10.5, "feet"),
  25387. weight: math.unit(800, "lb"),
  25388. name: "Back",
  25389. image: {
  25390. source: "./media/characters/knox/back.svg",
  25391. extra: 1486 / 1089,
  25392. bottom: 107 / 1601.4
  25393. }
  25394. },
  25395. side: {
  25396. height: math.unit(10.5, "feet"),
  25397. weight: math.unit(800, "lb"),
  25398. name: "Side",
  25399. image: {
  25400. source: "./media/characters/knox/side.svg",
  25401. extra: 244 / 218,
  25402. bottom: 14 / 260
  25403. }
  25404. },
  25405. },
  25406. [
  25407. {
  25408. name: "Compact",
  25409. height: math.unit(10.5, "feet"),
  25410. default: true
  25411. },
  25412. {
  25413. name: "Dynamax",
  25414. height: math.unit(210, "feet")
  25415. },
  25416. {
  25417. name: "Full Macro",
  25418. height: math.unit(850, "feet")
  25419. },
  25420. ]
  25421. ))
  25422. characterMakers.push(() => makeCharacter(
  25423. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25424. {
  25425. front: {
  25426. height: math.unit(28, "feet"),
  25427. weight: math.unit(10500, "lb"),
  25428. name: "Front",
  25429. image: {
  25430. source: "./media/characters/kayda/front.svg",
  25431. extra: 1536 / 1428,
  25432. bottom: 68.7 / 1603
  25433. }
  25434. },
  25435. back: {
  25436. height: math.unit(28, "feet"),
  25437. weight: math.unit(10500, "lb"),
  25438. name: "Back",
  25439. image: {
  25440. source: "./media/characters/kayda/back.svg",
  25441. extra: 1557 / 1464,
  25442. bottom: 39.5 / 1597.49
  25443. }
  25444. },
  25445. dick: {
  25446. height: math.unit(3.858, "feet"),
  25447. name: "Dick",
  25448. image: {
  25449. source: "./media/characters/kayda/dick.svg"
  25450. }
  25451. },
  25452. },
  25453. [
  25454. {
  25455. name: "Macro",
  25456. height: math.unit(28, "feet"),
  25457. default: true
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25463. {
  25464. front: {
  25465. height: math.unit(10 + 11 / 12, "feet"),
  25466. weight: math.unit(1400, "lb"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/brian/front.svg",
  25470. extra: 737 / 692,
  25471. bottom: 55.4 / 785
  25472. }
  25473. },
  25474. },
  25475. [
  25476. {
  25477. name: "Normal",
  25478. height: math.unit(10 + 11 / 12, "feet"),
  25479. default: true
  25480. },
  25481. ]
  25482. ))
  25483. characterMakers.push(() => makeCharacter(
  25484. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25485. {
  25486. front: {
  25487. height: math.unit(5 + 8 / 12, "feet"),
  25488. weight: math.unit(140, "lb"),
  25489. name: "Front",
  25490. image: {
  25491. source: "./media/characters/khemri/front.svg",
  25492. extra: 4780 / 4059,
  25493. bottom: 80.1 / 4859.25
  25494. }
  25495. },
  25496. },
  25497. [
  25498. {
  25499. name: "Micro",
  25500. height: math.unit(6, "inches")
  25501. },
  25502. {
  25503. name: "Normal",
  25504. height: math.unit(5 + 8 / 12, "feet"),
  25505. default: true
  25506. },
  25507. ]
  25508. ))
  25509. characterMakers.push(() => makeCharacter(
  25510. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25511. {
  25512. front: {
  25513. height: math.unit(13, "feet"),
  25514. weight: math.unit(1700, "lb"),
  25515. name: "Front",
  25516. image: {
  25517. source: "./media/characters/felix-braveheart/front.svg",
  25518. extra: 1222 / 1157,
  25519. bottom: 53.2 / 1280
  25520. }
  25521. },
  25522. back: {
  25523. height: math.unit(13, "feet"),
  25524. weight: math.unit(1700, "lb"),
  25525. name: "Back",
  25526. image: {
  25527. source: "./media/characters/felix-braveheart/back.svg",
  25528. extra: 1277 / 1203,
  25529. bottom: 50.2 / 1327
  25530. }
  25531. },
  25532. feral: {
  25533. height: math.unit(6, "feet"),
  25534. weight: math.unit(400, "lb"),
  25535. name: "Feral",
  25536. image: {
  25537. source: "./media/characters/felix-braveheart/feral.svg",
  25538. extra: 682 / 625,
  25539. bottom: 6.9 / 688
  25540. }
  25541. },
  25542. },
  25543. [
  25544. {
  25545. name: "Normal",
  25546. height: math.unit(13, "feet"),
  25547. default: true
  25548. },
  25549. ]
  25550. ))
  25551. characterMakers.push(() => makeCharacter(
  25552. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25553. {
  25554. side: {
  25555. height: math.unit(5 + 11 / 12, "feet"),
  25556. weight: math.unit(1400, "lb"),
  25557. name: "Side",
  25558. image: {
  25559. source: "./media/characters/shadow-blade/side.svg",
  25560. extra: 1726 / 1267,
  25561. bottom: 58.4 / 1785
  25562. }
  25563. },
  25564. },
  25565. [
  25566. {
  25567. name: "Normal",
  25568. height: math.unit(5 + 11 / 12, "feet"),
  25569. default: true
  25570. },
  25571. ]
  25572. ))
  25573. characterMakers.push(() => makeCharacter(
  25574. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25575. {
  25576. front: {
  25577. height: math.unit(1 + 6 / 12, "feet"),
  25578. weight: math.unit(25, "lb"),
  25579. name: "Front",
  25580. image: {
  25581. source: "./media/characters/karla-halldor/front.svg",
  25582. extra: 1459 / 1383,
  25583. bottom: 12 / 1472
  25584. }
  25585. },
  25586. },
  25587. [
  25588. {
  25589. name: "Normal",
  25590. height: math.unit(1 + 6 / 12, "feet"),
  25591. default: true
  25592. },
  25593. ]
  25594. ))
  25595. characterMakers.push(() => makeCharacter(
  25596. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25597. {
  25598. front: {
  25599. height: math.unit(6 + 2 / 12, "feet"),
  25600. weight: math.unit(160, "lb"),
  25601. name: "Front",
  25602. image: {
  25603. source: "./media/characters/ariam/front.svg",
  25604. extra: 1073/976,
  25605. bottom: 52/1125
  25606. }
  25607. },
  25608. back: {
  25609. height: math.unit(6 + 2/12, "feet"),
  25610. weight: math.unit(160, "lb"),
  25611. name: "Back",
  25612. image: {
  25613. source: "./media/characters/ariam/back.svg",
  25614. extra: 1103/1023,
  25615. bottom: 9/1112
  25616. }
  25617. },
  25618. dressed: {
  25619. height: math.unit(6 + 2/12, "feet"),
  25620. weight: math.unit(160, "lb"),
  25621. name: "Dressed",
  25622. image: {
  25623. source: "./media/characters/ariam/dressed.svg",
  25624. extra: 1099/1009,
  25625. bottom: 25/1124
  25626. }
  25627. },
  25628. squatting: {
  25629. height: math.unit(4.1, "feet"),
  25630. weight: math.unit(160, "lb"),
  25631. name: "Squatting",
  25632. image: {
  25633. source: "./media/characters/ariam/squatting.svg",
  25634. extra: 2617 / 2112,
  25635. bottom: 61.2 / 2681,
  25636. }
  25637. },
  25638. },
  25639. [
  25640. {
  25641. name: "Normal",
  25642. height: math.unit(6 + 2 / 12, "feet"),
  25643. default: true
  25644. },
  25645. {
  25646. name: "Normal+",
  25647. height: math.unit(4, "meters")
  25648. },
  25649. {
  25650. name: "Macro",
  25651. height: math.unit(50, "meters")
  25652. },
  25653. {
  25654. name: "Macro+",
  25655. height: math.unit(100, "meters")
  25656. },
  25657. {
  25658. name: "Megamacro",
  25659. height: math.unit(20, "km")
  25660. },
  25661. {
  25662. name: "Caretaker",
  25663. height: math.unit(444, "megameters")
  25664. },
  25665. ]
  25666. ))
  25667. characterMakers.push(() => makeCharacter(
  25668. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25669. {
  25670. front: {
  25671. height: math.unit(1.67, "meters"),
  25672. weight: math.unit(140, "lb"),
  25673. name: "Front",
  25674. image: {
  25675. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25676. extra: 438 / 410,
  25677. bottom: 0.75 / 439
  25678. }
  25679. },
  25680. },
  25681. [
  25682. {
  25683. name: "Shrunken",
  25684. height: math.unit(7.6, "cm")
  25685. },
  25686. {
  25687. name: "Human Scale",
  25688. height: math.unit(1.67, "meters")
  25689. },
  25690. {
  25691. name: "Wolxi Scale",
  25692. height: math.unit(36.7, "meters"),
  25693. default: true
  25694. },
  25695. ]
  25696. ))
  25697. characterMakers.push(() => makeCharacter(
  25698. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25699. {
  25700. front: {
  25701. height: math.unit(1.73, "meters"),
  25702. weight: math.unit(240, "lb"),
  25703. name: "Front",
  25704. image: {
  25705. source: "./media/characters/izue-two-mothers/front.svg",
  25706. extra: 469 / 437,
  25707. bottom: 1.24 / 470.6
  25708. }
  25709. },
  25710. },
  25711. [
  25712. {
  25713. name: "Shrunken",
  25714. height: math.unit(7.86, "cm")
  25715. },
  25716. {
  25717. name: "Human Scale",
  25718. height: math.unit(1.73, "meters")
  25719. },
  25720. {
  25721. name: "Wolxi Scale",
  25722. height: math.unit(38, "meters"),
  25723. default: true
  25724. },
  25725. ]
  25726. ))
  25727. characterMakers.push(() => makeCharacter(
  25728. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25729. {
  25730. front: {
  25731. height: math.unit(1.55, "meters"),
  25732. weight: math.unit(120, "lb"),
  25733. name: "Front",
  25734. image: {
  25735. source: "./media/characters/teeku-love-shack/front.svg",
  25736. extra: 387 / 362,
  25737. bottom: 1.51 / 388
  25738. }
  25739. },
  25740. },
  25741. [
  25742. {
  25743. name: "Shrunken",
  25744. height: math.unit(7, "cm")
  25745. },
  25746. {
  25747. name: "Human Scale",
  25748. height: math.unit(1.55, "meters")
  25749. },
  25750. {
  25751. name: "Wolxi Scale",
  25752. height: math.unit(34.1, "meters"),
  25753. default: true
  25754. },
  25755. ]
  25756. ))
  25757. characterMakers.push(() => makeCharacter(
  25758. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25759. {
  25760. front: {
  25761. height: math.unit(1.83, "meters"),
  25762. weight: math.unit(135, "lb"),
  25763. name: "Front",
  25764. image: {
  25765. source: "./media/characters/dejma-the-red/front.svg",
  25766. extra: 480 / 458,
  25767. bottom: 1.8 / 482
  25768. }
  25769. },
  25770. },
  25771. [
  25772. {
  25773. name: "Shrunken",
  25774. height: math.unit(8.3, "cm")
  25775. },
  25776. {
  25777. name: "Human Scale",
  25778. height: math.unit(1.83, "meters")
  25779. },
  25780. {
  25781. name: "Wolxi Scale",
  25782. height: math.unit(40, "meters"),
  25783. default: true
  25784. },
  25785. ]
  25786. ))
  25787. characterMakers.push(() => makeCharacter(
  25788. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25789. {
  25790. front: {
  25791. height: math.unit(1.78, "meters"),
  25792. weight: math.unit(65, "kg"),
  25793. name: "Front",
  25794. image: {
  25795. source: "./media/characters/aki/front.svg",
  25796. extra: 452 / 415
  25797. }
  25798. },
  25799. frontNsfw: {
  25800. height: math.unit(1.78, "meters"),
  25801. weight: math.unit(65, "kg"),
  25802. name: "Front (NSFW)",
  25803. image: {
  25804. source: "./media/characters/aki/front-nsfw.svg",
  25805. extra: 452 / 415
  25806. }
  25807. },
  25808. back: {
  25809. height: math.unit(1.78, "meters"),
  25810. weight: math.unit(65, "kg"),
  25811. name: "Back",
  25812. image: {
  25813. source: "./media/characters/aki/back.svg",
  25814. extra: 452 / 415
  25815. }
  25816. },
  25817. rump: {
  25818. height: math.unit(2.05, "feet"),
  25819. name: "Rump",
  25820. image: {
  25821. source: "./media/characters/aki/rump.svg"
  25822. }
  25823. },
  25824. dick: {
  25825. height: math.unit(0.95, "feet"),
  25826. name: "Dick",
  25827. image: {
  25828. source: "./media/characters/aki/dick.svg"
  25829. }
  25830. },
  25831. },
  25832. [
  25833. {
  25834. name: "Micro",
  25835. height: math.unit(15, "cm")
  25836. },
  25837. {
  25838. name: "Normal",
  25839. height: math.unit(178, "cm"),
  25840. default: true
  25841. },
  25842. {
  25843. name: "Macro",
  25844. height: math.unit(214, "m")
  25845. },
  25846. {
  25847. name: "Macro+",
  25848. height: math.unit(534, "m")
  25849. },
  25850. ]
  25851. ))
  25852. characterMakers.push(() => makeCharacter(
  25853. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25854. {
  25855. front: {
  25856. height: math.unit(5 + 5 / 12, "feet"),
  25857. weight: math.unit(120, "lb"),
  25858. name: "Front",
  25859. image: {
  25860. source: "./media/characters/ari/front.svg",
  25861. extra: 1550/1471,
  25862. bottom: 39/1589
  25863. }
  25864. },
  25865. },
  25866. [
  25867. {
  25868. name: "Normal",
  25869. height: math.unit(5 + 5 / 12, "feet")
  25870. },
  25871. {
  25872. name: "Macro",
  25873. height: math.unit(100, "feet"),
  25874. default: true
  25875. },
  25876. {
  25877. name: "Megamacro",
  25878. height: math.unit(100, "miles")
  25879. },
  25880. {
  25881. name: "Gigamacro",
  25882. height: math.unit(80000, "miles")
  25883. },
  25884. ]
  25885. ))
  25886. characterMakers.push(() => makeCharacter(
  25887. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25888. {
  25889. side: {
  25890. height: math.unit(9, "feet"),
  25891. weight: math.unit(400, "kg"),
  25892. name: "Side",
  25893. image: {
  25894. source: "./media/characters/bolt/side.svg",
  25895. extra: 1126 / 896,
  25896. bottom: 60 / 1187.3,
  25897. }
  25898. },
  25899. },
  25900. [
  25901. {
  25902. name: "Micro",
  25903. height: math.unit(5, "inches")
  25904. },
  25905. {
  25906. name: "Normal",
  25907. height: math.unit(9, "feet"),
  25908. default: true
  25909. },
  25910. {
  25911. name: "Macro",
  25912. height: math.unit(700, "feet")
  25913. },
  25914. {
  25915. name: "Max Size",
  25916. height: math.unit(1.52e22, "yottameters")
  25917. },
  25918. ]
  25919. ))
  25920. characterMakers.push(() => makeCharacter(
  25921. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25922. {
  25923. front: {
  25924. height: math.unit(4.3, "meters"),
  25925. weight: math.unit(3, "tons"),
  25926. name: "Front",
  25927. image: {
  25928. source: "./media/characters/draekon-sylviar/front.svg",
  25929. extra: 2072/1512,
  25930. bottom: 74/2146
  25931. }
  25932. },
  25933. back: {
  25934. height: math.unit(4.3, "meters"),
  25935. weight: math.unit(3, "tons"),
  25936. name: "Back",
  25937. image: {
  25938. source: "./media/characters/draekon-sylviar/back.svg",
  25939. extra: 1639/1483,
  25940. bottom: 41/1680
  25941. }
  25942. },
  25943. feral: {
  25944. height: math.unit(1.15, "meters"),
  25945. weight: math.unit(3, "tons"),
  25946. name: "Feral",
  25947. image: {
  25948. source: "./media/characters/draekon-sylviar/feral.svg",
  25949. extra: 1033/395,
  25950. bottom: 130/1163
  25951. }
  25952. },
  25953. maw: {
  25954. height: math.unit(1.3, "meters"),
  25955. name: "Maw",
  25956. image: {
  25957. source: "./media/characters/draekon-sylviar/maw.svg"
  25958. }
  25959. },
  25960. mawSeparated: {
  25961. height: math.unit(1.53, "meters"),
  25962. name: "Separated Maw",
  25963. image: {
  25964. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25965. }
  25966. },
  25967. tail: {
  25968. height: math.unit(1.15, "meters"),
  25969. name: "Tail",
  25970. image: {
  25971. source: "./media/characters/draekon-sylviar/tail.svg"
  25972. }
  25973. },
  25974. tailDick: {
  25975. height: math.unit(1.15, "meters"),
  25976. name: "Tail (Dick)",
  25977. image: {
  25978. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25979. }
  25980. },
  25981. tailDickSeparated: {
  25982. height: math.unit(1.19, "meters"),
  25983. name: "Tail (Separated Dick)",
  25984. image: {
  25985. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25986. }
  25987. },
  25988. slit: {
  25989. height: math.unit(1, "meters"),
  25990. name: "Slit",
  25991. image: {
  25992. source: "./media/characters/draekon-sylviar/slit.svg"
  25993. }
  25994. },
  25995. dick: {
  25996. height: math.unit(1.15, "meters"),
  25997. name: "Dick",
  25998. image: {
  25999. source: "./media/characters/draekon-sylviar/dick.svg"
  26000. }
  26001. },
  26002. dickSeparated: {
  26003. height: math.unit(1.1, "meters"),
  26004. name: "Separated Dick",
  26005. image: {
  26006. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26007. }
  26008. },
  26009. sheath: {
  26010. height: math.unit(1.15, "meters"),
  26011. name: "Sheath",
  26012. image: {
  26013. source: "./media/characters/draekon-sylviar/sheath.svg"
  26014. }
  26015. },
  26016. },
  26017. [
  26018. {
  26019. name: "Small",
  26020. height: math.unit(4.53 / 2, "meters"),
  26021. default: true
  26022. },
  26023. {
  26024. name: "Normal",
  26025. height: math.unit(4.53, "meters"),
  26026. default: true
  26027. },
  26028. {
  26029. name: "Large",
  26030. height: math.unit(4.53 * 2, "meters"),
  26031. },
  26032. ]
  26033. ))
  26034. characterMakers.push(() => makeCharacter(
  26035. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26036. {
  26037. front: {
  26038. height: math.unit(6 + 2 / 12, "feet"),
  26039. weight: math.unit(180, "lb"),
  26040. name: "Front",
  26041. image: {
  26042. source: "./media/characters/brawler/front.svg",
  26043. extra: 3301 / 3027,
  26044. bottom: 138 / 3439
  26045. }
  26046. },
  26047. },
  26048. [
  26049. {
  26050. name: "Normal",
  26051. height: math.unit(6 + 2 / 12, "feet"),
  26052. default: true
  26053. },
  26054. ]
  26055. ))
  26056. characterMakers.push(() => makeCharacter(
  26057. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26058. {
  26059. front: {
  26060. height: math.unit(11, "feet"),
  26061. weight: math.unit(1000, "lb"),
  26062. name: "Front",
  26063. image: {
  26064. source: "./media/characters/alex/front.svg",
  26065. bottom: 44.5 / 620
  26066. }
  26067. },
  26068. },
  26069. [
  26070. {
  26071. name: "Micro",
  26072. height: math.unit(5, "inches")
  26073. },
  26074. {
  26075. name: "Normal",
  26076. height: math.unit(11, "feet"),
  26077. default: true
  26078. },
  26079. {
  26080. name: "Macro",
  26081. height: math.unit(9.5e9, "feet")
  26082. },
  26083. {
  26084. name: "Max Size",
  26085. height: math.unit(1.4e283, "yottameters")
  26086. },
  26087. ]
  26088. ))
  26089. characterMakers.push(() => makeCharacter(
  26090. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26091. {
  26092. female: {
  26093. height: math.unit(29.9, "m"),
  26094. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26095. name: "Female",
  26096. image: {
  26097. source: "./media/characters/zenari/female.svg",
  26098. extra: 3281.6 / 3217,
  26099. bottom: 72.2 / 3353
  26100. }
  26101. },
  26102. male: {
  26103. height: math.unit(27.7, "m"),
  26104. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26105. name: "Male",
  26106. image: {
  26107. source: "./media/characters/zenari/male.svg",
  26108. extra: 3008 / 2991,
  26109. bottom: 54.6 / 3069
  26110. }
  26111. },
  26112. },
  26113. [
  26114. {
  26115. name: "Macro",
  26116. height: math.unit(29.7, "meters"),
  26117. default: true
  26118. },
  26119. ]
  26120. ))
  26121. characterMakers.push(() => makeCharacter(
  26122. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26123. {
  26124. female: {
  26125. height: math.unit(23.8, "m"),
  26126. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26127. name: "Female",
  26128. image: {
  26129. source: "./media/characters/mactarian/female.svg",
  26130. extra: 2662 / 2569,
  26131. bottom: 73 / 2736
  26132. }
  26133. },
  26134. male: {
  26135. height: math.unit(23.8, "m"),
  26136. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26137. name: "Male",
  26138. image: {
  26139. source: "./media/characters/mactarian/male.svg",
  26140. extra: 2673 / 2600,
  26141. bottom: 76 / 2750
  26142. }
  26143. },
  26144. },
  26145. [
  26146. {
  26147. name: "Macro",
  26148. height: math.unit(23.8, "meters"),
  26149. default: true
  26150. },
  26151. ]
  26152. ))
  26153. characterMakers.push(() => makeCharacter(
  26154. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26155. {
  26156. female: {
  26157. height: math.unit(19.3, "m"),
  26158. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26159. name: "Female",
  26160. image: {
  26161. source: "./media/characters/umok/female.svg",
  26162. extra: 2186 / 2078,
  26163. bottom: 87 / 2277
  26164. }
  26165. },
  26166. male: {
  26167. height: math.unit(19.5, "m"),
  26168. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26169. name: "Male",
  26170. image: {
  26171. source: "./media/characters/umok/male.svg",
  26172. extra: 2233 / 2140,
  26173. bottom: 24.4 / 2258
  26174. }
  26175. },
  26176. },
  26177. [
  26178. {
  26179. name: "Macro",
  26180. height: math.unit(19.3, "meters"),
  26181. default: true
  26182. },
  26183. ]
  26184. ))
  26185. characterMakers.push(() => makeCharacter(
  26186. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26187. {
  26188. female: {
  26189. height: math.unit(26.15, "m"),
  26190. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26191. name: "Female",
  26192. image: {
  26193. source: "./media/characters/joraxian/female.svg",
  26194. extra: 2912 / 2824,
  26195. bottom: 36 / 2956
  26196. }
  26197. },
  26198. male: {
  26199. height: math.unit(25.4, "m"),
  26200. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26201. name: "Male",
  26202. image: {
  26203. source: "./media/characters/joraxian/male.svg",
  26204. extra: 2877 / 2721,
  26205. bottom: 82 / 2967
  26206. }
  26207. },
  26208. },
  26209. [
  26210. {
  26211. name: "Macro",
  26212. height: math.unit(26.15, "meters"),
  26213. default: true
  26214. },
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26219. {
  26220. female: {
  26221. height: math.unit(21.6, "m"),
  26222. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26223. name: "Female",
  26224. image: {
  26225. source: "./media/characters/sthara/female.svg",
  26226. extra: 2516 / 2347,
  26227. bottom: 21.5 / 2537
  26228. }
  26229. },
  26230. male: {
  26231. height: math.unit(24, "m"),
  26232. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26233. name: "Male",
  26234. image: {
  26235. source: "./media/characters/sthara/male.svg",
  26236. extra: 2732 / 2607,
  26237. bottom: 23 / 2732
  26238. }
  26239. },
  26240. },
  26241. [
  26242. {
  26243. name: "Macro",
  26244. height: math.unit(21.6, "meters"),
  26245. default: true
  26246. },
  26247. ]
  26248. ))
  26249. characterMakers.push(() => makeCharacter(
  26250. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26251. {
  26252. front: {
  26253. height: math.unit(6 + 4 / 12, "feet"),
  26254. weight: math.unit(175, "lb"),
  26255. name: "Front",
  26256. image: {
  26257. source: "./media/characters/luka-bryzant/front.svg",
  26258. extra: 311 / 289,
  26259. bottom: 4 / 315
  26260. }
  26261. },
  26262. back: {
  26263. height: math.unit(6 + 4 / 12, "feet"),
  26264. weight: math.unit(175, "lb"),
  26265. name: "Back",
  26266. image: {
  26267. source: "./media/characters/luka-bryzant/back.svg",
  26268. extra: 311 / 289,
  26269. bottom: 3.8 / 313.7
  26270. }
  26271. },
  26272. },
  26273. [
  26274. {
  26275. name: "Micro",
  26276. height: math.unit(10, "inches")
  26277. },
  26278. {
  26279. name: "Normal",
  26280. height: math.unit(6 + 4 / 12, "feet"),
  26281. default: true
  26282. },
  26283. {
  26284. name: "Large",
  26285. height: math.unit(12, "feet")
  26286. },
  26287. ]
  26288. ))
  26289. characterMakers.push(() => makeCharacter(
  26290. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26291. {
  26292. front: {
  26293. height: math.unit(5 + 7 / 12, "feet"),
  26294. weight: math.unit(185, "lb"),
  26295. name: "Front",
  26296. image: {
  26297. source: "./media/characters/aman-aquila/front.svg",
  26298. extra: 1013 / 976,
  26299. bottom: 45.6 / 1057
  26300. }
  26301. },
  26302. side: {
  26303. height: math.unit(5 + 7 / 12, "feet"),
  26304. weight: math.unit(185, "lb"),
  26305. name: "Side",
  26306. image: {
  26307. source: "./media/characters/aman-aquila/side.svg",
  26308. extra: 1054 / 1011,
  26309. bottom: 15 / 1070
  26310. }
  26311. },
  26312. back: {
  26313. height: math.unit(5 + 7 / 12, "feet"),
  26314. weight: math.unit(185, "lb"),
  26315. name: "Back",
  26316. image: {
  26317. source: "./media/characters/aman-aquila/back.svg",
  26318. extra: 1026 / 970,
  26319. bottom: 12 / 1039
  26320. }
  26321. },
  26322. head: {
  26323. height: math.unit(1.211, "feet"),
  26324. name: "Head",
  26325. image: {
  26326. source: "./media/characters/aman-aquila/head.svg",
  26327. }
  26328. },
  26329. },
  26330. [
  26331. {
  26332. name: "Minimicro",
  26333. height: math.unit(0.057, "inches")
  26334. },
  26335. {
  26336. name: "Micro",
  26337. height: math.unit(7, "inches")
  26338. },
  26339. {
  26340. name: "Mini",
  26341. height: math.unit(3 + 7 / 12, "feet")
  26342. },
  26343. {
  26344. name: "Normal",
  26345. height: math.unit(5 + 7 / 12, "feet"),
  26346. default: true
  26347. },
  26348. {
  26349. name: "Macro",
  26350. height: math.unit(157 + 7 / 12, "feet")
  26351. },
  26352. {
  26353. name: "Megamacro",
  26354. height: math.unit(1557 + 7 / 12, "feet")
  26355. },
  26356. {
  26357. name: "Gigamacro",
  26358. height: math.unit(15557 + 7 / 12, "feet")
  26359. },
  26360. ]
  26361. ))
  26362. characterMakers.push(() => makeCharacter(
  26363. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26364. {
  26365. front: {
  26366. height: math.unit(3 + 2 / 12, "inches"),
  26367. weight: math.unit(0.3, "ounces"),
  26368. name: "Front",
  26369. image: {
  26370. source: "./media/characters/hiphae/front.svg",
  26371. extra: 1931 / 1683,
  26372. bottom: 24 / 1955
  26373. }
  26374. },
  26375. },
  26376. [
  26377. {
  26378. name: "Normal",
  26379. height: math.unit(3 + 1 / 2, "inches"),
  26380. default: true
  26381. },
  26382. ]
  26383. ))
  26384. characterMakers.push(() => makeCharacter(
  26385. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26386. {
  26387. front: {
  26388. height: math.unit(5 + 10 / 12, "feet"),
  26389. weight: math.unit(165, "lb"),
  26390. name: "Front",
  26391. image: {
  26392. source: "./media/characters/nicky/front.svg",
  26393. extra: 3144 / 2886,
  26394. bottom: 45.6 / 3192
  26395. }
  26396. },
  26397. back: {
  26398. height: math.unit(5 + 10 / 12, "feet"),
  26399. weight: math.unit(165, "lb"),
  26400. name: "Back",
  26401. image: {
  26402. source: "./media/characters/nicky/back.svg",
  26403. extra: 3055 / 2804,
  26404. bottom: 28.4 / 3087
  26405. }
  26406. },
  26407. frontclothed: {
  26408. height: math.unit(5 + 10 / 12, "feet"),
  26409. weight: math.unit(165, "lb"),
  26410. name: "Front-clothed",
  26411. image: {
  26412. source: "./media/characters/nicky/front-clothed.svg",
  26413. extra: 3184.9 / 2926.9,
  26414. bottom: 86.5 / 3239.9
  26415. }
  26416. },
  26417. foot: {
  26418. height: math.unit(1.16, "feet"),
  26419. name: "Foot",
  26420. image: {
  26421. source: "./media/characters/nicky/foot.svg"
  26422. }
  26423. },
  26424. feet: {
  26425. height: math.unit(1.34, "feet"),
  26426. name: "Feet",
  26427. image: {
  26428. source: "./media/characters/nicky/feet.svg"
  26429. }
  26430. },
  26431. maw: {
  26432. height: math.unit(0.9, "feet"),
  26433. name: "Maw",
  26434. image: {
  26435. source: "./media/characters/nicky/maw.svg"
  26436. }
  26437. },
  26438. },
  26439. [
  26440. {
  26441. name: "Normal",
  26442. height: math.unit(5 + 10 / 12, "feet"),
  26443. default: true
  26444. },
  26445. {
  26446. name: "Macro",
  26447. height: math.unit(60, "feet")
  26448. },
  26449. {
  26450. name: "Megamacro",
  26451. height: math.unit(1, "mile")
  26452. },
  26453. ]
  26454. ))
  26455. characterMakers.push(() => makeCharacter(
  26456. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26457. {
  26458. side: {
  26459. height: math.unit(10, "feet"),
  26460. weight: math.unit(600, "lb"),
  26461. name: "Side",
  26462. image: {
  26463. source: "./media/characters/blair/side.svg",
  26464. bottom: 16.6 / 475,
  26465. extra: 458 / 431
  26466. }
  26467. },
  26468. },
  26469. [
  26470. {
  26471. name: "Micro",
  26472. height: math.unit(8, "inches")
  26473. },
  26474. {
  26475. name: "Normal",
  26476. height: math.unit(10, "feet"),
  26477. default: true
  26478. },
  26479. {
  26480. name: "Macro",
  26481. height: math.unit(180, "feet")
  26482. },
  26483. ]
  26484. ))
  26485. characterMakers.push(() => makeCharacter(
  26486. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26487. {
  26488. front: {
  26489. height: math.unit(5 + 4 / 12, "feet"),
  26490. weight: math.unit(125, "lb"),
  26491. name: "Front",
  26492. image: {
  26493. source: "./media/characters/fisher/front.svg",
  26494. extra: 444 / 390,
  26495. bottom: 2 / 444.8
  26496. }
  26497. },
  26498. },
  26499. [
  26500. {
  26501. name: "Micro",
  26502. height: math.unit(4, "inches")
  26503. },
  26504. {
  26505. name: "Normal",
  26506. height: math.unit(5 + 4 / 12, "feet"),
  26507. default: true
  26508. },
  26509. {
  26510. name: "Macro",
  26511. height: math.unit(100, "feet")
  26512. },
  26513. ]
  26514. ))
  26515. characterMakers.push(() => makeCharacter(
  26516. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26517. {
  26518. front: {
  26519. height: math.unit(6.71, "feet"),
  26520. weight: math.unit(200, "lb"),
  26521. preyCapacity: math.unit(1000000, "people"),
  26522. name: "Front",
  26523. image: {
  26524. source: "./media/characters/gliss/front.svg",
  26525. extra: 2347 / 2231,
  26526. bottom: 113 / 2462
  26527. }
  26528. },
  26529. hammerspaceSize: {
  26530. height: math.unit(6.71 * 717, "feet"),
  26531. weight: math.unit(200, "lb"),
  26532. preyCapacity: math.unit(1000000, "people"),
  26533. name: "Hammerspace Size",
  26534. image: {
  26535. source: "./media/characters/gliss/front.svg",
  26536. extra: 2347 / 2231,
  26537. bottom: 113 / 2462
  26538. }
  26539. },
  26540. },
  26541. [
  26542. {
  26543. name: "Normal",
  26544. height: math.unit(6.71, "feet"),
  26545. default: true
  26546. },
  26547. ]
  26548. ))
  26549. characterMakers.push(() => makeCharacter(
  26550. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26551. {
  26552. side: {
  26553. height: math.unit(1.44, "m"),
  26554. weight: math.unit(80, "kg"),
  26555. name: "Side",
  26556. image: {
  26557. source: "./media/characters/dune-anderson/side.svg",
  26558. bottom: 49 / 1426
  26559. }
  26560. },
  26561. },
  26562. [
  26563. {
  26564. name: "Wolf-sized",
  26565. height: math.unit(1.44, "meters")
  26566. },
  26567. {
  26568. name: "Normal",
  26569. height: math.unit(5.05, "meters"),
  26570. default: true
  26571. },
  26572. {
  26573. name: "Big",
  26574. height: math.unit(14.4, "meters")
  26575. },
  26576. {
  26577. name: "Huge",
  26578. height: math.unit(144, "meters")
  26579. },
  26580. ]
  26581. ))
  26582. characterMakers.push(() => makeCharacter(
  26583. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26584. {
  26585. front: {
  26586. height: math.unit(7, "feet"),
  26587. weight: math.unit(425, "lb"),
  26588. name: "Front",
  26589. image: {
  26590. source: "./media/characters/hind/front.svg",
  26591. extra: 2091 / 1860,
  26592. bottom: 129 / 2220
  26593. }
  26594. },
  26595. back: {
  26596. height: math.unit(7, "feet"),
  26597. weight: math.unit(425, "lb"),
  26598. name: "Back",
  26599. image: {
  26600. source: "./media/characters/hind/back.svg",
  26601. extra: 2091 / 1860,
  26602. bottom: 24.6 / 2309
  26603. }
  26604. },
  26605. tail: {
  26606. height: math.unit(2.8, "feet"),
  26607. name: "Tail",
  26608. image: {
  26609. source: "./media/characters/hind/tail.svg"
  26610. }
  26611. },
  26612. head: {
  26613. height: math.unit(2.55, "feet"),
  26614. name: "Head",
  26615. image: {
  26616. source: "./media/characters/hind/head.svg"
  26617. }
  26618. },
  26619. },
  26620. [
  26621. {
  26622. name: "XS",
  26623. height: math.unit(0.7, "feet")
  26624. },
  26625. {
  26626. name: "Normal",
  26627. height: math.unit(7, "feet"),
  26628. default: true
  26629. },
  26630. {
  26631. name: "XL",
  26632. height: math.unit(70, "feet")
  26633. },
  26634. ]
  26635. ))
  26636. characterMakers.push(() => makeCharacter(
  26637. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26638. {
  26639. front: {
  26640. height: math.unit(2.1, "meters"),
  26641. weight: math.unit(150, "lb"),
  26642. name: "Front",
  26643. image: {
  26644. source: "./media/characters/tharquench-sizestealer/front.svg",
  26645. extra: 1605/1470,
  26646. bottom: 36/1641
  26647. }
  26648. },
  26649. frontAlt: {
  26650. height: math.unit(2.1, "meters"),
  26651. weight: math.unit(150, "lb"),
  26652. name: "Front (Alt)",
  26653. image: {
  26654. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26655. extra: 2318 / 2063,
  26656. bottom: 93.4 / 2410
  26657. }
  26658. },
  26659. },
  26660. [
  26661. {
  26662. name: "Nano",
  26663. height: math.unit(1, "mm")
  26664. },
  26665. {
  26666. name: "Micro",
  26667. height: math.unit(1, "cm")
  26668. },
  26669. {
  26670. name: "Normal",
  26671. height: math.unit(2.1, "meters"),
  26672. default: true
  26673. },
  26674. ]
  26675. ))
  26676. characterMakers.push(() => makeCharacter(
  26677. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26678. {
  26679. front: {
  26680. height: math.unit(7 + 5 / 12, "feet"),
  26681. weight: math.unit(357, "lb"),
  26682. name: "Front",
  26683. image: {
  26684. source: "./media/characters/solex-draconov/front.svg",
  26685. extra: 1993 / 1865,
  26686. bottom: 117 / 2111
  26687. }
  26688. },
  26689. },
  26690. [
  26691. {
  26692. name: "Natural Height",
  26693. height: math.unit(7 + 5 / 12, "feet"),
  26694. default: true
  26695. },
  26696. {
  26697. name: "Macro",
  26698. height: math.unit(350, "feet")
  26699. },
  26700. {
  26701. name: "Macro+",
  26702. height: math.unit(1000, "feet")
  26703. },
  26704. {
  26705. name: "Megamacro",
  26706. height: math.unit(20, "km")
  26707. },
  26708. {
  26709. name: "Megamacro+",
  26710. height: math.unit(1000, "km")
  26711. },
  26712. {
  26713. name: "Gigamacro",
  26714. height: math.unit(2.5, "Gm")
  26715. },
  26716. {
  26717. name: "Teramacro",
  26718. height: math.unit(15, "Tm")
  26719. },
  26720. {
  26721. name: "Galactic",
  26722. height: math.unit(30, "Zm")
  26723. },
  26724. {
  26725. name: "Universal",
  26726. height: math.unit(21000, "Ym")
  26727. },
  26728. {
  26729. name: "Omniversal",
  26730. height: math.unit(9.861e50, "Ym")
  26731. },
  26732. {
  26733. name: "Existential",
  26734. height: math.unit(1e300, "meters")
  26735. },
  26736. ]
  26737. ))
  26738. characterMakers.push(() => makeCharacter(
  26739. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26740. {
  26741. side: {
  26742. height: math.unit(25, "feet"),
  26743. weight: math.unit(90000, "lb"),
  26744. name: "Side",
  26745. image: {
  26746. source: "./media/characters/mandarax/side.svg",
  26747. extra: 614 / 332,
  26748. bottom: 55 / 630
  26749. }
  26750. },
  26751. lounging: {
  26752. height: math.unit(15.4, "feet"),
  26753. weight: math.unit(90000, "lb"),
  26754. name: "Lounging",
  26755. image: {
  26756. source: "./media/characters/mandarax/lounging.svg",
  26757. extra: 817/609,
  26758. bottom: 685/1502
  26759. }
  26760. },
  26761. head: {
  26762. height: math.unit(11.4, "feet"),
  26763. name: "Head",
  26764. image: {
  26765. source: "./media/characters/mandarax/head.svg"
  26766. }
  26767. },
  26768. belly: {
  26769. height: math.unit(33, "feet"),
  26770. name: "Belly",
  26771. preyCapacity: math.unit(500, "people"),
  26772. image: {
  26773. source: "./media/characters/mandarax/belly.svg"
  26774. }
  26775. },
  26776. dick: {
  26777. height: math.unit(8.46, "feet"),
  26778. name: "Dick",
  26779. image: {
  26780. source: "./media/characters/mandarax/dick.svg"
  26781. }
  26782. },
  26783. top: {
  26784. height: math.unit(28, "meters"),
  26785. name: "Top",
  26786. image: {
  26787. source: "./media/characters/mandarax/top.svg"
  26788. }
  26789. },
  26790. },
  26791. [
  26792. {
  26793. name: "Normal",
  26794. height: math.unit(25, "feet"),
  26795. default: true
  26796. },
  26797. ]
  26798. ))
  26799. characterMakers.push(() => makeCharacter(
  26800. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26801. {
  26802. front: {
  26803. height: math.unit(5, "feet"),
  26804. weight: math.unit(90, "lb"),
  26805. name: "Front",
  26806. image: {
  26807. source: "./media/characters/pixil/front.svg",
  26808. extra: 2000 / 1618,
  26809. bottom: 12.3 / 2011
  26810. }
  26811. },
  26812. },
  26813. [
  26814. {
  26815. name: "Normal",
  26816. height: math.unit(5, "feet"),
  26817. default: true
  26818. },
  26819. {
  26820. name: "Megamacro",
  26821. height: math.unit(10, "miles"),
  26822. },
  26823. ]
  26824. ))
  26825. characterMakers.push(() => makeCharacter(
  26826. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26827. {
  26828. front: {
  26829. height: math.unit(7 + 2 / 12, "feet"),
  26830. weight: math.unit(200, "lb"),
  26831. name: "Front",
  26832. image: {
  26833. source: "./media/characters/angel/front.svg",
  26834. extra: 1830 / 1737,
  26835. bottom: 22.6 / 1854,
  26836. }
  26837. },
  26838. },
  26839. [
  26840. {
  26841. name: "Normal",
  26842. height: math.unit(7 + 2 / 12, "feet"),
  26843. default: true
  26844. },
  26845. {
  26846. name: "Macro",
  26847. height: math.unit(1000, "feet")
  26848. },
  26849. {
  26850. name: "Megamacro",
  26851. height: math.unit(2, "miles")
  26852. },
  26853. {
  26854. name: "Gigamacro",
  26855. height: math.unit(20, "earths")
  26856. },
  26857. ]
  26858. ))
  26859. characterMakers.push(() => makeCharacter(
  26860. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26861. {
  26862. front: {
  26863. height: math.unit(5, "feet"),
  26864. weight: math.unit(180, "lb"),
  26865. name: "Front",
  26866. image: {
  26867. source: "./media/characters/mekana/front.svg",
  26868. extra: 1671 / 1605,
  26869. bottom: 3.5 / 1691
  26870. }
  26871. },
  26872. side: {
  26873. height: math.unit(5, "feet"),
  26874. weight: math.unit(180, "lb"),
  26875. name: "Side",
  26876. image: {
  26877. source: "./media/characters/mekana/side.svg",
  26878. extra: 1671 / 1605,
  26879. bottom: 3.5 / 1691
  26880. }
  26881. },
  26882. back: {
  26883. height: math.unit(5, "feet"),
  26884. weight: math.unit(180, "lb"),
  26885. name: "Back",
  26886. image: {
  26887. source: "./media/characters/mekana/back.svg",
  26888. extra: 1671 / 1605,
  26889. bottom: 3.5 / 1691
  26890. }
  26891. },
  26892. },
  26893. [
  26894. {
  26895. name: "Normal",
  26896. height: math.unit(5, "feet"),
  26897. default: true
  26898. },
  26899. ]
  26900. ))
  26901. characterMakers.push(() => makeCharacter(
  26902. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26903. {
  26904. front: {
  26905. height: math.unit(4 + 6 / 12, "feet"),
  26906. weight: math.unit(80, "lb"),
  26907. name: "Front",
  26908. image: {
  26909. source: "./media/characters/pixie/front.svg",
  26910. extra: 1924 / 1825,
  26911. bottom: 22.4 / 1946
  26912. }
  26913. },
  26914. },
  26915. [
  26916. {
  26917. name: "Normal",
  26918. height: math.unit(4 + 6 / 12, "feet"),
  26919. default: true
  26920. },
  26921. {
  26922. name: "Macro",
  26923. height: math.unit(40, "feet")
  26924. },
  26925. ]
  26926. ))
  26927. characterMakers.push(() => makeCharacter(
  26928. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26929. {
  26930. front: {
  26931. height: math.unit(2.1, "meters"),
  26932. weight: math.unit(200, "lb"),
  26933. name: "Front",
  26934. image: {
  26935. source: "./media/characters/the-lascivious/front.svg",
  26936. extra: 1 / 0.893,
  26937. bottom: 3.5 / 573.7
  26938. }
  26939. },
  26940. },
  26941. [
  26942. {
  26943. name: "Human Scale",
  26944. height: math.unit(2.1, "meters")
  26945. },
  26946. {
  26947. name: "Wolxi Scale",
  26948. height: math.unit(46.2, "m"),
  26949. default: true
  26950. },
  26951. {
  26952. name: "Boinker of Buildings",
  26953. height: math.unit(10, "km")
  26954. },
  26955. {
  26956. name: "Shagger of Skyscrapers",
  26957. height: math.unit(40, "km")
  26958. },
  26959. {
  26960. name: "Banger of Boroughs",
  26961. height: math.unit(4000, "km")
  26962. },
  26963. {
  26964. name: "Screwer of States",
  26965. height: math.unit(100000, "km")
  26966. },
  26967. {
  26968. name: "Pounder of Planets",
  26969. height: math.unit(2000000, "km")
  26970. },
  26971. ]
  26972. ))
  26973. characterMakers.push(() => makeCharacter(
  26974. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26975. {
  26976. front: {
  26977. height: math.unit(6, "feet"),
  26978. weight: math.unit(150, "lb"),
  26979. name: "Front",
  26980. image: {
  26981. source: "./media/characters/aj/front.svg",
  26982. extra: 2039 / 1562,
  26983. bottom: 40 / 2079
  26984. }
  26985. },
  26986. },
  26987. [
  26988. {
  26989. name: "Normal",
  26990. height: math.unit(11 + 6 / 12, "feet"),
  26991. default: true
  26992. },
  26993. {
  26994. name: "Megamacro",
  26995. height: math.unit(60, "megameters")
  26996. },
  26997. ]
  26998. ))
  26999. characterMakers.push(() => makeCharacter(
  27000. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27001. {
  27002. side: {
  27003. height: math.unit(31 + 8 / 12, "feet"),
  27004. weight: math.unit(75000, "kg"),
  27005. name: "Side",
  27006. image: {
  27007. source: "./media/characters/koros/side.svg",
  27008. extra: 1442 / 1297,
  27009. bottom: 122.7 / 1562
  27010. }
  27011. },
  27012. dicksKingsCrown: {
  27013. height: math.unit(6, "feet"),
  27014. name: "Dicks (King's Crown)",
  27015. image: {
  27016. source: "./media/characters/koros/dicks-kings-crown.svg"
  27017. }
  27018. },
  27019. dicksTailSet: {
  27020. height: math.unit(3, "feet"),
  27021. name: "Dicks (Tail Set)",
  27022. image: {
  27023. source: "./media/characters/koros/dicks-tail-set.svg"
  27024. }
  27025. },
  27026. dickCumming: {
  27027. height: math.unit(7.98, "feet"),
  27028. name: "Dick (Cumming)",
  27029. image: {
  27030. source: "./media/characters/koros/dick-cumming.svg"
  27031. }
  27032. },
  27033. dicksBack: {
  27034. height: math.unit(5.9, "feet"),
  27035. name: "Dicks (Back)",
  27036. image: {
  27037. source: "./media/characters/koros/dicks-back.svg"
  27038. }
  27039. },
  27040. dicksFront: {
  27041. height: math.unit(3.72, "feet"),
  27042. name: "Dicks (Front)",
  27043. image: {
  27044. source: "./media/characters/koros/dicks-front.svg"
  27045. }
  27046. },
  27047. dicksPeeking: {
  27048. height: math.unit(3.0, "feet"),
  27049. name: "Dicks (Peeking)",
  27050. image: {
  27051. source: "./media/characters/koros/dicks-peeking.svg"
  27052. }
  27053. },
  27054. eye: {
  27055. height: math.unit(1.7, "feet"),
  27056. name: "Eye",
  27057. image: {
  27058. source: "./media/characters/koros/eye.svg"
  27059. }
  27060. },
  27061. headFront: {
  27062. height: math.unit(11.69, "feet"),
  27063. name: "Head (Front)",
  27064. image: {
  27065. source: "./media/characters/koros/head-front.svg"
  27066. }
  27067. },
  27068. headSide: {
  27069. height: math.unit(14, "feet"),
  27070. name: "Head (Side)",
  27071. image: {
  27072. source: "./media/characters/koros/head-side.svg"
  27073. }
  27074. },
  27075. leg: {
  27076. height: math.unit(17, "feet"),
  27077. name: "Leg",
  27078. image: {
  27079. source: "./media/characters/koros/leg.svg"
  27080. }
  27081. },
  27082. mawSide: {
  27083. height: math.unit(12.8, "feet"),
  27084. name: "Maw (Side)",
  27085. image: {
  27086. source: "./media/characters/koros/maw-side.svg"
  27087. }
  27088. },
  27089. mawSpitting: {
  27090. height: math.unit(17, "feet"),
  27091. name: "Maw (Spitting)",
  27092. image: {
  27093. source: "./media/characters/koros/maw-spitting.svg"
  27094. }
  27095. },
  27096. slit: {
  27097. height: math.unit(2.8, "feet"),
  27098. name: "Slit",
  27099. image: {
  27100. source: "./media/characters/koros/slit.svg"
  27101. }
  27102. },
  27103. stomach: {
  27104. height: math.unit(6.8, "feet"),
  27105. preyCapacity: math.unit(20, "people"),
  27106. name: "Stomach",
  27107. image: {
  27108. source: "./media/characters/koros/stomach.svg"
  27109. }
  27110. },
  27111. wingspanBottom: {
  27112. height: math.unit(114, "feet"),
  27113. name: "Wingspan (Bottom)",
  27114. image: {
  27115. source: "./media/characters/koros/wingspan-bottom.svg"
  27116. }
  27117. },
  27118. wingspanTop: {
  27119. height: math.unit(104, "feet"),
  27120. name: "Wingspan (Top)",
  27121. image: {
  27122. source: "./media/characters/koros/wingspan-top.svg"
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Normal",
  27129. height: math.unit(31 + 8 / 12, "feet"),
  27130. default: true
  27131. },
  27132. ]
  27133. ))
  27134. characterMakers.push(() => makeCharacter(
  27135. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27136. {
  27137. front: {
  27138. height: math.unit(18 + 5 / 12, "feet"),
  27139. weight: math.unit(3750, "kg"),
  27140. name: "Front",
  27141. image: {
  27142. source: "./media/characters/vexx/front.svg",
  27143. extra: 426 / 396,
  27144. bottom: 31.5 / 458
  27145. }
  27146. },
  27147. maw: {
  27148. height: math.unit(6, "feet"),
  27149. name: "Maw",
  27150. image: {
  27151. source: "./media/characters/vexx/maw.svg"
  27152. }
  27153. },
  27154. },
  27155. [
  27156. {
  27157. name: "Normal",
  27158. height: math.unit(18 + 5 / 12, "feet"),
  27159. default: true
  27160. },
  27161. ]
  27162. ))
  27163. characterMakers.push(() => makeCharacter(
  27164. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27165. {
  27166. front: {
  27167. height: math.unit(17 + 6 / 12, "feet"),
  27168. weight: math.unit(150, "lb"),
  27169. name: "Front",
  27170. image: {
  27171. source: "./media/characters/baadra/front.svg",
  27172. extra: 1694/1553,
  27173. bottom: 179/1873
  27174. }
  27175. },
  27176. frontAlt: {
  27177. height: math.unit(17 + 6 / 12, "feet"),
  27178. weight: math.unit(150, "lb"),
  27179. name: "Front (Alt)",
  27180. image: {
  27181. source: "./media/characters/baadra/front-alt.svg",
  27182. extra: 3137 / 2890,
  27183. bottom: 168.4 / 3305
  27184. }
  27185. },
  27186. back: {
  27187. height: math.unit(17 + 6 / 12, "feet"),
  27188. weight: math.unit(150, "lb"),
  27189. name: "Back",
  27190. image: {
  27191. source: "./media/characters/baadra/back.svg",
  27192. extra: 3142 / 2890,
  27193. bottom: 220 / 3371
  27194. }
  27195. },
  27196. head: {
  27197. height: math.unit(5.45, "feet"),
  27198. name: "Head",
  27199. image: {
  27200. source: "./media/characters/baadra/head.svg"
  27201. }
  27202. },
  27203. headAngry: {
  27204. height: math.unit(4.95, "feet"),
  27205. name: "Head (Angry)",
  27206. image: {
  27207. source: "./media/characters/baadra/head-angry.svg"
  27208. }
  27209. },
  27210. headOpen: {
  27211. height: math.unit(6, "feet"),
  27212. name: "Head (Open)",
  27213. image: {
  27214. source: "./media/characters/baadra/head-open.svg"
  27215. }
  27216. },
  27217. },
  27218. [
  27219. {
  27220. name: "Normal",
  27221. height: math.unit(17 + 6 / 12, "feet"),
  27222. default: true
  27223. },
  27224. ]
  27225. ))
  27226. characterMakers.push(() => makeCharacter(
  27227. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27228. {
  27229. front: {
  27230. height: math.unit(7 + 3 / 12, "feet"),
  27231. weight: math.unit(180, "lb"),
  27232. name: "Front",
  27233. image: {
  27234. source: "./media/characters/juri/front.svg",
  27235. extra: 1401 / 1237,
  27236. bottom: 18.5 / 1418
  27237. }
  27238. },
  27239. side: {
  27240. height: math.unit(7 + 3 / 12, "feet"),
  27241. weight: math.unit(180, "lb"),
  27242. name: "Side",
  27243. image: {
  27244. source: "./media/characters/juri/side.svg",
  27245. extra: 1424 / 1242,
  27246. bottom: 18.5 / 1447
  27247. }
  27248. },
  27249. sitting: {
  27250. height: math.unit(6, "feet"),
  27251. weight: math.unit(180, "lb"),
  27252. name: "Sitting",
  27253. image: {
  27254. source: "./media/characters/juri/sitting.svg",
  27255. extra: 1270 / 1143,
  27256. bottom: 100 / 1343
  27257. }
  27258. },
  27259. back: {
  27260. height: math.unit(7 + 3 / 12, "feet"),
  27261. weight: math.unit(180, "lb"),
  27262. name: "Back",
  27263. image: {
  27264. source: "./media/characters/juri/back.svg",
  27265. extra: 1377 / 1240,
  27266. bottom: 23.7 / 1405
  27267. }
  27268. },
  27269. maw: {
  27270. height: math.unit(2.8, "feet"),
  27271. name: "Maw",
  27272. image: {
  27273. source: "./media/characters/juri/maw.svg"
  27274. }
  27275. },
  27276. stomach: {
  27277. height: math.unit(0.89, "feet"),
  27278. preyCapacity: math.unit(4, "liters"),
  27279. name: "Stomach",
  27280. image: {
  27281. source: "./media/characters/juri/stomach.svg"
  27282. }
  27283. },
  27284. },
  27285. [
  27286. {
  27287. name: "Normal",
  27288. height: math.unit(7 + 3 / 12, "feet"),
  27289. default: true
  27290. },
  27291. ]
  27292. ))
  27293. characterMakers.push(() => makeCharacter(
  27294. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27295. {
  27296. fox: {
  27297. height: math.unit(5 + 6 / 12, "feet"),
  27298. weight: math.unit(140, "lb"),
  27299. name: "Fox",
  27300. image: {
  27301. source: "./media/characters/maxene-sita/fox.svg",
  27302. extra: 146 / 138,
  27303. bottom: 2.1 / 148.19
  27304. }
  27305. },
  27306. foxLaying: {
  27307. height: math.unit(1.70, "feet"),
  27308. weight: math.unit(140, "lb"),
  27309. name: "Fox (Laying)",
  27310. image: {
  27311. source: "./media/characters/maxene-sita/fox-laying.svg",
  27312. extra: 910 / 572,
  27313. bottom: 71 / 981
  27314. }
  27315. },
  27316. kitsune: {
  27317. height: math.unit(10, "feet"),
  27318. weight: math.unit(800, "lb"),
  27319. name: "Kitsune",
  27320. image: {
  27321. source: "./media/characters/maxene-sita/kitsune.svg",
  27322. extra: 185 / 176,
  27323. bottom: 4.7 / 189.9
  27324. }
  27325. },
  27326. hellhound: {
  27327. height: math.unit(10, "feet"),
  27328. weight: math.unit(700, "lb"),
  27329. name: "Hellhound",
  27330. image: {
  27331. source: "./media/characters/maxene-sita/hellhound.svg",
  27332. extra: 1600 / 1545,
  27333. bottom: 81 / 1681
  27334. }
  27335. },
  27336. },
  27337. [
  27338. {
  27339. name: "Normal",
  27340. height: math.unit(5 + 6 / 12, "feet"),
  27341. default: true
  27342. },
  27343. ]
  27344. ))
  27345. characterMakers.push(() => makeCharacter(
  27346. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27347. {
  27348. front: {
  27349. height: math.unit(3 + 4 / 12, "feet"),
  27350. weight: math.unit(70, "lb"),
  27351. name: "Front",
  27352. image: {
  27353. source: "./media/characters/maia/front.svg",
  27354. extra: 227 / 219.5,
  27355. bottom: 40 / 267
  27356. }
  27357. },
  27358. back: {
  27359. height: math.unit(3 + 4 / 12, "feet"),
  27360. weight: math.unit(70, "lb"),
  27361. name: "Back",
  27362. image: {
  27363. source: "./media/characters/maia/back.svg",
  27364. extra: 237 / 225
  27365. }
  27366. },
  27367. },
  27368. [
  27369. {
  27370. name: "Normal",
  27371. height: math.unit(3 + 4 / 12, "feet"),
  27372. default: true
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27378. {
  27379. front: {
  27380. height: math.unit(5 + 10 / 12, "feet"),
  27381. weight: math.unit(197, "lb"),
  27382. name: "Front",
  27383. image: {
  27384. source: "./media/characters/jabaro/front.svg",
  27385. extra: 225 / 216,
  27386. bottom: 5.06 / 230
  27387. }
  27388. },
  27389. back: {
  27390. height: math.unit(5 + 10 / 12, "feet"),
  27391. weight: math.unit(197, "lb"),
  27392. name: "Back",
  27393. image: {
  27394. source: "./media/characters/jabaro/back.svg",
  27395. extra: 225 / 219,
  27396. bottom: 1.9 / 227
  27397. }
  27398. },
  27399. },
  27400. [
  27401. {
  27402. name: "Normal",
  27403. height: math.unit(5 + 10 / 12, "feet"),
  27404. default: true
  27405. },
  27406. ]
  27407. ))
  27408. characterMakers.push(() => makeCharacter(
  27409. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27410. {
  27411. front: {
  27412. height: math.unit(5 + 8 / 12, "feet"),
  27413. weight: math.unit(139, "lb"),
  27414. name: "Front",
  27415. image: {
  27416. source: "./media/characters/risa/front.svg",
  27417. extra: 270 / 260,
  27418. bottom: 11.2 / 282
  27419. }
  27420. },
  27421. back: {
  27422. height: math.unit(5 + 8 / 12, "feet"),
  27423. weight: math.unit(139, "lb"),
  27424. name: "Back",
  27425. image: {
  27426. source: "./media/characters/risa/back.svg",
  27427. extra: 264 / 255,
  27428. bottom: 4 / 268
  27429. }
  27430. },
  27431. },
  27432. [
  27433. {
  27434. name: "Normal",
  27435. height: math.unit(5 + 8 / 12, "feet"),
  27436. default: true
  27437. },
  27438. ]
  27439. ))
  27440. characterMakers.push(() => makeCharacter(
  27441. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27442. {
  27443. front: {
  27444. height: math.unit(2 + 11 / 12, "feet"),
  27445. weight: math.unit(30, "lb"),
  27446. name: "Front",
  27447. image: {
  27448. source: "./media/characters/weatley/front.svg",
  27449. bottom: 10.7 / 414,
  27450. extra: 403.5 / 362
  27451. }
  27452. },
  27453. back: {
  27454. height: math.unit(2 + 11 / 12, "feet"),
  27455. weight: math.unit(30, "lb"),
  27456. name: "Back",
  27457. image: {
  27458. source: "./media/characters/weatley/back.svg",
  27459. bottom: 10.7 / 414,
  27460. extra: 403.5 / 362
  27461. }
  27462. },
  27463. },
  27464. [
  27465. {
  27466. name: "Normal",
  27467. height: math.unit(2 + 11 / 12, "feet"),
  27468. default: true
  27469. },
  27470. ]
  27471. ))
  27472. characterMakers.push(() => makeCharacter(
  27473. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27474. {
  27475. front: {
  27476. height: math.unit(5 + 2 / 12, "feet"),
  27477. weight: math.unit(50, "kg"),
  27478. name: "Front",
  27479. image: {
  27480. source: "./media/characters/mercury-crescent/front.svg",
  27481. extra: 1088 / 1033,
  27482. bottom: 18.9 / 1109
  27483. }
  27484. },
  27485. },
  27486. [
  27487. {
  27488. name: "Normal",
  27489. height: math.unit(5 + 2 / 12, "feet"),
  27490. default: true
  27491. },
  27492. ]
  27493. ))
  27494. characterMakers.push(() => makeCharacter(
  27495. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27496. {
  27497. front: {
  27498. height: math.unit(2, "feet"),
  27499. weight: math.unit(15, "kg"),
  27500. name: "Front",
  27501. image: {
  27502. source: "./media/characters/diamond-jones/front.svg",
  27503. extra: 727/723,
  27504. bottom: 46/773
  27505. }
  27506. },
  27507. },
  27508. [
  27509. {
  27510. name: "Normal",
  27511. height: math.unit(2, "feet"),
  27512. default: true
  27513. },
  27514. ]
  27515. ))
  27516. characterMakers.push(() => makeCharacter(
  27517. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27518. {
  27519. front: {
  27520. height: math.unit(3, "feet"),
  27521. weight: math.unit(30, "kg"),
  27522. name: "Front",
  27523. image: {
  27524. source: "./media/characters/sweet-bit/front.svg",
  27525. extra: 675 / 567,
  27526. bottom: 27.7 / 703
  27527. }
  27528. },
  27529. },
  27530. [
  27531. {
  27532. name: "Normal",
  27533. height: math.unit(3, "feet"),
  27534. default: true
  27535. },
  27536. ]
  27537. ))
  27538. characterMakers.push(() => makeCharacter(
  27539. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27540. {
  27541. side: {
  27542. height: math.unit(9.178, "feet"),
  27543. weight: math.unit(500, "lb"),
  27544. name: "Side",
  27545. image: {
  27546. source: "./media/characters/umbrazen/side.svg",
  27547. extra: 1730 / 1473,
  27548. bottom: 34.6 / 1765
  27549. }
  27550. },
  27551. },
  27552. [
  27553. {
  27554. name: "Normal",
  27555. height: math.unit(9.178, "feet"),
  27556. default: true
  27557. },
  27558. ]
  27559. ))
  27560. characterMakers.push(() => makeCharacter(
  27561. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27562. {
  27563. front: {
  27564. height: math.unit(10, "feet"),
  27565. weight: math.unit(750, "lb"),
  27566. name: "Front",
  27567. image: {
  27568. source: "./media/characters/arlist/front.svg",
  27569. extra: 961 / 778,
  27570. bottom: 6.2 / 986
  27571. }
  27572. },
  27573. },
  27574. [
  27575. {
  27576. name: "Normal",
  27577. height: math.unit(10, "feet"),
  27578. default: true
  27579. },
  27580. ]
  27581. ))
  27582. characterMakers.push(() => makeCharacter(
  27583. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27584. {
  27585. front: {
  27586. height: math.unit(5 + 1 / 12, "feet"),
  27587. weight: math.unit(110, "lb"),
  27588. name: "Front",
  27589. image: {
  27590. source: "./media/characters/aradel/front.svg",
  27591. extra: 324 / 303,
  27592. bottom: 3.6 / 329.4
  27593. }
  27594. },
  27595. },
  27596. [
  27597. {
  27598. name: "Normal",
  27599. height: math.unit(5 + 1 / 12, "feet"),
  27600. default: true
  27601. },
  27602. ]
  27603. ))
  27604. characterMakers.push(() => makeCharacter(
  27605. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27606. {
  27607. dressed: {
  27608. height: math.unit(3 + 8 / 12, "feet"),
  27609. weight: math.unit(50, "lb"),
  27610. name: "Dressed",
  27611. image: {
  27612. source: "./media/characters/serryn/dressed.svg",
  27613. extra: 1792 / 1656,
  27614. bottom: 43.5 / 1840
  27615. }
  27616. },
  27617. nude: {
  27618. height: math.unit(3 + 8 / 12, "feet"),
  27619. weight: math.unit(50, "lb"),
  27620. name: "Nude",
  27621. image: {
  27622. source: "./media/characters/serryn/nude.svg",
  27623. extra: 1792 / 1656,
  27624. bottom: 43.5 / 1840
  27625. }
  27626. },
  27627. },
  27628. [
  27629. {
  27630. name: "Normal",
  27631. height: math.unit(3 + 8 / 12, "feet"),
  27632. default: true
  27633. },
  27634. ]
  27635. ))
  27636. characterMakers.push(() => makeCharacter(
  27637. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27638. {
  27639. front: {
  27640. height: math.unit(7 + 10 / 12, "feet"),
  27641. weight: math.unit(255, "lb"),
  27642. name: "Front",
  27643. image: {
  27644. source: "./media/characters/xavier-thyme/front.svg",
  27645. extra: 3733 / 3642,
  27646. bottom: 131 / 3869
  27647. }
  27648. },
  27649. frontRaven: {
  27650. height: math.unit(7 + 10 / 12, "feet"),
  27651. weight: math.unit(255, "lb"),
  27652. name: "Front (Raven)",
  27653. image: {
  27654. source: "./media/characters/xavier-thyme/front-raven.svg",
  27655. extra: 4385 / 3642,
  27656. bottom: 131 / 4517
  27657. }
  27658. },
  27659. },
  27660. [
  27661. {
  27662. name: "Normal",
  27663. height: math.unit(7 + 10 / 12, "feet"),
  27664. default: true
  27665. },
  27666. ]
  27667. ))
  27668. characterMakers.push(() => makeCharacter(
  27669. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27670. {
  27671. front: {
  27672. height: math.unit(1.6, "m"),
  27673. weight: math.unit(50, "kg"),
  27674. name: "Front",
  27675. image: {
  27676. source: "./media/characters/kiki/front.svg",
  27677. extra: 4682 / 3610,
  27678. bottom: 115 / 4777
  27679. }
  27680. },
  27681. },
  27682. [
  27683. {
  27684. name: "Normal",
  27685. height: math.unit(1.6, "meters"),
  27686. default: true
  27687. },
  27688. ]
  27689. ))
  27690. characterMakers.push(() => makeCharacter(
  27691. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27692. {
  27693. front: {
  27694. height: math.unit(50, "m"),
  27695. weight: math.unit(500, "tonnes"),
  27696. name: "Front",
  27697. image: {
  27698. source: "./media/characters/ryoko/front.svg",
  27699. extra: 4632 / 3926,
  27700. bottom: 193 / 4823
  27701. }
  27702. },
  27703. },
  27704. [
  27705. {
  27706. name: "Normal",
  27707. height: math.unit(50, "meters"),
  27708. default: true
  27709. },
  27710. ]
  27711. ))
  27712. characterMakers.push(() => makeCharacter(
  27713. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27714. {
  27715. front: {
  27716. height: math.unit(30, "m"),
  27717. weight: math.unit(22, "tonnes"),
  27718. name: "Front",
  27719. image: {
  27720. source: "./media/characters/elio/front.svg",
  27721. extra: 4582 / 3720,
  27722. bottom: 236 / 4828
  27723. }
  27724. },
  27725. },
  27726. [
  27727. {
  27728. name: "Normal",
  27729. height: math.unit(30, "meters"),
  27730. default: true
  27731. },
  27732. ]
  27733. ))
  27734. characterMakers.push(() => makeCharacter(
  27735. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27736. {
  27737. front: {
  27738. height: math.unit(6 + 3 / 12, "feet"),
  27739. weight: math.unit(120, "lb"),
  27740. name: "Front",
  27741. image: {
  27742. source: "./media/characters/azura/front.svg",
  27743. extra: 1149 / 1135,
  27744. bottom: 45 / 1194
  27745. }
  27746. },
  27747. frontClothed: {
  27748. height: math.unit(6 + 3 / 12, "feet"),
  27749. weight: math.unit(120, "lb"),
  27750. name: "Front (Clothed)",
  27751. image: {
  27752. source: "./media/characters/azura/front-clothed.svg",
  27753. extra: 1149 / 1135,
  27754. bottom: 45 / 1194
  27755. }
  27756. },
  27757. },
  27758. [
  27759. {
  27760. name: "Normal",
  27761. height: math.unit(6 + 3 / 12, "feet"),
  27762. default: true
  27763. },
  27764. {
  27765. name: "Macro",
  27766. height: math.unit(20 + 6 / 12, "feet")
  27767. },
  27768. {
  27769. name: "Megamacro",
  27770. height: math.unit(12, "miles")
  27771. },
  27772. {
  27773. name: "Gigamacro",
  27774. height: math.unit(10000, "miles")
  27775. },
  27776. {
  27777. name: "Teramacro",
  27778. height: math.unit(900000, "miles")
  27779. },
  27780. ]
  27781. ))
  27782. characterMakers.push(() => makeCharacter(
  27783. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27784. {
  27785. front: {
  27786. height: math.unit(12, "feet"),
  27787. weight: math.unit(1, "ton"),
  27788. capacity: math.unit(660000, "gallons"),
  27789. name: "Front",
  27790. image: {
  27791. source: "./media/characters/zeus/front.svg",
  27792. extra: 5005 / 4717,
  27793. bottom: 363 / 5388
  27794. }
  27795. },
  27796. },
  27797. [
  27798. {
  27799. name: "Normal",
  27800. height: math.unit(12, "feet")
  27801. },
  27802. {
  27803. name: "Preferred Size",
  27804. height: math.unit(0.5, "miles"),
  27805. default: true
  27806. },
  27807. {
  27808. name: "Giga Horse",
  27809. height: math.unit(300, "miles")
  27810. },
  27811. {
  27812. name: "Riding Planets",
  27813. height: math.unit(30, "megameters")
  27814. },
  27815. {
  27816. name: "Cosmic Giant",
  27817. height: math.unit(3, "zettameters")
  27818. },
  27819. {
  27820. name: "Breeding God",
  27821. height: math.unit(9.92e22, "yottameters")
  27822. },
  27823. ]
  27824. ))
  27825. characterMakers.push(() => makeCharacter(
  27826. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27827. {
  27828. side: {
  27829. height: math.unit(9, "feet"),
  27830. weight: math.unit(1500, "kg"),
  27831. name: "Side",
  27832. image: {
  27833. source: "./media/characters/fang/side.svg",
  27834. extra: 924 / 866,
  27835. bottom: 47.5 / 972.3
  27836. }
  27837. },
  27838. },
  27839. [
  27840. {
  27841. name: "Normal",
  27842. height: math.unit(9, "feet"),
  27843. default: true
  27844. },
  27845. {
  27846. name: "Macro",
  27847. height: math.unit(75 + 6 / 12, "feet")
  27848. },
  27849. {
  27850. name: "Teramacro",
  27851. height: math.unit(50000, "miles")
  27852. },
  27853. ]
  27854. ))
  27855. characterMakers.push(() => makeCharacter(
  27856. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27857. {
  27858. front: {
  27859. height: math.unit(10, "feet"),
  27860. weight: math.unit(2, "tons"),
  27861. name: "Front",
  27862. image: {
  27863. source: "./media/characters/rekhit/front.svg",
  27864. extra: 2796 / 2590,
  27865. bottom: 225 / 3022
  27866. }
  27867. },
  27868. },
  27869. [
  27870. {
  27871. name: "Normal",
  27872. height: math.unit(10, "feet"),
  27873. default: true
  27874. },
  27875. {
  27876. name: "Macro",
  27877. height: math.unit(500, "feet")
  27878. },
  27879. ]
  27880. ))
  27881. characterMakers.push(() => makeCharacter(
  27882. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27883. {
  27884. front: {
  27885. height: math.unit(7 + 6.451 / 12, "feet"),
  27886. weight: math.unit(310, "lb"),
  27887. name: "Front",
  27888. image: {
  27889. source: "./media/characters/dahlia-verrick/front.svg",
  27890. extra: 1488 / 1365,
  27891. bottom: 6.2 / 1495
  27892. }
  27893. },
  27894. back: {
  27895. height: math.unit(7 + 6.451 / 12, "feet"),
  27896. weight: math.unit(310, "lb"),
  27897. name: "Back",
  27898. image: {
  27899. source: "./media/characters/dahlia-verrick/back.svg",
  27900. extra: 1472 / 1351,
  27901. bottom: 5.28 / 1477
  27902. }
  27903. },
  27904. frontBusiness: {
  27905. height: math.unit(7 + 6.451 / 12, "feet"),
  27906. weight: math.unit(200, "lb"),
  27907. name: "Front (Business)",
  27908. image: {
  27909. source: "./media/characters/dahlia-verrick/front-business.svg",
  27910. extra: 1478 / 1381,
  27911. bottom: 5.5 / 1484
  27912. }
  27913. },
  27914. frontCasual: {
  27915. height: math.unit(7 + 6.451 / 12, "feet"),
  27916. weight: math.unit(200, "lb"),
  27917. name: "Front (Casual)",
  27918. image: {
  27919. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27920. extra: 1478 / 1381,
  27921. bottom: 5.5 / 1484
  27922. }
  27923. },
  27924. },
  27925. [
  27926. {
  27927. name: "Travel-Sized",
  27928. height: math.unit(7.45, "inches")
  27929. },
  27930. {
  27931. name: "Normal",
  27932. height: math.unit(7 + 6.451 / 12, "feet"),
  27933. default: true
  27934. },
  27935. {
  27936. name: "Hitting the Town",
  27937. height: math.unit(37 + 8 / 12, "feet")
  27938. },
  27939. {
  27940. name: "Stomp in the Suburbs",
  27941. height: math.unit(964 + 9.728 / 12, "feet")
  27942. },
  27943. {
  27944. name: "Sit on the City",
  27945. height: math.unit(61747 + 10.592 / 12, "feet")
  27946. },
  27947. {
  27948. name: "Glomp the Globe",
  27949. height: math.unit(252919327 + 4.832 / 12, "feet")
  27950. },
  27951. ]
  27952. ))
  27953. characterMakers.push(() => makeCharacter(
  27954. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27955. {
  27956. front: {
  27957. height: math.unit(6 + 4 / 12, "feet"),
  27958. weight: math.unit(320, "lb"),
  27959. name: "Front",
  27960. image: {
  27961. source: "./media/characters/balina-mahigan/front.svg",
  27962. extra: 447 / 428,
  27963. bottom: 18 / 466
  27964. }
  27965. },
  27966. back: {
  27967. height: math.unit(6 + 4 / 12, "feet"),
  27968. weight: math.unit(320, "lb"),
  27969. name: "Back",
  27970. image: {
  27971. source: "./media/characters/balina-mahigan/back.svg",
  27972. extra: 445 / 428,
  27973. bottom: 4.07 / 448
  27974. }
  27975. },
  27976. arm: {
  27977. height: math.unit(1.88, "feet"),
  27978. name: "Arm",
  27979. image: {
  27980. source: "./media/characters/balina-mahigan/arm.svg"
  27981. }
  27982. },
  27983. backPort: {
  27984. height: math.unit(0.685, "feet"),
  27985. name: "Back Port",
  27986. image: {
  27987. source: "./media/characters/balina-mahigan/back-port.svg"
  27988. }
  27989. },
  27990. hoofpaw: {
  27991. height: math.unit(1.41, "feet"),
  27992. name: "Hoofpaw",
  27993. image: {
  27994. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27995. }
  27996. },
  27997. leftHandBack: {
  27998. height: math.unit(0.938, "feet"),
  27999. name: "Left Hand (Back)",
  28000. image: {
  28001. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28002. }
  28003. },
  28004. leftHandFront: {
  28005. height: math.unit(0.938, "feet"),
  28006. name: "Left Hand (Front)",
  28007. image: {
  28008. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28009. }
  28010. },
  28011. rightHandBack: {
  28012. height: math.unit(0.95, "feet"),
  28013. name: "Right Hand (Back)",
  28014. image: {
  28015. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28016. }
  28017. },
  28018. rightHandFront: {
  28019. height: math.unit(0.95, "feet"),
  28020. name: "Right Hand (Front)",
  28021. image: {
  28022. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28023. }
  28024. },
  28025. },
  28026. [
  28027. {
  28028. name: "Normal",
  28029. height: math.unit(6 + 4 / 12, "feet"),
  28030. default: true
  28031. },
  28032. ]
  28033. ))
  28034. characterMakers.push(() => makeCharacter(
  28035. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28036. {
  28037. front: {
  28038. height: math.unit(6, "feet"),
  28039. weight: math.unit(320, "lb"),
  28040. name: "Front",
  28041. image: {
  28042. source: "./media/characters/balina-mejeri/front.svg",
  28043. extra: 517 / 488,
  28044. bottom: 44.2 / 561
  28045. }
  28046. },
  28047. },
  28048. [
  28049. {
  28050. name: "Normal",
  28051. height: math.unit(6 + 4 / 12, "feet")
  28052. },
  28053. {
  28054. name: "Business",
  28055. height: math.unit(155, "feet"),
  28056. default: true
  28057. },
  28058. ]
  28059. ))
  28060. characterMakers.push(() => makeCharacter(
  28061. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28062. {
  28063. kneeling: {
  28064. height: math.unit(6 + 4 / 12, "feet"),
  28065. weight: math.unit(300 * 20, "lb"),
  28066. name: "Kneeling",
  28067. image: {
  28068. source: "./media/characters/balbarian/kneeling.svg",
  28069. extra: 922 / 862,
  28070. bottom: 42.4 / 965
  28071. }
  28072. },
  28073. },
  28074. [
  28075. {
  28076. name: "Normal",
  28077. height: math.unit(6 + 4 / 12, "feet")
  28078. },
  28079. {
  28080. name: "Treasured",
  28081. height: math.unit(18 + 9 / 12, "feet"),
  28082. default: true
  28083. },
  28084. {
  28085. name: "Macro",
  28086. height: math.unit(900, "feet")
  28087. },
  28088. ]
  28089. ))
  28090. characterMakers.push(() => makeCharacter(
  28091. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28092. {
  28093. front: {
  28094. height: math.unit(6 + 4 / 12, "feet"),
  28095. weight: math.unit(325, "lb"),
  28096. name: "Front",
  28097. image: {
  28098. source: "./media/characters/balina-amarini/front.svg",
  28099. extra: 415 / 403,
  28100. bottom: 19 / 433.4
  28101. }
  28102. },
  28103. back: {
  28104. height: math.unit(6 + 4 / 12, "feet"),
  28105. weight: math.unit(325, "lb"),
  28106. name: "Back",
  28107. image: {
  28108. source: "./media/characters/balina-amarini/back.svg",
  28109. extra: 415 / 403,
  28110. bottom: 13.5 / 432
  28111. }
  28112. },
  28113. overdrive: {
  28114. height: math.unit(6 + 4 / 12, "feet"),
  28115. weight: math.unit(400, "lb"),
  28116. name: "Overdrive",
  28117. image: {
  28118. source: "./media/characters/balina-amarini/overdrive.svg",
  28119. extra: 269 / 259,
  28120. bottom: 12 / 282
  28121. }
  28122. },
  28123. },
  28124. [
  28125. {
  28126. name: "Boom",
  28127. height: math.unit(9 + 10 / 12, "feet"),
  28128. default: true
  28129. },
  28130. {
  28131. name: "Macro",
  28132. height: math.unit(280, "feet")
  28133. },
  28134. ]
  28135. ))
  28136. characterMakers.push(() => makeCharacter(
  28137. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28138. {
  28139. goddess: {
  28140. height: math.unit(600, "feet"),
  28141. weight: math.unit(2000000, "tons"),
  28142. name: "Goddess",
  28143. image: {
  28144. source: "./media/characters/lady-kubwa/goddess.svg",
  28145. extra: 1240.5 / 1223,
  28146. bottom: 22 / 1263
  28147. }
  28148. },
  28149. goddesser: {
  28150. height: math.unit(900, "feet"),
  28151. weight: math.unit(20000000, "lb"),
  28152. name: "Goddess-er",
  28153. image: {
  28154. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28155. extra: 899 / 888,
  28156. bottom: 12.6 / 912
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Macro",
  28163. height: math.unit(600, "feet"),
  28164. default: true
  28165. },
  28166. {
  28167. name: "Megamacro",
  28168. height: math.unit(250, "miles")
  28169. },
  28170. ]
  28171. ))
  28172. characterMakers.push(() => makeCharacter(
  28173. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28174. {
  28175. front: {
  28176. height: math.unit(7 + 7 / 12, "feet"),
  28177. weight: math.unit(250, "lb"),
  28178. name: "Front",
  28179. image: {
  28180. source: "./media/characters/tala-grovehorn/front.svg",
  28181. extra: 2636 / 2525,
  28182. bottom: 147 / 2781
  28183. }
  28184. },
  28185. back: {
  28186. height: math.unit(7 + 7 / 12, "feet"),
  28187. weight: math.unit(250, "lb"),
  28188. name: "Back",
  28189. image: {
  28190. source: "./media/characters/tala-grovehorn/back.svg",
  28191. extra: 2635 / 2539,
  28192. bottom: 100 / 2732.8
  28193. }
  28194. },
  28195. mouth: {
  28196. height: math.unit(1.15, "feet"),
  28197. name: "Mouth",
  28198. image: {
  28199. source: "./media/characters/tala-grovehorn/mouth.svg"
  28200. }
  28201. },
  28202. dick: {
  28203. height: math.unit(2.36, "feet"),
  28204. name: "Dick",
  28205. image: {
  28206. source: "./media/characters/tala-grovehorn/dick.svg"
  28207. }
  28208. },
  28209. slit: {
  28210. height: math.unit(0.61, "feet"),
  28211. name: "Slit",
  28212. image: {
  28213. source: "./media/characters/tala-grovehorn/slit.svg"
  28214. }
  28215. },
  28216. },
  28217. [
  28218. ]
  28219. ))
  28220. characterMakers.push(() => makeCharacter(
  28221. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28222. {
  28223. front: {
  28224. height: math.unit(7 + 7 / 12, "feet"),
  28225. weight: math.unit(225, "lb"),
  28226. name: "Front",
  28227. image: {
  28228. source: "./media/characters/epona/front.svg",
  28229. extra: 2445 / 2290,
  28230. bottom: 251 / 2696
  28231. }
  28232. },
  28233. back: {
  28234. height: math.unit(7 + 7 / 12, "feet"),
  28235. weight: math.unit(225, "lb"),
  28236. name: "Back",
  28237. image: {
  28238. source: "./media/characters/epona/back.svg",
  28239. extra: 2546 / 2408,
  28240. bottom: 44 / 2589
  28241. }
  28242. },
  28243. genitals: {
  28244. height: math.unit(1.5, "feet"),
  28245. name: "Genitals",
  28246. image: {
  28247. source: "./media/characters/epona/genitals.svg"
  28248. }
  28249. },
  28250. },
  28251. [
  28252. {
  28253. name: "Normal",
  28254. height: math.unit(7 + 7 / 12, "feet"),
  28255. default: true
  28256. },
  28257. ]
  28258. ))
  28259. characterMakers.push(() => makeCharacter(
  28260. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28261. {
  28262. front: {
  28263. height: math.unit(7, "feet"),
  28264. weight: math.unit(518, "lb"),
  28265. name: "Front",
  28266. image: {
  28267. source: "./media/characters/avia-bloodbourn/front.svg",
  28268. extra: 1466 / 1350,
  28269. bottom: 65 / 1527
  28270. }
  28271. },
  28272. },
  28273. [
  28274. ]
  28275. ))
  28276. characterMakers.push(() => makeCharacter(
  28277. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28278. {
  28279. front: {
  28280. height: math.unit(9.35, "feet"),
  28281. weight: math.unit(600, "lb"),
  28282. name: "Front",
  28283. image: {
  28284. source: "./media/characters/amera/front.svg",
  28285. extra: 891 / 818,
  28286. bottom: 30 / 922.7
  28287. }
  28288. },
  28289. back: {
  28290. height: math.unit(9.35, "feet"),
  28291. weight: math.unit(600, "lb"),
  28292. name: "Back",
  28293. image: {
  28294. source: "./media/characters/amera/back.svg",
  28295. extra: 876 / 824,
  28296. bottom: 6.8 / 884
  28297. }
  28298. },
  28299. dick: {
  28300. height: math.unit(2.14, "feet"),
  28301. name: "Dick",
  28302. image: {
  28303. source: "./media/characters/amera/dick.svg"
  28304. }
  28305. },
  28306. },
  28307. [
  28308. {
  28309. name: "Normal",
  28310. height: math.unit(9.35, "feet"),
  28311. default: true
  28312. },
  28313. ]
  28314. ))
  28315. characterMakers.push(() => makeCharacter(
  28316. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28317. {
  28318. kneeling: {
  28319. height: math.unit(3 + 4 / 12, "feet"),
  28320. weight: math.unit(90, "lb"),
  28321. name: "Kneeling",
  28322. image: {
  28323. source: "./media/characters/rosewen/kneeling.svg",
  28324. extra: 1835 / 1571,
  28325. bottom: 27.7 / 1862
  28326. }
  28327. },
  28328. },
  28329. [
  28330. {
  28331. name: "Normal",
  28332. height: math.unit(3 + 4 / 12, "feet"),
  28333. default: true
  28334. },
  28335. ]
  28336. ))
  28337. characterMakers.push(() => makeCharacter(
  28338. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28339. {
  28340. front: {
  28341. height: math.unit(5 + 10 / 12, "feet"),
  28342. weight: math.unit(200, "lb"),
  28343. name: "Front",
  28344. image: {
  28345. source: "./media/characters/sabah/front.svg",
  28346. extra: 849 / 763,
  28347. bottom: 33.9 / 881
  28348. }
  28349. },
  28350. },
  28351. [
  28352. {
  28353. name: "Normal",
  28354. height: math.unit(5 + 10 / 12, "feet"),
  28355. default: true
  28356. },
  28357. ]
  28358. ))
  28359. characterMakers.push(() => makeCharacter(
  28360. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28361. {
  28362. front: {
  28363. height: math.unit(3 + 5 / 12, "feet"),
  28364. weight: math.unit(40, "kg"),
  28365. name: "Front",
  28366. image: {
  28367. source: "./media/characters/purple-flame/front.svg",
  28368. extra: 1577 / 1412,
  28369. bottom: 97 / 1694
  28370. }
  28371. },
  28372. frontDressed: {
  28373. height: math.unit(3 + 5 / 12, "feet"),
  28374. weight: math.unit(40, "kg"),
  28375. name: "Front (Dressed)",
  28376. image: {
  28377. source: "./media/characters/purple-flame/front-dressed.svg",
  28378. extra: 1577 / 1412,
  28379. bottom: 97 / 1694
  28380. }
  28381. },
  28382. headphones: {
  28383. height: math.unit(0.85, "feet"),
  28384. name: "Headphones",
  28385. image: {
  28386. source: "./media/characters/purple-flame/headphones.svg"
  28387. }
  28388. },
  28389. },
  28390. [
  28391. {
  28392. name: "Really Small",
  28393. height: math.unit(5, "cm")
  28394. },
  28395. {
  28396. name: "Micro",
  28397. height: math.unit(1 + 5 / 12, "feet")
  28398. },
  28399. {
  28400. name: "Normal",
  28401. height: math.unit(3 + 5 / 12, "feet"),
  28402. default: true
  28403. },
  28404. {
  28405. name: "Minimacro",
  28406. height: math.unit(125, "feet")
  28407. },
  28408. {
  28409. name: "Macro",
  28410. height: math.unit(0.5, "miles")
  28411. },
  28412. {
  28413. name: "Megamacro",
  28414. height: math.unit(50, "miles")
  28415. },
  28416. {
  28417. name: "Gigantic",
  28418. height: math.unit(750, "miles")
  28419. },
  28420. {
  28421. name: "Planetary",
  28422. height: math.unit(15000, "miles")
  28423. },
  28424. ]
  28425. ))
  28426. characterMakers.push(() => makeCharacter(
  28427. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28428. {
  28429. front: {
  28430. height: math.unit(14, "feet"),
  28431. weight: math.unit(959, "lb"),
  28432. name: "Front",
  28433. image: {
  28434. source: "./media/characters/arsenal/front.svg",
  28435. extra: 2357 / 2157,
  28436. bottom: 93 / 2458
  28437. }
  28438. },
  28439. },
  28440. [
  28441. {
  28442. name: "Normal",
  28443. height: math.unit(14, "feet"),
  28444. default: true
  28445. },
  28446. ]
  28447. ))
  28448. characterMakers.push(() => makeCharacter(
  28449. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28450. {
  28451. front: {
  28452. height: math.unit(6, "feet"),
  28453. weight: math.unit(150, "lb"),
  28454. name: "Front",
  28455. image: {
  28456. source: "./media/characters/adira/front.svg",
  28457. extra: 1078 / 1029,
  28458. bottom: 87 / 1166
  28459. }
  28460. },
  28461. },
  28462. [
  28463. {
  28464. name: "Micro",
  28465. height: math.unit(4, "inches"),
  28466. default: true
  28467. },
  28468. {
  28469. name: "Macro",
  28470. height: math.unit(50, "feet")
  28471. },
  28472. ]
  28473. ))
  28474. characterMakers.push(() => makeCharacter(
  28475. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28476. {
  28477. front: {
  28478. height: math.unit(16, "feet"),
  28479. weight: math.unit(1000, "lb"),
  28480. name: "Front",
  28481. image: {
  28482. source: "./media/characters/grim/front.svg",
  28483. extra: 622 / 614,
  28484. bottom: 18.1 / 642
  28485. }
  28486. },
  28487. back: {
  28488. height: math.unit(16, "feet"),
  28489. weight: math.unit(1000, "lb"),
  28490. name: "Back",
  28491. image: {
  28492. source: "./media/characters/grim/back.svg",
  28493. extra: 610.6 / 602,
  28494. bottom: 40.8 / 652
  28495. }
  28496. },
  28497. hunched: {
  28498. height: math.unit(9.75, "feet"),
  28499. weight: math.unit(1000, "lb"),
  28500. name: "Hunched",
  28501. image: {
  28502. source: "./media/characters/grim/hunched.svg",
  28503. extra: 304 / 297,
  28504. bottom: 35.4 / 394
  28505. }
  28506. },
  28507. },
  28508. [
  28509. {
  28510. name: "Normal",
  28511. height: math.unit(16, "feet"),
  28512. default: true
  28513. },
  28514. ]
  28515. ))
  28516. characterMakers.push(() => makeCharacter(
  28517. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28518. {
  28519. front: {
  28520. height: math.unit(2.3, "meters"),
  28521. weight: math.unit(300, "lb"),
  28522. name: "Front",
  28523. image: {
  28524. source: "./media/characters/sinja/front-sfw.svg",
  28525. extra: 1393 / 1294,
  28526. bottom: 70 / 1463
  28527. }
  28528. },
  28529. frontNsfw: {
  28530. height: math.unit(2.3, "meters"),
  28531. weight: math.unit(300, "lb"),
  28532. name: "Front (NSFW)",
  28533. image: {
  28534. source: "./media/characters/sinja/front-nsfw.svg",
  28535. extra: 1393 / 1294,
  28536. bottom: 70 / 1463
  28537. }
  28538. },
  28539. back: {
  28540. height: math.unit(2.3, "meters"),
  28541. weight: math.unit(300, "lb"),
  28542. name: "Back",
  28543. image: {
  28544. source: "./media/characters/sinja/back.svg",
  28545. extra: 1393 / 1294,
  28546. bottom: 70 / 1463
  28547. }
  28548. },
  28549. head: {
  28550. height: math.unit(1.771, "feet"),
  28551. name: "Head",
  28552. image: {
  28553. source: "./media/characters/sinja/head.svg"
  28554. }
  28555. },
  28556. slit: {
  28557. height: math.unit(0.8, "feet"),
  28558. name: "Slit",
  28559. image: {
  28560. source: "./media/characters/sinja/slit.svg"
  28561. }
  28562. },
  28563. },
  28564. [
  28565. {
  28566. name: "Normal",
  28567. height: math.unit(2.3, "meters")
  28568. },
  28569. {
  28570. name: "Macro",
  28571. height: math.unit(91, "meters"),
  28572. default: true
  28573. },
  28574. {
  28575. name: "Megamacro",
  28576. height: math.unit(91440, "meters")
  28577. },
  28578. {
  28579. name: "Gigamacro",
  28580. height: math.unit(60960000, "meters")
  28581. },
  28582. {
  28583. name: "Teramacro",
  28584. height: math.unit(9144000000, "meters")
  28585. },
  28586. ]
  28587. ))
  28588. characterMakers.push(() => makeCharacter(
  28589. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28590. {
  28591. front: {
  28592. height: math.unit(1.7, "meters"),
  28593. weight: math.unit(130, "lb"),
  28594. name: "Front",
  28595. image: {
  28596. source: "./media/characters/kyu/front.svg",
  28597. extra: 415 / 395,
  28598. bottom: 5 / 420
  28599. }
  28600. },
  28601. head: {
  28602. height: math.unit(1.75, "feet"),
  28603. name: "Head",
  28604. image: {
  28605. source: "./media/characters/kyu/head.svg"
  28606. }
  28607. },
  28608. foot: {
  28609. height: math.unit(0.81, "feet"),
  28610. name: "Foot",
  28611. image: {
  28612. source: "./media/characters/kyu/foot.svg"
  28613. }
  28614. },
  28615. },
  28616. [
  28617. {
  28618. name: "Normal",
  28619. height: math.unit(1.7, "meters")
  28620. },
  28621. {
  28622. name: "Macro",
  28623. height: math.unit(131, "feet"),
  28624. default: true
  28625. },
  28626. {
  28627. name: "Megamacro",
  28628. height: math.unit(91440, "meters")
  28629. },
  28630. {
  28631. name: "Gigamacro",
  28632. height: math.unit(60960000, "meters")
  28633. },
  28634. {
  28635. name: "Teramacro",
  28636. height: math.unit(9144000000, "meters")
  28637. },
  28638. ]
  28639. ))
  28640. characterMakers.push(() => makeCharacter(
  28641. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28642. {
  28643. front: {
  28644. height: math.unit(7 + 1 / 12, "feet"),
  28645. weight: math.unit(250, "lb"),
  28646. name: "Front",
  28647. image: {
  28648. source: "./media/characters/joey/front.svg",
  28649. extra: 1791 / 1537,
  28650. bottom: 28 / 1816
  28651. }
  28652. },
  28653. },
  28654. [
  28655. {
  28656. name: "Micro",
  28657. height: math.unit(3, "inches")
  28658. },
  28659. {
  28660. name: "Normal",
  28661. height: math.unit(7 + 1 / 12, "feet"),
  28662. default: true
  28663. },
  28664. ]
  28665. ))
  28666. characterMakers.push(() => makeCharacter(
  28667. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28668. {
  28669. front: {
  28670. height: math.unit(165, "cm"),
  28671. weight: math.unit(140, "lb"),
  28672. name: "Front",
  28673. image: {
  28674. source: "./media/characters/sam-evans/front.svg",
  28675. extra: 3417 / 3230,
  28676. bottom: 41.3 / 3417
  28677. }
  28678. },
  28679. frontSixTails: {
  28680. height: math.unit(165, "cm"),
  28681. weight: math.unit(140, "lb"),
  28682. name: "Front-six-tails",
  28683. image: {
  28684. source: "./media/characters/sam-evans/front-six-tails.svg",
  28685. extra: 3417 / 3230,
  28686. bottom: 41.3 / 3417
  28687. }
  28688. },
  28689. back: {
  28690. height: math.unit(165, "cm"),
  28691. weight: math.unit(140, "lb"),
  28692. name: "Back",
  28693. image: {
  28694. source: "./media/characters/sam-evans/back.svg",
  28695. extra: 3227 / 3032,
  28696. bottom: 6.8 / 3234
  28697. }
  28698. },
  28699. face: {
  28700. height: math.unit(0.68, "feet"),
  28701. name: "Face",
  28702. image: {
  28703. source: "./media/characters/sam-evans/face.svg"
  28704. }
  28705. },
  28706. },
  28707. [
  28708. {
  28709. name: "Normal",
  28710. height: math.unit(165, "cm"),
  28711. default: true
  28712. },
  28713. {
  28714. name: "Macro",
  28715. height: math.unit(100, "meters")
  28716. },
  28717. {
  28718. name: "Macro+",
  28719. height: math.unit(800, "meters")
  28720. },
  28721. {
  28722. name: "Macro++",
  28723. height: math.unit(3, "km")
  28724. },
  28725. {
  28726. name: "Macro+++",
  28727. height: math.unit(30, "km")
  28728. },
  28729. ]
  28730. ))
  28731. characterMakers.push(() => makeCharacter(
  28732. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28733. {
  28734. front: {
  28735. height: math.unit(10, "feet"),
  28736. weight: math.unit(750, "lb"),
  28737. name: "Front",
  28738. image: {
  28739. source: "./media/characters/juliet-a/front.svg",
  28740. extra: 1766 / 1720,
  28741. bottom: 43 / 1809
  28742. }
  28743. },
  28744. back: {
  28745. height: math.unit(10, "feet"),
  28746. weight: math.unit(750, "lb"),
  28747. name: "Back",
  28748. image: {
  28749. source: "./media/characters/juliet-a/back.svg",
  28750. extra: 1781 / 1734,
  28751. bottom: 35 / 1810,
  28752. }
  28753. },
  28754. },
  28755. [
  28756. {
  28757. name: "Normal",
  28758. height: math.unit(10, "feet"),
  28759. default: true
  28760. },
  28761. {
  28762. name: "Dragon Form",
  28763. height: math.unit(250, "feet")
  28764. },
  28765. {
  28766. name: "Macro",
  28767. height: math.unit(1000, "feet")
  28768. },
  28769. {
  28770. name: "Megamacro",
  28771. height: math.unit(10000, "feet")
  28772. }
  28773. ]
  28774. ))
  28775. characterMakers.push(() => makeCharacter(
  28776. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28777. {
  28778. regular: {
  28779. height: math.unit(7 + 3 / 12, "feet"),
  28780. weight: math.unit(260, "lb"),
  28781. name: "Regular",
  28782. image: {
  28783. source: "./media/characters/wild/regular.svg",
  28784. extra: 97.45 / 92,
  28785. bottom: 6.8 / 104.3
  28786. }
  28787. },
  28788. biggums: {
  28789. height: math.unit(8 + 6 / 12, "feet"),
  28790. weight: math.unit(425, "lb"),
  28791. name: "Biggums",
  28792. image: {
  28793. source: "./media/characters/wild/biggums.svg",
  28794. extra: 97.45 / 92,
  28795. bottom: 7.5 / 132.34
  28796. }
  28797. },
  28798. mawRegular: {
  28799. height: math.unit(1.24, "feet"),
  28800. name: "Maw (Regular)",
  28801. image: {
  28802. source: "./media/characters/wild/maw.svg"
  28803. }
  28804. },
  28805. mawBiggums: {
  28806. height: math.unit(1.47, "feet"),
  28807. name: "Maw (Biggums)",
  28808. image: {
  28809. source: "./media/characters/wild/maw.svg"
  28810. }
  28811. },
  28812. },
  28813. [
  28814. {
  28815. name: "Normal",
  28816. height: math.unit(7 + 3 / 12, "feet"),
  28817. default: true
  28818. },
  28819. ]
  28820. ))
  28821. characterMakers.push(() => makeCharacter(
  28822. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28823. {
  28824. front: {
  28825. height: math.unit(2.5, "meters"),
  28826. weight: math.unit(200, "kg"),
  28827. name: "Front",
  28828. image: {
  28829. source: "./media/characters/vidar/front.svg",
  28830. extra: 2994 / 2795,
  28831. bottom: 56 / 3061
  28832. }
  28833. },
  28834. back: {
  28835. height: math.unit(2.5, "meters"),
  28836. weight: math.unit(200, "kg"),
  28837. name: "Back",
  28838. image: {
  28839. source: "./media/characters/vidar/back.svg",
  28840. extra: 3131 / 2928,
  28841. bottom: 13.5 / 3141.5
  28842. }
  28843. },
  28844. feral: {
  28845. height: math.unit(2.5, "meters"),
  28846. weight: math.unit(2000, "kg"),
  28847. name: "Feral",
  28848. image: {
  28849. source: "./media/characters/vidar/feral.svg",
  28850. extra: 2790 / 1765,
  28851. bottom: 6 / 2796
  28852. }
  28853. },
  28854. },
  28855. [
  28856. {
  28857. name: "Normal",
  28858. height: math.unit(2.5, "meters"),
  28859. default: true
  28860. },
  28861. {
  28862. name: "Macro",
  28863. height: math.unit(100, "meters")
  28864. },
  28865. ]
  28866. ))
  28867. characterMakers.push(() => makeCharacter(
  28868. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28869. {
  28870. front: {
  28871. height: math.unit(5 + 9 / 12, "feet"),
  28872. weight: math.unit(120, "lb"),
  28873. name: "Front",
  28874. image: {
  28875. source: "./media/characters/ash/front.svg",
  28876. extra: 2189 / 1961,
  28877. bottom: 5.2 / 2194
  28878. }
  28879. },
  28880. },
  28881. [
  28882. {
  28883. name: "Normal",
  28884. height: math.unit(5 + 9 / 12, "feet"),
  28885. default: true
  28886. },
  28887. ]
  28888. ))
  28889. characterMakers.push(() => makeCharacter(
  28890. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28891. {
  28892. front: {
  28893. height: math.unit(9, "feet"),
  28894. weight: math.unit(10000, "lb"),
  28895. name: "Front",
  28896. image: {
  28897. source: "./media/characters/gygabite/front.svg",
  28898. bottom: 31.7 / 537.8,
  28899. extra: 505 / 370
  28900. }
  28901. },
  28902. },
  28903. [
  28904. {
  28905. name: "Normal",
  28906. height: math.unit(9, "feet"),
  28907. default: true
  28908. },
  28909. ]
  28910. ))
  28911. characterMakers.push(() => makeCharacter(
  28912. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28913. {
  28914. front: {
  28915. height: math.unit(12, "feet"),
  28916. weight: math.unit(4000, "lb"),
  28917. name: "Front",
  28918. image: {
  28919. source: "./media/characters/p0tat0/front.svg",
  28920. extra: 1065 / 921,
  28921. bottom: 55.7 / 1121.25
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Normal",
  28928. height: math.unit(12, "feet"),
  28929. default: true
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28935. {
  28936. side: {
  28937. height: math.unit(6.5, "feet"),
  28938. weight: math.unit(800, "lb"),
  28939. name: "Side",
  28940. image: {
  28941. source: "./media/characters/dusk/side.svg",
  28942. extra: 615 / 373,
  28943. bottom: 53 / 664
  28944. }
  28945. },
  28946. sitting: {
  28947. height: math.unit(7, "feet"),
  28948. weight: math.unit(800, "lb"),
  28949. name: "Sitting",
  28950. image: {
  28951. source: "./media/characters/dusk/sitting.svg",
  28952. extra: 753 / 425,
  28953. bottom: 33 / 774
  28954. }
  28955. },
  28956. head: {
  28957. height: math.unit(6.1, "feet"),
  28958. name: "Head",
  28959. image: {
  28960. source: "./media/characters/dusk/head.svg"
  28961. }
  28962. },
  28963. },
  28964. [
  28965. {
  28966. name: "Normal",
  28967. height: math.unit(7, "feet"),
  28968. default: true
  28969. },
  28970. ]
  28971. ))
  28972. characterMakers.push(() => makeCharacter(
  28973. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28974. {
  28975. front: {
  28976. height: math.unit(15, "feet"),
  28977. weight: math.unit(7000, "lb"),
  28978. name: "Front",
  28979. image: {
  28980. source: "./media/characters/jay-direwolf/front.svg",
  28981. extra: 1810 / 1732,
  28982. bottom: 66 / 1892
  28983. }
  28984. },
  28985. },
  28986. [
  28987. {
  28988. name: "Normal",
  28989. height: math.unit(15, "feet"),
  28990. default: true
  28991. },
  28992. ]
  28993. ))
  28994. characterMakers.push(() => makeCharacter(
  28995. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28996. {
  28997. front: {
  28998. height: math.unit(4 + 9 / 12, "feet"),
  28999. weight: math.unit(130, "lb"),
  29000. name: "Front",
  29001. image: {
  29002. source: "./media/characters/anchovie/front.svg",
  29003. extra: 382 / 350,
  29004. bottom: 25 / 409
  29005. }
  29006. },
  29007. back: {
  29008. height: math.unit(4 + 9 / 12, "feet"),
  29009. weight: math.unit(130, "lb"),
  29010. name: "Back",
  29011. image: {
  29012. source: "./media/characters/anchovie/back.svg",
  29013. extra: 385 / 352,
  29014. bottom: 16.6 / 402
  29015. }
  29016. },
  29017. frontDressed: {
  29018. height: math.unit(4 + 9 / 12, "feet"),
  29019. weight: math.unit(130, "lb"),
  29020. name: "Front (Dressed)",
  29021. image: {
  29022. source: "./media/characters/anchovie/front-dressed.svg",
  29023. extra: 382 / 350,
  29024. bottom: 25 / 409
  29025. }
  29026. },
  29027. backDressed: {
  29028. height: math.unit(4 + 9 / 12, "feet"),
  29029. weight: math.unit(130, "lb"),
  29030. name: "Back (Dressed)",
  29031. image: {
  29032. source: "./media/characters/anchovie/back-dressed.svg",
  29033. extra: 385 / 352,
  29034. bottom: 16.6 / 402
  29035. }
  29036. },
  29037. },
  29038. [
  29039. {
  29040. name: "Micro",
  29041. height: math.unit(6.4, "inches")
  29042. },
  29043. {
  29044. name: "Normal",
  29045. height: math.unit(4 + 9 / 12, "feet"),
  29046. default: true
  29047. },
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29052. {
  29053. front: {
  29054. height: math.unit(2, "meters"),
  29055. weight: math.unit(180, "lb"),
  29056. name: "Front",
  29057. image: {
  29058. source: "./media/characters/acidrenamon/front.svg",
  29059. extra: 987 / 890,
  29060. bottom: 22.8 / 1009
  29061. }
  29062. },
  29063. back: {
  29064. height: math.unit(2, "meters"),
  29065. weight: math.unit(180, "lb"),
  29066. name: "Back",
  29067. image: {
  29068. source: "./media/characters/acidrenamon/back.svg",
  29069. extra: 983 / 891,
  29070. bottom: 8.4 / 992
  29071. }
  29072. },
  29073. head: {
  29074. height: math.unit(1.92, "feet"),
  29075. name: "Head",
  29076. image: {
  29077. source: "./media/characters/acidrenamon/head.svg"
  29078. }
  29079. },
  29080. rump: {
  29081. height: math.unit(1.72, "feet"),
  29082. name: "Rump",
  29083. image: {
  29084. source: "./media/characters/acidrenamon/rump.svg"
  29085. }
  29086. },
  29087. tail: {
  29088. height: math.unit(4.2, "feet"),
  29089. name: "Tail",
  29090. image: {
  29091. source: "./media/characters/acidrenamon/tail.svg"
  29092. }
  29093. },
  29094. },
  29095. [
  29096. {
  29097. name: "Normal",
  29098. height: math.unit(2, "meters"),
  29099. default: true
  29100. },
  29101. {
  29102. name: "Minimacro",
  29103. height: math.unit(7, "meters")
  29104. },
  29105. {
  29106. name: "Macro",
  29107. height: math.unit(200, "meters")
  29108. },
  29109. {
  29110. name: "Gigamacro",
  29111. height: math.unit(0.2, "earths")
  29112. },
  29113. ]
  29114. ))
  29115. characterMakers.push(() => makeCharacter(
  29116. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29117. {
  29118. front: {
  29119. height: math.unit(152, "feet"),
  29120. name: "Front",
  29121. image: {
  29122. source: "./media/characters/kenzie-lee/front.svg",
  29123. extra: 1869/1774,
  29124. bottom: 128/1997
  29125. }
  29126. },
  29127. side: {
  29128. height: math.unit(86, "feet"),
  29129. name: "Side",
  29130. image: {
  29131. source: "./media/characters/kenzie-lee/side.svg",
  29132. extra: 930/815,
  29133. bottom: 177/1107
  29134. }
  29135. },
  29136. paw: {
  29137. height: math.unit(15, "feet"),
  29138. name: "Paw",
  29139. image: {
  29140. source: "./media/characters/kenzie-lee/paw.svg"
  29141. }
  29142. },
  29143. },
  29144. [
  29145. {
  29146. name: "Kenzie Flea",
  29147. height: math.unit(2, "mm"),
  29148. default: true
  29149. },
  29150. {
  29151. name: "Micro",
  29152. height: math.unit(2, "inches")
  29153. },
  29154. {
  29155. name: "Normal",
  29156. height: math.unit(152, "feet")
  29157. },
  29158. {
  29159. name: "Megamacro",
  29160. height: math.unit(7, "miles")
  29161. },
  29162. {
  29163. name: "Gigamacro",
  29164. height: math.unit(8000, "miles")
  29165. },
  29166. ]
  29167. ))
  29168. characterMakers.push(() => makeCharacter(
  29169. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29170. {
  29171. front: {
  29172. height: math.unit(6, "feet"),
  29173. name: "Front",
  29174. image: {
  29175. source: "./media/characters/withers/front.svg",
  29176. extra: 1935/1760,
  29177. bottom: 72/2007
  29178. }
  29179. },
  29180. back: {
  29181. height: math.unit(6, "feet"),
  29182. name: "Back",
  29183. image: {
  29184. source: "./media/characters/withers/back.svg",
  29185. extra: 1944/1792,
  29186. bottom: 12/1956
  29187. }
  29188. },
  29189. dressed: {
  29190. height: math.unit(6, "feet"),
  29191. name: "Dressed",
  29192. image: {
  29193. source: "./media/characters/withers/dressed.svg",
  29194. extra: 1937/1765,
  29195. bottom: 73/2010
  29196. }
  29197. },
  29198. phase1: {
  29199. height: math.unit(1.1, "feet"),
  29200. name: "Phase 1",
  29201. image: {
  29202. source: "./media/characters/withers/phase-1.svg",
  29203. extra: 1885/1232,
  29204. bottom: 0/1885
  29205. }
  29206. },
  29207. phase2: {
  29208. height: math.unit(1.05, "feet"),
  29209. name: "Phase 2",
  29210. image: {
  29211. source: "./media/characters/withers/phase-2.svg",
  29212. extra: 1792/1090,
  29213. bottom: 0/1792
  29214. }
  29215. },
  29216. partyWipe: {
  29217. height: math.unit(1.1, "feet"),
  29218. name: "Party Wipe",
  29219. image: {
  29220. source: "./media/characters/withers/party-wipe.svg",
  29221. extra: 1864/1207,
  29222. bottom: 0/1864
  29223. }
  29224. },
  29225. },
  29226. [
  29227. {
  29228. name: "Macro",
  29229. height: math.unit(167, "feet"),
  29230. default: true
  29231. },
  29232. {
  29233. name: "Megamacro",
  29234. height: math.unit(15, "miles")
  29235. }
  29236. ]
  29237. ))
  29238. characterMakers.push(() => makeCharacter(
  29239. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29240. {
  29241. front: {
  29242. height: math.unit(6 + 7 / 12, "feet"),
  29243. weight: math.unit(250, "lb"),
  29244. name: "Front",
  29245. image: {
  29246. source: "./media/characters/nemoskii/front.svg",
  29247. extra: 2270 / 1734,
  29248. bottom: 86 / 2354
  29249. }
  29250. },
  29251. back: {
  29252. height: math.unit(6 + 7 / 12, "feet"),
  29253. weight: math.unit(250, "lb"),
  29254. name: "Back",
  29255. image: {
  29256. source: "./media/characters/nemoskii/back.svg",
  29257. extra: 1845 / 1788,
  29258. bottom: 10.5 / 1852
  29259. }
  29260. },
  29261. head: {
  29262. height: math.unit(1.31, "feet"),
  29263. name: "Head",
  29264. image: {
  29265. source: "./media/characters/nemoskii/head.svg"
  29266. }
  29267. },
  29268. },
  29269. [
  29270. {
  29271. name: "Micro",
  29272. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29273. },
  29274. {
  29275. name: "Normal",
  29276. height: math.unit(6 + 7 / 12, "feet"),
  29277. default: true
  29278. },
  29279. {
  29280. name: "Macro",
  29281. height: math.unit((6 + 7 / 12) * 150, "feet")
  29282. },
  29283. {
  29284. name: "Macro+",
  29285. height: math.unit((6 + 7 / 12) * 500, "feet")
  29286. },
  29287. {
  29288. name: "Megamacro",
  29289. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29290. },
  29291. ]
  29292. ))
  29293. characterMakers.push(() => makeCharacter(
  29294. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29295. {
  29296. front: {
  29297. height: math.unit(1, "mile"),
  29298. weight: math.unit(265261.9, "lb"),
  29299. name: "Front",
  29300. image: {
  29301. source: "./media/characters/shui/front.svg",
  29302. extra: 1633 / 1564,
  29303. bottom: 91.5 / 1726
  29304. }
  29305. },
  29306. },
  29307. [
  29308. {
  29309. name: "Macro",
  29310. height: math.unit(1, "mile"),
  29311. default: true
  29312. },
  29313. ]
  29314. ))
  29315. characterMakers.push(() => makeCharacter(
  29316. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29317. {
  29318. front: {
  29319. height: math.unit(12 + 6 / 12, "feet"),
  29320. weight: math.unit(1342, "lb"),
  29321. name: "Front",
  29322. image: {
  29323. source: "./media/characters/arokh-takakura/front.svg",
  29324. extra: 1089 / 1043,
  29325. bottom: 77.4 / 1176.7
  29326. }
  29327. },
  29328. back: {
  29329. height: math.unit(12 + 6 / 12, "feet"),
  29330. weight: math.unit(1342, "lb"),
  29331. name: "Back",
  29332. image: {
  29333. source: "./media/characters/arokh-takakura/back.svg",
  29334. extra: 1046 / 1019,
  29335. bottom: 102 / 1150
  29336. }
  29337. },
  29338. },
  29339. [
  29340. {
  29341. name: "Big",
  29342. height: math.unit(12 + 6 / 12, "feet"),
  29343. default: true
  29344. },
  29345. ]
  29346. ))
  29347. characterMakers.push(() => makeCharacter(
  29348. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29349. {
  29350. front: {
  29351. height: math.unit(5 + 6 / 12, "feet"),
  29352. weight: math.unit(150, "lb"),
  29353. name: "Front",
  29354. image: {
  29355. source: "./media/characters/theo/front.svg",
  29356. extra: 1184 / 1131,
  29357. bottom: 7.4 / 1191
  29358. }
  29359. },
  29360. },
  29361. [
  29362. {
  29363. name: "Micro",
  29364. height: math.unit(5, "inches")
  29365. },
  29366. {
  29367. name: "Normal",
  29368. height: math.unit(5 + 6 / 12, "feet"),
  29369. default: true
  29370. },
  29371. ]
  29372. ))
  29373. characterMakers.push(() => makeCharacter(
  29374. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29375. {
  29376. front: {
  29377. height: math.unit(5 + 9 / 12, "feet"),
  29378. weight: math.unit(130, "lb"),
  29379. name: "Front",
  29380. image: {
  29381. source: "./media/characters/cecelia-swift/front.svg",
  29382. extra: 502 / 484,
  29383. bottom: 23 / 523
  29384. }
  29385. },
  29386. back: {
  29387. height: math.unit(5 + 9 / 12, "feet"),
  29388. weight: math.unit(130, "lb"),
  29389. name: "Back",
  29390. image: {
  29391. source: "./media/characters/cecelia-swift/back.svg",
  29392. extra: 499 / 485,
  29393. bottom: 12 / 511
  29394. }
  29395. },
  29396. head: {
  29397. height: math.unit(0.90, "feet"),
  29398. name: "Head",
  29399. image: {
  29400. source: "./media/characters/cecelia-swift/head.svg"
  29401. }
  29402. },
  29403. rump: {
  29404. height: math.unit(1.75, "feet"),
  29405. name: "Rump",
  29406. image: {
  29407. source: "./media/characters/cecelia-swift/rump.svg"
  29408. }
  29409. },
  29410. },
  29411. [
  29412. {
  29413. name: "Normal",
  29414. height: math.unit(5 + 9 / 12, "feet"),
  29415. default: true
  29416. },
  29417. {
  29418. name: "Big",
  29419. height: math.unit(50, "feet")
  29420. },
  29421. {
  29422. name: "Macro",
  29423. height: math.unit(100, "feet")
  29424. },
  29425. {
  29426. name: "Macro+",
  29427. height: math.unit(500, "feet")
  29428. },
  29429. {
  29430. name: "Macro++",
  29431. height: math.unit(1000, "feet")
  29432. },
  29433. ]
  29434. ))
  29435. characterMakers.push(() => makeCharacter(
  29436. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29437. {
  29438. front: {
  29439. height: math.unit(6, "feet"),
  29440. weight: math.unit(150, "lb"),
  29441. name: "Front",
  29442. image: {
  29443. source: "./media/characters/kaunan/front.svg",
  29444. extra: 2890 / 2523,
  29445. bottom: 49 / 2939
  29446. }
  29447. },
  29448. },
  29449. [
  29450. {
  29451. name: "Macro",
  29452. height: math.unit(150, "feet"),
  29453. default: true
  29454. },
  29455. ]
  29456. ))
  29457. characterMakers.push(() => makeCharacter(
  29458. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29459. {
  29460. dressed: {
  29461. height: math.unit(175, "cm"),
  29462. weight: math.unit(60, "kg"),
  29463. name: "Dressed",
  29464. image: {
  29465. source: "./media/characters/fei/dressed.svg",
  29466. extra: 1402/1278,
  29467. bottom: 27/1429
  29468. }
  29469. },
  29470. nude: {
  29471. height: math.unit(175, "cm"),
  29472. weight: math.unit(60, "kg"),
  29473. name: "Nude",
  29474. image: {
  29475. source: "./media/characters/fei/nude.svg",
  29476. extra: 1402/1278,
  29477. bottom: 27/1429
  29478. }
  29479. },
  29480. heels: {
  29481. height: math.unit(0.466, "feet"),
  29482. name: "Heels",
  29483. image: {
  29484. source: "./media/characters/fei/heels.svg",
  29485. extra: 156/152,
  29486. bottom: 28/184
  29487. }
  29488. },
  29489. },
  29490. [
  29491. {
  29492. name: "Mortal",
  29493. height: math.unit(175, "cm")
  29494. },
  29495. {
  29496. name: "Normal",
  29497. height: math.unit(3500, "m")
  29498. },
  29499. {
  29500. name: "Stroll",
  29501. height: math.unit(18.4, "km"),
  29502. default: true
  29503. },
  29504. {
  29505. name: "Showoff",
  29506. height: math.unit(175, "km")
  29507. },
  29508. ]
  29509. ))
  29510. characterMakers.push(() => makeCharacter(
  29511. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29512. {
  29513. front: {
  29514. height: math.unit(7, "feet"),
  29515. weight: math.unit(1000, "kg"),
  29516. name: "Front",
  29517. image: {
  29518. source: "./media/characters/edrax/front.svg",
  29519. extra: 2838 / 2550,
  29520. bottom: 130 / 2968
  29521. }
  29522. },
  29523. },
  29524. [
  29525. {
  29526. name: "Small",
  29527. height: math.unit(7, "feet")
  29528. },
  29529. {
  29530. name: "Normal",
  29531. height: math.unit(1500, "meters")
  29532. },
  29533. {
  29534. name: "Mega",
  29535. height: math.unit(12000000, "km"),
  29536. default: true
  29537. },
  29538. {
  29539. name: "Megamacro",
  29540. height: math.unit(10600000, "lightyears")
  29541. },
  29542. {
  29543. name: "Hypermacro",
  29544. height: math.unit(256, "yottameters")
  29545. },
  29546. ]
  29547. ))
  29548. characterMakers.push(() => makeCharacter(
  29549. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29550. {
  29551. front: {
  29552. height: math.unit(10, "feet"),
  29553. weight: math.unit(750, "lb"),
  29554. name: "Front",
  29555. image: {
  29556. source: "./media/characters/clove/front.svg",
  29557. extra: 1918/1751,
  29558. bottom: 52/1970
  29559. }
  29560. },
  29561. back: {
  29562. height: math.unit(10, "feet"),
  29563. weight: math.unit(750, "lb"),
  29564. name: "Back",
  29565. image: {
  29566. source: "./media/characters/clove/back.svg",
  29567. extra: 1912/1747,
  29568. bottom: 50/1962
  29569. }
  29570. },
  29571. },
  29572. [
  29573. {
  29574. name: "Normal",
  29575. height: math.unit(10, "feet"),
  29576. default: true
  29577. },
  29578. ]
  29579. ))
  29580. characterMakers.push(() => makeCharacter(
  29581. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29582. {
  29583. front: {
  29584. height: math.unit(4, "feet"),
  29585. weight: math.unit(50, "lb"),
  29586. name: "Front",
  29587. image: {
  29588. source: "./media/characters/alex-rabbit/front.svg",
  29589. extra: 507 / 458,
  29590. bottom: 18.5 / 527
  29591. }
  29592. },
  29593. back: {
  29594. height: math.unit(4, "feet"),
  29595. weight: math.unit(50, "lb"),
  29596. name: "Back",
  29597. image: {
  29598. source: "./media/characters/alex-rabbit/back.svg",
  29599. extra: 502 / 460,
  29600. bottom: 18.9 / 521
  29601. }
  29602. },
  29603. },
  29604. [
  29605. {
  29606. name: "Normal",
  29607. height: math.unit(4, "feet"),
  29608. default: true
  29609. },
  29610. ]
  29611. ))
  29612. characterMakers.push(() => makeCharacter(
  29613. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29614. {
  29615. front: {
  29616. height: math.unit(1 + 3 / 12, "feet"),
  29617. weight: math.unit(80, "lb"),
  29618. name: "Front",
  29619. image: {
  29620. source: "./media/characters/zander-rose/front.svg",
  29621. extra: 916 / 797,
  29622. bottom: 17 / 933
  29623. }
  29624. },
  29625. back: {
  29626. height: math.unit(1 + 3 / 12, "feet"),
  29627. weight: math.unit(80, "lb"),
  29628. name: "Back",
  29629. image: {
  29630. source: "./media/characters/zander-rose/back.svg",
  29631. extra: 903 / 779,
  29632. bottom: 31 / 934
  29633. }
  29634. },
  29635. },
  29636. [
  29637. {
  29638. name: "Normal",
  29639. height: math.unit(1 + 3 / 12, "feet"),
  29640. default: true
  29641. },
  29642. ]
  29643. ))
  29644. characterMakers.push(() => makeCharacter(
  29645. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29646. {
  29647. anthro: {
  29648. height: math.unit(6, "feet"),
  29649. weight: math.unit(150, "lb"),
  29650. name: "Anthro",
  29651. image: {
  29652. source: "./media/characters/razz/anthro.svg",
  29653. extra: 1437 / 1343,
  29654. bottom: 48 / 1485
  29655. }
  29656. },
  29657. feral: {
  29658. height: math.unit(6, "feet"),
  29659. weight: math.unit(150, "lb"),
  29660. name: "Feral",
  29661. image: {
  29662. source: "./media/characters/razz/feral.svg",
  29663. extra: 2569 / 1385,
  29664. bottom: 95 / 2664
  29665. }
  29666. },
  29667. },
  29668. [
  29669. {
  29670. name: "Normal",
  29671. height: math.unit(6, "feet"),
  29672. default: true
  29673. },
  29674. ]
  29675. ))
  29676. characterMakers.push(() => makeCharacter(
  29677. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29678. {
  29679. front: {
  29680. height: math.unit(9 + 4 / 12, "feet"),
  29681. weight: math.unit(500, "lb"),
  29682. name: "Front",
  29683. image: {
  29684. source: "./media/characters/morrigan/front.svg",
  29685. extra: 2707 / 2579,
  29686. bottom: 156 / 2863
  29687. }
  29688. },
  29689. },
  29690. [
  29691. {
  29692. name: "Normal",
  29693. height: math.unit(9 + 4 / 12, "feet"),
  29694. default: true
  29695. },
  29696. ]
  29697. ))
  29698. characterMakers.push(() => makeCharacter(
  29699. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29700. {
  29701. front: {
  29702. height: math.unit(5, "stories"),
  29703. weight: math.unit(4000, "lb"),
  29704. name: "Front",
  29705. image: {
  29706. source: "./media/characters/jenene/front.svg",
  29707. extra: 1780 / 1710,
  29708. bottom: 57 / 1837
  29709. }
  29710. },
  29711. },
  29712. [
  29713. {
  29714. name: "Normal",
  29715. height: math.unit(5, "stories"),
  29716. default: true
  29717. },
  29718. ]
  29719. ))
  29720. characterMakers.push(() => makeCharacter(
  29721. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29722. {
  29723. taurSfw: {
  29724. height: math.unit(10, "meters"),
  29725. weight: math.unit(17500, "kg"),
  29726. name: "Taur",
  29727. image: {
  29728. source: "./media/characters/faey/taur-sfw.svg",
  29729. extra: 1200 / 968,
  29730. bottom: 41 / 1241
  29731. }
  29732. },
  29733. chestmaw: {
  29734. height: math.unit(2.01, "meters"),
  29735. name: "Chestmaw",
  29736. image: {
  29737. source: "./media/characters/faey/chestmaw.svg"
  29738. }
  29739. },
  29740. foot: {
  29741. height: math.unit(2.43, "meters"),
  29742. name: "Foot",
  29743. image: {
  29744. source: "./media/characters/faey/foot.svg"
  29745. }
  29746. },
  29747. jaws: {
  29748. height: math.unit(1.66, "meters"),
  29749. name: "Jaws",
  29750. image: {
  29751. source: "./media/characters/faey/jaws.svg"
  29752. }
  29753. },
  29754. tongues: {
  29755. height: math.unit(2.01, "meters"),
  29756. name: "Tongues",
  29757. image: {
  29758. source: "./media/characters/faey/tongues.svg"
  29759. }
  29760. },
  29761. },
  29762. [
  29763. {
  29764. name: "Small",
  29765. height: math.unit(10, "meters"),
  29766. default: true
  29767. },
  29768. {
  29769. name: "Big",
  29770. height: math.unit(500000, "km")
  29771. },
  29772. ]
  29773. ))
  29774. characterMakers.push(() => makeCharacter(
  29775. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29776. {
  29777. front: {
  29778. height: math.unit(7, "feet"),
  29779. weight: math.unit(275, "lb"),
  29780. name: "Front",
  29781. image: {
  29782. source: "./media/characters/roku/front.svg",
  29783. extra: 903 / 878,
  29784. bottom: 37 / 940
  29785. }
  29786. },
  29787. },
  29788. [
  29789. {
  29790. name: "Normal",
  29791. height: math.unit(7, "feet"),
  29792. default: true
  29793. },
  29794. {
  29795. name: "Macro",
  29796. height: math.unit(500, "feet")
  29797. },
  29798. {
  29799. name: "Megamacro",
  29800. height: math.unit(200, "miles")
  29801. },
  29802. ]
  29803. ))
  29804. characterMakers.push(() => makeCharacter(
  29805. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29806. {
  29807. front: {
  29808. height: math.unit(6 + 2 / 12, "feet"),
  29809. weight: math.unit(150, "lb"),
  29810. name: "Front",
  29811. image: {
  29812. source: "./media/characters/lira/front.svg",
  29813. extra: 1727 / 1605,
  29814. bottom: 26 / 1753
  29815. }
  29816. },
  29817. back: {
  29818. height: math.unit(6 + 2 / 12, "feet"),
  29819. weight: math.unit(150, "lb"),
  29820. name: "Back",
  29821. image: {
  29822. source: "./media/characters/lira/back.svg",
  29823. extra: 1713/1621,
  29824. bottom: 20/1733
  29825. }
  29826. },
  29827. hand: {
  29828. height: math.unit(0.75, "feet"),
  29829. name: "Hand",
  29830. image: {
  29831. source: "./media/characters/lira/hand.svg"
  29832. }
  29833. },
  29834. maw: {
  29835. height: math.unit(0.65, "feet"),
  29836. name: "Maw",
  29837. image: {
  29838. source: "./media/characters/lira/maw.svg"
  29839. }
  29840. },
  29841. pawDigi: {
  29842. height: math.unit(1.6, "feet"),
  29843. name: "Paw Digi",
  29844. image: {
  29845. source: "./media/characters/lira/paw-digi.svg"
  29846. }
  29847. },
  29848. pawPlanti: {
  29849. height: math.unit(1.4, "feet"),
  29850. name: "Paw Planti",
  29851. image: {
  29852. source: "./media/characters/lira/paw-planti.svg"
  29853. }
  29854. },
  29855. },
  29856. [
  29857. {
  29858. name: "Normal",
  29859. height: math.unit(6 + 2 / 12, "feet"),
  29860. default: true
  29861. },
  29862. {
  29863. name: "Macro",
  29864. height: math.unit(100, "feet")
  29865. },
  29866. {
  29867. name: "Macro²",
  29868. height: math.unit(1600, "feet")
  29869. },
  29870. {
  29871. name: "Planetary",
  29872. height: math.unit(20, "earths")
  29873. },
  29874. ]
  29875. ))
  29876. characterMakers.push(() => makeCharacter(
  29877. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29878. {
  29879. front: {
  29880. height: math.unit(6, "feet"),
  29881. weight: math.unit(150, "lb"),
  29882. name: "Front",
  29883. image: {
  29884. source: "./media/characters/hadjet/front.svg",
  29885. extra: 1480 / 1346,
  29886. bottom: 26 / 1506
  29887. }
  29888. },
  29889. frontNsfw: {
  29890. height: math.unit(6, "feet"),
  29891. weight: math.unit(150, "lb"),
  29892. name: "Front (NSFW)",
  29893. image: {
  29894. source: "./media/characters/hadjet/front-nsfw.svg",
  29895. extra: 1440 / 1358,
  29896. bottom: 52 / 1492
  29897. }
  29898. },
  29899. },
  29900. [
  29901. {
  29902. name: "Macro",
  29903. height: math.unit(10, "stories"),
  29904. default: true
  29905. },
  29906. {
  29907. name: "Megamacro",
  29908. height: math.unit(1.5, "miles")
  29909. },
  29910. {
  29911. name: "Megamacro+",
  29912. height: math.unit(5, "miles")
  29913. },
  29914. ]
  29915. ))
  29916. characterMakers.push(() => makeCharacter(
  29917. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29918. {
  29919. side: {
  29920. height: math.unit(106, "feet"),
  29921. weight: math.unit(500, "tonnes"),
  29922. name: "Side",
  29923. image: {
  29924. source: "./media/characters/kodran/side.svg",
  29925. extra: 553 / 480,
  29926. bottom: 33 / 586
  29927. }
  29928. },
  29929. front: {
  29930. height: math.unit(132, "feet"),
  29931. weight: math.unit(500, "tonnes"),
  29932. name: "Front",
  29933. image: {
  29934. source: "./media/characters/kodran/front.svg",
  29935. extra: 667 / 643,
  29936. bottom: 42 / 709
  29937. }
  29938. },
  29939. flying: {
  29940. height: math.unit(350, "feet"),
  29941. weight: math.unit(500, "tonnes"),
  29942. name: "Flying",
  29943. image: {
  29944. source: "./media/characters/kodran/flying.svg"
  29945. }
  29946. },
  29947. foot: {
  29948. height: math.unit(33, "feet"),
  29949. name: "Foot",
  29950. image: {
  29951. source: "./media/characters/kodran/foot.svg"
  29952. }
  29953. },
  29954. footFront: {
  29955. height: math.unit(19, "feet"),
  29956. name: "Foot (Front)",
  29957. image: {
  29958. source: "./media/characters/kodran/foot-front.svg",
  29959. extra: 261 / 261,
  29960. bottom: 91 / 352
  29961. }
  29962. },
  29963. headFront: {
  29964. height: math.unit(53, "feet"),
  29965. name: "Head (Front)",
  29966. image: {
  29967. source: "./media/characters/kodran/head-front.svg"
  29968. }
  29969. },
  29970. headSide: {
  29971. height: math.unit(65, "feet"),
  29972. name: "Head (Side)",
  29973. image: {
  29974. source: "./media/characters/kodran/head-side.svg"
  29975. }
  29976. },
  29977. throat: {
  29978. height: math.unit(79, "feet"),
  29979. name: "Throat",
  29980. image: {
  29981. source: "./media/characters/kodran/throat.svg"
  29982. }
  29983. },
  29984. },
  29985. [
  29986. {
  29987. name: "Large",
  29988. height: math.unit(106, "feet"),
  29989. default: true
  29990. },
  29991. ]
  29992. ))
  29993. characterMakers.push(() => makeCharacter(
  29994. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29995. {
  29996. side: {
  29997. height: math.unit(11, "feet"),
  29998. weight: math.unit(150, "lb"),
  29999. name: "Side",
  30000. image: {
  30001. source: "./media/characters/pyxaron/side.svg",
  30002. extra: 305 / 195,
  30003. bottom: 17 / 322
  30004. }
  30005. },
  30006. },
  30007. [
  30008. {
  30009. name: "Normal",
  30010. height: math.unit(11, "feet"),
  30011. default: true
  30012. },
  30013. ]
  30014. ))
  30015. characterMakers.push(() => makeCharacter(
  30016. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30017. {
  30018. front: {
  30019. height: math.unit(6, "feet"),
  30020. weight: math.unit(150, "lb"),
  30021. name: "Front",
  30022. image: {
  30023. source: "./media/characters/meep/front.svg",
  30024. extra: 88 / 80,
  30025. bottom: 6 / 94
  30026. }
  30027. },
  30028. },
  30029. [
  30030. {
  30031. name: "Fun Sized",
  30032. height: math.unit(2, "inches"),
  30033. default: true
  30034. },
  30035. {
  30036. name: "Friend Sized",
  30037. height: math.unit(8, "inches")
  30038. },
  30039. ]
  30040. ))
  30041. characterMakers.push(() => makeCharacter(
  30042. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30043. {
  30044. front: {
  30045. height: math.unit(15, "feet"),
  30046. weight: math.unit(2500, "lb"),
  30047. name: "Front",
  30048. image: {
  30049. source: "./media/characters/holly-rabbit/front.svg",
  30050. extra: 1433 / 1233,
  30051. bottom: 125 / 1558
  30052. }
  30053. },
  30054. dick: {
  30055. height: math.unit(4.6, "feet"),
  30056. name: "Dick",
  30057. image: {
  30058. source: "./media/characters/holly-rabbit/dick.svg"
  30059. }
  30060. },
  30061. },
  30062. [
  30063. {
  30064. name: "Normal",
  30065. height: math.unit(15, "feet"),
  30066. default: true
  30067. },
  30068. {
  30069. name: "Macro",
  30070. height: math.unit(250, "feet")
  30071. },
  30072. {
  30073. name: "Macro+",
  30074. height: math.unit(2500, "feet")
  30075. },
  30076. ]
  30077. ))
  30078. characterMakers.push(() => makeCharacter(
  30079. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30080. {
  30081. front: {
  30082. height: math.unit(3.02, "meters"),
  30083. weight: math.unit(500, "kg"),
  30084. name: "Front",
  30085. image: {
  30086. source: "./media/characters/drena/front.svg",
  30087. extra: 282 / 243,
  30088. bottom: 8 / 290
  30089. }
  30090. },
  30091. side: {
  30092. height: math.unit(3.02, "meters"),
  30093. weight: math.unit(500, "kg"),
  30094. name: "Side",
  30095. image: {
  30096. source: "./media/characters/drena/side.svg",
  30097. extra: 280 / 245,
  30098. bottom: 10 / 290
  30099. }
  30100. },
  30101. back: {
  30102. height: math.unit(3.02, "meters"),
  30103. weight: math.unit(500, "kg"),
  30104. name: "Back",
  30105. image: {
  30106. source: "./media/characters/drena/back.svg",
  30107. extra: 278 / 243,
  30108. bottom: 2 / 280
  30109. }
  30110. },
  30111. foot: {
  30112. height: math.unit(0.75, "meters"),
  30113. name: "Foot",
  30114. image: {
  30115. source: "./media/characters/drena/foot.svg"
  30116. }
  30117. },
  30118. maw: {
  30119. height: math.unit(0.82, "meters"),
  30120. name: "Maw",
  30121. image: {
  30122. source: "./media/characters/drena/maw.svg"
  30123. }
  30124. },
  30125. eating: {
  30126. height: math.unit(0.75, "meters"),
  30127. name: "Eating",
  30128. image: {
  30129. source: "./media/characters/drena/eating.svg"
  30130. }
  30131. },
  30132. rump: {
  30133. height: math.unit(0.93, "meters"),
  30134. name: "Rump",
  30135. image: {
  30136. source: "./media/characters/drena/rump.svg"
  30137. }
  30138. },
  30139. },
  30140. [
  30141. {
  30142. name: "Normal",
  30143. height: math.unit(3.02, "meters"),
  30144. default: true
  30145. },
  30146. ]
  30147. ))
  30148. characterMakers.push(() => makeCharacter(
  30149. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30150. {
  30151. front: {
  30152. height: math.unit(6 + 4 / 12, "feet"),
  30153. weight: math.unit(250, "lb"),
  30154. name: "Front",
  30155. image: {
  30156. source: "./media/characters/remmyzilla/front.svg",
  30157. extra: 4033 / 3588,
  30158. bottom: 123 / 4156
  30159. }
  30160. },
  30161. back: {
  30162. height: math.unit(6 + 4 / 12, "feet"),
  30163. weight: math.unit(250, "lb"),
  30164. name: "Back",
  30165. image: {
  30166. source: "./media/characters/remmyzilla/back.svg",
  30167. extra: 2687 / 2555,
  30168. bottom: 48 / 2735
  30169. }
  30170. },
  30171. paw: {
  30172. height: math.unit(1.73, "feet"),
  30173. name: "Paw",
  30174. image: {
  30175. source: "./media/characters/remmyzilla/paw.svg"
  30176. },
  30177. extraAttributes: {
  30178. "toeSize": {
  30179. name: "Toe Size",
  30180. power: 2,
  30181. type: "area",
  30182. base: math.unit(0.0035, "m^2")
  30183. },
  30184. "padSize": {
  30185. name: "Pad Size",
  30186. power: 2,
  30187. type: "area",
  30188. base: math.unit(0.015, "m^2")
  30189. },
  30190. "pawsize": {
  30191. name: "Paw Size",
  30192. power: 2,
  30193. type: "area",
  30194. base: math.unit(0.072, "m^2")
  30195. },
  30196. }
  30197. },
  30198. maw: {
  30199. height: math.unit(1.73, "feet"),
  30200. name: "Maw",
  30201. image: {
  30202. source: "./media/characters/remmyzilla/maw.svg"
  30203. }
  30204. },
  30205. },
  30206. [
  30207. {
  30208. name: "Normal",
  30209. height: math.unit(6 + 4 / 12, "feet")
  30210. },
  30211. {
  30212. name: "Minimacro",
  30213. height: math.unit(12 + 8 / 12, "feet")
  30214. },
  30215. {
  30216. name: "Normal",
  30217. height: math.unit(640, "feet"),
  30218. default: true
  30219. },
  30220. {
  30221. name: "Megamacro",
  30222. height: math.unit(6400, "feet")
  30223. },
  30224. {
  30225. name: "Gigamacro",
  30226. height: math.unit(64000, "miles")
  30227. },
  30228. ]
  30229. ))
  30230. characterMakers.push(() => makeCharacter(
  30231. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30232. {
  30233. front: {
  30234. height: math.unit(2.5, "meters"),
  30235. weight: math.unit(300, "lb"),
  30236. name: "Front",
  30237. image: {
  30238. source: "./media/characters/lawrence/front.svg",
  30239. extra: 357 / 335,
  30240. bottom: 30 / 387
  30241. }
  30242. },
  30243. back: {
  30244. height: math.unit(2.5, "meters"),
  30245. weight: math.unit(300, "lb"),
  30246. name: "Back",
  30247. image: {
  30248. source: "./media/characters/lawrence/back.svg",
  30249. extra: 357 / 338,
  30250. bottom: 16 / 373
  30251. }
  30252. },
  30253. head: {
  30254. height: math.unit(0.9, "meter"),
  30255. name: "Head",
  30256. image: {
  30257. source: "./media/characters/lawrence/head.svg"
  30258. }
  30259. },
  30260. maw: {
  30261. height: math.unit(0.7, "meter"),
  30262. name: "Maw",
  30263. image: {
  30264. source: "./media/characters/lawrence/maw.svg"
  30265. }
  30266. },
  30267. footBottom: {
  30268. height: math.unit(0.5, "meter"),
  30269. name: "Foot (Bottom)",
  30270. image: {
  30271. source: "./media/characters/lawrence/foot-bottom.svg"
  30272. }
  30273. },
  30274. footTop: {
  30275. height: math.unit(0.5, "meter"),
  30276. name: "Foot (Top)",
  30277. image: {
  30278. source: "./media/characters/lawrence/foot-top.svg"
  30279. }
  30280. },
  30281. },
  30282. [
  30283. {
  30284. name: "Normal",
  30285. height: math.unit(2.5, "meters"),
  30286. default: true
  30287. },
  30288. {
  30289. name: "Macro",
  30290. height: math.unit(95, "meters")
  30291. },
  30292. {
  30293. name: "Megamacro",
  30294. height: math.unit(150, "km")
  30295. },
  30296. ]
  30297. ))
  30298. characterMakers.push(() => makeCharacter(
  30299. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30300. {
  30301. front: {
  30302. height: math.unit(4.2, "meters"),
  30303. name: "Front",
  30304. image: {
  30305. source: "./media/characters/sydney/front.svg",
  30306. extra: 1323 / 1277,
  30307. bottom: 111 / 1434
  30308. }
  30309. },
  30310. },
  30311. [
  30312. {
  30313. name: "Normal",
  30314. height: math.unit(4.2, "meters"),
  30315. default: true
  30316. },
  30317. ]
  30318. ))
  30319. characterMakers.push(() => makeCharacter(
  30320. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30321. {
  30322. back: {
  30323. height: math.unit(201, "feet"),
  30324. name: "Back",
  30325. image: {
  30326. source: "./media/characters/jessica/back.svg",
  30327. extra: 273 / 259,
  30328. bottom: 7 / 280
  30329. }
  30330. },
  30331. },
  30332. [
  30333. {
  30334. name: "Normal",
  30335. height: math.unit(201, "feet"),
  30336. default: true
  30337. },
  30338. {
  30339. name: "Megamacro",
  30340. height: math.unit(8, "miles")
  30341. },
  30342. ]
  30343. ))
  30344. characterMakers.push(() => makeCharacter(
  30345. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30346. {
  30347. side: {
  30348. height: math.unit(5.6, "m"),
  30349. weight: math.unit(8000, "kg"),
  30350. name: "Side",
  30351. image: {
  30352. source: "./media/characters/victoria/side.svg",
  30353. extra: 1542/1229,
  30354. bottom: 124/1666
  30355. }
  30356. },
  30357. maw: {
  30358. height: math.unit(7.14, "feet"),
  30359. name: "Maw",
  30360. image: {
  30361. source: "./media/characters/victoria/maw.svg"
  30362. }
  30363. },
  30364. },
  30365. [
  30366. {
  30367. name: "Normal",
  30368. height: math.unit(5.6, "m"),
  30369. default: true
  30370. },
  30371. ]
  30372. ))
  30373. characterMakers.push(() => makeCharacter(
  30374. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30375. {
  30376. front: {
  30377. height: math.unit(5 + 6 / 12, "feet"),
  30378. name: "Front",
  30379. image: {
  30380. source: "./media/characters/cat/front.svg",
  30381. extra: 1449/1295,
  30382. bottom: 34/1483
  30383. },
  30384. form: "cat",
  30385. default: true
  30386. },
  30387. back: {
  30388. height: math.unit(5 + 6 / 12, "feet"),
  30389. name: "Back",
  30390. image: {
  30391. source: "./media/characters/cat/back.svg",
  30392. extra: 1466/1301,
  30393. bottom: 19/1485
  30394. },
  30395. form: "cat"
  30396. },
  30397. taur: {
  30398. height: math.unit(7, "feet"),
  30399. name: "Taur",
  30400. image: {
  30401. source: "./media/characters/cat/taur.svg",
  30402. extra: 1389/1233,
  30403. bottom: 83/1472
  30404. },
  30405. form: "taur",
  30406. default: true
  30407. },
  30408. lucarioFront: {
  30409. height: math.unit(4, "feet"),
  30410. name: "Lucario (Front)",
  30411. image: {
  30412. source: "./media/characters/cat/lucario-front.svg",
  30413. extra: 1149/1019,
  30414. bottom: 84/1233
  30415. },
  30416. form: "lucario",
  30417. default: true
  30418. },
  30419. lucarioBack: {
  30420. height: math.unit(4, "feet"),
  30421. name: "Lucario (Back)",
  30422. image: {
  30423. source: "./media/characters/cat/lucario-back.svg",
  30424. extra: 1190/1059,
  30425. bottom: 33/1223
  30426. },
  30427. form: "lucario"
  30428. },
  30429. megaLucario: {
  30430. height: math.unit(4, "feet"),
  30431. name: "Mega Lucario",
  30432. image: {
  30433. source: "./media/characters/cat/mega-lucario.svg",
  30434. extra: 1515 / 1319,
  30435. bottom: 63 / 1578
  30436. },
  30437. form: "lucario"
  30438. },
  30439. nickit: {
  30440. height: math.unit(2, "feet"),
  30441. name: "Nickit",
  30442. image: {
  30443. source: "./media/characters/cat/nickit.svg",
  30444. extra: 1980 / 1585,
  30445. bottom: 102 / 2082
  30446. },
  30447. form: "nickit",
  30448. default: true
  30449. },
  30450. lopunnyFront: {
  30451. height: math.unit(5, "feet"),
  30452. name: "Lopunny (Front)",
  30453. image: {
  30454. source: "./media/characters/cat/lopunny-front.svg",
  30455. extra: 1782 / 1469,
  30456. bottom: 38 / 1820
  30457. },
  30458. form: "lopunny",
  30459. default: true
  30460. },
  30461. lopunnyBack: {
  30462. height: math.unit(5, "feet"),
  30463. name: "Lopunny (Back)",
  30464. image: {
  30465. source: "./media/characters/cat/lopunny-back.svg",
  30466. extra: 1660 / 1490,
  30467. bottom: 25 / 1685
  30468. },
  30469. form: "lopunny"
  30470. },
  30471. },
  30472. [
  30473. {
  30474. name: "Really small",
  30475. height: math.unit(1, "nm")
  30476. },
  30477. {
  30478. name: "Micro",
  30479. height: math.unit(5, "inches")
  30480. },
  30481. {
  30482. name: "Normal",
  30483. height: math.unit(5 + 6 / 12, "feet"),
  30484. default: true
  30485. },
  30486. {
  30487. name: "Macro",
  30488. height: math.unit(50, "feet")
  30489. },
  30490. {
  30491. name: "Macro+",
  30492. height: math.unit(150, "feet")
  30493. },
  30494. {
  30495. name: "Megamacro",
  30496. height: math.unit(100, "miles")
  30497. },
  30498. ]
  30499. ))
  30500. characterMakers.push(() => makeCharacter(
  30501. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30502. {
  30503. front: {
  30504. height: math.unit(63.4, "meters"),
  30505. weight: math.unit(3.28349e+6, "kilograms"),
  30506. name: "Front",
  30507. image: {
  30508. source: "./media/characters/kirina-violet/front.svg",
  30509. extra: 2812 / 2725,
  30510. bottom: 0 / 2812
  30511. }
  30512. },
  30513. back: {
  30514. height: math.unit(63.4, "meters"),
  30515. weight: math.unit(3.28349e+6, "kilograms"),
  30516. name: "Back",
  30517. image: {
  30518. source: "./media/characters/kirina-violet/back.svg",
  30519. extra: 2812 / 2725,
  30520. bottom: 0 / 2812
  30521. }
  30522. },
  30523. mouth: {
  30524. height: math.unit(4.35, "meters"),
  30525. name: "Mouth",
  30526. image: {
  30527. source: "./media/characters/kirina-violet/mouth.svg"
  30528. }
  30529. },
  30530. paw: {
  30531. height: math.unit(5.6, "meters"),
  30532. name: "Paw",
  30533. image: {
  30534. source: "./media/characters/kirina-violet/paw.svg"
  30535. }
  30536. },
  30537. tail: {
  30538. height: math.unit(18, "meters"),
  30539. name: "Tail",
  30540. image: {
  30541. source: "./media/characters/kirina-violet/tail.svg"
  30542. }
  30543. },
  30544. },
  30545. [
  30546. {
  30547. name: "Macro",
  30548. height: math.unit(63.4, "meters"),
  30549. default: true
  30550. },
  30551. ]
  30552. ))
  30553. characterMakers.push(() => makeCharacter(
  30554. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30555. {
  30556. front: {
  30557. height: math.unit(75, "feet"),
  30558. name: "Front",
  30559. image: {
  30560. source: "./media/characters/cat-gigachu/front.svg",
  30561. extra: 1239/1027,
  30562. bottom: 32/1271
  30563. }
  30564. },
  30565. back: {
  30566. height: math.unit(75, "feet"),
  30567. name: "Back",
  30568. image: {
  30569. source: "./media/characters/cat-gigachu/back.svg",
  30570. extra: 1229/1030,
  30571. bottom: 9/1238
  30572. }
  30573. },
  30574. },
  30575. [
  30576. {
  30577. name: "Dynamax",
  30578. height: math.unit(75, "feet"),
  30579. default: true
  30580. },
  30581. ]
  30582. ))
  30583. characterMakers.push(() => makeCharacter(
  30584. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30585. {
  30586. front: {
  30587. height: math.unit(6, "feet"),
  30588. weight: math.unit(150, "lb"),
  30589. name: "Front",
  30590. image: {
  30591. source: "./media/characters/sfaiyan/front.svg",
  30592. extra: 999 / 978,
  30593. bottom: 5 / 1004
  30594. }
  30595. },
  30596. },
  30597. [
  30598. {
  30599. name: "Normal",
  30600. height: math.unit(1.82, "meters")
  30601. },
  30602. {
  30603. name: "Giant",
  30604. height: math.unit(2.27, "km"),
  30605. default: true
  30606. },
  30607. ]
  30608. ))
  30609. characterMakers.push(() => makeCharacter(
  30610. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30611. {
  30612. front: {
  30613. height: math.unit(179, "cm"),
  30614. weight: math.unit(100, "kg"),
  30615. name: "Front",
  30616. image: {
  30617. source: "./media/characters/raunehkeli/front.svg",
  30618. extra: 1934 / 1926,
  30619. bottom: 0 / 1934
  30620. }
  30621. },
  30622. },
  30623. [
  30624. {
  30625. name: "Normal",
  30626. height: math.unit(179, "cm")
  30627. },
  30628. {
  30629. name: "Maximum",
  30630. height: math.unit(575, "meters"),
  30631. default: true
  30632. },
  30633. ]
  30634. ))
  30635. characterMakers.push(() => makeCharacter(
  30636. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30637. {
  30638. front: {
  30639. height: math.unit(6, "feet"),
  30640. weight: math.unit(150, "lb"),
  30641. name: "Front",
  30642. image: {
  30643. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30644. extra: 2625 / 2518,
  30645. bottom: 60 / 2685
  30646. }
  30647. },
  30648. },
  30649. [
  30650. {
  30651. name: "Normal",
  30652. height: math.unit(6 + 2 / 12, "feet")
  30653. },
  30654. {
  30655. name: "Macro",
  30656. height: math.unit(1180, "feet"),
  30657. default: true
  30658. },
  30659. ]
  30660. ))
  30661. characterMakers.push(() => makeCharacter(
  30662. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30663. {
  30664. front: {
  30665. height: math.unit(5 + 6 / 12, "feet"),
  30666. weight: math.unit(108, "lb"),
  30667. name: "Front",
  30668. image: {
  30669. source: "./media/characters/lilith-zott/front.svg",
  30670. extra: 2510 / 2238,
  30671. bottom: 100 / 2610
  30672. }
  30673. },
  30674. frontDressed: {
  30675. height: math.unit(5 + 6 / 12, "feet"),
  30676. weight: math.unit(108, "lb"),
  30677. name: "Front (Dressed)",
  30678. image: {
  30679. source: "./media/characters/lilith-zott/front-dressed.svg",
  30680. extra: 2510 / 2238,
  30681. bottom: 100 / 2610
  30682. }
  30683. },
  30684. },
  30685. [
  30686. {
  30687. name: "Normal",
  30688. height: math.unit(5 + 6 / 12, "feet")
  30689. },
  30690. {
  30691. name: "Macro",
  30692. height: math.unit(1030, "feet"),
  30693. default: true
  30694. },
  30695. ]
  30696. ))
  30697. characterMakers.push(() => makeCharacter(
  30698. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30699. {
  30700. front: {
  30701. height: math.unit(6, "feet"),
  30702. weight: math.unit(150, "lb"),
  30703. name: "Front",
  30704. image: {
  30705. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30706. extra: 2567 / 2435,
  30707. bottom: 39 / 2606
  30708. }
  30709. },
  30710. frontSuper: {
  30711. height: math.unit(6, "feet"),
  30712. name: "Front (Super)",
  30713. image: {
  30714. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30715. extra: 2567 / 2435,
  30716. bottom: 39 / 2606
  30717. }
  30718. },
  30719. },
  30720. [
  30721. {
  30722. name: "Normal",
  30723. height: math.unit(5 + 10 / 12, "feet")
  30724. },
  30725. {
  30726. name: "Macro",
  30727. height: math.unit(1100, "feet"),
  30728. default: true
  30729. },
  30730. ]
  30731. ))
  30732. characterMakers.push(() => makeCharacter(
  30733. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30734. {
  30735. front: {
  30736. height: math.unit(100, "miles"),
  30737. name: "Front",
  30738. image: {
  30739. source: "./media/characters/sona/front.svg",
  30740. extra: 2433 / 2201,
  30741. bottom: 53 / 2486
  30742. }
  30743. },
  30744. foot: {
  30745. height: math.unit(16.1, "miles"),
  30746. name: "Foot",
  30747. image: {
  30748. source: "./media/characters/sona/foot.svg"
  30749. }
  30750. },
  30751. },
  30752. [
  30753. {
  30754. name: "Macro",
  30755. height: math.unit(100, "miles"),
  30756. default: true
  30757. },
  30758. ]
  30759. ))
  30760. characterMakers.push(() => makeCharacter(
  30761. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30762. {
  30763. front: {
  30764. height: math.unit(6, "feet"),
  30765. weight: math.unit(150, "lb"),
  30766. name: "Front",
  30767. image: {
  30768. source: "./media/characters/bailey/front.svg",
  30769. extra: 1778 / 1724,
  30770. bottom: 30 / 1808
  30771. }
  30772. },
  30773. },
  30774. [
  30775. {
  30776. name: "Micro",
  30777. height: math.unit(4, "inches")
  30778. },
  30779. {
  30780. name: "Normal",
  30781. height: math.unit(5 + 5 / 12, "feet"),
  30782. default: true
  30783. },
  30784. {
  30785. name: "Macro",
  30786. height: math.unit(250, "feet")
  30787. },
  30788. {
  30789. name: "Megamacro",
  30790. height: math.unit(100, "miles")
  30791. },
  30792. ]
  30793. ))
  30794. characterMakers.push(() => makeCharacter(
  30795. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30796. {
  30797. front: {
  30798. height: math.unit(5 + 2 / 12, "feet"),
  30799. weight: math.unit(120, "lb"),
  30800. name: "Front",
  30801. image: {
  30802. source: "./media/characters/snaps/front.svg",
  30803. extra: 2370 / 2177,
  30804. bottom: 48 / 2418
  30805. }
  30806. },
  30807. back: {
  30808. height: math.unit(5 + 2 / 12, "feet"),
  30809. weight: math.unit(120, "lb"),
  30810. name: "Back",
  30811. image: {
  30812. source: "./media/characters/snaps/back.svg",
  30813. extra: 2408 / 2258,
  30814. bottom: 15 / 2423
  30815. }
  30816. },
  30817. },
  30818. [
  30819. {
  30820. name: "Micro",
  30821. height: math.unit(9, "inches")
  30822. },
  30823. {
  30824. name: "Normal",
  30825. height: math.unit(5 + 2 / 12, "feet"),
  30826. default: true
  30827. },
  30828. {
  30829. name: "Mini Macro",
  30830. height: math.unit(10, "feet")
  30831. },
  30832. ]
  30833. ))
  30834. characterMakers.push(() => makeCharacter(
  30835. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30836. {
  30837. front: {
  30838. height: math.unit(1.8, "meters"),
  30839. weight: math.unit(85, "kg"),
  30840. name: "Front",
  30841. image: {
  30842. source: "./media/characters/azteck/front.svg",
  30843. extra: 2815 / 2625,
  30844. bottom: 89 / 2904
  30845. }
  30846. },
  30847. back: {
  30848. height: math.unit(1.8, "meters"),
  30849. weight: math.unit(85, "kg"),
  30850. name: "Back",
  30851. image: {
  30852. source: "./media/characters/azteck/back.svg",
  30853. extra: 2856 / 2648,
  30854. bottom: 85 / 2941
  30855. }
  30856. },
  30857. frontDressed: {
  30858. height: math.unit(1.8, "meters"),
  30859. weight: math.unit(85, "kg"),
  30860. name: "Front (Dressed)",
  30861. image: {
  30862. source: "./media/characters/azteck/front-dressed.svg",
  30863. extra: 2147 / 2003,
  30864. bottom: 68 / 2215
  30865. }
  30866. },
  30867. head: {
  30868. height: math.unit(0.47, "meters"),
  30869. weight: math.unit(85, "kg"),
  30870. name: "Head",
  30871. image: {
  30872. source: "./media/characters/azteck/head.svg"
  30873. }
  30874. },
  30875. },
  30876. [
  30877. {
  30878. name: "Bite sized",
  30879. height: math.unit(16, "cm")
  30880. },
  30881. {
  30882. name: "Normal",
  30883. height: math.unit(1.8, "meters"),
  30884. default: true
  30885. },
  30886. ]
  30887. ))
  30888. characterMakers.push(() => makeCharacter(
  30889. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30890. {
  30891. front: {
  30892. height: math.unit(6, "feet"),
  30893. weight: math.unit(150, "lb"),
  30894. name: "Front",
  30895. image: {
  30896. source: "./media/characters/pidge/front.svg",
  30897. extra: 1936/1820,
  30898. bottom: 0/1936
  30899. }
  30900. },
  30901. back: {
  30902. height: math.unit(6, "feet"),
  30903. weight: math.unit(150, "lb"),
  30904. name: "Back",
  30905. image: {
  30906. source: "./media/characters/pidge/back.svg",
  30907. extra: 1938/1843,
  30908. bottom: 0/1938
  30909. }
  30910. },
  30911. casual: {
  30912. height: math.unit(6, "feet"),
  30913. weight: math.unit(150, "lb"),
  30914. name: "Casual",
  30915. image: {
  30916. source: "./media/characters/pidge/casual.svg",
  30917. extra: 1936/1820,
  30918. bottom: 0/1936
  30919. }
  30920. },
  30921. tech: {
  30922. height: math.unit(6, "feet"),
  30923. weight: math.unit(150, "lb"),
  30924. name: "Tech",
  30925. image: {
  30926. source: "./media/characters/pidge/tech.svg",
  30927. extra: 1802/1682,
  30928. bottom: 0/1802
  30929. }
  30930. },
  30931. head: {
  30932. height: math.unit(1.61, "feet"),
  30933. name: "Head",
  30934. image: {
  30935. source: "./media/characters/pidge/head.svg"
  30936. }
  30937. },
  30938. collar: {
  30939. height: math.unit(0.82, "feet"),
  30940. name: "Collar",
  30941. image: {
  30942. source: "./media/characters/pidge/collar.svg"
  30943. }
  30944. },
  30945. },
  30946. [
  30947. {
  30948. name: "Macro",
  30949. height: math.unit(2, "mile"),
  30950. default: true
  30951. },
  30952. {
  30953. name: "PUPPY",
  30954. height: math.unit(20, "miles")
  30955. },
  30956. ]
  30957. ))
  30958. characterMakers.push(() => makeCharacter(
  30959. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30960. {
  30961. front: {
  30962. height: math.unit(6, "feet"),
  30963. weight: math.unit(150, "lb"),
  30964. name: "Front",
  30965. image: {
  30966. source: "./media/characters/en/front.svg",
  30967. extra: 1697 / 1563,
  30968. bottom: 103 / 1800
  30969. }
  30970. },
  30971. back: {
  30972. height: math.unit(6, "feet"),
  30973. weight: math.unit(150, "lb"),
  30974. name: "Back",
  30975. image: {
  30976. source: "./media/characters/en/back.svg",
  30977. extra: 1700 / 1570,
  30978. bottom: 51 / 1751
  30979. }
  30980. },
  30981. frontDressed: {
  30982. height: math.unit(6, "feet"),
  30983. weight: math.unit(150, "lb"),
  30984. name: "Front (Dressed)",
  30985. image: {
  30986. source: "./media/characters/en/front-dressed.svg",
  30987. extra: 1697 / 1563,
  30988. bottom: 103 / 1800
  30989. }
  30990. },
  30991. backDressed: {
  30992. height: math.unit(6, "feet"),
  30993. weight: math.unit(150, "lb"),
  30994. name: "Back (Dressed)",
  30995. image: {
  30996. source: "./media/characters/en/back-dressed.svg",
  30997. extra: 1700 / 1570,
  30998. bottom: 51 / 1751
  30999. }
  31000. },
  31001. },
  31002. [
  31003. {
  31004. name: "Macro",
  31005. height: math.unit(210, "feet"),
  31006. default: true
  31007. },
  31008. ]
  31009. ))
  31010. characterMakers.push(() => makeCharacter(
  31011. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31012. {
  31013. front: {
  31014. height: math.unit(6, "feet"),
  31015. weight: math.unit(150, "lb"),
  31016. name: "Front",
  31017. image: {
  31018. source: "./media/characters/haze-orris/front.svg",
  31019. extra: 3975 / 3525,
  31020. bottom: 137 / 4112
  31021. }
  31022. },
  31023. },
  31024. [
  31025. {
  31026. name: "Micro",
  31027. height: math.unit(150, "mm"),
  31028. default: true
  31029. },
  31030. ]
  31031. ))
  31032. characterMakers.push(() => makeCharacter(
  31033. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31034. {
  31035. front: {
  31036. height: math.unit(6, "feet"),
  31037. weight: math.unit(150, "lb"),
  31038. name: "Front",
  31039. image: {
  31040. source: "./media/characters/casselene-yaro/front.svg",
  31041. extra: 4721 / 4541,
  31042. bottom: 82 / 4803
  31043. }
  31044. },
  31045. back: {
  31046. height: math.unit(6, "feet"),
  31047. weight: math.unit(150, "lb"),
  31048. name: "Back",
  31049. image: {
  31050. source: "./media/characters/casselene-yaro/back.svg",
  31051. extra: 4569 / 4377,
  31052. bottom: 69 / 4638
  31053. }
  31054. },
  31055. dressed: {
  31056. height: math.unit(6, "feet"),
  31057. weight: math.unit(150, "lb"),
  31058. name: "Dressed",
  31059. image: {
  31060. source: "./media/characters/casselene-yaro/dressed.svg",
  31061. extra: 4721 / 4541,
  31062. bottom: 82 / 4803
  31063. }
  31064. },
  31065. maw: {
  31066. height: math.unit(1, "feet"),
  31067. name: "Maw",
  31068. image: {
  31069. source: "./media/characters/casselene-yaro/maw.svg"
  31070. }
  31071. },
  31072. },
  31073. [
  31074. {
  31075. name: "Macro",
  31076. height: math.unit(190, "feet"),
  31077. default: true
  31078. },
  31079. ]
  31080. ))
  31081. characterMakers.push(() => makeCharacter(
  31082. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31083. {
  31084. front: {
  31085. height: math.unit(10, "feet"),
  31086. weight: math.unit(15015, "lb"),
  31087. name: "Front",
  31088. image: {
  31089. source: "./media/characters/platine/front.svg",
  31090. extra: 1741/1650,
  31091. bottom: 84/1825
  31092. }
  31093. },
  31094. side: {
  31095. height: math.unit(10, "feet"),
  31096. weight: math.unit(15015, "lb"),
  31097. name: "Side",
  31098. image: {
  31099. source: "./media/characters/platine/side.svg",
  31100. extra: 1790/1705,
  31101. bottom: 29/1819
  31102. }
  31103. },
  31104. },
  31105. [
  31106. {
  31107. name: "Normal",
  31108. height: math.unit(10, "feet"),
  31109. default: true
  31110. },
  31111. {
  31112. name: "Macro",
  31113. height: math.unit(100, "feet")
  31114. },
  31115. {
  31116. name: "Megamacro",
  31117. height: math.unit(1000, "feet")
  31118. },
  31119. ]
  31120. ))
  31121. characterMakers.push(() => makeCharacter(
  31122. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31123. {
  31124. front: {
  31125. height: math.unit(15 + 5 / 12, "feet"),
  31126. weight: math.unit(4600, "lb"),
  31127. name: "Front",
  31128. image: {
  31129. source: "./media/characters/neapolitan-ananassa/front.svg",
  31130. extra: 2903 / 2736,
  31131. bottom: 0 / 2903
  31132. }
  31133. },
  31134. side: {
  31135. height: math.unit(15 + 5 / 12, "feet"),
  31136. weight: math.unit(4600, "lb"),
  31137. name: "Side",
  31138. image: {
  31139. source: "./media/characters/neapolitan-ananassa/side.svg",
  31140. extra: 2925 / 2719,
  31141. bottom: 0 / 2925
  31142. }
  31143. },
  31144. back: {
  31145. height: math.unit(15 + 5 / 12, "feet"),
  31146. weight: math.unit(4600, "lb"),
  31147. name: "Back",
  31148. image: {
  31149. source: "./media/characters/neapolitan-ananassa/back.svg",
  31150. extra: 2903 / 2736,
  31151. bottom: 0 / 2903
  31152. }
  31153. },
  31154. },
  31155. [
  31156. {
  31157. name: "Normal",
  31158. height: math.unit(15 + 5 / 12, "feet"),
  31159. default: true
  31160. },
  31161. {
  31162. name: "Post-Millenium",
  31163. height: math.unit(35 + 5 / 12, "feet")
  31164. },
  31165. {
  31166. name: "Post-Era",
  31167. height: math.unit(450 + 5 / 12, "feet")
  31168. },
  31169. ]
  31170. ))
  31171. characterMakers.push(() => makeCharacter(
  31172. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31173. {
  31174. front: {
  31175. height: math.unit(300, "meters"),
  31176. weight: math.unit(125000, "tonnes"),
  31177. name: "Front",
  31178. image: {
  31179. source: "./media/characters/pazuzu/front.svg",
  31180. extra: 877 / 794,
  31181. bottom: 47 / 924
  31182. }
  31183. },
  31184. },
  31185. [
  31186. {
  31187. name: "Macro",
  31188. height: math.unit(300, "meters"),
  31189. default: true
  31190. },
  31191. ]
  31192. ))
  31193. characterMakers.push(() => makeCharacter(
  31194. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31195. {
  31196. side: {
  31197. height: math.unit(10 + 7 / 12, "feet"),
  31198. weight: math.unit(2.5, "tons"),
  31199. name: "Side",
  31200. image: {
  31201. source: "./media/characters/aasha/side.svg",
  31202. extra: 1345 / 1245,
  31203. bottom: 111 / 1456
  31204. }
  31205. },
  31206. back: {
  31207. height: math.unit(10 + 7 / 12, "feet"),
  31208. weight: math.unit(2.5, "tons"),
  31209. name: "Back",
  31210. image: {
  31211. source: "./media/characters/aasha/back.svg",
  31212. extra: 1133 / 1057,
  31213. bottom: 257 / 1390
  31214. }
  31215. },
  31216. },
  31217. [
  31218. {
  31219. name: "Normal",
  31220. height: math.unit(10 + 7 / 12, "feet"),
  31221. default: true
  31222. },
  31223. ]
  31224. ))
  31225. characterMakers.push(() => makeCharacter(
  31226. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31227. {
  31228. front: {
  31229. height: math.unit(6 + 3 / 12, "feet"),
  31230. name: "Front",
  31231. image: {
  31232. source: "./media/characters/nevan/front.svg",
  31233. extra: 704 / 704,
  31234. bottom: 28 / 732
  31235. }
  31236. },
  31237. back: {
  31238. height: math.unit(6 + 3 / 12, "feet"),
  31239. name: "Back",
  31240. image: {
  31241. source: "./media/characters/nevan/back.svg",
  31242. extra: 714 / 714,
  31243. bottom: 21 / 735
  31244. }
  31245. },
  31246. frontFlaccid: {
  31247. height: math.unit(6 + 3 / 12, "feet"),
  31248. name: "Front (Flaccid)",
  31249. image: {
  31250. source: "./media/characters/nevan/front-flaccid.svg",
  31251. extra: 704 / 704,
  31252. bottom: 28 / 732
  31253. }
  31254. },
  31255. frontErect: {
  31256. height: math.unit(6 + 3 / 12, "feet"),
  31257. name: "Front (Erect)",
  31258. image: {
  31259. source: "./media/characters/nevan/front-erect.svg",
  31260. extra: 704 / 704,
  31261. bottom: 28 / 732
  31262. }
  31263. },
  31264. backFlaccid: {
  31265. height: math.unit(6 + 3 / 12, "feet"),
  31266. name: "Back (Flaccid)",
  31267. image: {
  31268. source: "./media/characters/nevan/back-flaccid.svg",
  31269. extra: 714 / 714,
  31270. bottom: 21 / 735
  31271. }
  31272. },
  31273. },
  31274. [
  31275. {
  31276. name: "Normal",
  31277. height: math.unit(6 + 3 / 12, "feet"),
  31278. default: true
  31279. },
  31280. ]
  31281. ))
  31282. characterMakers.push(() => makeCharacter(
  31283. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31284. {
  31285. front: {
  31286. height: math.unit(4, "feet"),
  31287. name: "Front",
  31288. image: {
  31289. source: "./media/characters/arhan/front.svg",
  31290. extra: 3368 / 3133,
  31291. bottom: 0 / 3368
  31292. }
  31293. },
  31294. side: {
  31295. height: math.unit(4, "feet"),
  31296. name: "Side",
  31297. image: {
  31298. source: "./media/characters/arhan/side.svg",
  31299. extra: 3347 / 3105,
  31300. bottom: 0 / 3347
  31301. }
  31302. },
  31303. tongue: {
  31304. height: math.unit(1.42, "feet"),
  31305. name: "Tongue",
  31306. image: {
  31307. source: "./media/characters/arhan/tongue.svg"
  31308. }
  31309. },
  31310. head: {
  31311. height: math.unit(0.85, "feet"),
  31312. name: "Head",
  31313. image: {
  31314. source: "./media/characters/arhan/head.svg"
  31315. }
  31316. },
  31317. },
  31318. [
  31319. {
  31320. name: "Normal",
  31321. height: math.unit(4, "feet"),
  31322. default: true
  31323. },
  31324. ]
  31325. ))
  31326. characterMakers.push(() => makeCharacter(
  31327. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31328. {
  31329. front: {
  31330. height: math.unit(5 + 7.5 / 12, "feet"),
  31331. weight: math.unit(120, "lb"),
  31332. name: "Front",
  31333. image: {
  31334. source: "./media/characters/digi-duncan/front.svg",
  31335. extra: 330 / 326,
  31336. bottom: 16 / 346
  31337. }
  31338. },
  31339. side: {
  31340. height: math.unit(5 + 7.5 / 12, "feet"),
  31341. weight: math.unit(120, "lb"),
  31342. name: "Side",
  31343. image: {
  31344. source: "./media/characters/digi-duncan/side.svg",
  31345. extra: 341 / 337,
  31346. bottom: 1 / 342
  31347. }
  31348. },
  31349. back: {
  31350. height: math.unit(5 + 7.5 / 12, "feet"),
  31351. weight: math.unit(120, "lb"),
  31352. name: "Back",
  31353. image: {
  31354. source: "./media/characters/digi-duncan/back.svg",
  31355. extra: 330 / 326,
  31356. bottom: 12 / 342
  31357. }
  31358. },
  31359. },
  31360. [
  31361. {
  31362. name: "Speck",
  31363. height: math.unit(0.25, "mm")
  31364. },
  31365. {
  31366. name: "Micro",
  31367. height: math.unit(5, "mm")
  31368. },
  31369. {
  31370. name: "Tiny",
  31371. height: math.unit(0.5, "inches"),
  31372. default: true
  31373. },
  31374. {
  31375. name: "Human",
  31376. height: math.unit(5 + 7.5 / 12, "feet")
  31377. },
  31378. {
  31379. name: "Minigiant",
  31380. height: math.unit(8 + 5.25, "feet")
  31381. },
  31382. {
  31383. name: "Giant",
  31384. height: math.unit(2000, "feet")
  31385. },
  31386. {
  31387. name: "Mega",
  31388. height: math.unit(371.1, "miles")
  31389. },
  31390. ]
  31391. ))
  31392. characterMakers.push(() => makeCharacter(
  31393. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31394. {
  31395. front: {
  31396. height: math.unit(2, "meters"),
  31397. weight: math.unit(350, "kg"),
  31398. name: "Front",
  31399. image: {
  31400. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31401. extra: 898 / 838,
  31402. bottom: 9 / 907
  31403. }
  31404. },
  31405. },
  31406. [
  31407. {
  31408. name: "Micro",
  31409. height: math.unit(8, "meters")
  31410. },
  31411. {
  31412. name: "Normal",
  31413. height: math.unit(50, "meters"),
  31414. default: true
  31415. },
  31416. {
  31417. name: "Macro",
  31418. height: math.unit(500, "meters")
  31419. },
  31420. ]
  31421. ))
  31422. characterMakers.push(() => makeCharacter(
  31423. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31424. {
  31425. front: {
  31426. height: math.unit(6 + 6 / 12, "feet"),
  31427. name: "Front",
  31428. image: {
  31429. source: "./media/characters/khardesh/front.svg",
  31430. extra: 1788/1596,
  31431. bottom: 66/1854
  31432. }
  31433. },
  31434. back: {
  31435. height: math.unit(6 + 6 / 12, "feet"),
  31436. name: "Back",
  31437. image: {
  31438. source: "./media/characters/khardesh/back.svg",
  31439. extra: 1781/1584,
  31440. bottom: 68/1849
  31441. }
  31442. },
  31443. },
  31444. [
  31445. {
  31446. name: "Normal",
  31447. height: math.unit(6 + 6 / 12, "feet"),
  31448. default: true
  31449. },
  31450. {
  31451. name: "Normal+",
  31452. height: math.unit(4, "meters")
  31453. },
  31454. {
  31455. name: "Macro",
  31456. height: math.unit(50, "meters")
  31457. },
  31458. {
  31459. name: "Macro+",
  31460. height: math.unit(100, "meters")
  31461. },
  31462. {
  31463. name: "Megamacro",
  31464. height: math.unit(20, "km")
  31465. },
  31466. ]
  31467. ))
  31468. characterMakers.push(() => makeCharacter(
  31469. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31470. {
  31471. front: {
  31472. height: math.unit(6, "feet"),
  31473. weight: math.unit(150, "lb"),
  31474. name: "Front",
  31475. image: {
  31476. source: "./media/characters/kosho/front.svg",
  31477. extra: 1847 / 1847,
  31478. bottom: 86 / 1933
  31479. }
  31480. },
  31481. },
  31482. [
  31483. {
  31484. name: "Second-stage micro",
  31485. height: math.unit(0.5, "inches")
  31486. },
  31487. {
  31488. name: "First-stage micro",
  31489. height: math.unit(6, "inches")
  31490. },
  31491. {
  31492. name: "Normal",
  31493. height: math.unit(6, "feet"),
  31494. default: true
  31495. },
  31496. {
  31497. name: "First-stage macro",
  31498. height: math.unit(72, "feet")
  31499. },
  31500. {
  31501. name: "Second-stage macro",
  31502. height: math.unit(864, "feet")
  31503. },
  31504. ]
  31505. ))
  31506. characterMakers.push(() => makeCharacter(
  31507. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31508. {
  31509. normal: {
  31510. height: math.unit(4 + 6 / 12, "feet"),
  31511. name: "Normal",
  31512. image: {
  31513. source: "./media/characters/hydra/normal.svg",
  31514. extra: 2833 / 2634,
  31515. bottom: 68 / 2901
  31516. }
  31517. },
  31518. smol: {
  31519. height: math.unit(0.705, "inches"),
  31520. name: "Smol",
  31521. image: {
  31522. source: "./media/characters/hydra/smol.svg",
  31523. extra: 2715 / 2540,
  31524. bottom: 0 / 2715
  31525. }
  31526. },
  31527. },
  31528. [
  31529. {
  31530. name: "Normal",
  31531. height: math.unit(4 + 6 / 12, "feet"),
  31532. default: true
  31533. }
  31534. ]
  31535. ))
  31536. characterMakers.push(() => makeCharacter(
  31537. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31538. {
  31539. front: {
  31540. height: math.unit(0.6, "cm"),
  31541. name: "Front",
  31542. image: {
  31543. source: "./media/characters/daz/front.svg",
  31544. extra: 1682 / 1164,
  31545. bottom: 42 / 1724
  31546. }
  31547. },
  31548. },
  31549. [
  31550. {
  31551. name: "Normal",
  31552. height: math.unit(0.6, "cm"),
  31553. default: true
  31554. },
  31555. ]
  31556. ))
  31557. characterMakers.push(() => makeCharacter(
  31558. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31559. {
  31560. front: {
  31561. height: math.unit(6, "feet"),
  31562. weight: math.unit(235, "lb"),
  31563. name: "Front",
  31564. image: {
  31565. source: "./media/characters/theo-pangolin/front.svg",
  31566. extra: 1996 / 1969,
  31567. bottom: 115 / 2111
  31568. }
  31569. },
  31570. back: {
  31571. height: math.unit(6, "feet"),
  31572. weight: math.unit(235, "lb"),
  31573. name: "Back",
  31574. image: {
  31575. source: "./media/characters/theo-pangolin/back.svg",
  31576. extra: 1979 / 1979,
  31577. bottom: 40 / 2019
  31578. }
  31579. },
  31580. feral: {
  31581. height: math.unit(2, "feet"),
  31582. weight: math.unit(30, "lb"),
  31583. name: "Feral",
  31584. image: {
  31585. source: "./media/characters/theo-pangolin/feral.svg",
  31586. extra: 803 / 791,
  31587. bottom: 181 / 984
  31588. }
  31589. },
  31590. footFive: {
  31591. height: math.unit(1.43, "feet"),
  31592. name: "Foot (Five Toes)",
  31593. image: {
  31594. source: "./media/characters/theo-pangolin/foot-five.svg"
  31595. }
  31596. },
  31597. footFour: {
  31598. height: math.unit(1.43, "feet"),
  31599. name: "Foot (Four Toes)",
  31600. image: {
  31601. source: "./media/characters/theo-pangolin/foot-four.svg"
  31602. }
  31603. },
  31604. handFour: {
  31605. height: math.unit(0.81, "feet"),
  31606. name: "Hand (Four Fingers)",
  31607. image: {
  31608. source: "./media/characters/theo-pangolin/hand-four.svg"
  31609. }
  31610. },
  31611. handThree: {
  31612. height: math.unit(0.81, "feet"),
  31613. name: "Hand (Three Fingers)",
  31614. image: {
  31615. source: "./media/characters/theo-pangolin/hand-three.svg"
  31616. }
  31617. },
  31618. headFront: {
  31619. height: math.unit(1.37, "feet"),
  31620. name: "Head (Front)",
  31621. image: {
  31622. source: "./media/characters/theo-pangolin/head-front.svg"
  31623. }
  31624. },
  31625. headSide: {
  31626. height: math.unit(1.43, "feet"),
  31627. name: "Head (Side)",
  31628. image: {
  31629. source: "./media/characters/theo-pangolin/head-side.svg"
  31630. }
  31631. },
  31632. tongue: {
  31633. height: math.unit(2.29, "feet"),
  31634. name: "Tongue",
  31635. image: {
  31636. source: "./media/characters/theo-pangolin/tongue.svg"
  31637. }
  31638. },
  31639. },
  31640. [
  31641. {
  31642. name: "Normal",
  31643. height: math.unit(6, "feet")
  31644. },
  31645. {
  31646. name: "Macro",
  31647. height: math.unit(400, "feet"),
  31648. default: true
  31649. },
  31650. ]
  31651. ))
  31652. characterMakers.push(() => makeCharacter(
  31653. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31654. {
  31655. front: {
  31656. height: math.unit(6, "inches"),
  31657. weight: math.unit(0.036, "kg"),
  31658. name: "Front",
  31659. image: {
  31660. source: "./media/characters/renée/front.svg",
  31661. extra: 900 / 886,
  31662. bottom: 8 / 908
  31663. }
  31664. },
  31665. },
  31666. [
  31667. {
  31668. name: "Nano",
  31669. height: math.unit(1, "nm")
  31670. },
  31671. {
  31672. name: "Micro",
  31673. height: math.unit(1, "mm")
  31674. },
  31675. {
  31676. name: "Normal",
  31677. height: math.unit(6, "inches")
  31678. },
  31679. {
  31680. name: "Macro",
  31681. height: math.unit(2000, "feet"),
  31682. default: true
  31683. },
  31684. {
  31685. name: "Megamacro",
  31686. height: math.unit(2, "km")
  31687. },
  31688. {
  31689. name: "Gigamacro",
  31690. height: math.unit(2000, "km")
  31691. },
  31692. {
  31693. name: "Teramacro",
  31694. height: math.unit(250000, "km")
  31695. },
  31696. ]
  31697. ))
  31698. characterMakers.push(() => makeCharacter(
  31699. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31700. {
  31701. front: {
  31702. height: math.unit(4, "meters"),
  31703. weight: math.unit(150, "kg"),
  31704. name: "Front",
  31705. image: {
  31706. source: "./media/characters/caledvwlch/front.svg",
  31707. extra: 1760 / 1551,
  31708. bottom: 28 / 1788
  31709. }
  31710. },
  31711. side: {
  31712. height: math.unit(4, "meters"),
  31713. weight: math.unit(150, "kg"),
  31714. name: "Side",
  31715. image: {
  31716. source: "./media/characters/caledvwlch/side.svg",
  31717. extra: 1605 / 1536,
  31718. bottom: 31 / 1636
  31719. }
  31720. },
  31721. back: {
  31722. height: math.unit(4, "meters"),
  31723. weight: math.unit(150, "kg"),
  31724. name: "Back",
  31725. image: {
  31726. source: "./media/characters/caledvwlch/back.svg",
  31727. extra: 1635 / 1565,
  31728. bottom: 27 / 1662
  31729. }
  31730. },
  31731. },
  31732. [
  31733. {
  31734. name: "\"Incognito\"",
  31735. height: math.unit(4, "meters")
  31736. },
  31737. {
  31738. name: "Small rampage",
  31739. height: math.unit(600, "meters")
  31740. },
  31741. {
  31742. name: "Mega",
  31743. height: math.unit(30, "km")
  31744. },
  31745. {
  31746. name: "Home-size",
  31747. height: math.unit(50, "km"),
  31748. default: true
  31749. },
  31750. {
  31751. name: "Giga",
  31752. height: math.unit(300, "km")
  31753. },
  31754. {
  31755. name: "Lounging",
  31756. height: math.unit(11000, "km")
  31757. },
  31758. {
  31759. name: "Planet snacking",
  31760. height: math.unit(2000000, "km")
  31761. },
  31762. ]
  31763. ))
  31764. characterMakers.push(() => makeCharacter(
  31765. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31766. {
  31767. front: {
  31768. height: math.unit(6, "feet"),
  31769. weight: math.unit(215, "lb"),
  31770. name: "Front",
  31771. image: {
  31772. source: "./media/characters/sapphire-svell/front.svg",
  31773. extra: 495 / 455,
  31774. bottom: 20 / 515
  31775. }
  31776. },
  31777. back: {
  31778. height: math.unit(6, "feet"),
  31779. weight: math.unit(216, "lb"),
  31780. name: "Back",
  31781. image: {
  31782. source: "./media/characters/sapphire-svell/back.svg",
  31783. extra: 497 / 477,
  31784. bottom: 7 / 504
  31785. }
  31786. },
  31787. maw: {
  31788. height: math.unit(1.57, "feet"),
  31789. name: "Maw",
  31790. image: {
  31791. source: "./media/characters/sapphire-svell/maw.svg"
  31792. }
  31793. },
  31794. foot: {
  31795. height: math.unit(1.07, "feet"),
  31796. name: "Foot",
  31797. image: {
  31798. source: "./media/characters/sapphire-svell/foot.svg"
  31799. }
  31800. },
  31801. toering: {
  31802. height: math.unit(1.7, "inch"),
  31803. name: "Toering",
  31804. image: {
  31805. source: "./media/characters/sapphire-svell/toering.svg"
  31806. }
  31807. },
  31808. },
  31809. [
  31810. {
  31811. name: "Normal",
  31812. height: math.unit(300, "feet"),
  31813. default: true
  31814. },
  31815. {
  31816. name: "Augmented",
  31817. height: math.unit(1250, "feet")
  31818. },
  31819. {
  31820. name: "Unleashed",
  31821. height: math.unit(3000, "feet")
  31822. },
  31823. ]
  31824. ))
  31825. characterMakers.push(() => makeCharacter(
  31826. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31827. {
  31828. side: {
  31829. height: math.unit(2 + 3 / 12, "feet"),
  31830. weight: math.unit(110, "lb"),
  31831. name: "Side",
  31832. image: {
  31833. source: "./media/characters/glitch-flux/side.svg",
  31834. extra: 997 / 805,
  31835. bottom: 20 / 1017
  31836. }
  31837. },
  31838. },
  31839. [
  31840. {
  31841. name: "Normal",
  31842. height: math.unit(2 + 3 / 12, "feet"),
  31843. default: true
  31844. },
  31845. ]
  31846. ))
  31847. characterMakers.push(() => makeCharacter(
  31848. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31849. {
  31850. front: {
  31851. height: math.unit(4, "meters"),
  31852. name: "Front",
  31853. image: {
  31854. source: "./media/characters/mid/front.svg",
  31855. extra: 507 / 476,
  31856. bottom: 17 / 524
  31857. }
  31858. },
  31859. back: {
  31860. height: math.unit(4, "meters"),
  31861. name: "Back",
  31862. image: {
  31863. source: "./media/characters/mid/back.svg",
  31864. extra: 519 / 487,
  31865. bottom: 7 / 526
  31866. }
  31867. },
  31868. stuck: {
  31869. height: math.unit(2.2, "meters"),
  31870. name: "Stuck",
  31871. image: {
  31872. source: "./media/characters/mid/stuck.svg",
  31873. extra: 1951 / 1869,
  31874. bottom: 88 / 2039
  31875. }
  31876. }
  31877. },
  31878. [
  31879. {
  31880. name: "Normal",
  31881. height: math.unit(4, "meters"),
  31882. default: true
  31883. },
  31884. {
  31885. name: "Big",
  31886. height: math.unit(10, "meters")
  31887. },
  31888. {
  31889. name: "Macro",
  31890. height: math.unit(800, "meters")
  31891. },
  31892. {
  31893. name: "Megamacro",
  31894. height: math.unit(100, "km")
  31895. },
  31896. {
  31897. name: "Overgrown",
  31898. height: math.unit(1, "parsec")
  31899. },
  31900. ]
  31901. ))
  31902. characterMakers.push(() => makeCharacter(
  31903. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31904. {
  31905. front: {
  31906. height: math.unit(2.5, "meters"),
  31907. weight: math.unit(225, "kg"),
  31908. name: "Front",
  31909. image: {
  31910. source: "./media/characters/iris/front.svg",
  31911. extra: 3348 / 3251,
  31912. bottom: 205 / 3553
  31913. }
  31914. },
  31915. maw: {
  31916. height: math.unit(0.56, "meter"),
  31917. name: "Maw",
  31918. image: {
  31919. source: "./media/characters/iris/maw.svg"
  31920. }
  31921. },
  31922. },
  31923. [
  31924. {
  31925. name: "Mewter cat",
  31926. height: math.unit(1.2, "meters")
  31927. },
  31928. {
  31929. name: "Normal",
  31930. height: math.unit(2.5, "meters"),
  31931. default: true
  31932. },
  31933. {
  31934. name: "Minimacro",
  31935. height: math.unit(18, "feet")
  31936. },
  31937. {
  31938. name: "Macro",
  31939. height: math.unit(140, "feet")
  31940. },
  31941. {
  31942. name: "Macro+",
  31943. height: math.unit(180, "meters")
  31944. },
  31945. {
  31946. name: "Megamacro",
  31947. height: math.unit(2746, "meters")
  31948. },
  31949. ]
  31950. ))
  31951. characterMakers.push(() => makeCharacter(
  31952. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31953. {
  31954. front: {
  31955. height: math.unit(6, "feet"),
  31956. weight: math.unit(135, "lb"),
  31957. name: "Front",
  31958. image: {
  31959. source: "./media/characters/axel/front.svg",
  31960. extra: 908 / 908,
  31961. bottom: 58 / 966
  31962. }
  31963. },
  31964. side: {
  31965. height: math.unit(6, "feet"),
  31966. weight: math.unit(135, "lb"),
  31967. name: "Side",
  31968. image: {
  31969. source: "./media/characters/axel/side.svg",
  31970. extra: 958 / 958,
  31971. bottom: 11 / 969
  31972. }
  31973. },
  31974. back: {
  31975. height: math.unit(6, "feet"),
  31976. weight: math.unit(135, "lb"),
  31977. name: "Back",
  31978. image: {
  31979. source: "./media/characters/axel/back.svg",
  31980. extra: 887 / 887,
  31981. bottom: 34 / 921
  31982. }
  31983. },
  31984. head: {
  31985. height: math.unit(1.07, "feet"),
  31986. name: "Head",
  31987. image: {
  31988. source: "./media/characters/axel/head.svg"
  31989. }
  31990. },
  31991. beak: {
  31992. height: math.unit(1.4, "feet"),
  31993. name: "Beak",
  31994. image: {
  31995. source: "./media/characters/axel/beak.svg"
  31996. }
  31997. },
  31998. beakSide: {
  31999. height: math.unit(1.4, "feet"),
  32000. name: "Beak Side",
  32001. image: {
  32002. source: "./media/characters/axel/beak-side.svg"
  32003. }
  32004. },
  32005. sheath: {
  32006. height: math.unit(0.5, "feet"),
  32007. name: "Sheath",
  32008. image: {
  32009. source: "./media/characters/axel/sheath.svg"
  32010. }
  32011. },
  32012. dick: {
  32013. height: math.unit(0.98, "feet"),
  32014. name: "Dick",
  32015. image: {
  32016. source: "./media/characters/axel/dick.svg"
  32017. }
  32018. },
  32019. },
  32020. [
  32021. {
  32022. name: "Macro",
  32023. height: math.unit(68, "meters"),
  32024. default: true
  32025. },
  32026. ]
  32027. ))
  32028. characterMakers.push(() => makeCharacter(
  32029. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32030. {
  32031. front: {
  32032. height: math.unit(3.5, "meters"),
  32033. weight: math.unit(1200, "kg"),
  32034. name: "Front",
  32035. image: {
  32036. source: "./media/characters/joanna/front.svg",
  32037. extra: 1596 / 1488,
  32038. bottom: 29 / 1625
  32039. }
  32040. },
  32041. back: {
  32042. height: math.unit(3.5, "meters"),
  32043. weight: math.unit(1200, "kg"),
  32044. name: "Back",
  32045. image: {
  32046. source: "./media/characters/joanna/back.svg",
  32047. extra: 1594 / 1495,
  32048. bottom: 26 / 1620
  32049. }
  32050. },
  32051. frontShorts: {
  32052. height: math.unit(3.5, "meters"),
  32053. weight: math.unit(1200, "kg"),
  32054. name: "Front (Shorts)",
  32055. image: {
  32056. source: "./media/characters/joanna/front-shorts.svg",
  32057. extra: 1596 / 1488,
  32058. bottom: 29 / 1625
  32059. }
  32060. },
  32061. frontBiker: {
  32062. height: math.unit(3.5, "meters"),
  32063. weight: math.unit(1200, "kg"),
  32064. name: "Front (Biker)",
  32065. image: {
  32066. source: "./media/characters/joanna/front-biker.svg",
  32067. extra: 1596 / 1488,
  32068. bottom: 29 / 1625
  32069. }
  32070. },
  32071. backBiker: {
  32072. height: math.unit(3.5, "meters"),
  32073. weight: math.unit(1200, "kg"),
  32074. name: "Back (Biker)",
  32075. image: {
  32076. source: "./media/characters/joanna/back-biker.svg",
  32077. extra: 1594 / 1495,
  32078. bottom: 88 / 1682
  32079. }
  32080. },
  32081. bikeLeft: {
  32082. height: math.unit(2.4, "meters"),
  32083. weight: math.unit(1600, "kg"),
  32084. name: "Bike (Left)",
  32085. image: {
  32086. source: "./media/characters/joanna/bike-left.svg",
  32087. extra: 720 / 720,
  32088. bottom: 8 / 728
  32089. }
  32090. },
  32091. bikeRight: {
  32092. height: math.unit(2.4, "meters"),
  32093. weight: math.unit(1600, "kg"),
  32094. name: "Bike (Right)",
  32095. image: {
  32096. source: "./media/characters/joanna/bike-right.svg",
  32097. extra: 720 / 720,
  32098. bottom: 8 / 728
  32099. }
  32100. },
  32101. },
  32102. [
  32103. {
  32104. name: "Incognito",
  32105. height: math.unit(3.5, "meters")
  32106. },
  32107. {
  32108. name: "Casual Big",
  32109. height: math.unit(200, "meters")
  32110. },
  32111. {
  32112. name: "Macro",
  32113. height: math.unit(600, "meters")
  32114. },
  32115. {
  32116. name: "Original",
  32117. height: math.unit(20, "km"),
  32118. default: true
  32119. },
  32120. {
  32121. name: "Giga",
  32122. height: math.unit(400, "km")
  32123. },
  32124. {
  32125. name: "Lounging",
  32126. height: math.unit(1500, "km")
  32127. },
  32128. {
  32129. name: "Planetary",
  32130. height: math.unit(200000, "km")
  32131. },
  32132. ]
  32133. ))
  32134. characterMakers.push(() => makeCharacter(
  32135. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32136. {
  32137. front: {
  32138. height: math.unit(6, "feet"),
  32139. weight: math.unit(150, "lb"),
  32140. name: "Front",
  32141. image: {
  32142. source: "./media/characters/hugo-sigil/front.svg",
  32143. extra: 522 / 500,
  32144. bottom: 2 / 524
  32145. }
  32146. },
  32147. back: {
  32148. height: math.unit(6, "feet"),
  32149. weight: math.unit(150, "lb"),
  32150. name: "Back",
  32151. image: {
  32152. source: "./media/characters/hugo-sigil/back.svg",
  32153. extra: 519 / 495,
  32154. bottom: 5 / 524
  32155. }
  32156. },
  32157. maw: {
  32158. height: math.unit(1.4, "feet"),
  32159. weight: math.unit(150, "lb"),
  32160. name: "Maw",
  32161. image: {
  32162. source: "./media/characters/hugo-sigil/maw.svg"
  32163. }
  32164. },
  32165. feet: {
  32166. height: math.unit(1.56, "feet"),
  32167. weight: math.unit(150, "lb"),
  32168. name: "Feet",
  32169. image: {
  32170. source: "./media/characters/hugo-sigil/feet.svg",
  32171. extra: 177 / 177,
  32172. bottom: 12 / 189
  32173. }
  32174. },
  32175. },
  32176. [
  32177. {
  32178. name: "Normal",
  32179. height: math.unit(6, "feet")
  32180. },
  32181. {
  32182. name: "Macro",
  32183. height: math.unit(200, "feet"),
  32184. default: true
  32185. },
  32186. ]
  32187. ))
  32188. characterMakers.push(() => makeCharacter(
  32189. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32190. {
  32191. front: {
  32192. height: math.unit(6, "feet"),
  32193. weight: math.unit(150, "lb"),
  32194. name: "Front",
  32195. image: {
  32196. source: "./media/characters/peri/front.svg",
  32197. extra: 2354 / 2233,
  32198. bottom: 49 / 2403
  32199. }
  32200. },
  32201. },
  32202. [
  32203. {
  32204. name: "Really Small",
  32205. height: math.unit(1, "nm")
  32206. },
  32207. {
  32208. name: "Micro",
  32209. height: math.unit(4, "inches")
  32210. },
  32211. {
  32212. name: "Normal",
  32213. height: math.unit(7, "inches"),
  32214. default: true
  32215. },
  32216. {
  32217. name: "Macro",
  32218. height: math.unit(400, "feet")
  32219. },
  32220. {
  32221. name: "Megamacro",
  32222. height: math.unit(100, "miles")
  32223. },
  32224. ]
  32225. ))
  32226. characterMakers.push(() => makeCharacter(
  32227. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32228. {
  32229. frontSlim: {
  32230. height: math.unit(7, "feet"),
  32231. name: "Front (Slim)",
  32232. image: {
  32233. source: "./media/characters/issilora/front-slim.svg",
  32234. extra: 529 / 449,
  32235. bottom: 53 / 582
  32236. }
  32237. },
  32238. sideSlim: {
  32239. height: math.unit(7, "feet"),
  32240. name: "Side (Slim)",
  32241. image: {
  32242. source: "./media/characters/issilora/side-slim.svg",
  32243. extra: 570 / 480,
  32244. bottom: 30 / 600
  32245. }
  32246. },
  32247. backSlim: {
  32248. height: math.unit(7, "feet"),
  32249. name: "Back (Slim)",
  32250. image: {
  32251. source: "./media/characters/issilora/back-slim.svg",
  32252. extra: 537 / 455,
  32253. bottom: 46 / 583
  32254. }
  32255. },
  32256. frontBuff: {
  32257. height: math.unit(7, "feet"),
  32258. name: "Front (Buff)",
  32259. image: {
  32260. source: "./media/characters/issilora/front-buff.svg",
  32261. extra: 2310 / 2035,
  32262. bottom: 335 / 2645
  32263. }
  32264. },
  32265. head: {
  32266. height: math.unit(1.94, "feet"),
  32267. name: "Head",
  32268. image: {
  32269. source: "./media/characters/issilora/head.svg"
  32270. }
  32271. },
  32272. },
  32273. [
  32274. {
  32275. name: "Minimum",
  32276. height: math.unit(7, "feet")
  32277. },
  32278. {
  32279. name: "Comfortable",
  32280. height: math.unit(17, "feet")
  32281. },
  32282. {
  32283. name: "Fun Size",
  32284. height: math.unit(47, "feet")
  32285. },
  32286. {
  32287. name: "Natural Macro",
  32288. height: math.unit(137, "feet"),
  32289. default: true
  32290. },
  32291. {
  32292. name: "Maximum Kaiju",
  32293. height: math.unit(397, "feet")
  32294. },
  32295. ]
  32296. ))
  32297. characterMakers.push(() => makeCharacter(
  32298. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32299. {
  32300. front: {
  32301. height: math.unit(50 + 9/12, "feet"),
  32302. weight: math.unit(32.8, "tons"),
  32303. name: "Front",
  32304. image: {
  32305. source: "./media/characters/irb'iiritaahn/front.svg",
  32306. extra: 1878/1826,
  32307. bottom: 326/2204
  32308. }
  32309. },
  32310. back: {
  32311. height: math.unit(50 + 9/12, "feet"),
  32312. weight: math.unit(32.8, "tons"),
  32313. name: "Back",
  32314. image: {
  32315. source: "./media/characters/irb'iiritaahn/back.svg",
  32316. extra: 2052/2018,
  32317. bottom: 152/2204
  32318. }
  32319. },
  32320. head: {
  32321. height: math.unit(12.86, "feet"),
  32322. name: "Head",
  32323. image: {
  32324. source: "./media/characters/irb'iiritaahn/head.svg"
  32325. }
  32326. },
  32327. maw: {
  32328. height: math.unit(9.66, "feet"),
  32329. name: "Maw",
  32330. image: {
  32331. source: "./media/characters/irb'iiritaahn/maw.svg"
  32332. }
  32333. },
  32334. frontDick: {
  32335. height: math.unit(8.78461, "feet"),
  32336. name: "Front Dick",
  32337. image: {
  32338. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32339. }
  32340. },
  32341. rearDick: {
  32342. height: math.unit(8.78461, "feet"),
  32343. name: "Rear Dick",
  32344. image: {
  32345. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32346. }
  32347. },
  32348. rearDickUnfolded: {
  32349. height: math.unit(8.78, "feet"),
  32350. name: "Rear Dick (Unfolded)",
  32351. image: {
  32352. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32353. }
  32354. },
  32355. wings: {
  32356. height: math.unit(43, "feet"),
  32357. name: "Wings",
  32358. image: {
  32359. source: "./media/characters/irb'iiritaahn/wings.svg"
  32360. }
  32361. },
  32362. },
  32363. [
  32364. {
  32365. name: "Macro",
  32366. height: math.unit(50 + 9/12, "feet"),
  32367. default: true
  32368. },
  32369. ]
  32370. ))
  32371. characterMakers.push(() => makeCharacter(
  32372. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32373. {
  32374. front: {
  32375. height: math.unit(205, "cm"),
  32376. weight: math.unit(102, "kg"),
  32377. name: "Front",
  32378. image: {
  32379. source: "./media/characters/irbisgreif/front.svg",
  32380. extra: 785/706,
  32381. bottom: 13/798
  32382. }
  32383. },
  32384. back: {
  32385. height: math.unit(205, "cm"),
  32386. weight: math.unit(102, "kg"),
  32387. name: "Back",
  32388. image: {
  32389. source: "./media/characters/irbisgreif/back.svg",
  32390. extra: 713/701,
  32391. bottom: 26/739
  32392. }
  32393. },
  32394. frontDressed: {
  32395. height: math.unit(216, "cm"),
  32396. weight: math.unit(102, "kg"),
  32397. name: "Front-dressed",
  32398. image: {
  32399. source: "./media/characters/irbisgreif/front-dressed.svg",
  32400. extra: 902/776,
  32401. bottom: 14/916
  32402. }
  32403. },
  32404. sideDressed: {
  32405. height: math.unit(195, "cm"),
  32406. weight: math.unit(102, "kg"),
  32407. name: "Side-dressed",
  32408. image: {
  32409. source: "./media/characters/irbisgreif/side-dressed.svg",
  32410. extra: 788/688,
  32411. bottom: 21/809
  32412. }
  32413. },
  32414. backDressed: {
  32415. height: math.unit(216, "cm"),
  32416. weight: math.unit(102, "kg"),
  32417. name: "Back-dressed",
  32418. image: {
  32419. source: "./media/characters/irbisgreif/back-dressed.svg",
  32420. extra: 901/783,
  32421. bottom: 10/911
  32422. }
  32423. },
  32424. dick: {
  32425. height: math.unit(0.49, "feet"),
  32426. name: "Dick",
  32427. image: {
  32428. source: "./media/characters/irbisgreif/dick.svg"
  32429. }
  32430. },
  32431. wingTop: {
  32432. height: math.unit(1.93 , "feet"),
  32433. name: "Wing-top",
  32434. image: {
  32435. source: "./media/characters/irbisgreif/wing-top.svg"
  32436. }
  32437. },
  32438. wingBottom: {
  32439. height: math.unit(1.93 , "feet"),
  32440. name: "Wing-bottom",
  32441. image: {
  32442. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32443. }
  32444. },
  32445. },
  32446. [
  32447. {
  32448. name: "Normal",
  32449. height: math.unit(216, "cm"),
  32450. default: true
  32451. },
  32452. ]
  32453. ))
  32454. characterMakers.push(() => makeCharacter(
  32455. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32456. {
  32457. front: {
  32458. height: math.unit(6, "feet"),
  32459. weight: math.unit(150, "lb"),
  32460. name: "Front",
  32461. image: {
  32462. source: "./media/characters/pride/front.svg",
  32463. extra: 1299/1230,
  32464. bottom: 18/1317
  32465. }
  32466. },
  32467. },
  32468. [
  32469. {
  32470. name: "Normal",
  32471. height: math.unit(7, "feet")
  32472. },
  32473. {
  32474. name: "Mini-macro",
  32475. height: math.unit(11, "feet")
  32476. },
  32477. {
  32478. name: "Macro",
  32479. height: math.unit(15, "meters"),
  32480. default: true
  32481. },
  32482. {
  32483. name: "Macro+",
  32484. height: math.unit(40, "meters")
  32485. },
  32486. ]
  32487. ))
  32488. characterMakers.push(() => makeCharacter(
  32489. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32490. {
  32491. front: {
  32492. height: math.unit(4 + 2 / 12, "feet"),
  32493. weight: math.unit(95, "lb"),
  32494. name: "Front",
  32495. image: {
  32496. source: "./media/characters/vaelophis-nyx/front.svg",
  32497. extra: 2532/2330,
  32498. bottom: 0/2532
  32499. }
  32500. },
  32501. back: {
  32502. height: math.unit(4 + 2 / 12, "feet"),
  32503. weight: math.unit(95, "lb"),
  32504. name: "Back",
  32505. image: {
  32506. source: "./media/characters/vaelophis-nyx/back.svg",
  32507. extra: 2484/2361,
  32508. bottom: 0/2484
  32509. }
  32510. },
  32511. feralSide: {
  32512. height: math.unit(2 + 1/12, "feet"),
  32513. weight: math.unit(20, "lb"),
  32514. name: "Feral (Side)",
  32515. image: {
  32516. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32517. extra: 1721/1581,
  32518. bottom: 70/1791
  32519. }
  32520. },
  32521. feralLazing: {
  32522. height: math.unit(1.08, "feet"),
  32523. weight: math.unit(20, "lb"),
  32524. name: "Feral (Lazing)",
  32525. image: {
  32526. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32527. extra: 822/822,
  32528. bottom: 248/1070
  32529. }
  32530. },
  32531. ear: {
  32532. height: math.unit(0.416, "feet"),
  32533. name: "Ear",
  32534. image: {
  32535. source: "./media/characters/vaelophis-nyx/ear.svg"
  32536. }
  32537. },
  32538. eye: {
  32539. height: math.unit(0.0748, "feet"),
  32540. name: "Eye",
  32541. image: {
  32542. source: "./media/characters/vaelophis-nyx/eye.svg"
  32543. }
  32544. },
  32545. mouth: {
  32546. height: math.unit(0.378, "feet"),
  32547. name: "Mouth",
  32548. image: {
  32549. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32550. }
  32551. },
  32552. spade: {
  32553. height: math.unit(0.55, "feet"),
  32554. name: "Spade",
  32555. image: {
  32556. source: "./media/characters/vaelophis-nyx/spade.svg"
  32557. }
  32558. },
  32559. },
  32560. [
  32561. {
  32562. name: "Normal",
  32563. height: math.unit(4 + 2/12, "feet"),
  32564. default: true
  32565. },
  32566. ]
  32567. ))
  32568. characterMakers.push(() => makeCharacter(
  32569. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32570. {
  32571. front: {
  32572. height: math.unit(7, "feet"),
  32573. weight: math.unit(231, "lb"),
  32574. name: "Front",
  32575. image: {
  32576. source: "./media/characters/flux/front.svg",
  32577. extra: 919/871,
  32578. bottom: 0/919
  32579. }
  32580. },
  32581. back: {
  32582. height: math.unit(7, "feet"),
  32583. weight: math.unit(231, "lb"),
  32584. name: "Back",
  32585. image: {
  32586. source: "./media/characters/flux/back.svg",
  32587. extra: 1040/992,
  32588. bottom: 0/1040
  32589. }
  32590. },
  32591. frontDressed: {
  32592. height: math.unit(7, "feet"),
  32593. weight: math.unit(231, "lb"),
  32594. name: "Front (Dressed)",
  32595. image: {
  32596. source: "./media/characters/flux/front-dressed.svg",
  32597. extra: 919/871,
  32598. bottom: 0/919
  32599. }
  32600. },
  32601. feralSide: {
  32602. height: math.unit(5, "feet"),
  32603. weight: math.unit(150, "lb"),
  32604. name: "Feral (Side)",
  32605. image: {
  32606. source: "./media/characters/flux/feral-side.svg",
  32607. extra: 598/528,
  32608. bottom: 28/626
  32609. }
  32610. },
  32611. head: {
  32612. height: math.unit(1.585, "feet"),
  32613. name: "Head",
  32614. image: {
  32615. source: "./media/characters/flux/head.svg"
  32616. }
  32617. },
  32618. headSide: {
  32619. height: math.unit(1.74, "feet"),
  32620. name: "Head (Side)",
  32621. image: {
  32622. source: "./media/characters/flux/head-side.svg"
  32623. }
  32624. },
  32625. headSideFire: {
  32626. height: math.unit(1.76, "feet"),
  32627. name: "Head (Side, Fire)",
  32628. image: {
  32629. source: "./media/characters/flux/head-side-fire.svg"
  32630. }
  32631. },
  32632. },
  32633. [
  32634. {
  32635. name: "Normal",
  32636. height: math.unit(7, "feet"),
  32637. default: true
  32638. },
  32639. ]
  32640. ))
  32641. characterMakers.push(() => makeCharacter(
  32642. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32643. {
  32644. front: {
  32645. height: math.unit(9, "feet"),
  32646. weight: math.unit(1012, "lb"),
  32647. name: "Front",
  32648. image: {
  32649. source: "./media/characters/ulfra-lupae/front.svg",
  32650. extra: 1083/1011,
  32651. bottom: 67/1150
  32652. }
  32653. },
  32654. },
  32655. [
  32656. {
  32657. name: "Micro",
  32658. height: math.unit(6, "inches")
  32659. },
  32660. {
  32661. name: "Socializing",
  32662. height: math.unit(6 + 5/12, "feet")
  32663. },
  32664. {
  32665. name: "Normal",
  32666. height: math.unit(9, "feet"),
  32667. default: true
  32668. },
  32669. {
  32670. name: "Macro",
  32671. height: math.unit(150, "feet")
  32672. },
  32673. ]
  32674. ))
  32675. characterMakers.push(() => makeCharacter(
  32676. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32677. {
  32678. front: {
  32679. height: math.unit(5 + 2/12, "feet"),
  32680. weight: math.unit(120, "lb"),
  32681. name: "Front",
  32682. image: {
  32683. source: "./media/characters/timber/front.svg",
  32684. extra: 2814/2705,
  32685. bottom: 181/2995
  32686. }
  32687. },
  32688. },
  32689. [
  32690. {
  32691. name: "Normal",
  32692. height: math.unit(5 + 2/12, "feet"),
  32693. default: true
  32694. },
  32695. ]
  32696. ))
  32697. characterMakers.push(() => makeCharacter(
  32698. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32699. {
  32700. front: {
  32701. height: math.unit(9, "feet"),
  32702. name: "Front",
  32703. image: {
  32704. source: "./media/characters/nicki/front.svg",
  32705. extra: 1240/990,
  32706. bottom: 45/1285
  32707. },
  32708. form: "anthro",
  32709. default: true
  32710. },
  32711. side: {
  32712. height: math.unit(9, "feet"),
  32713. name: "Side",
  32714. image: {
  32715. source: "./media/characters/nicki/side.svg",
  32716. extra: 1047/973,
  32717. bottom: 61/1108
  32718. },
  32719. form: "anthro"
  32720. },
  32721. back: {
  32722. height: math.unit(9, "feet"),
  32723. name: "Back",
  32724. image: {
  32725. source: "./media/characters/nicki/back.svg",
  32726. extra: 1006/965,
  32727. bottom: 39/1045
  32728. },
  32729. form: "anthro"
  32730. },
  32731. taur: {
  32732. height: math.unit(15, "feet"),
  32733. name: "Taur",
  32734. image: {
  32735. source: "./media/characters/nicki/taur.svg",
  32736. extra: 1592/1347,
  32737. bottom: 0/1592
  32738. },
  32739. form: "taur",
  32740. default: true
  32741. },
  32742. },
  32743. [
  32744. {
  32745. name: "Normal",
  32746. height: math.unit(9, "feet"),
  32747. form: "anthro",
  32748. default: true
  32749. },
  32750. {
  32751. name: "Normal",
  32752. height: math.unit(15, "feet"),
  32753. form: "taur",
  32754. default: true
  32755. }
  32756. ],
  32757. {
  32758. "anthro": {
  32759. name: "Anthro",
  32760. default: true
  32761. },
  32762. "taur": {
  32763. name: "Taur"
  32764. }
  32765. }
  32766. ))
  32767. characterMakers.push(() => makeCharacter(
  32768. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32769. {
  32770. front: {
  32771. height: math.unit(7 + 10/12, "feet"),
  32772. weight: math.unit(3.5, "tons"),
  32773. name: "Front",
  32774. image: {
  32775. source: "./media/characters/lee/front.svg",
  32776. extra: 1773/1615,
  32777. bottom: 86/1859
  32778. }
  32779. },
  32780. hand: {
  32781. height: math.unit(1.78, "feet"),
  32782. name: "Hand",
  32783. image: {
  32784. source: "./media/characters/lee/hand.svg"
  32785. }
  32786. },
  32787. maw: {
  32788. height: math.unit(1.18, "feet"),
  32789. name: "Maw",
  32790. image: {
  32791. source: "./media/characters/lee/maw.svg"
  32792. }
  32793. },
  32794. },
  32795. [
  32796. {
  32797. name: "Normal",
  32798. height: math.unit(7 + 10/12, "feet"),
  32799. default: true
  32800. },
  32801. ]
  32802. ))
  32803. characterMakers.push(() => makeCharacter(
  32804. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32805. {
  32806. front: {
  32807. height: math.unit(9, "feet"),
  32808. name: "Front",
  32809. image: {
  32810. source: "./media/characters/guti/front.svg",
  32811. extra: 4551/4355,
  32812. bottom: 123/4674
  32813. }
  32814. },
  32815. tongue: {
  32816. height: math.unit(1, "feet"),
  32817. name: "Tongue",
  32818. image: {
  32819. source: "./media/characters/guti/tongue.svg"
  32820. }
  32821. },
  32822. paw: {
  32823. height: math.unit(1.18, "feet"),
  32824. name: "Paw",
  32825. image: {
  32826. source: "./media/characters/guti/paw.svg"
  32827. }
  32828. },
  32829. },
  32830. [
  32831. {
  32832. name: "Normal",
  32833. height: math.unit(9, "feet"),
  32834. default: true
  32835. },
  32836. ]
  32837. ))
  32838. characterMakers.push(() => makeCharacter(
  32839. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32840. {
  32841. side: {
  32842. height: math.unit(5, "meters"),
  32843. name: "Side",
  32844. image: {
  32845. source: "./media/characters/vesper/side.svg",
  32846. extra: 1605/1518,
  32847. bottom: 0/1605
  32848. }
  32849. },
  32850. },
  32851. [
  32852. {
  32853. name: "Small",
  32854. height: math.unit(5, "meters")
  32855. },
  32856. {
  32857. name: "Sage",
  32858. height: math.unit(100, "meters"),
  32859. default: true
  32860. },
  32861. {
  32862. name: "Fun Size",
  32863. height: math.unit(600, "meters")
  32864. },
  32865. {
  32866. name: "Goddess",
  32867. height: math.unit(20000, "km")
  32868. },
  32869. {
  32870. name: "Maximum",
  32871. height: math.unit(5, "galaxies")
  32872. },
  32873. ]
  32874. ))
  32875. characterMakers.push(() => makeCharacter(
  32876. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32877. {
  32878. front: {
  32879. height: math.unit(6 + 3/12, "feet"),
  32880. weight: math.unit(190, "lb"),
  32881. name: "Front",
  32882. image: {
  32883. source: "./media/characters/gawain/front.svg",
  32884. extra: 2222/2139,
  32885. bottom: 90/2312
  32886. }
  32887. },
  32888. back: {
  32889. height: math.unit(6 + 3/12, "feet"),
  32890. weight: math.unit(190, "lb"),
  32891. name: "Back",
  32892. image: {
  32893. source: "./media/characters/gawain/back.svg",
  32894. extra: 2199/2111,
  32895. bottom: 73/2272
  32896. }
  32897. },
  32898. },
  32899. [
  32900. {
  32901. name: "Normal",
  32902. height: math.unit(6 + 3/12, "feet"),
  32903. default: true
  32904. },
  32905. ]
  32906. ))
  32907. characterMakers.push(() => makeCharacter(
  32908. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32909. {
  32910. side: {
  32911. height: math.unit(3.5, "meters"),
  32912. weight: math.unit(16000, "lb"),
  32913. name: "Side",
  32914. image: {
  32915. source: "./media/characters/dascalti/side.svg",
  32916. extra: 392/273,
  32917. bottom: 47/439
  32918. }
  32919. },
  32920. breath: {
  32921. height: math.unit(7.4, "feet"),
  32922. name: "Breath",
  32923. image: {
  32924. source: "./media/characters/dascalti/breath.svg"
  32925. }
  32926. },
  32927. fed: {
  32928. height: math.unit(3.6, "meters"),
  32929. weight: math.unit(16000, "lb"),
  32930. name: "Fed",
  32931. image: {
  32932. source: "./media/characters/dascalti/fed.svg",
  32933. extra: 1419/820,
  32934. bottom: 95/1514
  32935. }
  32936. },
  32937. },
  32938. [
  32939. {
  32940. name: "Normal",
  32941. height: math.unit(3.5, "meters"),
  32942. default: true
  32943. },
  32944. ]
  32945. ))
  32946. characterMakers.push(() => makeCharacter(
  32947. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32948. {
  32949. front: {
  32950. height: math.unit(3 + 5/12, "feet"),
  32951. name: "Front",
  32952. image: {
  32953. source: "./media/characters/mauve/front.svg",
  32954. extra: 1126/1033,
  32955. bottom: 65/1191
  32956. }
  32957. },
  32958. side: {
  32959. height: math.unit(3 + 5/12, "feet"),
  32960. name: "Side",
  32961. image: {
  32962. source: "./media/characters/mauve/side.svg",
  32963. extra: 1089/1001,
  32964. bottom: 29/1118
  32965. }
  32966. },
  32967. back: {
  32968. height: math.unit(3 + 5/12, "feet"),
  32969. name: "Back",
  32970. image: {
  32971. source: "./media/characters/mauve/back.svg",
  32972. extra: 1173/1053,
  32973. bottom: 109/1282
  32974. }
  32975. },
  32976. },
  32977. [
  32978. {
  32979. name: "Normal",
  32980. height: math.unit(3 + 5/12, "feet"),
  32981. default: true
  32982. },
  32983. ]
  32984. ))
  32985. characterMakers.push(() => makeCharacter(
  32986. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32987. {
  32988. front: {
  32989. height: math.unit(6 + 3/12, "feet"),
  32990. weight: math.unit(430, "lb"),
  32991. name: "Front",
  32992. image: {
  32993. source: "./media/characters/carlos/front.svg",
  32994. extra: 1964/1913,
  32995. bottom: 70/2034
  32996. }
  32997. },
  32998. },
  32999. [
  33000. {
  33001. name: "Normal",
  33002. height: math.unit(6 + 3/12, "feet"),
  33003. default: true
  33004. },
  33005. ]
  33006. ))
  33007. characterMakers.push(() => makeCharacter(
  33008. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33009. {
  33010. back: {
  33011. height: math.unit(5 + 10/12, "feet"),
  33012. weight: math.unit(200, "lb"),
  33013. name: "Back",
  33014. image: {
  33015. source: "./media/characters/jax/back.svg",
  33016. extra: 764/739,
  33017. bottom: 25/789
  33018. }
  33019. },
  33020. },
  33021. [
  33022. {
  33023. name: "Normal",
  33024. height: math.unit(5 + 10/12, "feet"),
  33025. default: true
  33026. },
  33027. ]
  33028. ))
  33029. characterMakers.push(() => makeCharacter(
  33030. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33031. {
  33032. front: {
  33033. height: math.unit(8, "feet"),
  33034. weight: math.unit(250, "lb"),
  33035. name: "Front",
  33036. image: {
  33037. source: "./media/characters/eikthynir/front.svg",
  33038. extra: 1332/1166,
  33039. bottom: 82/1414
  33040. }
  33041. },
  33042. back: {
  33043. height: math.unit(8, "feet"),
  33044. weight: math.unit(250, "lb"),
  33045. name: "Back",
  33046. image: {
  33047. source: "./media/characters/eikthynir/back.svg",
  33048. extra: 1342/1190,
  33049. bottom: 19/1361
  33050. }
  33051. },
  33052. dick: {
  33053. height: math.unit(2.35, "feet"),
  33054. name: "Dick",
  33055. image: {
  33056. source: "./media/characters/eikthynir/dick.svg"
  33057. }
  33058. },
  33059. },
  33060. [
  33061. {
  33062. name: "Normal",
  33063. height: math.unit(8, "feet"),
  33064. default: true
  33065. },
  33066. ]
  33067. ))
  33068. characterMakers.push(() => makeCharacter(
  33069. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33070. {
  33071. front: {
  33072. height: math.unit(99, "meters"),
  33073. weight: math.unit(13000, "tons"),
  33074. name: "Front",
  33075. image: {
  33076. source: "./media/characters/zlmos/front.svg",
  33077. extra: 2202/1992,
  33078. bottom: 315/2517
  33079. }
  33080. },
  33081. },
  33082. [
  33083. {
  33084. name: "Macro",
  33085. height: math.unit(99, "meters"),
  33086. default: true
  33087. },
  33088. ]
  33089. ))
  33090. characterMakers.push(() => makeCharacter(
  33091. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33092. {
  33093. front: {
  33094. height: math.unit(6 + 5/12, "feet"),
  33095. name: "Front",
  33096. image: {
  33097. source: "./media/characters/purri/front.svg",
  33098. extra: 1698/1610,
  33099. bottom: 32/1730
  33100. }
  33101. },
  33102. frontAlt: {
  33103. height: math.unit(6 + 5/12, "feet"),
  33104. name: "Front (Alt)",
  33105. image: {
  33106. source: "./media/characters/purri/front-alt.svg",
  33107. extra: 450/420,
  33108. bottom: 26/476
  33109. }
  33110. },
  33111. boots: {
  33112. height: math.unit(5.5, "feet"),
  33113. name: "Boots",
  33114. image: {
  33115. source: "./media/characters/purri/boots.svg",
  33116. extra: 905/853,
  33117. bottom: 18/923
  33118. }
  33119. },
  33120. lying: {
  33121. height: math.unit(2, "feet"),
  33122. name: "Lying",
  33123. image: {
  33124. source: "./media/characters/purri/lying.svg",
  33125. extra: 940/843,
  33126. bottom: 146/1086
  33127. }
  33128. },
  33129. devious: {
  33130. height: math.unit(1.77, "feet"),
  33131. name: "Devious",
  33132. image: {
  33133. source: "./media/characters/purri/devious.svg",
  33134. extra: 1440/1155,
  33135. bottom: 147/1587
  33136. }
  33137. },
  33138. bean: {
  33139. height: math.unit(1.94, "feet"),
  33140. name: "Bean",
  33141. image: {
  33142. source: "./media/characters/purri/bean.svg"
  33143. }
  33144. },
  33145. },
  33146. [
  33147. {
  33148. name: "Micro",
  33149. height: math.unit(1, "mm")
  33150. },
  33151. {
  33152. name: "Normal",
  33153. height: math.unit(6 + 5/12, "feet"),
  33154. default: true
  33155. },
  33156. {
  33157. name: "Macro :3c",
  33158. height: math.unit(2, "miles")
  33159. },
  33160. ]
  33161. ))
  33162. characterMakers.push(() => makeCharacter(
  33163. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33164. {
  33165. front: {
  33166. height: math.unit(6 + 2/12, "feet"),
  33167. weight: math.unit(250, "lb"),
  33168. name: "Front",
  33169. image: {
  33170. source: "./media/characters/moonlight/front.svg",
  33171. extra: 1044/908,
  33172. bottom: 56/1100
  33173. }
  33174. },
  33175. feral: {
  33176. height: math.unit(3 + 1/12, "feet"),
  33177. weight: math.unit(50, "kg"),
  33178. name: "Feral",
  33179. image: {
  33180. source: "./media/characters/moonlight/feral.svg",
  33181. extra: 3705/2791,
  33182. bottom: 145/3850
  33183. }
  33184. },
  33185. paw: {
  33186. height: math.unit(1, "feet"),
  33187. name: "Paw",
  33188. image: {
  33189. source: "./media/characters/moonlight/paw.svg"
  33190. }
  33191. },
  33192. paws: {
  33193. height: math.unit(0.98, "feet"),
  33194. name: "Paws",
  33195. image: {
  33196. source: "./media/characters/moonlight/paws.svg",
  33197. extra: 939/939,
  33198. bottom: 50/989
  33199. }
  33200. },
  33201. mouth: {
  33202. height: math.unit(0.48, "feet"),
  33203. name: "Mouth",
  33204. image: {
  33205. source: "./media/characters/moonlight/mouth.svg"
  33206. }
  33207. },
  33208. dick: {
  33209. height: math.unit(1.46, "feet"),
  33210. name: "Dick",
  33211. image: {
  33212. source: "./media/characters/moonlight/dick.svg"
  33213. }
  33214. },
  33215. },
  33216. [
  33217. {
  33218. name: "Normal",
  33219. height: math.unit(6 + 2/12, "feet"),
  33220. default: true
  33221. },
  33222. {
  33223. name: "Macro",
  33224. height: math.unit(300, "feet")
  33225. },
  33226. {
  33227. name: "Macro+",
  33228. height: math.unit(1, "mile")
  33229. },
  33230. {
  33231. name: "Mt. Moon",
  33232. height: math.unit(5, "miles")
  33233. },
  33234. {
  33235. name: "Megamacro",
  33236. height: math.unit(15, "miles")
  33237. },
  33238. ]
  33239. ))
  33240. characterMakers.push(() => makeCharacter(
  33241. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33242. {
  33243. back: {
  33244. height: math.unit(6, "feet"),
  33245. weight: math.unit(150, "lb"),
  33246. name: "Back",
  33247. image: {
  33248. source: "./media/characters/sylen/back.svg",
  33249. extra: 1335/1273,
  33250. bottom: 107/1442
  33251. }
  33252. },
  33253. },
  33254. [
  33255. {
  33256. name: "Normal",
  33257. height: math.unit(5 + 5/12, "feet")
  33258. },
  33259. {
  33260. name: "Megamacro",
  33261. height: math.unit(3, "miles"),
  33262. default: true
  33263. },
  33264. ]
  33265. ))
  33266. characterMakers.push(() => makeCharacter(
  33267. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33268. {
  33269. front: {
  33270. height: math.unit(6, "feet"),
  33271. weight: math.unit(190, "lb"),
  33272. name: "Front",
  33273. image: {
  33274. source: "./media/characters/huttser/front.svg",
  33275. extra: 1152/1058,
  33276. bottom: 23/1175
  33277. }
  33278. },
  33279. side: {
  33280. height: math.unit(6, "feet"),
  33281. weight: math.unit(190, "lb"),
  33282. name: "Side",
  33283. image: {
  33284. source: "./media/characters/huttser/side.svg",
  33285. extra: 1174/1065,
  33286. bottom: 18/1192
  33287. }
  33288. },
  33289. back: {
  33290. height: math.unit(6, "feet"),
  33291. weight: math.unit(190, "lb"),
  33292. name: "Back",
  33293. image: {
  33294. source: "./media/characters/huttser/back.svg",
  33295. extra: 1158/1056,
  33296. bottom: 12/1170
  33297. }
  33298. },
  33299. },
  33300. [
  33301. ]
  33302. ))
  33303. characterMakers.push(() => makeCharacter(
  33304. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33305. {
  33306. side: {
  33307. height: math.unit(12 + 9/12, "feet"),
  33308. weight: math.unit(15000, "lb"),
  33309. name: "Side",
  33310. image: {
  33311. source: "./media/characters/faan/side.svg",
  33312. extra: 2747/2697,
  33313. bottom: 0/2747
  33314. }
  33315. },
  33316. front: {
  33317. height: math.unit(12 + 9/12, "feet"),
  33318. weight: math.unit(15000, "lb"),
  33319. name: "Front",
  33320. image: {
  33321. source: "./media/characters/faan/front.svg",
  33322. extra: 607/571,
  33323. bottom: 24/631
  33324. }
  33325. },
  33326. head: {
  33327. height: math.unit(2.85, "feet"),
  33328. name: "Head",
  33329. image: {
  33330. source: "./media/characters/faan/head.svg"
  33331. }
  33332. },
  33333. headAlt: {
  33334. height: math.unit(3.13, "feet"),
  33335. name: "Head-alt",
  33336. image: {
  33337. source: "./media/characters/faan/head-alt.svg"
  33338. }
  33339. },
  33340. },
  33341. [
  33342. {
  33343. name: "Normal",
  33344. height: math.unit(12 + 9/12, "feet"),
  33345. default: true
  33346. },
  33347. ]
  33348. ))
  33349. characterMakers.push(() => makeCharacter(
  33350. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33351. {
  33352. front: {
  33353. height: math.unit(6, "feet"),
  33354. weight: math.unit(300, "lb"),
  33355. name: "Front",
  33356. image: {
  33357. source: "./media/characters/tanio/front.svg",
  33358. extra: 711/673,
  33359. bottom: 25/736
  33360. }
  33361. },
  33362. },
  33363. [
  33364. {
  33365. name: "Normal",
  33366. height: math.unit(6, "feet"),
  33367. default: true
  33368. },
  33369. ]
  33370. ))
  33371. characterMakers.push(() => makeCharacter(
  33372. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33373. {
  33374. front: {
  33375. height: math.unit(3, "inches"),
  33376. name: "Front",
  33377. image: {
  33378. source: "./media/characters/noboru/front.svg",
  33379. extra: 1039/932,
  33380. bottom: 18/1057
  33381. }
  33382. },
  33383. },
  33384. [
  33385. {
  33386. name: "Micro",
  33387. height: math.unit(3, "inches"),
  33388. default: true
  33389. },
  33390. ]
  33391. ))
  33392. characterMakers.push(() => makeCharacter(
  33393. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33394. {
  33395. front: {
  33396. height: math.unit(1.85, "meters"),
  33397. weight: math.unit(80, "kg"),
  33398. name: "Front",
  33399. image: {
  33400. source: "./media/characters/daniel-barrett/front.svg",
  33401. extra: 355/337,
  33402. bottom: 9/364
  33403. }
  33404. },
  33405. },
  33406. [
  33407. {
  33408. name: "Pico",
  33409. height: math.unit(0.0433, "mm")
  33410. },
  33411. {
  33412. name: "Nano",
  33413. height: math.unit(1.5, "mm")
  33414. },
  33415. {
  33416. name: "Micro",
  33417. height: math.unit(5.3, "cm"),
  33418. default: true
  33419. },
  33420. {
  33421. name: "Normal",
  33422. height: math.unit(1.85, "meters")
  33423. },
  33424. {
  33425. name: "Macro",
  33426. height: math.unit(64.7, "meters")
  33427. },
  33428. {
  33429. name: "Megamacro",
  33430. height: math.unit(2.26, "km")
  33431. },
  33432. {
  33433. name: "Gigamacro",
  33434. height: math.unit(79, "km")
  33435. },
  33436. {
  33437. name: "Teramacro",
  33438. height: math.unit(2765, "km")
  33439. },
  33440. {
  33441. name: "Petamacro",
  33442. height: math.unit(96678, "km")
  33443. },
  33444. ]
  33445. ))
  33446. characterMakers.push(() => makeCharacter(
  33447. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33448. {
  33449. front: {
  33450. height: math.unit(30, "meters"),
  33451. weight: math.unit(400, "tons"),
  33452. name: "Front",
  33453. image: {
  33454. source: "./media/characters/zeel/front.svg",
  33455. extra: 2599/2599,
  33456. bottom: 226/2825
  33457. }
  33458. },
  33459. },
  33460. [
  33461. {
  33462. name: "Macro",
  33463. height: math.unit(30, "meters"),
  33464. default: true
  33465. },
  33466. ]
  33467. ))
  33468. characterMakers.push(() => makeCharacter(
  33469. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33470. {
  33471. front: {
  33472. height: math.unit(6 + 7/12, "feet"),
  33473. weight: math.unit(210, "lb"),
  33474. name: "Front",
  33475. image: {
  33476. source: "./media/characters/tarn/front.svg",
  33477. extra: 3517/3220,
  33478. bottom: 91/3608
  33479. }
  33480. },
  33481. back: {
  33482. height: math.unit(6 + 7/12, "feet"),
  33483. weight: math.unit(210, "lb"),
  33484. name: "Back",
  33485. image: {
  33486. source: "./media/characters/tarn/back.svg",
  33487. extra: 3566/3241,
  33488. bottom: 34/3600
  33489. }
  33490. },
  33491. dick: {
  33492. height: math.unit(1.65, "feet"),
  33493. name: "Dick",
  33494. image: {
  33495. source: "./media/characters/tarn/dick.svg"
  33496. }
  33497. },
  33498. paw: {
  33499. height: math.unit(1.80, "feet"),
  33500. name: "Paw",
  33501. image: {
  33502. source: "./media/characters/tarn/paw.svg"
  33503. }
  33504. },
  33505. tongue: {
  33506. height: math.unit(0.97, "feet"),
  33507. name: "Tongue",
  33508. image: {
  33509. source: "./media/characters/tarn/tongue.svg"
  33510. }
  33511. },
  33512. },
  33513. [
  33514. {
  33515. name: "Micro",
  33516. height: math.unit(4, "inches")
  33517. },
  33518. {
  33519. name: "Normal",
  33520. height: math.unit(6 + 7/12, "feet"),
  33521. default: true
  33522. },
  33523. {
  33524. name: "Macro",
  33525. height: math.unit(300, "feet")
  33526. },
  33527. ]
  33528. ))
  33529. characterMakers.push(() => makeCharacter(
  33530. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33531. {
  33532. front: {
  33533. height: math.unit(5 + 7/12, "feet"),
  33534. weight: math.unit(80, "kg"),
  33535. name: "Front",
  33536. image: {
  33537. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33538. extra: 3023/2865,
  33539. bottom: 33/3056
  33540. }
  33541. },
  33542. back: {
  33543. height: math.unit(5 + 7/12, "feet"),
  33544. weight: math.unit(80, "kg"),
  33545. name: "Back",
  33546. image: {
  33547. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33548. extra: 3020/2886,
  33549. bottom: 30/3050
  33550. }
  33551. },
  33552. dick: {
  33553. height: math.unit(0.98, "feet"),
  33554. name: "Dick",
  33555. image: {
  33556. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33557. }
  33558. },
  33559. anatomy: {
  33560. height: math.unit(2.86, "feet"),
  33561. name: "Anatomy",
  33562. image: {
  33563. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33564. }
  33565. },
  33566. },
  33567. [
  33568. {
  33569. name: "Really Small",
  33570. height: math.unit(2, "inches")
  33571. },
  33572. {
  33573. name: "Micro",
  33574. height: math.unit(5.583, "inches")
  33575. },
  33576. {
  33577. name: "Normal",
  33578. height: math.unit(5 + 7/12, "feet"),
  33579. default: true
  33580. },
  33581. {
  33582. name: "Macro",
  33583. height: math.unit(67, "feet")
  33584. },
  33585. {
  33586. name: "Megamacro",
  33587. height: math.unit(134, "feet")
  33588. },
  33589. ]
  33590. ))
  33591. characterMakers.push(() => makeCharacter(
  33592. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33593. {
  33594. front: {
  33595. height: math.unit(9, "feet"),
  33596. weight: math.unit(120, "lb"),
  33597. name: "Front",
  33598. image: {
  33599. source: "./media/characters/sally/front.svg",
  33600. extra: 1506/1349,
  33601. bottom: 66/1572
  33602. }
  33603. },
  33604. },
  33605. [
  33606. {
  33607. name: "Normal",
  33608. height: math.unit(9, "feet"),
  33609. default: true
  33610. },
  33611. ]
  33612. ))
  33613. characterMakers.push(() => makeCharacter(
  33614. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33615. {
  33616. front: {
  33617. height: math.unit(8, "feet"),
  33618. weight: math.unit(900, "lb"),
  33619. name: "Front",
  33620. image: {
  33621. source: "./media/characters/owen/front.svg",
  33622. extra: 1761/1657,
  33623. bottom: 74/1835
  33624. }
  33625. },
  33626. side: {
  33627. height: math.unit(8, "feet"),
  33628. weight: math.unit(900, "lb"),
  33629. name: "Side",
  33630. image: {
  33631. source: "./media/characters/owen/side.svg",
  33632. extra: 1797/1734,
  33633. bottom: 30/1827
  33634. }
  33635. },
  33636. back: {
  33637. height: math.unit(8, "feet"),
  33638. weight: math.unit(900, "lb"),
  33639. name: "Back",
  33640. image: {
  33641. source: "./media/characters/owen/back.svg",
  33642. extra: 1796/1706,
  33643. bottom: 59/1855
  33644. }
  33645. },
  33646. maw: {
  33647. height: math.unit(1.76, "feet"),
  33648. name: "Maw",
  33649. image: {
  33650. source: "./media/characters/owen/maw.svg"
  33651. }
  33652. },
  33653. },
  33654. [
  33655. {
  33656. name: "Normal",
  33657. height: math.unit(8, "feet"),
  33658. default: true
  33659. },
  33660. ]
  33661. ))
  33662. characterMakers.push(() => makeCharacter(
  33663. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33664. {
  33665. front: {
  33666. height: math.unit(4, "feet"),
  33667. weight: math.unit(400, "lb"),
  33668. name: "Front",
  33669. image: {
  33670. source: "./media/characters/ryth/front.svg",
  33671. extra: 1920/1748,
  33672. bottom: 42/1962
  33673. }
  33674. },
  33675. back: {
  33676. height: math.unit(4, "feet"),
  33677. weight: math.unit(400, "lb"),
  33678. name: "Back",
  33679. image: {
  33680. source: "./media/characters/ryth/back.svg",
  33681. extra: 1897/1690,
  33682. bottom: 89/1986
  33683. }
  33684. },
  33685. mouth: {
  33686. height: math.unit(1.39, "feet"),
  33687. name: "Mouth",
  33688. image: {
  33689. source: "./media/characters/ryth/mouth.svg"
  33690. }
  33691. },
  33692. tailmaw: {
  33693. height: math.unit(1.23, "feet"),
  33694. name: "Tailmaw",
  33695. image: {
  33696. source: "./media/characters/ryth/tailmaw.svg"
  33697. }
  33698. },
  33699. goia: {
  33700. height: math.unit(4, "meters"),
  33701. weight: math.unit(10800, "lb"),
  33702. name: "Goia",
  33703. image: {
  33704. source: "./media/characters/ryth/goia.svg",
  33705. extra: 745/640,
  33706. bottom: 107/852
  33707. }
  33708. },
  33709. goiaFront: {
  33710. height: math.unit(4, "meters"),
  33711. weight: math.unit(10800, "lb"),
  33712. name: "Goia (Front)",
  33713. image: {
  33714. source: "./media/characters/ryth/goia-front.svg",
  33715. extra: 750/586,
  33716. bottom: 114/864
  33717. }
  33718. },
  33719. goiaMaw: {
  33720. height: math.unit(5.55, "feet"),
  33721. name: "Goia Maw",
  33722. image: {
  33723. source: "./media/characters/ryth/goia-maw.svg"
  33724. }
  33725. },
  33726. goiaForepaw: {
  33727. height: math.unit(3.5, "feet"),
  33728. name: "Goia Forepaw",
  33729. image: {
  33730. source: "./media/characters/ryth/goia-forepaw.svg"
  33731. }
  33732. },
  33733. goiaHindpaw: {
  33734. height: math.unit(5.55, "feet"),
  33735. name: "Goia Hindpaw",
  33736. image: {
  33737. source: "./media/characters/ryth/goia-hindpaw.svg"
  33738. }
  33739. },
  33740. },
  33741. [
  33742. {
  33743. name: "Normal",
  33744. height: math.unit(4, "feet"),
  33745. default: true
  33746. },
  33747. ]
  33748. ))
  33749. characterMakers.push(() => makeCharacter(
  33750. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33751. {
  33752. front: {
  33753. height: math.unit(7, "feet"),
  33754. weight: math.unit(180, "lb"),
  33755. name: "Front",
  33756. image: {
  33757. source: "./media/characters/necrolance/front.svg",
  33758. extra: 1062/947,
  33759. bottom: 41/1103
  33760. }
  33761. },
  33762. back: {
  33763. height: math.unit(7, "feet"),
  33764. weight: math.unit(180, "lb"),
  33765. name: "Back",
  33766. image: {
  33767. source: "./media/characters/necrolance/back.svg",
  33768. extra: 1045/984,
  33769. bottom: 14/1059
  33770. }
  33771. },
  33772. wing: {
  33773. height: math.unit(2.67, "feet"),
  33774. name: "Wing",
  33775. image: {
  33776. source: "./media/characters/necrolance/wing.svg"
  33777. }
  33778. },
  33779. },
  33780. [
  33781. {
  33782. name: "Normal",
  33783. height: math.unit(7, "feet"),
  33784. default: true
  33785. },
  33786. ]
  33787. ))
  33788. characterMakers.push(() => makeCharacter(
  33789. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33790. {
  33791. front: {
  33792. height: math.unit(76, "meters"),
  33793. weight: math.unit(30000, "tons"),
  33794. name: "Front",
  33795. image: {
  33796. source: "./media/characters/tyler/front.svg",
  33797. extra: 1640/1640,
  33798. bottom: 114/1754
  33799. }
  33800. },
  33801. },
  33802. [
  33803. {
  33804. name: "Macro",
  33805. height: math.unit(76, "meters"),
  33806. default: true
  33807. },
  33808. ]
  33809. ))
  33810. characterMakers.push(() => makeCharacter(
  33811. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33812. {
  33813. front: {
  33814. height: math.unit(4 + 11/12, "feet"),
  33815. weight: math.unit(132, "lb"),
  33816. name: "Front",
  33817. image: {
  33818. source: "./media/characters/icey/front.svg",
  33819. extra: 2750/2550,
  33820. bottom: 33/2783
  33821. }
  33822. },
  33823. back: {
  33824. height: math.unit(4 + 11/12, "feet"),
  33825. weight: math.unit(132, "lb"),
  33826. name: "Back",
  33827. image: {
  33828. source: "./media/characters/icey/back.svg",
  33829. extra: 2624/2481,
  33830. bottom: 35/2659
  33831. }
  33832. },
  33833. },
  33834. [
  33835. {
  33836. name: "Normal",
  33837. height: math.unit(4 + 11/12, "feet"),
  33838. default: true
  33839. },
  33840. ]
  33841. ))
  33842. characterMakers.push(() => makeCharacter(
  33843. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33844. {
  33845. front: {
  33846. height: math.unit(100, "feet"),
  33847. weight: math.unit(0, "lb"),
  33848. name: "Front",
  33849. image: {
  33850. source: "./media/characters/smile/front.svg",
  33851. extra: 2983/2912,
  33852. bottom: 162/3145
  33853. }
  33854. },
  33855. back: {
  33856. height: math.unit(100, "feet"),
  33857. weight: math.unit(0, "lb"),
  33858. name: "Back",
  33859. image: {
  33860. source: "./media/characters/smile/back.svg",
  33861. extra: 3143/3031,
  33862. bottom: 91/3234
  33863. }
  33864. },
  33865. head: {
  33866. height: math.unit(26.3, "feet"),
  33867. weight: math.unit(0, "lb"),
  33868. name: "Head",
  33869. image: {
  33870. source: "./media/characters/smile/head.svg"
  33871. }
  33872. },
  33873. collar: {
  33874. height: math.unit(5.3, "feet"),
  33875. weight: math.unit(0, "lb"),
  33876. name: "Collar",
  33877. image: {
  33878. source: "./media/characters/smile/collar.svg"
  33879. }
  33880. },
  33881. },
  33882. [
  33883. {
  33884. name: "Macro",
  33885. height: math.unit(100, "feet"),
  33886. default: true
  33887. },
  33888. ]
  33889. ))
  33890. characterMakers.push(() => makeCharacter(
  33891. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33892. {
  33893. dragon: {
  33894. height: math.unit(26, "feet"),
  33895. weight: math.unit(36, "tons"),
  33896. name: "Dragon",
  33897. image: {
  33898. source: "./media/characters/arimphae/dragon.svg",
  33899. extra: 1574/983,
  33900. bottom: 357/1931
  33901. }
  33902. },
  33903. drake: {
  33904. height: math.unit(9, "feet"),
  33905. weight: math.unit(1.5, "tons"),
  33906. name: "Drake",
  33907. image: {
  33908. source: "./media/characters/arimphae/drake.svg",
  33909. extra: 1120/925,
  33910. bottom: 435/1555
  33911. }
  33912. },
  33913. },
  33914. [
  33915. {
  33916. name: "Small",
  33917. height: math.unit(26*5/9, "feet")
  33918. },
  33919. {
  33920. name: "Normal",
  33921. height: math.unit(26, "feet"),
  33922. default: true
  33923. },
  33924. ]
  33925. ))
  33926. characterMakers.push(() => makeCharacter(
  33927. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33928. {
  33929. front: {
  33930. height: math.unit(8 + 9/12, "feet"),
  33931. name: "Front",
  33932. image: {
  33933. source: "./media/characters/xander/front.svg",
  33934. extra: 1237/974,
  33935. bottom: 94/1331
  33936. }
  33937. },
  33938. },
  33939. [
  33940. {
  33941. name: "Normal",
  33942. height: math.unit(8 + 9/12, "feet"),
  33943. default: true
  33944. },
  33945. {
  33946. name: "Gaze Grabber",
  33947. height: math.unit(13 + 8/12, "feet")
  33948. },
  33949. {
  33950. name: "Jaw Dropper",
  33951. height: math.unit(27, "feet")
  33952. },
  33953. {
  33954. name: "Show Stopper",
  33955. height: math.unit(136, "feet")
  33956. },
  33957. {
  33958. name: "Superstar",
  33959. height: math.unit(1.9e6, "miles")
  33960. },
  33961. ]
  33962. ))
  33963. characterMakers.push(() => makeCharacter(
  33964. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33965. {
  33966. side: {
  33967. height: math.unit(2100, "feet"),
  33968. name: "Side",
  33969. image: {
  33970. source: "./media/characters/osiris/side.svg",
  33971. extra: 1105/939,
  33972. bottom: 167/1272
  33973. }
  33974. },
  33975. },
  33976. [
  33977. {
  33978. name: "Macro",
  33979. height: math.unit(2100, "feet"),
  33980. default: true
  33981. },
  33982. ]
  33983. ))
  33984. characterMakers.push(() => makeCharacter(
  33985. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33986. {
  33987. front: {
  33988. height: math.unit(6 + 8/12, "feet"),
  33989. weight: math.unit(225, "lb"),
  33990. name: "Front",
  33991. image: {
  33992. source: "./media/characters/rhys-londe/front.svg",
  33993. extra: 2258/2141,
  33994. bottom: 188/2446
  33995. }
  33996. },
  33997. back: {
  33998. height: math.unit(6 + 8/12, "feet"),
  33999. weight: math.unit(225, "lb"),
  34000. name: "Back",
  34001. image: {
  34002. source: "./media/characters/rhys-londe/back.svg",
  34003. extra: 2237/2137,
  34004. bottom: 63/2300
  34005. }
  34006. },
  34007. frontNsfw: {
  34008. height: math.unit(6 + 8/12, "feet"),
  34009. weight: math.unit(225, "lb"),
  34010. name: "Front (NSFW)",
  34011. image: {
  34012. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34013. extra: 2258/2141,
  34014. bottom: 188/2446
  34015. }
  34016. },
  34017. backNsfw: {
  34018. height: math.unit(6 + 8/12, "feet"),
  34019. weight: math.unit(225, "lb"),
  34020. name: "Back (NSFW)",
  34021. image: {
  34022. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34023. extra: 2237/2137,
  34024. bottom: 63/2300
  34025. }
  34026. },
  34027. dick: {
  34028. height: math.unit(30, "inches"),
  34029. name: "Dick",
  34030. image: {
  34031. source: "./media/characters/rhys-londe/dick.svg"
  34032. }
  34033. },
  34034. maw: {
  34035. height: math.unit(1.6, "feet"),
  34036. name: "Maw",
  34037. image: {
  34038. source: "./media/characters/rhys-londe/maw.svg"
  34039. }
  34040. },
  34041. },
  34042. [
  34043. {
  34044. name: "Normal",
  34045. height: math.unit(6 + 8/12, "feet"),
  34046. default: true
  34047. },
  34048. ]
  34049. ))
  34050. characterMakers.push(() => makeCharacter(
  34051. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34052. {
  34053. front: {
  34054. height: math.unit(3 + 10/12, "feet"),
  34055. weight: math.unit(90, "lb"),
  34056. name: "Front",
  34057. image: {
  34058. source: "./media/characters/taivas-ensim/front.svg",
  34059. extra: 1327/1216,
  34060. bottom: 96/1423
  34061. }
  34062. },
  34063. back: {
  34064. height: math.unit(3 + 10/12, "feet"),
  34065. weight: math.unit(90, "lb"),
  34066. name: "Back",
  34067. image: {
  34068. source: "./media/characters/taivas-ensim/back.svg",
  34069. extra: 1355/1247,
  34070. bottom: 11/1366
  34071. }
  34072. },
  34073. frontNsfw: {
  34074. height: math.unit(3 + 10/12, "feet"),
  34075. weight: math.unit(90, "lb"),
  34076. name: "Front (NSFW)",
  34077. image: {
  34078. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34079. extra: 1327/1216,
  34080. bottom: 96/1423
  34081. }
  34082. },
  34083. backNsfw: {
  34084. height: math.unit(3 + 10/12, "feet"),
  34085. weight: math.unit(90, "lb"),
  34086. name: "Back (NSFW)",
  34087. image: {
  34088. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34089. extra: 1355/1247,
  34090. bottom: 11/1366
  34091. }
  34092. },
  34093. },
  34094. [
  34095. {
  34096. name: "Normal",
  34097. height: math.unit(3 + 10/12, "feet"),
  34098. default: true
  34099. },
  34100. ]
  34101. ))
  34102. characterMakers.push(() => makeCharacter(
  34103. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34104. {
  34105. front: {
  34106. height: math.unit(9 + 6/12, "feet"),
  34107. weight: math.unit(940, "lb"),
  34108. name: "Front",
  34109. image: {
  34110. source: "./media/characters/byliss/front.svg",
  34111. extra: 1327/1290,
  34112. bottom: 82/1409
  34113. }
  34114. },
  34115. back: {
  34116. height: math.unit(9 + 6/12, "feet"),
  34117. weight: math.unit(940, "lb"),
  34118. name: "Back",
  34119. image: {
  34120. source: "./media/characters/byliss/back.svg",
  34121. extra: 1376/1349,
  34122. bottom: 9/1385
  34123. }
  34124. },
  34125. frontNsfw: {
  34126. height: math.unit(9 + 6/12, "feet"),
  34127. weight: math.unit(940, "lb"),
  34128. name: "Front (NSFW)",
  34129. image: {
  34130. source: "./media/characters/byliss/front-nsfw.svg",
  34131. extra: 1327/1290,
  34132. bottom: 82/1409
  34133. }
  34134. },
  34135. backNsfw: {
  34136. height: math.unit(9 + 6/12, "feet"),
  34137. weight: math.unit(940, "lb"),
  34138. name: "Back (NSFW)",
  34139. image: {
  34140. source: "./media/characters/byliss/back-nsfw.svg",
  34141. extra: 1376/1349,
  34142. bottom: 9/1385
  34143. }
  34144. },
  34145. },
  34146. [
  34147. {
  34148. name: "Normal",
  34149. height: math.unit(9 + 6/12, "feet"),
  34150. default: true
  34151. },
  34152. ]
  34153. ))
  34154. characterMakers.push(() => makeCharacter(
  34155. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34156. {
  34157. front: {
  34158. height: math.unit(5 + 2/12, "feet"),
  34159. weight: math.unit(200, "lb"),
  34160. name: "Front",
  34161. image: {
  34162. source: "./media/characters/noraly/front.svg",
  34163. extra: 4985/4773,
  34164. bottom: 150/5135
  34165. }
  34166. },
  34167. full: {
  34168. height: math.unit(5 + 2/12, "feet"),
  34169. weight: math.unit(164, "lb"),
  34170. name: "Full",
  34171. image: {
  34172. source: "./media/characters/noraly/full.svg",
  34173. extra: 1114/1059,
  34174. bottom: 35/1149
  34175. }
  34176. },
  34177. fuller: {
  34178. height: math.unit(5 + 2/12, "feet"),
  34179. weight: math.unit(230, "lb"),
  34180. name: "Fuller",
  34181. image: {
  34182. source: "./media/characters/noraly/fuller.svg",
  34183. extra: 1114/1059,
  34184. bottom: 35/1149
  34185. }
  34186. },
  34187. fullest: {
  34188. height: math.unit(5 + 2/12, "feet"),
  34189. weight: math.unit(300, "lb"),
  34190. name: "Fullest",
  34191. image: {
  34192. source: "./media/characters/noraly/fullest.svg",
  34193. extra: 1114/1059,
  34194. bottom: 35/1149
  34195. }
  34196. },
  34197. },
  34198. [
  34199. {
  34200. name: "Normal",
  34201. height: math.unit(5 + 2/12, "feet"),
  34202. default: true
  34203. },
  34204. ]
  34205. ))
  34206. characterMakers.push(() => makeCharacter(
  34207. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34208. {
  34209. front: {
  34210. height: math.unit(5 + 2/12, "feet"),
  34211. weight: math.unit(210, "lb"),
  34212. name: "Front",
  34213. image: {
  34214. source: "./media/characters/pera/front.svg",
  34215. extra: 1560/1531,
  34216. bottom: 165/1725
  34217. }
  34218. },
  34219. back: {
  34220. height: math.unit(5 + 2/12, "feet"),
  34221. weight: math.unit(210, "lb"),
  34222. name: "Back",
  34223. image: {
  34224. source: "./media/characters/pera/back.svg",
  34225. extra: 1523/1493,
  34226. bottom: 152/1675
  34227. }
  34228. },
  34229. dick: {
  34230. height: math.unit(2.4, "feet"),
  34231. name: "Dick",
  34232. image: {
  34233. source: "./media/characters/pera/dick.svg"
  34234. }
  34235. },
  34236. },
  34237. [
  34238. {
  34239. name: "Normal",
  34240. height: math.unit(5 + 2/12, "feet"),
  34241. default: true
  34242. },
  34243. ]
  34244. ))
  34245. characterMakers.push(() => makeCharacter(
  34246. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34247. {
  34248. front: {
  34249. height: math.unit(12, "feet"),
  34250. weight: math.unit(3200, "lb"),
  34251. name: "Front",
  34252. image: {
  34253. source: "./media/characters/julian/front.svg",
  34254. extra: 2962/2701,
  34255. bottom: 184/3146
  34256. }
  34257. },
  34258. maw: {
  34259. height: math.unit(5.35, "feet"),
  34260. name: "Maw",
  34261. image: {
  34262. source: "./media/characters/julian/maw.svg"
  34263. }
  34264. },
  34265. paw: {
  34266. height: math.unit(3.07, "feet"),
  34267. name: "Paw",
  34268. image: {
  34269. source: "./media/characters/julian/paw.svg"
  34270. }
  34271. },
  34272. },
  34273. [
  34274. {
  34275. name: "Default",
  34276. height: math.unit(12, "feet"),
  34277. default: true
  34278. },
  34279. {
  34280. name: "Big",
  34281. height: math.unit(50, "feet")
  34282. },
  34283. {
  34284. name: "Really Big",
  34285. height: math.unit(1, "mile")
  34286. },
  34287. {
  34288. name: "Extremely Big",
  34289. height: math.unit(100, "miles")
  34290. },
  34291. {
  34292. name: "Planet Hugger",
  34293. height: math.unit(200, "megameters")
  34294. },
  34295. {
  34296. name: "Unreasonably Big",
  34297. height: math.unit(1e300, "meters")
  34298. },
  34299. ]
  34300. ))
  34301. characterMakers.push(() => makeCharacter(
  34302. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34303. {
  34304. solgooleo: {
  34305. height: math.unit(4, "meters"),
  34306. weight: math.unit(6000*1.5, "kg"),
  34307. volume: math.unit(6000, "liters"),
  34308. name: "Solgooleo",
  34309. image: {
  34310. source: "./media/characters/pi/solgooleo.svg",
  34311. extra: 388/331,
  34312. bottom: 29/417
  34313. }
  34314. },
  34315. },
  34316. [
  34317. {
  34318. name: "Normal",
  34319. height: math.unit(4, "meters"),
  34320. default: true
  34321. },
  34322. ]
  34323. ))
  34324. characterMakers.push(() => makeCharacter(
  34325. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34326. {
  34327. front: {
  34328. height: math.unit(8, "feet"),
  34329. weight: math.unit(4, "tons"),
  34330. name: "Front",
  34331. image: {
  34332. source: "./media/characters/shaun/front.svg",
  34333. extra: 503/495,
  34334. bottom: 20/523
  34335. }
  34336. },
  34337. back: {
  34338. height: math.unit(8, "feet"),
  34339. weight: math.unit(4, "tons"),
  34340. name: "Back",
  34341. image: {
  34342. source: "./media/characters/shaun/back.svg",
  34343. extra: 487/480,
  34344. bottom: 20/507
  34345. }
  34346. },
  34347. },
  34348. [
  34349. {
  34350. name: "Lorg",
  34351. height: math.unit(8, "feet"),
  34352. default: true
  34353. },
  34354. ]
  34355. ))
  34356. characterMakers.push(() => makeCharacter(
  34357. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34358. {
  34359. frontAnthro: {
  34360. height: math.unit(7, "feet"),
  34361. name: "Front",
  34362. image: {
  34363. source: "./media/characters/sini/front-anthro.svg",
  34364. extra: 726/678,
  34365. bottom: 35/761
  34366. },
  34367. form: "anthro",
  34368. default: true
  34369. },
  34370. backAnthro: {
  34371. height: math.unit(7, "feet"),
  34372. name: "Back",
  34373. image: {
  34374. source: "./media/characters/sini/back-anthro.svg",
  34375. extra: 743/701,
  34376. bottom: 12/755
  34377. },
  34378. form: "anthro",
  34379. },
  34380. frontAnthroNsfw: {
  34381. height: math.unit(7, "feet"),
  34382. name: "Front (NSFW)",
  34383. image: {
  34384. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34385. extra: 726/678,
  34386. bottom: 35/761
  34387. },
  34388. form: "anthro"
  34389. },
  34390. backAnthroNsfw: {
  34391. height: math.unit(7, "feet"),
  34392. name: "Back (NSFW)",
  34393. image: {
  34394. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34395. extra: 743/701,
  34396. bottom: 12/755
  34397. },
  34398. form: "anthro",
  34399. },
  34400. mawAnthro: {
  34401. height: math.unit(2.14, "feet"),
  34402. name: "Maw",
  34403. image: {
  34404. source: "./media/characters/sini/maw-anthro.svg"
  34405. },
  34406. form: "anthro"
  34407. },
  34408. dick: {
  34409. height: math.unit(1.45, "feet"),
  34410. name: "Dick",
  34411. image: {
  34412. source: "./media/characters/sini/dick-anthro.svg"
  34413. },
  34414. form: "anthro"
  34415. },
  34416. feral: {
  34417. height: math.unit(16, "feet"),
  34418. name: "Feral",
  34419. image: {
  34420. source: "./media/characters/sini/feral.svg",
  34421. extra: 814/605,
  34422. bottom: 11/825
  34423. },
  34424. form: "feral",
  34425. default: true
  34426. },
  34427. feralNsfw: {
  34428. height: math.unit(16, "feet"),
  34429. name: "Feral (NSFW)",
  34430. image: {
  34431. source: "./media/characters/sini/feral-nsfw.svg",
  34432. extra: 814/605,
  34433. bottom: 11/825
  34434. },
  34435. form: "feral"
  34436. },
  34437. mawFeral: {
  34438. height: math.unit(5.66, "feet"),
  34439. name: "Maw",
  34440. image: {
  34441. source: "./media/characters/sini/maw-feral.svg"
  34442. },
  34443. form: "feral",
  34444. },
  34445. pawFeral: {
  34446. height: math.unit(5.17, "feet"),
  34447. name: "Paw",
  34448. image: {
  34449. source: "./media/characters/sini/paw-feral.svg"
  34450. },
  34451. form: "feral",
  34452. },
  34453. rumpFeral: {
  34454. height: math.unit(13.11, "feet"),
  34455. name: "Rump",
  34456. image: {
  34457. source: "./media/characters/sini/rump-feral.svg"
  34458. },
  34459. form: "feral",
  34460. },
  34461. dickFeral: {
  34462. height: math.unit(1, "feet"),
  34463. name: "Dick",
  34464. image: {
  34465. source: "./media/characters/sini/dick-feral.svg"
  34466. },
  34467. form: "feral",
  34468. },
  34469. eyeFeral: {
  34470. height: math.unit(1.23, "feet"),
  34471. name: "Eye",
  34472. image: {
  34473. source: "./media/characters/sini/eye-feral.svg"
  34474. },
  34475. form: "feral",
  34476. },
  34477. },
  34478. [
  34479. {
  34480. name: "Normal",
  34481. height: math.unit(7, "feet"),
  34482. default: true,
  34483. form: "anthro"
  34484. },
  34485. {
  34486. name: "Normal",
  34487. height: math.unit(16, "feet"),
  34488. default: true,
  34489. form: "feral"
  34490. },
  34491. ],
  34492. {
  34493. "anthro": {
  34494. name: "Anthro",
  34495. default: true
  34496. },
  34497. "feral": {
  34498. name: "Feral",
  34499. }
  34500. }
  34501. ))
  34502. characterMakers.push(() => makeCharacter(
  34503. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34504. {
  34505. side: {
  34506. height: math.unit(47.2, "meters"),
  34507. weight: math.unit(10000, "tons"),
  34508. name: "Side",
  34509. image: {
  34510. source: "./media/characters/raylldo/side.svg",
  34511. extra: 2363/642,
  34512. bottom: 221/2584
  34513. }
  34514. },
  34515. top: {
  34516. height: math.unit(240, "meters"),
  34517. weight: math.unit(10000, "tons"),
  34518. name: "Top",
  34519. image: {
  34520. source: "./media/characters/raylldo/top.svg"
  34521. }
  34522. },
  34523. bottom: {
  34524. height: math.unit(240, "meters"),
  34525. weight: math.unit(10000, "tons"),
  34526. name: "Bottom",
  34527. image: {
  34528. source: "./media/characters/raylldo/bottom.svg"
  34529. }
  34530. },
  34531. head: {
  34532. height: math.unit(38.6, "meters"),
  34533. name: "Head",
  34534. image: {
  34535. source: "./media/characters/raylldo/head.svg",
  34536. extra: 1335/1112,
  34537. bottom: 0/1335
  34538. }
  34539. },
  34540. maw: {
  34541. height: math.unit(16.37, "meters"),
  34542. name: "Maw",
  34543. image: {
  34544. source: "./media/characters/raylldo/maw.svg",
  34545. extra: 883/660,
  34546. bottom: 0/883
  34547. },
  34548. extraAttributes: {
  34549. preyCapacity: {
  34550. name: "Capacity",
  34551. power: 3,
  34552. type: "volume",
  34553. base: math.unit(1000, "people")
  34554. },
  34555. tongueSize: {
  34556. name: "Tongue Size",
  34557. power: 2,
  34558. type: "area",
  34559. base: math.unit(21, "m^2")
  34560. }
  34561. }
  34562. },
  34563. forepaw: {
  34564. height: math.unit(18, "meters"),
  34565. name: "Forepaw",
  34566. image: {
  34567. source: "./media/characters/raylldo/forepaw.svg"
  34568. }
  34569. },
  34570. hindpaw: {
  34571. height: math.unit(23, "meters"),
  34572. name: "Hindpaw",
  34573. image: {
  34574. source: "./media/characters/raylldo/hindpaw.svg"
  34575. }
  34576. },
  34577. genitals: {
  34578. height: math.unit(42, "meters"),
  34579. name: "Genitals",
  34580. image: {
  34581. source: "./media/characters/raylldo/genitals.svg"
  34582. }
  34583. },
  34584. },
  34585. [
  34586. {
  34587. name: "Normal",
  34588. height: math.unit(47.2, "meters"),
  34589. default: true
  34590. },
  34591. ]
  34592. ))
  34593. characterMakers.push(() => makeCharacter(
  34594. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34595. {
  34596. anthroFront: {
  34597. height: math.unit(9, "feet"),
  34598. weight: math.unit(600, "lb"),
  34599. name: "Anthro (Front)",
  34600. image: {
  34601. source: "./media/characters/glint/anthro-front.svg",
  34602. extra: 1097/1018,
  34603. bottom: 28/1125
  34604. }
  34605. },
  34606. anthroBack: {
  34607. height: math.unit(9, "feet"),
  34608. weight: math.unit(600, "lb"),
  34609. name: "Anthro (Back)",
  34610. image: {
  34611. source: "./media/characters/glint/anthro-back.svg",
  34612. extra: 1154/997,
  34613. bottom: 36/1190
  34614. }
  34615. },
  34616. feral: {
  34617. height: math.unit(11, "feet"),
  34618. weight: math.unit(50000, "lb"),
  34619. name: "Feral",
  34620. image: {
  34621. source: "./media/characters/glint/feral.svg",
  34622. extra: 3035/1585,
  34623. bottom: 1169/4204
  34624. }
  34625. },
  34626. dickAnthro: {
  34627. height: math.unit(0.7, "meters"),
  34628. name: "Dick (Anthro)",
  34629. image: {
  34630. source: "./media/characters/glint/dick-anthro.svg"
  34631. }
  34632. },
  34633. dickFeral: {
  34634. height: math.unit(2.65, "meters"),
  34635. name: "Dick (Feral)",
  34636. image: {
  34637. source: "./media/characters/glint/dick-feral.svg"
  34638. }
  34639. },
  34640. slitHidden: {
  34641. height: math.unit(5.85, "meters"),
  34642. name: "Slit (Hidden)",
  34643. image: {
  34644. source: "./media/characters/glint/slit-hidden.svg"
  34645. }
  34646. },
  34647. slitErect: {
  34648. height: math.unit(5.85, "meters"),
  34649. name: "Slit (Erect)",
  34650. image: {
  34651. source: "./media/characters/glint/slit-erect.svg"
  34652. }
  34653. },
  34654. mawAnthro: {
  34655. height: math.unit(0.63, "meters"),
  34656. name: "Maw (Anthro)",
  34657. image: {
  34658. source: "./media/characters/glint/maw.svg"
  34659. }
  34660. },
  34661. mawFeral: {
  34662. height: math.unit(2.89, "meters"),
  34663. name: "Maw (Feral)",
  34664. image: {
  34665. source: "./media/characters/glint/maw.svg"
  34666. }
  34667. },
  34668. },
  34669. [
  34670. {
  34671. name: "Normal",
  34672. height: math.unit(9, "feet"),
  34673. default: true
  34674. },
  34675. ]
  34676. ))
  34677. characterMakers.push(() => makeCharacter(
  34678. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34679. {
  34680. side: {
  34681. height: math.unit(15, "feet"),
  34682. weight: math.unit(5000, "kg"),
  34683. name: "Side",
  34684. image: {
  34685. source: "./media/characters/kairne/side.svg",
  34686. extra: 979/811,
  34687. bottom: 13/992
  34688. }
  34689. },
  34690. front: {
  34691. height: math.unit(15, "feet"),
  34692. weight: math.unit(5000, "kg"),
  34693. name: "Front",
  34694. image: {
  34695. source: "./media/characters/kairne/front.svg",
  34696. extra: 908/814,
  34697. bottom: 26/934
  34698. }
  34699. },
  34700. sideNsfw: {
  34701. height: math.unit(15, "feet"),
  34702. weight: math.unit(5000, "kg"),
  34703. name: "Side (NSFW)",
  34704. image: {
  34705. source: "./media/characters/kairne/side-nsfw.svg",
  34706. extra: 979/811,
  34707. bottom: 13/992
  34708. }
  34709. },
  34710. frontNsfw: {
  34711. height: math.unit(15, "feet"),
  34712. weight: math.unit(5000, "kg"),
  34713. name: "Front (NSFW)",
  34714. image: {
  34715. source: "./media/characters/kairne/front-nsfw.svg",
  34716. extra: 908/814,
  34717. bottom: 26/934
  34718. }
  34719. },
  34720. dickCaged: {
  34721. height: math.unit(0.65, "meters"),
  34722. name: "Dick-caged",
  34723. image: {
  34724. source: "./media/characters/kairne/dick-caged.svg"
  34725. }
  34726. },
  34727. dick: {
  34728. height: math.unit(0.79, "meters"),
  34729. name: "Dick",
  34730. image: {
  34731. source: "./media/characters/kairne/dick.svg"
  34732. }
  34733. },
  34734. genitals: {
  34735. height: math.unit(1.29, "meters"),
  34736. name: "Genitals",
  34737. image: {
  34738. source: "./media/characters/kairne/genitals.svg"
  34739. }
  34740. },
  34741. maw: {
  34742. height: math.unit(1.73, "meters"),
  34743. name: "Maw",
  34744. image: {
  34745. source: "./media/characters/kairne/maw.svg"
  34746. }
  34747. },
  34748. },
  34749. [
  34750. {
  34751. name: "Normal",
  34752. height: math.unit(15, "feet"),
  34753. default: true
  34754. },
  34755. ]
  34756. ))
  34757. characterMakers.push(() => makeCharacter(
  34758. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34759. {
  34760. front: {
  34761. height: math.unit(5 + 8/12, "feet"),
  34762. weight: math.unit(139, "lb"),
  34763. name: "Front",
  34764. image: {
  34765. source: "./media/characters/biscuit-jackal/front.svg",
  34766. extra: 2106/1961,
  34767. bottom: 58/2164
  34768. }
  34769. },
  34770. back: {
  34771. height: math.unit(5 + 8/12, "feet"),
  34772. weight: math.unit(139, "lb"),
  34773. name: "Back",
  34774. image: {
  34775. source: "./media/characters/biscuit-jackal/back.svg",
  34776. extra: 2132/1976,
  34777. bottom: 57/2189
  34778. }
  34779. },
  34780. werejackal: {
  34781. height: math.unit(6 + 3/12, "feet"),
  34782. weight: math.unit(188, "lb"),
  34783. name: "Werejackal",
  34784. image: {
  34785. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34786. extra: 2373/2178,
  34787. bottom: 53/2426
  34788. }
  34789. },
  34790. },
  34791. [
  34792. {
  34793. name: "Normal",
  34794. height: math.unit(5 + 8/12, "feet"),
  34795. default: true
  34796. },
  34797. ]
  34798. ))
  34799. characterMakers.push(() => makeCharacter(
  34800. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34801. {
  34802. front: {
  34803. height: math.unit(140, "cm"),
  34804. weight: math.unit(45, "kg"),
  34805. name: "Front",
  34806. image: {
  34807. source: "./media/characters/tayra-white/front.svg",
  34808. extra: 2229/2192,
  34809. bottom: 75/2304
  34810. }
  34811. },
  34812. },
  34813. [
  34814. {
  34815. name: "Normal",
  34816. height: math.unit(140, "cm"),
  34817. default: true
  34818. },
  34819. ]
  34820. ))
  34821. characterMakers.push(() => makeCharacter(
  34822. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34823. {
  34824. front: {
  34825. height: math.unit(4 + 5/12, "feet"),
  34826. name: "Front",
  34827. image: {
  34828. source: "./media/characters/scoop/front.svg",
  34829. extra: 1257/1136,
  34830. bottom: 69/1326
  34831. }
  34832. },
  34833. back: {
  34834. height: math.unit(4 + 5/12, "feet"),
  34835. name: "Back",
  34836. image: {
  34837. source: "./media/characters/scoop/back.svg",
  34838. extra: 1321/1152,
  34839. bottom: 32/1353
  34840. }
  34841. },
  34842. maw: {
  34843. height: math.unit(0.68, "feet"),
  34844. name: "Maw",
  34845. image: {
  34846. source: "./media/characters/scoop/maw.svg"
  34847. }
  34848. },
  34849. },
  34850. [
  34851. {
  34852. name: "Really Small",
  34853. height: math.unit(1, "mm")
  34854. },
  34855. {
  34856. name: "Micro",
  34857. height: math.unit(1, "inch")
  34858. },
  34859. {
  34860. name: "Normal",
  34861. height: math.unit(4 + 5/12, "feet"),
  34862. default: true
  34863. },
  34864. {
  34865. name: "Macro",
  34866. height: math.unit(200, "feet")
  34867. },
  34868. {
  34869. name: "Megamacro",
  34870. height: math.unit(3240, "feet")
  34871. },
  34872. {
  34873. name: "Teramacro",
  34874. height: math.unit(2500, "miles")
  34875. },
  34876. ]
  34877. ))
  34878. characterMakers.push(() => makeCharacter(
  34879. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34880. {
  34881. front: {
  34882. height: math.unit(15 + 7/12, "feet"),
  34883. weight: math.unit(1150, "tons"),
  34884. name: "Front",
  34885. image: {
  34886. source: "./media/characters/saphinara/front.svg",
  34887. extra: 1837/1643,
  34888. bottom: 84/1921
  34889. },
  34890. form: "normal",
  34891. default: true
  34892. },
  34893. side: {
  34894. height: math.unit(15 + 7/12, "feet"),
  34895. weight: math.unit(1150, "tons"),
  34896. name: "Side",
  34897. image: {
  34898. source: "./media/characters/saphinara/side.svg",
  34899. extra: 605/547,
  34900. bottom: 6/611
  34901. },
  34902. form: "normal"
  34903. },
  34904. back: {
  34905. height: math.unit(15 + 7/12, "feet"),
  34906. weight: math.unit(1150, "tons"),
  34907. name: "Back",
  34908. image: {
  34909. source: "./media/characters/saphinara/back.svg",
  34910. extra: 591/531,
  34911. bottom: 13/604
  34912. },
  34913. form: "normal"
  34914. },
  34915. frontTail: {
  34916. height: math.unit(15 + 7/12, "feet"),
  34917. weight: math.unit(1150, "tons"),
  34918. name: "Front (Full Tail)",
  34919. image: {
  34920. source: "./media/characters/saphinara/front-tail.svg",
  34921. extra: 2256/1630,
  34922. bottom: 261/2517
  34923. },
  34924. form: "normal"
  34925. },
  34926. insides: {
  34927. height: math.unit(11.92, "feet"),
  34928. name: "Insides",
  34929. image: {
  34930. source: "./media/characters/saphinara/insides.svg"
  34931. },
  34932. form: "normal"
  34933. },
  34934. head: {
  34935. height: math.unit(4.17, "feet"),
  34936. name: "Head",
  34937. image: {
  34938. source: "./media/characters/saphinara/head.svg"
  34939. },
  34940. form: "normal"
  34941. },
  34942. tongue: {
  34943. height: math.unit(4.60, "feet"),
  34944. name: "Tongue",
  34945. image: {
  34946. source: "./media/characters/saphinara/tongue.svg"
  34947. },
  34948. form: "normal"
  34949. },
  34950. headEnraged: {
  34951. height: math.unit(5.55, "feet"),
  34952. name: "Head (Enraged)",
  34953. image: {
  34954. source: "./media/characters/saphinara/head-enraged.svg"
  34955. },
  34956. form: "normal"
  34957. },
  34958. wings: {
  34959. height: math.unit(11.95, "feet"),
  34960. name: "Wings",
  34961. image: {
  34962. source: "./media/characters/saphinara/wings.svg"
  34963. },
  34964. form: "normal"
  34965. },
  34966. feathers: {
  34967. height: math.unit(8.92, "feet"),
  34968. name: "Feathers",
  34969. image: {
  34970. source: "./media/characters/saphinara/feathers.svg"
  34971. },
  34972. form: "normal"
  34973. },
  34974. shackles: {
  34975. height: math.unit(2, "feet"),
  34976. name: "Shackles",
  34977. image: {
  34978. source: "./media/characters/saphinara/shackles.svg"
  34979. },
  34980. form: "normal"
  34981. },
  34982. eyes: {
  34983. height: math.unit(1.331, "feet"),
  34984. name: "Eyes",
  34985. image: {
  34986. source: "./media/characters/saphinara/eyes.svg"
  34987. },
  34988. form: "normal"
  34989. },
  34990. eyesEnraged: {
  34991. height: math.unit(1.331, "feet"),
  34992. name: "Eyes (Enraged)",
  34993. image: {
  34994. source: "./media/characters/saphinara/eyes-enraged.svg"
  34995. },
  34996. form: "normal"
  34997. },
  34998. trueFormSide: {
  34999. height: math.unit(200, "feet"),
  35000. weight: math.unit(1e7, "tons"),
  35001. name: "Side",
  35002. image: {
  35003. source: "./media/characters/saphinara/true-form-side.svg",
  35004. extra: 1399/770,
  35005. bottom: 97/1496
  35006. },
  35007. form: "true-form",
  35008. default: true
  35009. },
  35010. trueFormMaw: {
  35011. height: math.unit(71.5, "feet"),
  35012. name: "Maw",
  35013. image: {
  35014. source: "./media/characters/saphinara/true-form-maw.svg",
  35015. extra: 2302/1453,
  35016. bottom: 0/2302
  35017. },
  35018. form: "true-form"
  35019. },
  35020. meowberusSide: {
  35021. height: math.unit(75, "feet"),
  35022. weight: math.unit(180000, "kg"),
  35023. preyCapacity: math.unit(50000, "people"),
  35024. name: "Side",
  35025. image: {
  35026. source: "./media/characters/saphinara/meowberus-side.svg",
  35027. extra: 1400/711,
  35028. bottom: 126/1526
  35029. },
  35030. form: "meowberus",
  35031. extraAttributes: {
  35032. "pawArea": {
  35033. name: "Paw Size",
  35034. power: 2,
  35035. type: "area",
  35036. base: math.unit(35, "m^2")
  35037. }
  35038. }
  35039. },
  35040. },
  35041. [
  35042. {
  35043. name: "Normal",
  35044. height: math.unit(15 + 7/12, "feet"),
  35045. default: true,
  35046. form: "normal"
  35047. },
  35048. {
  35049. name: "Angry",
  35050. height: math.unit(30 + 6/12, "feet"),
  35051. form: "normal"
  35052. },
  35053. {
  35054. name: "Enraged",
  35055. height: math.unit(102 + 1/12, "feet"),
  35056. form: "normal"
  35057. },
  35058. {
  35059. name: "True",
  35060. height: math.unit(200, "feet"),
  35061. default: true,
  35062. form: "true-form"
  35063. },
  35064. {
  35065. name: "Normal",
  35066. height: math.unit(75, "feet"),
  35067. default: true,
  35068. form: "meowberus"
  35069. },
  35070. ],
  35071. {
  35072. "normal": {
  35073. name: "Normal",
  35074. default: true
  35075. },
  35076. "true-form": {
  35077. name: "True Form"
  35078. },
  35079. "meowberus": {
  35080. name: "Meowberus",
  35081. },
  35082. }
  35083. ))
  35084. characterMakers.push(() => makeCharacter(
  35085. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35086. {
  35087. front: {
  35088. height: math.unit(6 + 8/12, "feet"),
  35089. weight: math.unit(300, "lb"),
  35090. name: "Front",
  35091. image: {
  35092. source: "./media/characters/jrain/front.svg",
  35093. extra: 3039/2865,
  35094. bottom: 399/3438
  35095. }
  35096. },
  35097. back: {
  35098. height: math.unit(6 + 8/12, "feet"),
  35099. weight: math.unit(300, "lb"),
  35100. name: "Back",
  35101. image: {
  35102. source: "./media/characters/jrain/back.svg",
  35103. extra: 3089/2938,
  35104. bottom: 172/3261
  35105. }
  35106. },
  35107. head: {
  35108. height: math.unit(2.14, "feet"),
  35109. name: "Head",
  35110. image: {
  35111. source: "./media/characters/jrain/head.svg"
  35112. }
  35113. },
  35114. maw: {
  35115. height: math.unit(1.77, "feet"),
  35116. name: "Maw",
  35117. image: {
  35118. source: "./media/characters/jrain/maw.svg"
  35119. }
  35120. },
  35121. leftHand: {
  35122. height: math.unit(1.1, "feet"),
  35123. name: "Left Hand",
  35124. image: {
  35125. source: "./media/characters/jrain/left-hand.svg"
  35126. }
  35127. },
  35128. rightHand: {
  35129. height: math.unit(1.1, "feet"),
  35130. name: "Right Hand",
  35131. image: {
  35132. source: "./media/characters/jrain/right-hand.svg"
  35133. }
  35134. },
  35135. eye: {
  35136. height: math.unit(0.35, "feet"),
  35137. name: "Eye",
  35138. image: {
  35139. source: "./media/characters/jrain/eye.svg"
  35140. }
  35141. },
  35142. },
  35143. [
  35144. {
  35145. name: "Normal",
  35146. height: math.unit(6 + 8/12, "feet"),
  35147. default: true
  35148. },
  35149. {
  35150. name: "Casually Large",
  35151. height: math.unit(25, "feet")
  35152. },
  35153. {
  35154. name: "Giant",
  35155. height: math.unit(100, "feet")
  35156. },
  35157. {
  35158. name: "Kaiju",
  35159. height: math.unit(300, "feet")
  35160. },
  35161. ]
  35162. ))
  35163. characterMakers.push(() => makeCharacter(
  35164. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35165. {
  35166. dragon: {
  35167. height: math.unit(5, "meters"),
  35168. name: "Dragon",
  35169. image: {
  35170. source: "./media/characters/sabrina/dragon.svg",
  35171. extra: 3670 / 2365,
  35172. bottom: 333 / 4003
  35173. }
  35174. },
  35175. gryphon: {
  35176. height: math.unit(3, "meters"),
  35177. name: "Gryphon",
  35178. image: {
  35179. source: "./media/characters/sabrina/gryphon.svg",
  35180. extra: 1576 / 945,
  35181. bottom: 71 / 1647
  35182. }
  35183. },
  35184. snake: {
  35185. height: math.unit(12, "meters"),
  35186. name: "Snake",
  35187. image: {
  35188. source: "./media/characters/sabrina/snake.svg",
  35189. extra: 1758 / 1320,
  35190. bottom: 186 / 1944
  35191. }
  35192. },
  35193. collar: {
  35194. height: math.unit(1.86, "meters"),
  35195. name: "Collar",
  35196. image: {
  35197. source: "./media/characters/sabrina/collar.svg"
  35198. }
  35199. },
  35200. eye: {
  35201. height: math.unit(0.53, "meters"),
  35202. name: "Eye",
  35203. image: {
  35204. source: "./media/characters/sabrina/eye.svg"
  35205. }
  35206. },
  35207. foot: {
  35208. height: math.unit(1.86, "meters"),
  35209. name: "Foot",
  35210. image: {
  35211. source: "./media/characters/sabrina/foot.svg"
  35212. }
  35213. },
  35214. hand: {
  35215. height: math.unit(1.32, "meters"),
  35216. name: "Hand",
  35217. image: {
  35218. source: "./media/characters/sabrina/hand.svg"
  35219. }
  35220. },
  35221. head: {
  35222. height: math.unit(2.44, "meters"),
  35223. name: "Head",
  35224. image: {
  35225. source: "./media/characters/sabrina/head.svg"
  35226. }
  35227. },
  35228. headAngry: {
  35229. height: math.unit(2.44, "meters"),
  35230. name: "Head (Angry))",
  35231. image: {
  35232. source: "./media/characters/sabrina/head-angry.svg"
  35233. }
  35234. },
  35235. maw: {
  35236. height: math.unit(1.65, "meters"),
  35237. name: "Maw",
  35238. image: {
  35239. source: "./media/characters/sabrina/maw.svg"
  35240. }
  35241. },
  35242. spikes: {
  35243. height: math.unit(1.69, "meters"),
  35244. name: "Spikes",
  35245. image: {
  35246. source: "./media/characters/sabrina/spikes.svg"
  35247. }
  35248. },
  35249. stomach: {
  35250. height: math.unit(1.15, "meters"),
  35251. name: "Stomach",
  35252. image: {
  35253. source: "./media/characters/sabrina/stomach.svg"
  35254. }
  35255. },
  35256. tongue: {
  35257. height: math.unit(1.27, "meters"),
  35258. name: "Tongue",
  35259. image: {
  35260. source: "./media/characters/sabrina/tongue.svg"
  35261. }
  35262. },
  35263. wingDorsal: {
  35264. height: math.unit(4.85, "meters"),
  35265. name: "Wing (Dorsal)",
  35266. image: {
  35267. source: "./media/characters/sabrina/wing-dorsal.svg"
  35268. }
  35269. },
  35270. wingVentral: {
  35271. height: math.unit(4.85, "meters"),
  35272. name: "Wing (Ventral)",
  35273. image: {
  35274. source: "./media/characters/sabrina/wing-ventral.svg"
  35275. }
  35276. },
  35277. },
  35278. [
  35279. {
  35280. name: "Normal",
  35281. height: math.unit(5, "meters"),
  35282. default: true
  35283. },
  35284. ]
  35285. ))
  35286. characterMakers.push(() => makeCharacter(
  35287. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35288. {
  35289. frontMaid: {
  35290. height: math.unit(5 + 5/12, "feet"),
  35291. weight: math.unit(130, "lb"),
  35292. name: "Front (Maid)",
  35293. image: {
  35294. source: "./media/characters/midnight-tales/front-maid.svg",
  35295. extra: 489/454,
  35296. bottom: 61/550
  35297. }
  35298. },
  35299. frontFormal: {
  35300. height: math.unit(5 + 5/12, "feet"),
  35301. weight: math.unit(130, "lb"),
  35302. name: "Front (Formal)",
  35303. image: {
  35304. source: "./media/characters/midnight-tales/front-formal.svg",
  35305. extra: 489/454,
  35306. bottom: 61/550
  35307. }
  35308. },
  35309. back: {
  35310. height: math.unit(5 + 5/12, "feet"),
  35311. weight: math.unit(130, "lb"),
  35312. name: "Back",
  35313. image: {
  35314. source: "./media/characters/midnight-tales/back.svg",
  35315. extra: 498/456,
  35316. bottom: 33/531
  35317. }
  35318. },
  35319. frontBeast: {
  35320. height: math.unit(40, "feet"),
  35321. weight: math.unit(64000, "lb"),
  35322. name: "Front (Beast)",
  35323. image: {
  35324. source: "./media/characters/midnight-tales/front-beast.svg",
  35325. extra: 927/860,
  35326. bottom: 53/980
  35327. }
  35328. },
  35329. backBeast: {
  35330. height: math.unit(40, "feet"),
  35331. weight: math.unit(64000, "lb"),
  35332. name: "Back (Beast)",
  35333. image: {
  35334. source: "./media/characters/midnight-tales/back-beast.svg",
  35335. extra: 929/855,
  35336. bottom: 16/945
  35337. }
  35338. },
  35339. footBeast: {
  35340. height: math.unit(6.7, "feet"),
  35341. name: "Foot (Beast)",
  35342. image: {
  35343. source: "./media/characters/midnight-tales/foot-beast.svg"
  35344. }
  35345. },
  35346. headBeast: {
  35347. height: math.unit(8, "feet"),
  35348. name: "Head (Beast)",
  35349. image: {
  35350. source: "./media/characters/midnight-tales/head-beast.svg"
  35351. }
  35352. },
  35353. },
  35354. [
  35355. {
  35356. name: "Normal",
  35357. height: math.unit(5 + 5 / 12, "feet"),
  35358. default: true
  35359. },
  35360. {
  35361. name: "Macro",
  35362. height: math.unit(25, "feet")
  35363. },
  35364. ]
  35365. ))
  35366. characterMakers.push(() => makeCharacter(
  35367. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35368. {
  35369. front: {
  35370. height: math.unit(5 + 10/12, "feet"),
  35371. name: "Front",
  35372. image: {
  35373. source: "./media/characters/argon/front.svg",
  35374. extra: 2009/1935,
  35375. bottom: 118/2127
  35376. }
  35377. },
  35378. back: {
  35379. height: math.unit(5 + 10/12, "feet"),
  35380. name: "Back",
  35381. image: {
  35382. source: "./media/characters/argon/back.svg",
  35383. extra: 2047/1992,
  35384. bottom: 20/2067
  35385. }
  35386. },
  35387. frontDressed: {
  35388. height: math.unit(5 + 10/12, "feet"),
  35389. name: "Front (Dressed)",
  35390. image: {
  35391. source: "./media/characters/argon/front-dressed.svg",
  35392. extra: 2009/1935,
  35393. bottom: 118/2127
  35394. }
  35395. },
  35396. },
  35397. [
  35398. {
  35399. name: "Normal",
  35400. height: math.unit(5 + 10/12, "feet"),
  35401. default: true
  35402. },
  35403. ]
  35404. ))
  35405. characterMakers.push(() => makeCharacter(
  35406. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35407. {
  35408. front: {
  35409. height: math.unit(8 + 6/12, "feet"),
  35410. weight: math.unit(1150, "lb"),
  35411. name: "Front",
  35412. image: {
  35413. source: "./media/characters/kichi/front.svg",
  35414. extra: 1267/1164,
  35415. bottom: 61/1328
  35416. }
  35417. },
  35418. back: {
  35419. height: math.unit(8 + 6/12, "feet"),
  35420. weight: math.unit(1150, "lb"),
  35421. name: "Back",
  35422. image: {
  35423. source: "./media/characters/kichi/back.svg",
  35424. extra: 1273/1166,
  35425. bottom: 33/1306
  35426. }
  35427. },
  35428. },
  35429. [
  35430. {
  35431. name: "Normal",
  35432. height: math.unit(8 + 6/12, "feet"),
  35433. default: true
  35434. },
  35435. ]
  35436. ))
  35437. characterMakers.push(() => makeCharacter(
  35438. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35439. {
  35440. front: {
  35441. height: math.unit(6, "feet"),
  35442. weight: math.unit(210, "lb"),
  35443. name: "Front",
  35444. image: {
  35445. source: "./media/characters/manetel-greyscale/front.svg",
  35446. extra: 350/312,
  35447. bottom: 8/358
  35448. }
  35449. },
  35450. },
  35451. [
  35452. {
  35453. name: "Micro",
  35454. height: math.unit(2, "inches")
  35455. },
  35456. {
  35457. name: "Normal",
  35458. height: math.unit(6, "feet"),
  35459. default: true
  35460. },
  35461. {
  35462. name: "Minimacro",
  35463. height: math.unit(17, "feet")
  35464. },
  35465. {
  35466. name: "Macro",
  35467. height: math.unit(117, "feet")
  35468. },
  35469. ]
  35470. ))
  35471. characterMakers.push(() => makeCharacter(
  35472. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35473. {
  35474. side: {
  35475. height: math.unit(5 + 1/12, "feet"),
  35476. weight: math.unit(418, "lb"),
  35477. name: "Side",
  35478. image: {
  35479. source: "./media/characters/softpurr/side.svg",
  35480. extra: 1993/1945,
  35481. bottom: 134/2127
  35482. }
  35483. },
  35484. front: {
  35485. height: math.unit(5 + 1/12, "feet"),
  35486. weight: math.unit(418, "lb"),
  35487. name: "Front",
  35488. image: {
  35489. source: "./media/characters/softpurr/front.svg",
  35490. extra: 1950/1856,
  35491. bottom: 174/2124
  35492. }
  35493. },
  35494. paw: {
  35495. height: math.unit(1, "feet"),
  35496. name: "Paw",
  35497. image: {
  35498. source: "./media/characters/softpurr/paw.svg"
  35499. }
  35500. },
  35501. },
  35502. [
  35503. {
  35504. name: "Normal",
  35505. height: math.unit(5 + 1/12, "feet"),
  35506. default: true
  35507. },
  35508. ]
  35509. ))
  35510. characterMakers.push(() => makeCharacter(
  35511. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35512. {
  35513. front: {
  35514. height: math.unit(260, "meters"),
  35515. name: "Front",
  35516. image: {
  35517. source: "./media/characters/anahita/front.svg",
  35518. extra: 665/635,
  35519. bottom: 89/754
  35520. }
  35521. },
  35522. },
  35523. [
  35524. {
  35525. name: "Macro",
  35526. height: math.unit(260, "meters"),
  35527. default: true
  35528. },
  35529. ]
  35530. ))
  35531. characterMakers.push(() => makeCharacter(
  35532. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35533. {
  35534. front: {
  35535. height: math.unit(4 + 10/12, "feet"),
  35536. weight: math.unit(160, "lb"),
  35537. name: "Front",
  35538. image: {
  35539. source: "./media/characters/chip-mouse/front.svg",
  35540. extra: 3528/3408,
  35541. bottom: 0/3528
  35542. }
  35543. },
  35544. frontNsfw: {
  35545. height: math.unit(4 + 10/12, "feet"),
  35546. weight: math.unit(160, "lb"),
  35547. name: "Front (NSFW)",
  35548. image: {
  35549. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35550. extra: 3528/3408,
  35551. bottom: 0/3528
  35552. }
  35553. },
  35554. },
  35555. [
  35556. {
  35557. name: "Normal",
  35558. height: math.unit(4 + 10/12, "feet"),
  35559. default: true
  35560. },
  35561. ]
  35562. ))
  35563. characterMakers.push(() => makeCharacter(
  35564. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35565. {
  35566. side: {
  35567. height: math.unit(10, "feet"),
  35568. weight: math.unit(14000, "lb"),
  35569. name: "Side",
  35570. image: {
  35571. source: "./media/characters/kremm/side.svg",
  35572. extra: 1390/1053,
  35573. bottom: 90/1480
  35574. }
  35575. },
  35576. gut: {
  35577. height: math.unit(5.8, "feet"),
  35578. name: "Gut",
  35579. image: {
  35580. source: "./media/characters/kremm/gut.svg"
  35581. }
  35582. },
  35583. ass: {
  35584. height: math.unit(6.1, "feet"),
  35585. name: "Ass",
  35586. image: {
  35587. source: "./media/characters/kremm/ass.svg"
  35588. }
  35589. },
  35590. jaws: {
  35591. height: math.unit(2.2, "feet"),
  35592. name: "Jaws",
  35593. image: {
  35594. source: "./media/characters/kremm/jaws.svg"
  35595. }
  35596. },
  35597. dick: {
  35598. height: math.unit(4.26, "feet"),
  35599. name: "Dick",
  35600. image: {
  35601. source: "./media/characters/kremm/dick.svg"
  35602. }
  35603. },
  35604. },
  35605. [
  35606. {
  35607. name: "Normal",
  35608. height: math.unit(10, "feet"),
  35609. default: true
  35610. },
  35611. ]
  35612. ))
  35613. characterMakers.push(() => makeCharacter(
  35614. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35615. {
  35616. front: {
  35617. height: math.unit(30, "stories"),
  35618. name: "Front",
  35619. image: {
  35620. source: "./media/characters/kai/front.svg",
  35621. extra: 1892/1718,
  35622. bottom: 162/2054
  35623. }
  35624. },
  35625. },
  35626. [
  35627. {
  35628. name: "Macro",
  35629. height: math.unit(30, "stories"),
  35630. default: true
  35631. },
  35632. ]
  35633. ))
  35634. characterMakers.push(() => makeCharacter(
  35635. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35636. {
  35637. front: {
  35638. height: math.unit(6 + 4/12, "feet"),
  35639. weight: math.unit(145, "lb"),
  35640. name: "Front",
  35641. image: {
  35642. source: "./media/characters/sykes/front.svg",
  35643. extra: 1321 / 1187,
  35644. bottom: 66 / 1387
  35645. }
  35646. },
  35647. back: {
  35648. height: math.unit(6 + 4/12, "feet"),
  35649. weight: math.unit(145, "lb"),
  35650. name: "Back",
  35651. image: {
  35652. source: "./media/characters/sykes/back.svg",
  35653. extra: 1326/1181,
  35654. bottom: 31/1357
  35655. }
  35656. },
  35657. traditionalOutfit: {
  35658. height: math.unit(6 + 4/12, "feet"),
  35659. weight: math.unit(145, "lb"),
  35660. name: "Traditional Outfit",
  35661. image: {
  35662. source: "./media/characters/sykes/traditional-outfit.svg",
  35663. extra: 1321 / 1187,
  35664. bottom: 66 / 1387
  35665. }
  35666. },
  35667. adventureOutfit: {
  35668. height: math.unit(6 + 4/12, "feet"),
  35669. weight: math.unit(145, "lb"),
  35670. name: "Adventure Outfit",
  35671. image: {
  35672. source: "./media/characters/sykes/adventure-outfit.svg",
  35673. extra: 1321 / 1187,
  35674. bottom: 66 / 1387
  35675. }
  35676. },
  35677. handLeft: {
  35678. height: math.unit(0.9, "feet"),
  35679. name: "Hand (Left)",
  35680. image: {
  35681. source: "./media/characters/sykes/hand-left.svg"
  35682. }
  35683. },
  35684. handRight: {
  35685. height: math.unit(0.839, "feet"),
  35686. name: "Hand (Right)",
  35687. image: {
  35688. source: "./media/characters/sykes/hand-right.svg"
  35689. }
  35690. },
  35691. leftFoot: {
  35692. height: math.unit(1.2, "feet"),
  35693. name: "Foot (Left)",
  35694. image: {
  35695. source: "./media/characters/sykes/foot-left.svg"
  35696. }
  35697. },
  35698. rightFoot: {
  35699. height: math.unit(1.2, "feet"),
  35700. name: "Foot (Right)",
  35701. image: {
  35702. source: "./media/characters/sykes/foot-right.svg"
  35703. }
  35704. },
  35705. maw: {
  35706. height: math.unit(1.93, "feet"),
  35707. name: "Maw",
  35708. image: {
  35709. source: "./media/characters/sykes/maw.svg"
  35710. }
  35711. },
  35712. teeth: {
  35713. height: math.unit(0.51, "feet"),
  35714. name: "Teeth",
  35715. image: {
  35716. source: "./media/characters/sykes/teeth.svg"
  35717. }
  35718. },
  35719. tongue: {
  35720. height: math.unit(2.13, "feet"),
  35721. name: "Tongue",
  35722. image: {
  35723. source: "./media/characters/sykes/tongue.svg"
  35724. }
  35725. },
  35726. uvula: {
  35727. height: math.unit(0.16, "feet"),
  35728. name: "Uvula",
  35729. image: {
  35730. source: "./media/characters/sykes/uvula.svg"
  35731. }
  35732. },
  35733. collar: {
  35734. height: math.unit(0.287, "feet"),
  35735. name: "Collar",
  35736. image: {
  35737. source: "./media/characters/sykes/collar.svg"
  35738. }
  35739. },
  35740. tail: {
  35741. height: math.unit(3.8, "feet"),
  35742. name: "Tail",
  35743. image: {
  35744. source: "./media/characters/sykes/tail.svg"
  35745. }
  35746. },
  35747. },
  35748. [
  35749. {
  35750. name: "Shrunken",
  35751. height: math.unit(5, "inches")
  35752. },
  35753. {
  35754. name: "Normal",
  35755. height: math.unit(6 + 4 / 12, "feet"),
  35756. default: true
  35757. },
  35758. {
  35759. name: "Big",
  35760. height: math.unit(15, "feet")
  35761. },
  35762. ]
  35763. ))
  35764. characterMakers.push(() => makeCharacter(
  35765. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35766. {
  35767. front: {
  35768. height: math.unit(5 + 8/12, "feet"),
  35769. weight: math.unit(190, "lb"),
  35770. name: "Front",
  35771. image: {
  35772. source: "./media/characters/oven-otter/front.svg",
  35773. extra: 1809/1740,
  35774. bottom: 181/1990
  35775. }
  35776. },
  35777. back: {
  35778. height: math.unit(5 + 8/12, "feet"),
  35779. weight: math.unit(190, "lb"),
  35780. name: "Back",
  35781. image: {
  35782. source: "./media/characters/oven-otter/back.svg",
  35783. extra: 1709/1635,
  35784. bottom: 118/1827
  35785. }
  35786. },
  35787. hand: {
  35788. height: math.unit(1.07, "feet"),
  35789. name: "Hand",
  35790. image: {
  35791. source: "./media/characters/oven-otter/hand.svg"
  35792. }
  35793. },
  35794. beans: {
  35795. height: math.unit(1.74, "feet"),
  35796. name: "Beans",
  35797. image: {
  35798. source: "./media/characters/oven-otter/beans.svg"
  35799. }
  35800. },
  35801. },
  35802. [
  35803. {
  35804. name: "Micro",
  35805. height: math.unit(0.5, "inches")
  35806. },
  35807. {
  35808. name: "Normal",
  35809. height: math.unit(5 + 8/12, "feet"),
  35810. default: true
  35811. },
  35812. {
  35813. name: "Macro",
  35814. height: math.unit(250, "feet")
  35815. },
  35816. {
  35817. name: "Really High",
  35818. height: math.unit(420, "feet")
  35819. },
  35820. ]
  35821. ))
  35822. characterMakers.push(() => makeCharacter(
  35823. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35824. {
  35825. front: {
  35826. height: math.unit(5, "meters"),
  35827. weight: math.unit(292000000000000, "kg"),
  35828. name: "Front",
  35829. image: {
  35830. source: "./media/characters/devourer/front.svg",
  35831. extra: 1800/1733,
  35832. bottom: 211/2011
  35833. }
  35834. },
  35835. maw: {
  35836. height: math.unit(1.1, "meter"),
  35837. name: "Maw",
  35838. image: {
  35839. source: "./media/characters/devourer/maw.svg"
  35840. }
  35841. },
  35842. },
  35843. [
  35844. {
  35845. name: "Small",
  35846. height: math.unit(3, "meters")
  35847. },
  35848. {
  35849. name: "Large",
  35850. height: math.unit(5, "meters"),
  35851. default: true
  35852. },
  35853. ]
  35854. ))
  35855. characterMakers.push(() => makeCharacter(
  35856. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35857. {
  35858. front: {
  35859. height: math.unit(6, "feet"),
  35860. weight: math.unit(400, "lb"),
  35861. name: "Front",
  35862. image: {
  35863. source: "./media/characters/ellarby/front.svg",
  35864. extra: 1909/1763,
  35865. bottom: 80/1989
  35866. }
  35867. },
  35868. back: {
  35869. height: math.unit(6, "feet"),
  35870. weight: math.unit(400, "lb"),
  35871. name: "Back",
  35872. image: {
  35873. source: "./media/characters/ellarby/back.svg",
  35874. extra: 1914/1784,
  35875. bottom: 172/2086
  35876. }
  35877. },
  35878. },
  35879. [
  35880. {
  35881. name: "Mischief",
  35882. height: math.unit(18, "inches")
  35883. },
  35884. {
  35885. name: "Trouble",
  35886. height: math.unit(12, "feet")
  35887. },
  35888. {
  35889. name: "Havoc",
  35890. height: math.unit(200, "feet"),
  35891. default: true
  35892. },
  35893. {
  35894. name: "Pandemonium",
  35895. height: math.unit(1, "mile")
  35896. },
  35897. {
  35898. name: "Catastrophe",
  35899. height: math.unit(100, "miles")
  35900. },
  35901. ]
  35902. ))
  35903. characterMakers.push(() => makeCharacter(
  35904. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35905. {
  35906. front: {
  35907. height: math.unit(4.7, "meters"),
  35908. weight: math.unit(6500, "kg"),
  35909. name: "Front",
  35910. image: {
  35911. source: "./media/characters/vex/front.svg",
  35912. extra: 1288/1140,
  35913. bottom: 100/1388
  35914. }
  35915. },
  35916. },
  35917. [
  35918. {
  35919. name: "Normal",
  35920. height: math.unit(4.7, "meters"),
  35921. default: true
  35922. },
  35923. ]
  35924. ))
  35925. characterMakers.push(() => makeCharacter(
  35926. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35927. {
  35928. normal: {
  35929. height: math.unit(6, "feet"),
  35930. weight: math.unit(350, "lb"),
  35931. name: "Normal",
  35932. image: {
  35933. source: "./media/characters/teshy/normal.svg",
  35934. extra: 1795/1735,
  35935. bottom: 16/1811
  35936. }
  35937. },
  35938. monsterFront: {
  35939. height: math.unit(12, "feet"),
  35940. weight: math.unit(4700, "lb"),
  35941. name: "Monster (Front)",
  35942. image: {
  35943. source: "./media/characters/teshy/monster-front.svg",
  35944. extra: 2042/2034,
  35945. bottom: 128/2170
  35946. }
  35947. },
  35948. monsterSide: {
  35949. height: math.unit(12, "feet"),
  35950. weight: math.unit(4700, "lb"),
  35951. name: "Monster (Side)",
  35952. image: {
  35953. source: "./media/characters/teshy/monster-side.svg",
  35954. extra: 2067/2056,
  35955. bottom: 70/2137
  35956. }
  35957. },
  35958. monsterBack: {
  35959. height: math.unit(12, "feet"),
  35960. weight: math.unit(4700, "lb"),
  35961. name: "Monster (Back)",
  35962. image: {
  35963. source: "./media/characters/teshy/monster-back.svg",
  35964. extra: 1921/1914,
  35965. bottom: 171/2092
  35966. }
  35967. },
  35968. },
  35969. [
  35970. {
  35971. name: "Normal",
  35972. height: math.unit(6, "feet"),
  35973. default: true
  35974. },
  35975. ]
  35976. ))
  35977. characterMakers.push(() => makeCharacter(
  35978. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35979. {
  35980. front: {
  35981. height: math.unit(6, "feet"),
  35982. name: "Front",
  35983. image: {
  35984. source: "./media/characters/ramey/front.svg",
  35985. extra: 790/787,
  35986. bottom: 27/817
  35987. }
  35988. },
  35989. },
  35990. [
  35991. {
  35992. name: "Normal",
  35993. height: math.unit(6, "feet"),
  35994. default: true
  35995. },
  35996. ]
  35997. ))
  35998. characterMakers.push(() => makeCharacter(
  35999. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36000. {
  36001. front: {
  36002. height: math.unit(5 + 5/12, "feet"),
  36003. weight: math.unit(120, "lb"),
  36004. name: "Front",
  36005. image: {
  36006. source: "./media/characters/phirae/front.svg",
  36007. extra: 2491/2436,
  36008. bottom: 38/2529
  36009. }
  36010. },
  36011. },
  36012. [
  36013. {
  36014. name: "Normal",
  36015. height: math.unit(5 + 5/12, "feet"),
  36016. default: true
  36017. },
  36018. ]
  36019. ))
  36020. characterMakers.push(() => makeCharacter(
  36021. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36022. {
  36023. front: {
  36024. height: math.unit(5 + 3/12, "feet"),
  36025. name: "Front",
  36026. image: {
  36027. source: "./media/characters/stagglas/front.svg",
  36028. extra: 962/882,
  36029. bottom: 53/1015
  36030. }
  36031. },
  36032. feral: {
  36033. height: math.unit(335, "cm"),
  36034. name: "Feral",
  36035. image: {
  36036. source: "./media/characters/stagglas/feral.svg",
  36037. extra: 1732/1090,
  36038. bottom: 48/1780
  36039. }
  36040. },
  36041. },
  36042. [
  36043. {
  36044. name: "Normal",
  36045. height: math.unit(5 + 3/12, "feet"),
  36046. default: true
  36047. },
  36048. ]
  36049. ))
  36050. characterMakers.push(() => makeCharacter(
  36051. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36052. {
  36053. front: {
  36054. height: math.unit(5 + 4/12, "feet"),
  36055. weight: math.unit(145, "lb"),
  36056. name: "Front",
  36057. image: {
  36058. source: "./media/characters/starra/front.svg",
  36059. extra: 1790/1691,
  36060. bottom: 91/1881
  36061. }
  36062. },
  36063. },
  36064. [
  36065. {
  36066. name: "Normal",
  36067. height: math.unit(5 + 4/12, "feet"),
  36068. default: true
  36069. },
  36070. ]
  36071. ))
  36072. characterMakers.push(() => makeCharacter(
  36073. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36074. {
  36075. front: {
  36076. height: math.unit(2.2, "meters"),
  36077. name: "Front",
  36078. image: {
  36079. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36080. extra: 1248/972,
  36081. bottom: 38/1286
  36082. }
  36083. },
  36084. },
  36085. [
  36086. {
  36087. name: "Normal",
  36088. height: math.unit(2.2, "meters"),
  36089. default: true
  36090. },
  36091. ]
  36092. ))
  36093. characterMakers.push(() => makeCharacter(
  36094. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36095. {
  36096. side: {
  36097. height: math.unit(8 + 2/12, "feet"),
  36098. weight: math.unit(1240, "lb"),
  36099. name: "Side",
  36100. image: {
  36101. source: "./media/characters/mika-valentine/side.svg",
  36102. extra: 2670/2501,
  36103. bottom: 250/2920
  36104. }
  36105. },
  36106. },
  36107. [
  36108. {
  36109. name: "Normal",
  36110. height: math.unit(8 + 2/12, "feet"),
  36111. default: true
  36112. },
  36113. ]
  36114. ))
  36115. characterMakers.push(() => makeCharacter(
  36116. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36117. {
  36118. front: {
  36119. height: math.unit(7 + 2/12, "feet"),
  36120. name: "Front",
  36121. image: {
  36122. source: "./media/characters/xoltol/front.svg",
  36123. extra: 2212/2124,
  36124. bottom: 84/2296
  36125. }
  36126. },
  36127. side: {
  36128. height: math.unit(7 + 2/12, "feet"),
  36129. name: "Side",
  36130. image: {
  36131. source: "./media/characters/xoltol/side.svg",
  36132. extra: 2273/2197,
  36133. bottom: 26/2299
  36134. }
  36135. },
  36136. hand: {
  36137. height: math.unit(2.5, "feet"),
  36138. name: "Hand",
  36139. image: {
  36140. source: "./media/characters/xoltol/hand.svg"
  36141. }
  36142. },
  36143. },
  36144. [
  36145. {
  36146. name: "Small-ish",
  36147. height: math.unit(5 + 11/12, "feet")
  36148. },
  36149. {
  36150. name: "Normal",
  36151. height: math.unit(7 + 2/12, "feet")
  36152. },
  36153. {
  36154. name: "\"Macro\"",
  36155. height: math.unit(14 + 9/12, "feet"),
  36156. default: true
  36157. },
  36158. {
  36159. name: "Alternate Height",
  36160. height: math.unit(20, "feet")
  36161. },
  36162. {
  36163. name: "Actually Macro",
  36164. height: math.unit(100, "feet")
  36165. },
  36166. ]
  36167. ))
  36168. characterMakers.push(() => makeCharacter(
  36169. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36170. {
  36171. front: {
  36172. height: math.unit(5 + 2/12, "feet"),
  36173. name: "Front",
  36174. image: {
  36175. source: "./media/characters/kotetsu-redwood/front.svg",
  36176. extra: 1053/942,
  36177. bottom: 60/1113
  36178. }
  36179. },
  36180. },
  36181. [
  36182. {
  36183. name: "Normal",
  36184. height: math.unit(5 + 2/12, "feet"),
  36185. default: true
  36186. },
  36187. ]
  36188. ))
  36189. characterMakers.push(() => makeCharacter(
  36190. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36191. {
  36192. front: {
  36193. height: math.unit(2.4, "meters"),
  36194. weight: math.unit(125, "kg"),
  36195. name: "Front",
  36196. image: {
  36197. source: "./media/characters/lilith/front.svg",
  36198. extra: 1590/1513,
  36199. bottom: 203/1793
  36200. }
  36201. },
  36202. },
  36203. [
  36204. {
  36205. name: "Humanoid",
  36206. height: math.unit(2.4, "meters")
  36207. },
  36208. {
  36209. name: "Normal",
  36210. height: math.unit(6, "meters"),
  36211. default: true
  36212. },
  36213. {
  36214. name: "Largest",
  36215. height: math.unit(55, "meters")
  36216. },
  36217. ]
  36218. ))
  36219. characterMakers.push(() => makeCharacter(
  36220. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36221. {
  36222. front: {
  36223. height: math.unit(8 + 4/12, "feet"),
  36224. weight: math.unit(535, "lb"),
  36225. name: "Front",
  36226. image: {
  36227. source: "./media/characters/beh'kah-bolger/front.svg",
  36228. extra: 1660/1603,
  36229. bottom: 37/1697
  36230. }
  36231. },
  36232. },
  36233. [
  36234. {
  36235. name: "Normal",
  36236. height: math.unit(8 + 4/12, "feet"),
  36237. default: true
  36238. },
  36239. {
  36240. name: "Kaiju",
  36241. height: math.unit(250, "feet")
  36242. },
  36243. {
  36244. name: "Still Growing",
  36245. height: math.unit(10, "miles")
  36246. },
  36247. {
  36248. name: "Continental",
  36249. height: math.unit(5000, "miles")
  36250. },
  36251. {
  36252. name: "Final Form",
  36253. height: math.unit(2500000, "miles")
  36254. },
  36255. ]
  36256. ))
  36257. characterMakers.push(() => makeCharacter(
  36258. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36259. {
  36260. front: {
  36261. height: math.unit(7 + 2/12, "feet"),
  36262. weight: math.unit(230, "kg"),
  36263. name: "Front",
  36264. image: {
  36265. source: "./media/characters/tatyana-milewska/front.svg",
  36266. extra: 1199/1150,
  36267. bottom: 86/1285
  36268. }
  36269. },
  36270. },
  36271. [
  36272. {
  36273. name: "Normal",
  36274. height: math.unit(7 + 2/12, "feet"),
  36275. default: true
  36276. },
  36277. {
  36278. name: "Big",
  36279. height: math.unit(12, "feet")
  36280. },
  36281. {
  36282. name: "Minimacro",
  36283. height: math.unit(20, "feet")
  36284. },
  36285. {
  36286. name: "Macro",
  36287. height: math.unit(120, "feet")
  36288. },
  36289. ]
  36290. ))
  36291. characterMakers.push(() => makeCharacter(
  36292. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36293. {
  36294. front: {
  36295. height: math.unit(7 + 8/12, "feet"),
  36296. weight: math.unit(152, "kg"),
  36297. name: "Front",
  36298. image: {
  36299. source: "./media/characters/helen-arri/front.svg",
  36300. extra: 440/423,
  36301. bottom: 14/454
  36302. }
  36303. },
  36304. back: {
  36305. height: math.unit(7 + 8/12, "feet"),
  36306. weight: math.unit(152, "kg"),
  36307. name: "Back",
  36308. image: {
  36309. source: "./media/characters/helen-arri/back.svg",
  36310. extra: 443/426,
  36311. bottom: 8/451
  36312. }
  36313. },
  36314. },
  36315. [
  36316. {
  36317. name: "Normal",
  36318. height: math.unit(7 + 8/12, "feet"),
  36319. default: true
  36320. },
  36321. {
  36322. name: "Big",
  36323. height: math.unit(14, "feet")
  36324. },
  36325. {
  36326. name: "Minimacro",
  36327. height: math.unit(24, "feet")
  36328. },
  36329. {
  36330. name: "Macro",
  36331. height: math.unit(140, "feet")
  36332. },
  36333. ]
  36334. ))
  36335. characterMakers.push(() => makeCharacter(
  36336. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36337. {
  36338. front: {
  36339. height: math.unit(6, "meters"),
  36340. name: "Front",
  36341. image: {
  36342. source: "./media/characters/ehanu-rehu/front.svg",
  36343. extra: 1800/1800,
  36344. bottom: 59/1859
  36345. }
  36346. },
  36347. },
  36348. [
  36349. {
  36350. name: "Normal",
  36351. height: math.unit(6, "meters"),
  36352. default: true
  36353. },
  36354. ]
  36355. ))
  36356. characterMakers.push(() => makeCharacter(
  36357. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36358. {
  36359. front: {
  36360. height: math.unit(7 + 3/12, "feet"),
  36361. name: "Front",
  36362. image: {
  36363. source: "./media/characters/renholder/front.svg",
  36364. extra: 3096/2960,
  36365. bottom: 250/3346
  36366. }
  36367. },
  36368. },
  36369. [
  36370. {
  36371. name: "Normal Bat",
  36372. height: math.unit(7 + 3/12, "feet"),
  36373. default: true
  36374. },
  36375. {
  36376. name: "Slightly Tall Bat",
  36377. height: math.unit(100, "feet")
  36378. },
  36379. {
  36380. name: "Big Bat",
  36381. height: math.unit(1000, "feet")
  36382. },
  36383. {
  36384. name: "City-Sized Bat",
  36385. height: math.unit(200000, "feet")
  36386. },
  36387. {
  36388. name: "Bigger Bat",
  36389. height: math.unit(10000, "miles")
  36390. },
  36391. {
  36392. name: "Solar Sized Bat",
  36393. height: math.unit(100, "AU")
  36394. },
  36395. {
  36396. name: "Galactic Bat",
  36397. height: math.unit(200000, "lightyears")
  36398. },
  36399. {
  36400. name: "Universally Known Bat",
  36401. height: math.unit(1, "universe")
  36402. },
  36403. ]
  36404. ))
  36405. characterMakers.push(() => makeCharacter(
  36406. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36407. {
  36408. front: {
  36409. height: math.unit(6 + 11/12, "feet"),
  36410. weight: math.unit(250, "lb"),
  36411. name: "Front",
  36412. image: {
  36413. source: "./media/characters/cookiecat/front.svg",
  36414. extra: 893/827,
  36415. bottom: 14/907
  36416. }
  36417. },
  36418. },
  36419. [
  36420. {
  36421. name: "Micro",
  36422. height: math.unit(3, "inches")
  36423. },
  36424. {
  36425. name: "Normal",
  36426. height: math.unit(6 + 11/12, "feet"),
  36427. default: true
  36428. },
  36429. {
  36430. name: "Macro",
  36431. height: math.unit(100, "feet")
  36432. },
  36433. {
  36434. name: "Macro+",
  36435. height: math.unit(404, "feet")
  36436. },
  36437. {
  36438. name: "Megamacro",
  36439. height: math.unit(165, "miles")
  36440. },
  36441. {
  36442. name: "Planetary",
  36443. height: math.unit(4600, "miles")
  36444. },
  36445. ]
  36446. ))
  36447. characterMakers.push(() => makeCharacter(
  36448. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36449. {
  36450. front: {
  36451. height: math.unit(10 + 3/12, "feet"),
  36452. weight: math.unit(1500, "lb"),
  36453. name: "Front",
  36454. image: {
  36455. source: "./media/characters/tux-kusanagi/front.svg",
  36456. extra: 944/840,
  36457. bottom: 39/983
  36458. }
  36459. },
  36460. back: {
  36461. height: math.unit(10 + 3/12, "feet"),
  36462. weight: math.unit(1500, "lb"),
  36463. name: "Back",
  36464. image: {
  36465. source: "./media/characters/tux-kusanagi/back.svg",
  36466. extra: 941/842,
  36467. bottom: 28/969
  36468. }
  36469. },
  36470. rump: {
  36471. height: math.unit(5.25, "feet"),
  36472. name: "Rump",
  36473. image: {
  36474. source: "./media/characters/tux-kusanagi/rump.svg"
  36475. }
  36476. },
  36477. beak: {
  36478. height: math.unit(1.54, "feet"),
  36479. name: "Beak",
  36480. image: {
  36481. source: "./media/characters/tux-kusanagi/beak.svg"
  36482. }
  36483. },
  36484. },
  36485. [
  36486. {
  36487. name: "Normal",
  36488. height: math.unit(10 + 3/12, "feet"),
  36489. default: true
  36490. },
  36491. ]
  36492. ))
  36493. characterMakers.push(() => makeCharacter(
  36494. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36495. {
  36496. front: {
  36497. height: math.unit(58, "feet"),
  36498. weight: math.unit(200, "tons"),
  36499. name: "Front",
  36500. image: {
  36501. source: "./media/characters/uzarmazari/front.svg",
  36502. extra: 1575/1455,
  36503. bottom: 152/1727
  36504. }
  36505. },
  36506. back: {
  36507. height: math.unit(58, "feet"),
  36508. weight: math.unit(200, "tons"),
  36509. name: "Back",
  36510. image: {
  36511. source: "./media/characters/uzarmazari/back.svg",
  36512. extra: 1585/1510,
  36513. bottom: 157/1742
  36514. }
  36515. },
  36516. head: {
  36517. height: math.unit(26, "feet"),
  36518. name: "Head",
  36519. image: {
  36520. source: "./media/characters/uzarmazari/head.svg"
  36521. }
  36522. },
  36523. },
  36524. [
  36525. {
  36526. name: "Normal",
  36527. height: math.unit(58, "feet"),
  36528. default: true
  36529. },
  36530. ]
  36531. ))
  36532. characterMakers.push(() => makeCharacter(
  36533. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36534. {
  36535. side: {
  36536. height: math.unit(15, "feet"),
  36537. name: "Side",
  36538. image: {
  36539. source: "./media/characters/akitu/side.svg",
  36540. extra: 1421/1321,
  36541. bottom: 157/1578
  36542. }
  36543. },
  36544. front: {
  36545. height: math.unit(15, "feet"),
  36546. name: "Front",
  36547. image: {
  36548. source: "./media/characters/akitu/front.svg",
  36549. extra: 1435/1326,
  36550. bottom: 232/1667
  36551. }
  36552. },
  36553. },
  36554. [
  36555. {
  36556. name: "Normal",
  36557. height: math.unit(15, "feet"),
  36558. default: true
  36559. },
  36560. ]
  36561. ))
  36562. characterMakers.push(() => makeCharacter(
  36563. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36564. {
  36565. front: {
  36566. height: math.unit(10 + 8/12, "feet"),
  36567. name: "Front",
  36568. image: {
  36569. source: "./media/characters/azalie-croixland/front.svg",
  36570. extra: 1972/1856,
  36571. bottom: 31/2003
  36572. }
  36573. },
  36574. },
  36575. [
  36576. {
  36577. name: "Original Height",
  36578. height: math.unit(5 + 4/12, "feet")
  36579. },
  36580. {
  36581. name: "Normal Height",
  36582. height: math.unit(10 + 8/12, "feet"),
  36583. default: true
  36584. },
  36585. ]
  36586. ))
  36587. characterMakers.push(() => makeCharacter(
  36588. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36589. {
  36590. side: {
  36591. height: math.unit(7 + 1/12, "feet"),
  36592. weight: math.unit(245, "lb"),
  36593. name: "Side",
  36594. image: {
  36595. source: "./media/characters/kavus-kazian/side.svg",
  36596. extra: 349/342,
  36597. bottom: 15/364
  36598. }
  36599. },
  36600. },
  36601. [
  36602. {
  36603. name: "Normal",
  36604. height: math.unit(7 + 1/12, "feet"),
  36605. default: true
  36606. },
  36607. ]
  36608. ))
  36609. characterMakers.push(() => makeCharacter(
  36610. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36611. {
  36612. normalFront: {
  36613. height: math.unit(5 + 11/12, "feet"),
  36614. name: "Front",
  36615. image: {
  36616. source: "./media/characters/moonlight-rose/normal-front.svg",
  36617. extra: 1980/1825,
  36618. bottom: 18/1998
  36619. },
  36620. form: "normal",
  36621. default: true
  36622. },
  36623. normalBack: {
  36624. height: math.unit(5 + 11/12, "feet"),
  36625. name: "Back",
  36626. image: {
  36627. source: "./media/characters/moonlight-rose/normal-back.svg",
  36628. extra: 2010/1839,
  36629. bottom: 10/2020
  36630. },
  36631. form: "normal"
  36632. },
  36633. demonFront: {
  36634. height: math.unit(1.5, "earths"),
  36635. name: "Front",
  36636. image: {
  36637. source: "./media/characters/moonlight-rose/demon.svg",
  36638. extra: 1400/1294,
  36639. bottom: 45/1445
  36640. },
  36641. form: "demon",
  36642. default: true
  36643. },
  36644. terraFront: {
  36645. height: math.unit(1.5, "earths"),
  36646. name: "Front",
  36647. image: {
  36648. source: "./media/characters/moonlight-rose/terra.svg"
  36649. },
  36650. form: "terra",
  36651. default: true
  36652. },
  36653. jupiterFront: {
  36654. height: math.unit(69911*2, "km"),
  36655. name: "Front",
  36656. image: {
  36657. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36658. extra: 1367/1286,
  36659. bottom: 55/1422
  36660. },
  36661. form: "jupiter",
  36662. default: true
  36663. },
  36664. neptuneFront: {
  36665. height: math.unit(24622*2, "feet"),
  36666. name: "Front",
  36667. image: {
  36668. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36669. extra: 1851/1712,
  36670. bottom: 0/1851
  36671. },
  36672. form: "neptune",
  36673. default: true
  36674. },
  36675. },
  36676. [
  36677. {
  36678. name: "\"Natural\" Height",
  36679. height: math.unit(5 + 11/12, "feet"),
  36680. form: "normal"
  36681. },
  36682. {
  36683. name: "Smallest comfortable size",
  36684. height: math.unit(40, "meters"),
  36685. form: "normal"
  36686. },
  36687. {
  36688. name: "Common size",
  36689. height: math.unit(50, "km"),
  36690. form: "normal",
  36691. default: true
  36692. },
  36693. {
  36694. name: "Normal",
  36695. height: math.unit(1.5, "earths"),
  36696. form: "demon",
  36697. default: true
  36698. },
  36699. {
  36700. name: "Universal",
  36701. height: math.unit(15, "universes"),
  36702. form: "demon"
  36703. },
  36704. {
  36705. name: "Earth",
  36706. height: math.unit(1.5, "earths"),
  36707. form: "terra",
  36708. default: true
  36709. },
  36710. {
  36711. name: "Super Earth",
  36712. height: math.unit(67.5, "earths"),
  36713. form: "terra"
  36714. },
  36715. {
  36716. name: "Doesn't fit in a solar system...",
  36717. height: math.unit(1, "galaxy"),
  36718. form: "terra"
  36719. },
  36720. {
  36721. name: "Saturn",
  36722. height: math.unit(58232*2, "km"),
  36723. form: "jupiter"
  36724. },
  36725. {
  36726. name: "Jupiter",
  36727. height: math.unit(69911*2, "km"),
  36728. form: "jupiter",
  36729. default: true
  36730. },
  36731. {
  36732. name: "HD 100546 b",
  36733. height: math.unit(482938, "km"),
  36734. form: "jupiter"
  36735. },
  36736. {
  36737. name: "Enceladus",
  36738. height: math.unit(513*2, "km"),
  36739. form: "neptune"
  36740. },
  36741. {
  36742. name: "Europe",
  36743. height: math.unit(1560*2, "km"),
  36744. form: "neptune"
  36745. },
  36746. {
  36747. name: "Neptune",
  36748. height: math.unit(24622*2, "km"),
  36749. form: "neptune",
  36750. default: true
  36751. },
  36752. {
  36753. name: "CoRoT-9b",
  36754. height: math.unit(75067*2, "km"),
  36755. form: "neptune"
  36756. },
  36757. ],
  36758. {
  36759. "normal": {
  36760. name: "Normal",
  36761. default: true
  36762. },
  36763. "demon": {
  36764. name: "Demon"
  36765. },
  36766. "terra": {
  36767. name: "Terra"
  36768. },
  36769. "jupiter": {
  36770. name: "Jupiter"
  36771. },
  36772. "neptune": {
  36773. name: "Neptune"
  36774. }
  36775. }
  36776. ))
  36777. characterMakers.push(() => makeCharacter(
  36778. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36779. {
  36780. front: {
  36781. height: math.unit(16, "feet"),
  36782. weight: math.unit(610, "kg"),
  36783. name: "Front",
  36784. image: {
  36785. source: "./media/characters/huckle/front.svg",
  36786. extra: 1731/1625,
  36787. bottom: 33/1764
  36788. }
  36789. },
  36790. back: {
  36791. height: math.unit(16, "feet"),
  36792. weight: math.unit(610, "kg"),
  36793. name: "Back",
  36794. image: {
  36795. source: "./media/characters/huckle/back.svg",
  36796. extra: 1738/1651,
  36797. bottom: 37/1775
  36798. }
  36799. },
  36800. laughing: {
  36801. height: math.unit(3.75, "feet"),
  36802. name: "Laughing",
  36803. image: {
  36804. source: "./media/characters/huckle/laughing.svg"
  36805. }
  36806. },
  36807. angry: {
  36808. height: math.unit(4.15, "feet"),
  36809. name: "Angry",
  36810. image: {
  36811. source: "./media/characters/huckle/angry.svg"
  36812. }
  36813. },
  36814. },
  36815. [
  36816. {
  36817. name: "Normal",
  36818. height: math.unit(16, "feet"),
  36819. default: true
  36820. },
  36821. {
  36822. name: "Mini Macro",
  36823. height: math.unit(463, "feet")
  36824. },
  36825. {
  36826. name: "Macro",
  36827. height: math.unit(1680, "meters")
  36828. },
  36829. {
  36830. name: "Mega Macro",
  36831. height: math.unit(175, "km")
  36832. },
  36833. {
  36834. name: "Terra Macro",
  36835. height: math.unit(32, "gigameters")
  36836. },
  36837. {
  36838. name: "Multiverse+",
  36839. height: math.unit(2.56e23, "yottameters")
  36840. },
  36841. ]
  36842. ))
  36843. characterMakers.push(() => makeCharacter(
  36844. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36845. {
  36846. front: {
  36847. height: math.unit(6 + 9/12, "feet"),
  36848. weight: math.unit(280, "lb"),
  36849. name: "Front",
  36850. image: {
  36851. source: "./media/characters/candy/front.svg",
  36852. extra: 234/217,
  36853. bottom: 11/245
  36854. }
  36855. },
  36856. },
  36857. [
  36858. {
  36859. name: "Really Small",
  36860. height: math.unit(0.1, "nm")
  36861. },
  36862. {
  36863. name: "Micro",
  36864. height: math.unit(2, "inches")
  36865. },
  36866. {
  36867. name: "Normal",
  36868. height: math.unit(6 + 9/12, "feet"),
  36869. default: true
  36870. },
  36871. {
  36872. name: "Small Macro",
  36873. height: math.unit(69, "feet")
  36874. },
  36875. {
  36876. name: "Macro",
  36877. height: math.unit(160, "feet")
  36878. },
  36879. {
  36880. name: "Megamacro",
  36881. height: math.unit(22000, "miles")
  36882. },
  36883. {
  36884. name: "Gigamacro",
  36885. height: math.unit(50000, "miles")
  36886. },
  36887. ]
  36888. ))
  36889. characterMakers.push(() => makeCharacter(
  36890. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36891. {
  36892. front: {
  36893. height: math.unit(4, "feet"),
  36894. weight: math.unit(90, "lb"),
  36895. name: "Front",
  36896. image: {
  36897. source: "./media/characters/joey-mcdonald/front.svg",
  36898. extra: 1059/852,
  36899. bottom: 33/1092
  36900. }
  36901. },
  36902. back: {
  36903. height: math.unit(4, "feet"),
  36904. weight: math.unit(90, "lb"),
  36905. name: "Back",
  36906. image: {
  36907. source: "./media/characters/joey-mcdonald/back.svg",
  36908. extra: 1077/879,
  36909. bottom: 5/1082
  36910. }
  36911. },
  36912. frontKobold: {
  36913. height: math.unit(4, "feet"),
  36914. weight: math.unit(100, "lb"),
  36915. name: "Front-kobold",
  36916. image: {
  36917. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36918. extra: 1480/1367,
  36919. bottom: 0/1480
  36920. }
  36921. },
  36922. backKobold: {
  36923. height: math.unit(4, "feet"),
  36924. weight: math.unit(100, "lb"),
  36925. name: "Back-kobold",
  36926. image: {
  36927. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36928. extra: 1449/1361,
  36929. bottom: 0/1449
  36930. }
  36931. },
  36932. },
  36933. [
  36934. {
  36935. name: "Normal",
  36936. height: math.unit(4, "feet"),
  36937. default: true
  36938. },
  36939. ]
  36940. ))
  36941. characterMakers.push(() => makeCharacter(
  36942. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36943. {
  36944. front: {
  36945. height: math.unit(12 + 6/12, "feet"),
  36946. name: "Front",
  36947. image: {
  36948. source: "./media/characters/kass-lockheed/front.svg",
  36949. extra: 354/343,
  36950. bottom: 9/363
  36951. }
  36952. },
  36953. back: {
  36954. height: math.unit(12 + 6/12, "feet"),
  36955. name: "Back",
  36956. image: {
  36957. source: "./media/characters/kass-lockheed/back.svg",
  36958. extra: 364/352,
  36959. bottom: 3/367
  36960. }
  36961. },
  36962. dick: {
  36963. height: math.unit(3.12, "feet"),
  36964. name: "Dick",
  36965. image: {
  36966. source: "./media/characters/kass-lockheed/dick.svg"
  36967. }
  36968. },
  36969. head: {
  36970. height: math.unit(2.6, "feet"),
  36971. name: "Head",
  36972. image: {
  36973. source: "./media/characters/kass-lockheed/head.svg"
  36974. }
  36975. },
  36976. bleh: {
  36977. height: math.unit(2.85, "feet"),
  36978. name: "Bleh",
  36979. image: {
  36980. source: "./media/characters/kass-lockheed/bleh.svg"
  36981. }
  36982. },
  36983. smug: {
  36984. height: math.unit(2.85, "feet"),
  36985. name: "Smug",
  36986. image: {
  36987. source: "./media/characters/kass-lockheed/smug.svg"
  36988. }
  36989. },
  36990. },
  36991. [
  36992. {
  36993. name: "Normal",
  36994. height: math.unit(12 + 6/12, "feet"),
  36995. default: true
  36996. },
  36997. ]
  36998. ))
  36999. characterMakers.push(() => makeCharacter(
  37000. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37001. {
  37002. front: {
  37003. height: math.unit(6 + 2/12, "feet"),
  37004. name: "Front",
  37005. image: {
  37006. source: "./media/characters/taylor/front.svg",
  37007. extra: 639/495,
  37008. bottom: 12/651
  37009. }
  37010. },
  37011. },
  37012. [
  37013. {
  37014. name: "Normal",
  37015. height: math.unit(6 + 2/12, "feet"),
  37016. default: true
  37017. },
  37018. {
  37019. name: "Big",
  37020. height: math.unit(15, "feet")
  37021. },
  37022. {
  37023. name: "Lorg",
  37024. height: math.unit(80, "feet")
  37025. },
  37026. {
  37027. name: "Too Lorg",
  37028. height: math.unit(120, "feet")
  37029. },
  37030. ]
  37031. ))
  37032. characterMakers.push(() => makeCharacter(
  37033. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37034. {
  37035. front: {
  37036. height: math.unit(15, "feet"),
  37037. name: "Front",
  37038. image: {
  37039. source: "./media/characters/kaizer/front.svg",
  37040. extra: 1612/1436,
  37041. bottom: 43/1655
  37042. }
  37043. },
  37044. },
  37045. [
  37046. {
  37047. name: "Normal",
  37048. height: math.unit(15, "feet"),
  37049. default: true
  37050. },
  37051. ]
  37052. ))
  37053. characterMakers.push(() => makeCharacter(
  37054. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37055. {
  37056. front: {
  37057. height: math.unit(2, "feet"),
  37058. weight: math.unit(30, "lb"),
  37059. name: "Front",
  37060. image: {
  37061. source: "./media/characters/sandy/front.svg",
  37062. extra: 1439/1307,
  37063. bottom: 194/1633
  37064. }
  37065. },
  37066. },
  37067. [
  37068. {
  37069. name: "Normal",
  37070. height: math.unit(2, "feet"),
  37071. default: true
  37072. },
  37073. ]
  37074. ))
  37075. characterMakers.push(() => makeCharacter(
  37076. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37077. {
  37078. front: {
  37079. height: math.unit(3, "feet"),
  37080. name: "Front",
  37081. image: {
  37082. source: "./media/characters/mellvi/front.svg",
  37083. extra: 1831/1630,
  37084. bottom: 58/1889
  37085. }
  37086. },
  37087. },
  37088. [
  37089. {
  37090. name: "Normal",
  37091. height: math.unit(3, "feet"),
  37092. default: true
  37093. },
  37094. ]
  37095. ))
  37096. characterMakers.push(() => makeCharacter(
  37097. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37098. {
  37099. front: {
  37100. height: math.unit(5 + 11/12, "feet"),
  37101. weight: math.unit(200, "lb"),
  37102. name: "Front",
  37103. image: {
  37104. source: "./media/characters/shirou/front.svg",
  37105. extra: 2491/2383,
  37106. bottom: 189/2680
  37107. }
  37108. },
  37109. back: {
  37110. height: math.unit(5 + 11/12, "feet"),
  37111. weight: math.unit(200, "lb"),
  37112. name: "Back",
  37113. image: {
  37114. source: "./media/characters/shirou/back.svg",
  37115. extra: 2554/2450,
  37116. bottom: 76/2630
  37117. }
  37118. },
  37119. },
  37120. [
  37121. {
  37122. name: "Normal",
  37123. height: math.unit(5 + 11/12, "feet"),
  37124. default: true
  37125. },
  37126. ]
  37127. ))
  37128. characterMakers.push(() => makeCharacter(
  37129. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37130. {
  37131. front: {
  37132. height: math.unit(6 + 3/12, "feet"),
  37133. weight: math.unit(177, "lb"),
  37134. name: "Front",
  37135. image: {
  37136. source: "./media/characters/noryu/front.svg",
  37137. extra: 973/885,
  37138. bottom: 10/983
  37139. }
  37140. },
  37141. },
  37142. [
  37143. {
  37144. name: "Normal",
  37145. height: math.unit(6 + 3/12, "feet"),
  37146. default: true
  37147. },
  37148. ]
  37149. ))
  37150. characterMakers.push(() => makeCharacter(
  37151. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37152. {
  37153. front: {
  37154. height: math.unit(5 + 6/12, "feet"),
  37155. weight: math.unit(170, "lb"),
  37156. name: "Front",
  37157. image: {
  37158. source: "./media/characters/mevolas-rubenido/front.svg",
  37159. extra: 2109/1901,
  37160. bottom: 96/2205
  37161. }
  37162. },
  37163. },
  37164. [
  37165. {
  37166. name: "Normal",
  37167. height: math.unit(5 + 6/12, "feet"),
  37168. default: true
  37169. },
  37170. ]
  37171. ))
  37172. characterMakers.push(() => makeCharacter(
  37173. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37174. {
  37175. front: {
  37176. height: math.unit(100, "feet"),
  37177. name: "Front",
  37178. image: {
  37179. source: "./media/characters/dee/front.svg",
  37180. extra: 2153/2036,
  37181. bottom: 59/2212
  37182. }
  37183. },
  37184. back: {
  37185. height: math.unit(100, "feet"),
  37186. name: "Back",
  37187. image: {
  37188. source: "./media/characters/dee/back.svg",
  37189. extra: 2183/2058,
  37190. bottom: 75/2258
  37191. }
  37192. },
  37193. foot: {
  37194. height: math.unit(19.43, "feet"),
  37195. name: "Foot",
  37196. image: {
  37197. source: "./media/characters/dee/foot.svg"
  37198. }
  37199. },
  37200. hoof: {
  37201. height: math.unit(20.6, "feet"),
  37202. name: "Hoof",
  37203. image: {
  37204. source: "./media/characters/dee/hoof.svg"
  37205. }
  37206. },
  37207. },
  37208. [
  37209. {
  37210. name: "Macro",
  37211. height: math.unit(100, "feet"),
  37212. default: true
  37213. },
  37214. ]
  37215. ))
  37216. characterMakers.push(() => makeCharacter(
  37217. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37218. {
  37219. front: {
  37220. height: math.unit(5 + 6/12, "feet"),
  37221. name: "Front",
  37222. image: {
  37223. source: "./media/characters/teh/front.svg",
  37224. extra: 1002/847,
  37225. bottom: 62/1064
  37226. }
  37227. },
  37228. },
  37229. [
  37230. {
  37231. name: "Normal",
  37232. height: math.unit(5 + 6/12, "feet"),
  37233. default: true
  37234. },
  37235. ]
  37236. ))
  37237. characterMakers.push(() => makeCharacter(
  37238. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37239. {
  37240. side: {
  37241. height: math.unit(6 + 1/12, "feet"),
  37242. weight: math.unit(204, "lb"),
  37243. name: "Side",
  37244. image: {
  37245. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37246. extra: 974/775,
  37247. bottom: 169/1143
  37248. }
  37249. },
  37250. sitting: {
  37251. height: math.unit(6 + 2/12, "feet"),
  37252. weight: math.unit(204, "lb"),
  37253. name: "Sitting",
  37254. image: {
  37255. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37256. extra: 1175/964,
  37257. bottom: 378/1553
  37258. }
  37259. },
  37260. },
  37261. [
  37262. {
  37263. name: "Normal",
  37264. height: math.unit(6 + 1/12, "feet"),
  37265. default: true
  37266. },
  37267. ]
  37268. ))
  37269. characterMakers.push(() => makeCharacter(
  37270. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37271. {
  37272. front: {
  37273. height: math.unit(6, "inches"),
  37274. name: "Front",
  37275. image: {
  37276. source: "./media/characters/tululi/front.svg",
  37277. extra: 1997/1876,
  37278. bottom: 20/2017
  37279. }
  37280. },
  37281. },
  37282. [
  37283. {
  37284. name: "Normal",
  37285. height: math.unit(6, "inches"),
  37286. default: true
  37287. },
  37288. ]
  37289. ))
  37290. characterMakers.push(() => makeCharacter(
  37291. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37292. {
  37293. front: {
  37294. height: math.unit(4 + 1/12, "feet"),
  37295. name: "Front",
  37296. image: {
  37297. source: "./media/characters/star/front.svg",
  37298. extra: 1493/1189,
  37299. bottom: 48/1541
  37300. }
  37301. },
  37302. },
  37303. [
  37304. {
  37305. name: "Normal",
  37306. height: math.unit(4 + 1/12, "feet"),
  37307. default: true
  37308. },
  37309. ]
  37310. ))
  37311. characterMakers.push(() => makeCharacter(
  37312. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37313. {
  37314. front: {
  37315. height: math.unit(6 + 3/12, "feet"),
  37316. name: "Front",
  37317. image: {
  37318. source: "./media/characters/comet/front.svg",
  37319. extra: 1681/1462,
  37320. bottom: 26/1707
  37321. }
  37322. },
  37323. },
  37324. [
  37325. {
  37326. name: "Normal",
  37327. height: math.unit(6 + 3/12, "feet"),
  37328. default: true
  37329. },
  37330. ]
  37331. ))
  37332. characterMakers.push(() => makeCharacter(
  37333. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37334. {
  37335. front: {
  37336. height: math.unit(950, "feet"),
  37337. name: "Front",
  37338. image: {
  37339. source: "./media/characters/vortex/front.svg",
  37340. extra: 1497/1434,
  37341. bottom: 56/1553
  37342. }
  37343. },
  37344. maw: {
  37345. height: math.unit(285, "feet"),
  37346. name: "Maw",
  37347. image: {
  37348. source: "./media/characters/vortex/maw.svg"
  37349. }
  37350. },
  37351. },
  37352. [
  37353. {
  37354. name: "Macro",
  37355. height: math.unit(950, "feet"),
  37356. default: true
  37357. },
  37358. ]
  37359. ))
  37360. characterMakers.push(() => makeCharacter(
  37361. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37362. {
  37363. front: {
  37364. height: math.unit(600, "feet"),
  37365. weight: math.unit(0.02, "grams"),
  37366. name: "Front",
  37367. image: {
  37368. source: "./media/characters/doodle/front.svg",
  37369. extra: 1578/1413,
  37370. bottom: 37/1615
  37371. }
  37372. },
  37373. },
  37374. [
  37375. {
  37376. name: "Macro",
  37377. height: math.unit(600, "feet"),
  37378. default: true
  37379. },
  37380. ]
  37381. ))
  37382. characterMakers.push(() => makeCharacter(
  37383. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37384. {
  37385. front: {
  37386. height: math.unit(6 + 6/12, "feet"),
  37387. name: "Front",
  37388. image: {
  37389. source: "./media/characters/jai/front.svg",
  37390. extra: 1645/1534,
  37391. bottom: 115/1760
  37392. }
  37393. },
  37394. },
  37395. [
  37396. {
  37397. name: "Normal",
  37398. height: math.unit(6 + 6/12, "feet"),
  37399. default: true
  37400. },
  37401. ]
  37402. ))
  37403. characterMakers.push(() => makeCharacter(
  37404. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37405. {
  37406. front: {
  37407. height: math.unit(6 + 8/12, "feet"),
  37408. name: "Front",
  37409. image: {
  37410. source: "./media/characters/pixel/front.svg",
  37411. extra: 1900/1735,
  37412. bottom: 63/1963
  37413. }
  37414. },
  37415. },
  37416. [
  37417. {
  37418. name: "Normal",
  37419. height: math.unit(6 + 8/12, "feet"),
  37420. default: true
  37421. },
  37422. ]
  37423. ))
  37424. characterMakers.push(() => makeCharacter(
  37425. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37426. {
  37427. back: {
  37428. height: math.unit(4 + 1/12, "feet"),
  37429. weight: math.unit(75, "lb"),
  37430. name: "Back",
  37431. image: {
  37432. source: "./media/characters/rhett/back.svg",
  37433. extra: 930/878,
  37434. bottom: 25/955
  37435. }
  37436. },
  37437. front: {
  37438. height: math.unit(4 + 1/12, "feet"),
  37439. weight: math.unit(75, "lb"),
  37440. name: "Front",
  37441. image: {
  37442. source: "./media/characters/rhett/front.svg",
  37443. extra: 1682/1586,
  37444. bottom: 92/1774
  37445. }
  37446. },
  37447. },
  37448. [
  37449. {
  37450. name: "Micro",
  37451. height: math.unit(8, "inches")
  37452. },
  37453. {
  37454. name: "Tiny",
  37455. height: math.unit(2, "feet")
  37456. },
  37457. {
  37458. name: "Normal",
  37459. height: math.unit(4 + 1/12, "feet"),
  37460. default: true
  37461. },
  37462. ]
  37463. ))
  37464. characterMakers.push(() => makeCharacter(
  37465. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37466. {
  37467. front: {
  37468. height: math.unit(3 + 3/12, "feet"),
  37469. name: "Front",
  37470. image: {
  37471. source: "./media/characters/penny/front.svg",
  37472. extra: 1406/1311,
  37473. bottom: 26/1432
  37474. }
  37475. },
  37476. },
  37477. [
  37478. {
  37479. name: "Normal",
  37480. height: math.unit(3 + 3/12, "feet"),
  37481. default: true
  37482. },
  37483. ]
  37484. ))
  37485. characterMakers.push(() => makeCharacter(
  37486. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37487. {
  37488. front: {
  37489. height: math.unit(4 + 11/12, "feet"),
  37490. name: "Front",
  37491. image: {
  37492. source: "./media/characters/monty/front.svg",
  37493. extra: 1479/1209,
  37494. bottom: 0/1479
  37495. }
  37496. },
  37497. },
  37498. [
  37499. {
  37500. name: "Normal",
  37501. height: math.unit(4 + 11/12, "feet"),
  37502. default: true
  37503. },
  37504. ]
  37505. ))
  37506. characterMakers.push(() => makeCharacter(
  37507. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37508. {
  37509. front: {
  37510. height: math.unit(8 + 4/12, "feet"),
  37511. name: "Front",
  37512. image: {
  37513. source: "./media/characters/sterling/front.svg",
  37514. extra: 1420/1236,
  37515. bottom: 27/1447
  37516. }
  37517. },
  37518. },
  37519. [
  37520. {
  37521. name: "Normal",
  37522. height: math.unit(8 + 4/12, "feet"),
  37523. default: true
  37524. },
  37525. ]
  37526. ))
  37527. characterMakers.push(() => makeCharacter(
  37528. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37529. {
  37530. front: {
  37531. height: math.unit(15, "feet"),
  37532. name: "Front",
  37533. image: {
  37534. source: "./media/characters/marble/front.svg",
  37535. extra: 973/937,
  37536. bottom: 32/1005
  37537. }
  37538. },
  37539. },
  37540. [
  37541. {
  37542. name: "Normal",
  37543. height: math.unit(15, "feet"),
  37544. default: true
  37545. },
  37546. ]
  37547. ))
  37548. characterMakers.push(() => makeCharacter(
  37549. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37550. {
  37551. front: {
  37552. height: math.unit(3, "inches"),
  37553. name: "Front",
  37554. image: {
  37555. source: "./media/characters/powder/front.svg",
  37556. extra: 1504/1334,
  37557. bottom: 518/2022
  37558. }
  37559. },
  37560. },
  37561. [
  37562. {
  37563. name: "Normal",
  37564. height: math.unit(3, "inches"),
  37565. default: true
  37566. },
  37567. ]
  37568. ))
  37569. characterMakers.push(() => makeCharacter(
  37570. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37571. {
  37572. front: {
  37573. height: math.unit(4 + 5/12, "feet"),
  37574. name: "Front",
  37575. image: {
  37576. source: "./media/characters/joey-raccoon/front.svg",
  37577. extra: 1273/1197,
  37578. bottom: 0/1273
  37579. }
  37580. },
  37581. },
  37582. [
  37583. {
  37584. name: "Normal",
  37585. height: math.unit(4 + 5/12, "feet"),
  37586. default: true
  37587. },
  37588. ]
  37589. ))
  37590. characterMakers.push(() => makeCharacter(
  37591. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37592. {
  37593. front: {
  37594. height: math.unit(8 + 4/12, "feet"),
  37595. name: "Front",
  37596. image: {
  37597. source: "./media/characters/vick/front.svg",
  37598. extra: 2187/2118,
  37599. bottom: 47/2234
  37600. }
  37601. },
  37602. },
  37603. [
  37604. {
  37605. name: "Normal",
  37606. height: math.unit(8 + 4/12, "feet"),
  37607. default: true
  37608. },
  37609. ]
  37610. ))
  37611. characterMakers.push(() => makeCharacter(
  37612. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37613. {
  37614. front: {
  37615. height: math.unit(5 + 5/12, "feet"),
  37616. name: "Front",
  37617. image: {
  37618. source: "./media/characters/mitsy/front.svg",
  37619. extra: 1842/1695,
  37620. bottom: 0/1842
  37621. }
  37622. },
  37623. },
  37624. [
  37625. {
  37626. name: "Normal",
  37627. height: math.unit(5 + 5/12, "feet"),
  37628. default: true
  37629. },
  37630. ]
  37631. ))
  37632. characterMakers.push(() => makeCharacter(
  37633. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37634. {
  37635. front: {
  37636. height: math.unit(6 + 3/12, "feet"),
  37637. name: "Front",
  37638. image: {
  37639. source: "./media/characters/silvy/front.svg",
  37640. extra: 1995/1836,
  37641. bottom: 225/2220
  37642. }
  37643. },
  37644. },
  37645. [
  37646. {
  37647. name: "Normal",
  37648. height: math.unit(6 + 3/12, "feet"),
  37649. default: true
  37650. },
  37651. ]
  37652. ))
  37653. characterMakers.push(() => makeCharacter(
  37654. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37655. {
  37656. front: {
  37657. height: math.unit(3 + 8/12, "feet"),
  37658. name: "Front",
  37659. image: {
  37660. source: "./media/characters/rodney/front.svg",
  37661. extra: 1956/1747,
  37662. bottom: 31/1987
  37663. }
  37664. },
  37665. frontDressed: {
  37666. height: math.unit(2.9, "feet"),
  37667. name: "Front (Dressed)",
  37668. image: {
  37669. source: "./media/characters/rodney/front-dressed.svg",
  37670. extra: 1382/1241,
  37671. bottom: 385/1767
  37672. }
  37673. },
  37674. },
  37675. [
  37676. {
  37677. name: "Normal",
  37678. height: math.unit(3 + 8/12, "feet"),
  37679. default: true
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37685. {
  37686. front: {
  37687. height: math.unit(5 + 9/12, "feet"),
  37688. weight: math.unit(194, "lbs"),
  37689. name: "Front",
  37690. image: {
  37691. source: "./media/characters/zakail-sudekai/front.svg",
  37692. extra: 2696/2533,
  37693. bottom: 248/2944
  37694. }
  37695. },
  37696. maw: {
  37697. height: math.unit(1.35, "feet"),
  37698. name: "Maw",
  37699. image: {
  37700. source: "./media/characters/zakail-sudekai/maw.svg"
  37701. }
  37702. },
  37703. },
  37704. [
  37705. {
  37706. name: "Normal",
  37707. height: math.unit(5 + 9/12, "feet"),
  37708. default: true
  37709. },
  37710. ]
  37711. ))
  37712. characterMakers.push(() => makeCharacter(
  37713. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37714. {
  37715. front: {
  37716. height: math.unit(8 + 4/12, "feet"),
  37717. weight: math.unit(1200, "lb"),
  37718. name: "Front",
  37719. image: {
  37720. source: "./media/characters/eleanor/front.svg",
  37721. extra: 1226/1192,
  37722. bottom: 52/1278
  37723. }
  37724. },
  37725. back: {
  37726. height: math.unit(8 + 4/12, "feet"),
  37727. weight: math.unit(1200, "lb"),
  37728. name: "Back",
  37729. image: {
  37730. source: "./media/characters/eleanor/back.svg",
  37731. extra: 1242/1184,
  37732. bottom: 60/1302
  37733. }
  37734. },
  37735. head: {
  37736. height: math.unit(2.62, "feet"),
  37737. name: "Head",
  37738. image: {
  37739. source: "./media/characters/eleanor/head.svg"
  37740. }
  37741. },
  37742. },
  37743. [
  37744. {
  37745. name: "Normal",
  37746. height: math.unit(8 + 4/12, "feet"),
  37747. default: true
  37748. },
  37749. ]
  37750. ))
  37751. characterMakers.push(() => makeCharacter(
  37752. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37753. {
  37754. front: {
  37755. height: math.unit(8 + 4/12, "feet"),
  37756. weight: math.unit(750, "lb"),
  37757. name: "Front",
  37758. image: {
  37759. source: "./media/characters/tanya/front.svg",
  37760. extra: 1749/1615,
  37761. bottom: 33/1782
  37762. }
  37763. },
  37764. },
  37765. [
  37766. {
  37767. name: "Normal",
  37768. height: math.unit(8 + 4/12, "feet"),
  37769. default: true
  37770. },
  37771. ]
  37772. ))
  37773. characterMakers.push(() => makeCharacter(
  37774. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37775. {
  37776. front: {
  37777. height: math.unit(5, "feet"),
  37778. weight: math.unit(225, "lb"),
  37779. name: "Front",
  37780. image: {
  37781. source: "./media/characters/cindy/front.svg",
  37782. extra: 1320/1250,
  37783. bottom: 42/1362
  37784. }
  37785. },
  37786. frontDressed: {
  37787. height: math.unit(5, "feet"),
  37788. weight: math.unit(225, "lb"),
  37789. name: "Front (Dressed)",
  37790. image: {
  37791. source: "./media/characters/cindy/front-dressed.svg",
  37792. extra: 1320/1250,
  37793. bottom: 42/1362
  37794. }
  37795. },
  37796. back: {
  37797. height: math.unit(5, "feet"),
  37798. weight: math.unit(225, "lb"),
  37799. name: "Back",
  37800. image: {
  37801. source: "./media/characters/cindy/back.svg",
  37802. extra: 1384/1346,
  37803. bottom: 14/1398
  37804. }
  37805. },
  37806. },
  37807. [
  37808. {
  37809. name: "Normal",
  37810. height: math.unit(5, "feet"),
  37811. default: true
  37812. },
  37813. ]
  37814. ))
  37815. characterMakers.push(() => makeCharacter(
  37816. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37817. {
  37818. front: {
  37819. height: math.unit(6 + 9/12, "feet"),
  37820. weight: math.unit(440, "lb"),
  37821. name: "Front",
  37822. image: {
  37823. source: "./media/characters/wilbur-owen/front.svg",
  37824. extra: 1575/1448,
  37825. bottom: 72/1647
  37826. }
  37827. },
  37828. back: {
  37829. height: math.unit(6 + 9/12, "feet"),
  37830. weight: math.unit(440, "lb"),
  37831. name: "Back",
  37832. image: {
  37833. source: "./media/characters/wilbur-owen/back.svg",
  37834. extra: 1578/1445,
  37835. bottom: 36/1614
  37836. }
  37837. },
  37838. },
  37839. [
  37840. {
  37841. name: "Normal",
  37842. height: math.unit(6 + 9/12, "feet"),
  37843. default: true
  37844. },
  37845. ]
  37846. ))
  37847. characterMakers.push(() => makeCharacter(
  37848. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37849. {
  37850. front: {
  37851. height: math.unit(6 + 5/12, "feet"),
  37852. weight: math.unit(650, "lb"),
  37853. name: "Front",
  37854. image: {
  37855. source: "./media/characters/keegan/front.svg",
  37856. extra: 2387/2198,
  37857. bottom: 33/2420
  37858. }
  37859. },
  37860. side: {
  37861. height: math.unit(6 + 5/12, "feet"),
  37862. weight: math.unit(650, "lb"),
  37863. name: "Side",
  37864. image: {
  37865. source: "./media/characters/keegan/side.svg",
  37866. extra: 2390/2202,
  37867. bottom: 47/2437
  37868. }
  37869. },
  37870. back: {
  37871. height: math.unit(6 + 5/12, "feet"),
  37872. weight: math.unit(650, "lb"),
  37873. name: "Back",
  37874. image: {
  37875. source: "./media/characters/keegan/back.svg",
  37876. extra: 2418/2268,
  37877. bottom: 15/2433
  37878. }
  37879. },
  37880. frontSfw: {
  37881. height: math.unit(6 + 5/12, "feet"),
  37882. weight: math.unit(650, "lb"),
  37883. name: "Front (SFW)",
  37884. image: {
  37885. source: "./media/characters/keegan/front-sfw.svg",
  37886. extra: 2387/2198,
  37887. bottom: 33/2420
  37888. }
  37889. },
  37890. beans: {
  37891. height: math.unit(1.85, "feet"),
  37892. name: "Beans",
  37893. image: {
  37894. source: "./media/characters/keegan/beans.svg"
  37895. }
  37896. },
  37897. },
  37898. [
  37899. {
  37900. name: "Normal",
  37901. height: math.unit(6 + 5/12, "feet"),
  37902. default: true
  37903. },
  37904. ]
  37905. ))
  37906. characterMakers.push(() => makeCharacter(
  37907. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37908. {
  37909. front: {
  37910. height: math.unit(9, "feet"),
  37911. name: "Front",
  37912. image: {
  37913. source: "./media/characters/colton/front.svg",
  37914. extra: 1589/1326,
  37915. bottom: 139/1728
  37916. }
  37917. },
  37918. },
  37919. [
  37920. {
  37921. name: "Normal",
  37922. height: math.unit(9, "feet"),
  37923. default: true
  37924. },
  37925. ]
  37926. ))
  37927. characterMakers.push(() => makeCharacter(
  37928. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37929. {
  37930. front: {
  37931. height: math.unit(2 + 9/12, "feet"),
  37932. name: "Front",
  37933. image: {
  37934. source: "./media/characters/bora/front.svg",
  37935. extra: 1265/1250,
  37936. bottom: 24/1289
  37937. }
  37938. },
  37939. },
  37940. [
  37941. {
  37942. name: "Normal",
  37943. height: math.unit(2 + 9/12, "feet"),
  37944. default: true
  37945. },
  37946. ]
  37947. ))
  37948. characterMakers.push(() => makeCharacter(
  37949. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37950. {
  37951. front: {
  37952. height: math.unit(8, "feet"),
  37953. name: "Front",
  37954. image: {
  37955. source: "./media/characters/myu-myu/front.svg",
  37956. extra: 1949/1857,
  37957. bottom: 90/2039
  37958. }
  37959. },
  37960. },
  37961. [
  37962. {
  37963. name: "Normal",
  37964. height: math.unit(8, "feet"),
  37965. default: true
  37966. },
  37967. {
  37968. name: "Big",
  37969. height: math.unit(15, "feet")
  37970. },
  37971. {
  37972. name: "BIG",
  37973. height: math.unit(25, "feet")
  37974. },
  37975. ]
  37976. ))
  37977. characterMakers.push(() => makeCharacter(
  37978. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37979. {
  37980. side: {
  37981. height: math.unit(7 + 5/12, "feet"),
  37982. weight: math.unit(2800, "lb"),
  37983. name: "Side",
  37984. image: {
  37985. source: "./media/characters/haloren/side.svg",
  37986. extra: 1793/409,
  37987. bottom: 59/1852
  37988. }
  37989. },
  37990. frontPaw: {
  37991. height: math.unit(2.36, "feet"),
  37992. name: "Front paw",
  37993. image: {
  37994. source: "./media/characters/haloren/front-paw.svg"
  37995. }
  37996. },
  37997. hindPaw: {
  37998. height: math.unit(3.18, "feet"),
  37999. name: "Hind paw",
  38000. image: {
  38001. source: "./media/characters/haloren/hind-paw.svg"
  38002. }
  38003. },
  38004. maw: {
  38005. height: math.unit(5.05, "feet"),
  38006. name: "Maw",
  38007. image: {
  38008. source: "./media/characters/haloren/maw.svg"
  38009. }
  38010. },
  38011. dick: {
  38012. height: math.unit(2.90, "feet"),
  38013. name: "Dick",
  38014. image: {
  38015. source: "./media/characters/haloren/dick.svg"
  38016. }
  38017. },
  38018. },
  38019. [
  38020. {
  38021. name: "Normal",
  38022. height: math.unit(7 + 5/12, "feet"),
  38023. default: true
  38024. },
  38025. {
  38026. name: "Enhanced",
  38027. height: math.unit(14 + 3/12, "feet")
  38028. },
  38029. ]
  38030. ))
  38031. characterMakers.push(() => makeCharacter(
  38032. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38033. {
  38034. front: {
  38035. height: math.unit(171, "cm"),
  38036. name: "Front",
  38037. image: {
  38038. source: "./media/characters/kimmy/front.svg",
  38039. extra: 1491/1435,
  38040. bottom: 53/1544
  38041. }
  38042. },
  38043. },
  38044. [
  38045. {
  38046. name: "Small",
  38047. height: math.unit(9, "cm")
  38048. },
  38049. {
  38050. name: "Normal",
  38051. height: math.unit(171, "cm"),
  38052. default: true
  38053. },
  38054. ]
  38055. ))
  38056. characterMakers.push(() => makeCharacter(
  38057. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38058. {
  38059. front: {
  38060. height: math.unit(8, "feet"),
  38061. weight: math.unit(300, "lb"),
  38062. name: "Front",
  38063. image: {
  38064. source: "./media/characters/galeboomer/front.svg",
  38065. extra: 4651/4415,
  38066. bottom: 162/4813
  38067. }
  38068. },
  38069. back: {
  38070. height: math.unit(8, "feet"),
  38071. weight: math.unit(300, "lb"),
  38072. name: "Back",
  38073. image: {
  38074. source: "./media/characters/galeboomer/back.svg",
  38075. extra: 4544/4314,
  38076. bottom: 16/4560
  38077. }
  38078. },
  38079. frontAlt: {
  38080. height: math.unit(8, "feet"),
  38081. weight: math.unit(300, "lb"),
  38082. name: "Front (Alt)",
  38083. image: {
  38084. source: "./media/characters/galeboomer/front-alt.svg",
  38085. extra: 4458/4228,
  38086. bottom: 68/4526
  38087. }
  38088. },
  38089. maw: {
  38090. height: math.unit(1.2, "feet"),
  38091. name: "Maw",
  38092. image: {
  38093. source: "./media/characters/galeboomer/maw.svg"
  38094. }
  38095. },
  38096. },
  38097. [
  38098. {
  38099. name: "Normal",
  38100. height: math.unit(8, "feet"),
  38101. default: true
  38102. },
  38103. ]
  38104. ))
  38105. characterMakers.push(() => makeCharacter(
  38106. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38107. {
  38108. front: {
  38109. height: math.unit(5 + 9/12, "feet"),
  38110. weight: math.unit(120, "lb"),
  38111. name: "Front",
  38112. image: {
  38113. source: "./media/characters/chyr/front.svg",
  38114. extra: 1323/1254,
  38115. bottom: 63/1386
  38116. }
  38117. },
  38118. back: {
  38119. height: math.unit(5 + 9/12, "feet"),
  38120. weight: math.unit(120, "lb"),
  38121. name: "Back",
  38122. image: {
  38123. source: "./media/characters/chyr/back.svg",
  38124. extra: 1323/1252,
  38125. bottom: 48/1371
  38126. }
  38127. },
  38128. },
  38129. [
  38130. {
  38131. name: "Normal",
  38132. height: math.unit(5 + 9/12, "feet"),
  38133. default: true
  38134. },
  38135. ]
  38136. ))
  38137. characterMakers.push(() => makeCharacter(
  38138. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38139. {
  38140. front: {
  38141. height: math.unit(7, "feet"),
  38142. weight: math.unit(310, "lb"),
  38143. name: "Front",
  38144. image: {
  38145. source: "./media/characters/solarus/front.svg",
  38146. extra: 2415/2021,
  38147. bottom: 103/2518
  38148. }
  38149. },
  38150. back: {
  38151. height: math.unit(7, "feet"),
  38152. weight: math.unit(310, "lb"),
  38153. name: "Back",
  38154. image: {
  38155. source: "./media/characters/solarus/back.svg",
  38156. extra: 2463/2089,
  38157. bottom: 79/2542
  38158. }
  38159. },
  38160. },
  38161. [
  38162. {
  38163. name: "Normal",
  38164. height: math.unit(7, "feet"),
  38165. default: true
  38166. },
  38167. ]
  38168. ))
  38169. characterMakers.push(() => makeCharacter(
  38170. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38171. {
  38172. front: {
  38173. height: math.unit(16, "feet"),
  38174. name: "Front",
  38175. image: {
  38176. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38177. extra: 1844/1780,
  38178. bottom: 58/1902
  38179. }
  38180. },
  38181. winterCoat: {
  38182. height: math.unit(16, "feet"),
  38183. name: "Winter Coat",
  38184. image: {
  38185. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38186. extra: 1807/1775,
  38187. bottom: 69/1876
  38188. }
  38189. },
  38190. },
  38191. [
  38192. {
  38193. name: "Normal",
  38194. height: math.unit(16, "feet"),
  38195. default: true
  38196. },
  38197. {
  38198. name: "Chicago Size",
  38199. height: math.unit(560, "feet")
  38200. },
  38201. ]
  38202. ))
  38203. characterMakers.push(() => makeCharacter(
  38204. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38205. {
  38206. front: {
  38207. height: math.unit(11 + 6/12, "feet"),
  38208. weight: math.unit(1366, "lb"),
  38209. name: "Front",
  38210. image: {
  38211. source: "./media/characters/lexor/front.svg",
  38212. extra: 1560/1481,
  38213. bottom: 211/1771
  38214. }
  38215. },
  38216. back: {
  38217. height: math.unit(11 + 6/12, "feet"),
  38218. weight: math.unit(1366, "lb"),
  38219. name: "Back",
  38220. image: {
  38221. source: "./media/characters/lexor/back.svg",
  38222. extra: 1614/1533,
  38223. bottom: 76/1690
  38224. }
  38225. },
  38226. maw: {
  38227. height: math.unit(3, "feet"),
  38228. name: "Maw",
  38229. image: {
  38230. source: "./media/characters/lexor/maw.svg"
  38231. }
  38232. },
  38233. dick: {
  38234. height: math.unit(2.59, "feet"),
  38235. name: "Dick",
  38236. image: {
  38237. source: "./media/characters/lexor/dick.svg"
  38238. }
  38239. },
  38240. },
  38241. [
  38242. {
  38243. name: "Normal",
  38244. height: math.unit(11 + 6/12, "feet"),
  38245. default: true
  38246. },
  38247. ]
  38248. ))
  38249. characterMakers.push(() => makeCharacter(
  38250. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38251. {
  38252. front: {
  38253. height: math.unit(5 + 8/12, "feet"),
  38254. name: "Front",
  38255. image: {
  38256. source: "./media/characters/magnum/front.svg",
  38257. extra: 942/855,
  38258. bottom: 26/968
  38259. }
  38260. },
  38261. },
  38262. [
  38263. {
  38264. name: "Normal",
  38265. height: math.unit(5 + 8/12, "feet"),
  38266. default: true
  38267. },
  38268. ]
  38269. ))
  38270. characterMakers.push(() => makeCharacter(
  38271. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38272. {
  38273. front: {
  38274. height: math.unit(18 + 4/12, "feet"),
  38275. weight: math.unit(1500, "kg"),
  38276. name: "Front",
  38277. image: {
  38278. source: "./media/characters/solas-sharpsman/front.svg",
  38279. extra: 1698/1589,
  38280. bottom: 0/1698
  38281. }
  38282. },
  38283. },
  38284. [
  38285. {
  38286. name: "Normal",
  38287. height: math.unit(18 + 4/12, "feet"),
  38288. default: true
  38289. },
  38290. ]
  38291. ))
  38292. characterMakers.push(() => makeCharacter(
  38293. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38294. {
  38295. front: {
  38296. height: math.unit(5 + 5/12, "feet"),
  38297. weight: math.unit(180, "lb"),
  38298. name: "Front",
  38299. image: {
  38300. source: "./media/characters/october/front.svg",
  38301. extra: 1800/1650,
  38302. bottom: 0/1800
  38303. }
  38304. },
  38305. frontNsfw: {
  38306. height: math.unit(5 + 5/12, "feet"),
  38307. weight: math.unit(180, "lb"),
  38308. name: "Front (NSFW)",
  38309. image: {
  38310. source: "./media/characters/october/front-nsfw.svg",
  38311. extra: 1392/1307,
  38312. bottom: 42/1434
  38313. }
  38314. },
  38315. },
  38316. [
  38317. {
  38318. name: "Normal",
  38319. height: math.unit(5 + 5/12, "feet"),
  38320. default: true
  38321. },
  38322. ]
  38323. ))
  38324. characterMakers.push(() => makeCharacter(
  38325. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38326. {
  38327. front: {
  38328. height: math.unit(8 + 6/12, "feet"),
  38329. name: "Front",
  38330. image: {
  38331. source: "./media/characters/essynkardi/front.svg",
  38332. extra: 1914/1846,
  38333. bottom: 22/1936
  38334. }
  38335. },
  38336. },
  38337. [
  38338. {
  38339. name: "Normal",
  38340. height: math.unit(8 + 6/12, "feet"),
  38341. default: true
  38342. },
  38343. ]
  38344. ))
  38345. characterMakers.push(() => makeCharacter(
  38346. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38347. {
  38348. front: {
  38349. height: math.unit(6 + 6/12, "feet"),
  38350. weight: math.unit(7, "lb"),
  38351. name: "Front",
  38352. image: {
  38353. source: "./media/characters/icky/front.svg",
  38354. extra: 813/782,
  38355. bottom: 66/879
  38356. }
  38357. },
  38358. back: {
  38359. height: math.unit(6 + 6/12, "feet"),
  38360. weight: math.unit(7, "lb"),
  38361. name: "Back",
  38362. image: {
  38363. source: "./media/characters/icky/back.svg",
  38364. extra: 754/735,
  38365. bottom: 56/810
  38366. }
  38367. },
  38368. },
  38369. [
  38370. {
  38371. name: "Normal",
  38372. height: math.unit(6 + 6/12, "feet"),
  38373. default: true
  38374. },
  38375. ]
  38376. ))
  38377. characterMakers.push(() => makeCharacter(
  38378. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38379. {
  38380. front: {
  38381. height: math.unit(15, "feet"),
  38382. name: "Front",
  38383. image: {
  38384. source: "./media/characters/rojas/front.svg",
  38385. extra: 1462/1408,
  38386. bottom: 95/1557
  38387. }
  38388. },
  38389. back: {
  38390. height: math.unit(15, "feet"),
  38391. name: "Back",
  38392. image: {
  38393. source: "./media/characters/rojas/back.svg",
  38394. extra: 1023/954,
  38395. bottom: 28/1051
  38396. }
  38397. },
  38398. },
  38399. [
  38400. {
  38401. name: "Normal",
  38402. height: math.unit(15, "feet"),
  38403. default: true
  38404. },
  38405. ]
  38406. ))
  38407. characterMakers.push(() => makeCharacter(
  38408. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38409. {
  38410. frontHuman: {
  38411. height: math.unit(5 + 7/12, "feet"),
  38412. name: "Front (Human)",
  38413. image: {
  38414. source: "./media/characters/alek-dryagan/front-human.svg",
  38415. extra: 1687/1667,
  38416. bottom: 69/1756
  38417. }
  38418. },
  38419. backHuman: {
  38420. height: math.unit(5 + 7/12, "feet"),
  38421. name: "Back (Human)",
  38422. image: {
  38423. source: "./media/characters/alek-dryagan/back-human.svg",
  38424. extra: 1670/1649,
  38425. bottom: 65/1735
  38426. }
  38427. },
  38428. frontDemi: {
  38429. height: math.unit(65, "feet"),
  38430. name: "Front (Demi)",
  38431. image: {
  38432. source: "./media/characters/alek-dryagan/front-demi.svg",
  38433. extra: 1669/1642,
  38434. bottom: 49/1718
  38435. }
  38436. },
  38437. backDemi: {
  38438. height: math.unit(65, "feet"),
  38439. name: "Back (Demi)",
  38440. image: {
  38441. source: "./media/characters/alek-dryagan/back-demi.svg",
  38442. extra: 1658/1637,
  38443. bottom: 40/1698
  38444. }
  38445. },
  38446. mawHuman: {
  38447. height: math.unit(0.3, "feet"),
  38448. name: "Maw (Human)",
  38449. image: {
  38450. source: "./media/characters/alek-dryagan/maw-human.svg"
  38451. }
  38452. },
  38453. mawDemi: {
  38454. height: math.unit(3.8, "feet"),
  38455. name: "Maw (Demi)",
  38456. image: {
  38457. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38458. }
  38459. },
  38460. },
  38461. [
  38462. {
  38463. name: "Normal",
  38464. height: math.unit(5 + 7/12, "feet"),
  38465. default: true
  38466. },
  38467. ]
  38468. ))
  38469. characterMakers.push(() => makeCharacter(
  38470. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38471. {
  38472. frontHuman: {
  38473. height: math.unit(5 + 2/12, "feet"),
  38474. name: "Front (Human)",
  38475. image: {
  38476. source: "./media/characters/gen/front-human.svg",
  38477. extra: 1627/1538,
  38478. bottom: 71/1698
  38479. }
  38480. },
  38481. backHuman: {
  38482. height: math.unit(5 + 2/12, "feet"),
  38483. name: "Back (Human)",
  38484. image: {
  38485. source: "./media/characters/gen/back-human.svg",
  38486. extra: 1638/1548,
  38487. bottom: 69/1707
  38488. }
  38489. },
  38490. frontDemi: {
  38491. height: math.unit(5 + 2/12, "feet"),
  38492. name: "Front (Demi)",
  38493. image: {
  38494. source: "./media/characters/gen/front-demi.svg",
  38495. extra: 1627/1538,
  38496. bottom: 71/1698
  38497. }
  38498. },
  38499. backDemi: {
  38500. height: math.unit(5 + 2/12, "feet"),
  38501. name: "Back (Demi)",
  38502. image: {
  38503. source: "./media/characters/gen/back-demi.svg",
  38504. extra: 1638/1548,
  38505. bottom: 69/1707
  38506. }
  38507. },
  38508. },
  38509. [
  38510. {
  38511. name: "Normal",
  38512. height: math.unit(5 + 2/12, "feet"),
  38513. default: true
  38514. },
  38515. ]
  38516. ))
  38517. characterMakers.push(() => makeCharacter(
  38518. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38519. {
  38520. frontImp: {
  38521. height: math.unit(1 + 11/12, "feet"),
  38522. name: "Front (Imp)",
  38523. image: {
  38524. source: "./media/characters/max-kobold/front-imp.svg",
  38525. extra: 1238/1134,
  38526. bottom: 81/1319
  38527. }
  38528. },
  38529. backImp: {
  38530. height: math.unit(1 + 11/12, "feet"),
  38531. name: "Back (Imp)",
  38532. image: {
  38533. source: "./media/characters/max-kobold/back-imp.svg",
  38534. extra: 1334/1175,
  38535. bottom: 34/1368
  38536. }
  38537. },
  38538. frontDemi: {
  38539. height: math.unit(5 + 9/12, "feet"),
  38540. name: "Front (Demi)",
  38541. image: {
  38542. source: "./media/characters/max-kobold/front-demi.svg",
  38543. extra: 1715/1685,
  38544. bottom: 54/1769
  38545. }
  38546. },
  38547. backDemi: {
  38548. height: math.unit(5 + 9/12, "feet"),
  38549. name: "Back (Demi)",
  38550. image: {
  38551. source: "./media/characters/max-kobold/back-demi.svg",
  38552. extra: 1752/1729,
  38553. bottom: 41/1793
  38554. }
  38555. },
  38556. handImp: {
  38557. height: math.unit(0.45, "feet"),
  38558. name: "Hand (Imp)",
  38559. image: {
  38560. source: "./media/characters/max-kobold/hand.svg"
  38561. }
  38562. },
  38563. pawImp: {
  38564. height: math.unit(0.46, "feet"),
  38565. name: "Paw (Imp)",
  38566. image: {
  38567. source: "./media/characters/max-kobold/paw.svg"
  38568. }
  38569. },
  38570. handDemi: {
  38571. height: math.unit(0.80, "feet"),
  38572. name: "Hand (Demi)",
  38573. image: {
  38574. source: "./media/characters/max-kobold/hand.svg"
  38575. }
  38576. },
  38577. pawDemi: {
  38578. height: math.unit(1.1, "feet"),
  38579. name: "Paw (Demi)",
  38580. image: {
  38581. source: "./media/characters/max-kobold/paw.svg"
  38582. }
  38583. },
  38584. headImp: {
  38585. height: math.unit(1.33, "feet"),
  38586. name: "Head (Imp)",
  38587. image: {
  38588. source: "./media/characters/max-kobold/head-imp.svg"
  38589. }
  38590. },
  38591. mawImp: {
  38592. height: math.unit(0.75, "feet"),
  38593. name: "Maw (Imp)",
  38594. image: {
  38595. source: "./media/characters/max-kobold/maw-imp.svg"
  38596. }
  38597. },
  38598. mawDemi: {
  38599. height: math.unit(0.42, "feet"),
  38600. name: "Maw (Demi)",
  38601. image: {
  38602. source: "./media/characters/max-kobold/maw-demi.svg"
  38603. }
  38604. },
  38605. },
  38606. [
  38607. {
  38608. name: "Normal",
  38609. height: math.unit(1 + 11/12, "feet"),
  38610. default: true
  38611. },
  38612. ]
  38613. ))
  38614. characterMakers.push(() => makeCharacter(
  38615. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38616. {
  38617. front: {
  38618. height: math.unit(7 + 5/12, "feet"),
  38619. name: "Front",
  38620. image: {
  38621. source: "./media/characters/carbon/front.svg",
  38622. extra: 1754/1689,
  38623. bottom: 65/1819
  38624. }
  38625. },
  38626. back: {
  38627. height: math.unit(7 + 5/12, "feet"),
  38628. name: "Back",
  38629. image: {
  38630. source: "./media/characters/carbon/back.svg",
  38631. extra: 1762/1695,
  38632. bottom: 24/1786
  38633. }
  38634. },
  38635. frontGigantamax: {
  38636. height: math.unit(150, "feet"),
  38637. name: "Front (Gigantamax)",
  38638. image: {
  38639. source: "./media/characters/carbon/front-gigantamax.svg",
  38640. extra: 1826/1669,
  38641. bottom: 59/1885
  38642. }
  38643. },
  38644. backGigantamax: {
  38645. height: math.unit(150, "feet"),
  38646. name: "Back (Gigantamax)",
  38647. image: {
  38648. source: "./media/characters/carbon/back-gigantamax.svg",
  38649. extra: 1796/1653,
  38650. bottom: 53/1849
  38651. }
  38652. },
  38653. maw: {
  38654. height: math.unit(0.48, "feet"),
  38655. name: "Maw",
  38656. image: {
  38657. source: "./media/characters/carbon/maw.svg"
  38658. }
  38659. },
  38660. mawGigantamax: {
  38661. height: math.unit(7.5, "feet"),
  38662. name: "Maw (Gigantamax)",
  38663. image: {
  38664. source: "./media/characters/carbon/maw-gigantamax.svg"
  38665. }
  38666. },
  38667. },
  38668. [
  38669. {
  38670. name: "Normal",
  38671. height: math.unit(7 + 5/12, "feet"),
  38672. default: true
  38673. },
  38674. ]
  38675. ))
  38676. characterMakers.push(() => makeCharacter(
  38677. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38678. {
  38679. front: {
  38680. height: math.unit(6, "feet"),
  38681. name: "Front",
  38682. image: {
  38683. source: "./media/characters/maverick/front.svg",
  38684. extra: 1672/1661,
  38685. bottom: 85/1757
  38686. }
  38687. },
  38688. back: {
  38689. height: math.unit(6, "feet"),
  38690. name: "Back",
  38691. image: {
  38692. source: "./media/characters/maverick/back.svg",
  38693. extra: 1642/1631,
  38694. bottom: 38/1680
  38695. }
  38696. },
  38697. },
  38698. [
  38699. {
  38700. name: "Normal",
  38701. height: math.unit(6, "feet"),
  38702. default: true
  38703. },
  38704. ]
  38705. ))
  38706. characterMakers.push(() => makeCharacter(
  38707. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38708. {
  38709. front: {
  38710. height: math.unit(15, "feet"),
  38711. weight: math.unit(615, "lb"),
  38712. name: "Front",
  38713. image: {
  38714. source: "./media/characters/grockle/front.svg",
  38715. extra: 1535/1427,
  38716. bottom: 56/1591
  38717. }
  38718. },
  38719. },
  38720. [
  38721. {
  38722. name: "Normal",
  38723. height: math.unit(15, "feet"),
  38724. default: true
  38725. },
  38726. {
  38727. name: "Large",
  38728. height: math.unit(150, "feet")
  38729. },
  38730. {
  38731. name: "Macro",
  38732. height: math.unit(1876, "feet")
  38733. },
  38734. {
  38735. name: "Mega Macro",
  38736. height: math.unit(121940, "feet")
  38737. },
  38738. {
  38739. name: "Giga Macro",
  38740. height: math.unit(750, "km")
  38741. },
  38742. {
  38743. name: "Tera Macro",
  38744. height: math.unit(750000, "km")
  38745. },
  38746. {
  38747. name: "Galactic",
  38748. height: math.unit(1.4e5, "km")
  38749. },
  38750. {
  38751. name: "Godlike",
  38752. height: math.unit(9.8e280, "galaxies")
  38753. },
  38754. ]
  38755. ))
  38756. characterMakers.push(() => makeCharacter(
  38757. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38758. {
  38759. front: {
  38760. height: math.unit(11, "meters"),
  38761. weight: math.unit(20, "tonnes"),
  38762. name: "Front",
  38763. image: {
  38764. source: "./media/characters/alistair/front.svg",
  38765. extra: 1265/1009,
  38766. bottom: 93/1358
  38767. }
  38768. },
  38769. },
  38770. [
  38771. {
  38772. name: "Normal",
  38773. height: math.unit(11, "meters"),
  38774. default: true
  38775. },
  38776. ]
  38777. ))
  38778. characterMakers.push(() => makeCharacter(
  38779. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38780. {
  38781. front: {
  38782. height: math.unit(5 + 8/12, "feet"),
  38783. name: "Front",
  38784. image: {
  38785. source: "./media/characters/haruka/front.svg",
  38786. extra: 2012/1952,
  38787. bottom: 0/2012
  38788. }
  38789. },
  38790. },
  38791. [
  38792. {
  38793. name: "Normal",
  38794. height: math.unit(5 + 8/12, "feet"),
  38795. default: true
  38796. },
  38797. ]
  38798. ))
  38799. characterMakers.push(() => makeCharacter(
  38800. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38801. {
  38802. back: {
  38803. height: math.unit(9, "feet"),
  38804. name: "Back",
  38805. image: {
  38806. source: "./media/characters/vivian-sylveon/back.svg",
  38807. extra: 1853/1714,
  38808. bottom: 0/1853
  38809. }
  38810. },
  38811. },
  38812. [
  38813. {
  38814. name: "Normal",
  38815. height: math.unit(9, "feet"),
  38816. default: true
  38817. },
  38818. {
  38819. name: "Macro",
  38820. height: math.unit(500, "feet")
  38821. },
  38822. {
  38823. name: "Megamacro",
  38824. height: math.unit(600, "miles")
  38825. },
  38826. {
  38827. name: "Gigamacro",
  38828. height: math.unit(30000, "miles")
  38829. },
  38830. ]
  38831. ))
  38832. characterMakers.push(() => makeCharacter(
  38833. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38834. {
  38835. anthro: {
  38836. height: math.unit(5 + 10/12, "feet"),
  38837. weight: math.unit(100, "lb"),
  38838. name: "Anthro",
  38839. image: {
  38840. source: "./media/characters/daiki/anthro.svg",
  38841. extra: 1115/1027,
  38842. bottom: 69/1184
  38843. }
  38844. },
  38845. feral: {
  38846. height: math.unit(200, "feet"),
  38847. name: "Feral",
  38848. image: {
  38849. source: "./media/characters/daiki/feral.svg",
  38850. extra: 1256/313,
  38851. bottom: 39/1295
  38852. }
  38853. },
  38854. feralHead: {
  38855. height: math.unit(171, "feet"),
  38856. name: "Feral Head",
  38857. image: {
  38858. source: "./media/characters/daiki/feral-head.svg"
  38859. }
  38860. },
  38861. manaDragon: {
  38862. height: math.unit(170, "meters"),
  38863. name: "Mana-dragon",
  38864. image: {
  38865. source: "./media/characters/daiki/mana-dragon.svg",
  38866. extra: 763/420,
  38867. bottom: 97/860
  38868. }
  38869. },
  38870. },
  38871. [
  38872. {
  38873. name: "Normal",
  38874. height: math.unit(5 + 10/12, "feet"),
  38875. default: true
  38876. },
  38877. ]
  38878. ))
  38879. characterMakers.push(() => makeCharacter(
  38880. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38881. {
  38882. fullyEquippedFront: {
  38883. height: math.unit(3 + 1/12, "feet"),
  38884. weight: math.unit(24, "lb"),
  38885. name: "Fully Equipped (Front)",
  38886. image: {
  38887. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38888. extra: 687/605,
  38889. bottom: 18/705
  38890. }
  38891. },
  38892. fullyEquippedBack: {
  38893. height: math.unit(3 + 1/12, "feet"),
  38894. weight: math.unit(24, "lb"),
  38895. name: "Fully Equipped (Back)",
  38896. image: {
  38897. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38898. extra: 689/590,
  38899. bottom: 18/707
  38900. }
  38901. },
  38902. dailyWear: {
  38903. height: math.unit(3 + 1/12, "feet"),
  38904. weight: math.unit(24, "lb"),
  38905. name: "Daily Wear",
  38906. image: {
  38907. source: "./media/characters/tea-spot/daily-wear.svg",
  38908. extra: 701/620,
  38909. bottom: 21/722
  38910. }
  38911. },
  38912. maidWork: {
  38913. height: math.unit(3 + 1/12, "feet"),
  38914. weight: math.unit(24, "lb"),
  38915. name: "Maid Work",
  38916. image: {
  38917. source: "./media/characters/tea-spot/maid-work.svg",
  38918. extra: 693/609,
  38919. bottom: 15/708
  38920. }
  38921. },
  38922. },
  38923. [
  38924. {
  38925. name: "Normal",
  38926. height: math.unit(3 + 1/12, "feet"),
  38927. default: true
  38928. },
  38929. ]
  38930. ))
  38931. characterMakers.push(() => makeCharacter(
  38932. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38933. {
  38934. front: {
  38935. height: math.unit(175, "cm"),
  38936. weight: math.unit(75, "kg"),
  38937. name: "Front",
  38938. image: {
  38939. source: "./media/characters/chee/front.svg",
  38940. extra: 1796/1740,
  38941. bottom: 40/1836
  38942. }
  38943. },
  38944. },
  38945. [
  38946. {
  38947. name: "Micro-Micro",
  38948. height: math.unit(1, "nm")
  38949. },
  38950. {
  38951. name: "Micro-erst",
  38952. height: math.unit(1, "micrometer")
  38953. },
  38954. {
  38955. name: "Micro-er",
  38956. height: math.unit(1, "cm")
  38957. },
  38958. {
  38959. name: "Normal",
  38960. height: math.unit(175, "cm"),
  38961. default: true
  38962. },
  38963. {
  38964. name: "Macro",
  38965. height: math.unit(100, "m")
  38966. },
  38967. {
  38968. name: "Macro-er",
  38969. height: math.unit(1, "km")
  38970. },
  38971. {
  38972. name: "Macro-erst",
  38973. height: math.unit(10, "km")
  38974. },
  38975. {
  38976. name: "Macro-Macro",
  38977. height: math.unit(100, "km")
  38978. },
  38979. ]
  38980. ))
  38981. characterMakers.push(() => makeCharacter(
  38982. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38983. {
  38984. front: {
  38985. height: math.unit(11 + 9/12, "feet"),
  38986. weight: math.unit(935, "lb"),
  38987. name: "Front",
  38988. image: {
  38989. source: "./media/characters/kingsley/front.svg",
  38990. extra: 1803/1674,
  38991. bottom: 127/1930
  38992. }
  38993. },
  38994. frontNude: {
  38995. height: math.unit(11 + 9/12, "feet"),
  38996. weight: math.unit(935, "lb"),
  38997. name: "Front (Nude)",
  38998. image: {
  38999. source: "./media/characters/kingsley/front-nude.svg",
  39000. extra: 1803/1674,
  39001. bottom: 127/1930
  39002. }
  39003. },
  39004. },
  39005. [
  39006. {
  39007. name: "Normal",
  39008. height: math.unit(11 + 9/12, "feet"),
  39009. default: true
  39010. },
  39011. ]
  39012. ))
  39013. characterMakers.push(() => makeCharacter(
  39014. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39015. {
  39016. side: {
  39017. height: math.unit(9, "feet"),
  39018. name: "Side",
  39019. image: {
  39020. source: "./media/characters/rymel/side.svg",
  39021. extra: 792/469,
  39022. bottom: 121/913
  39023. }
  39024. },
  39025. maw: {
  39026. height: math.unit(2.4, "meters"),
  39027. name: "Maw",
  39028. image: {
  39029. source: "./media/characters/rymel/maw.svg"
  39030. }
  39031. },
  39032. },
  39033. [
  39034. {
  39035. name: "House Drake",
  39036. height: math.unit(2, "feet")
  39037. },
  39038. {
  39039. name: "Reduced",
  39040. height: math.unit(4.5, "feet")
  39041. },
  39042. {
  39043. name: "Normal",
  39044. height: math.unit(9, "feet"),
  39045. default: true
  39046. },
  39047. ]
  39048. ))
  39049. characterMakers.push(() => makeCharacter(
  39050. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39051. {
  39052. front: {
  39053. height: math.unit(1.74, "meters"),
  39054. weight: math.unit(55, "kg"),
  39055. name: "Front",
  39056. image: {
  39057. source: "./media/characters/rubus/front.svg",
  39058. extra: 1894/1742,
  39059. bottom: 44/1938
  39060. }
  39061. },
  39062. },
  39063. [
  39064. {
  39065. name: "Normal",
  39066. height: math.unit(1.74, "meters"),
  39067. default: true
  39068. },
  39069. ]
  39070. ))
  39071. characterMakers.push(() => makeCharacter(
  39072. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39073. {
  39074. front: {
  39075. height: math.unit(5 + 2/12, "feet"),
  39076. weight: math.unit(112, "lb"),
  39077. name: "Front",
  39078. image: {
  39079. source: "./media/characters/cassie-kingston/front.svg",
  39080. extra: 1438/1390,
  39081. bottom: 47/1485
  39082. }
  39083. },
  39084. },
  39085. [
  39086. {
  39087. name: "Normal",
  39088. height: math.unit(5 + 2/12, "feet"),
  39089. default: true
  39090. },
  39091. {
  39092. name: "Macro",
  39093. height: math.unit(128, "feet")
  39094. },
  39095. {
  39096. name: "Megamacro",
  39097. height: math.unit(2.56, "miles")
  39098. },
  39099. ]
  39100. ))
  39101. characterMakers.push(() => makeCharacter(
  39102. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39103. {
  39104. front: {
  39105. height: math.unit(7, "feet"),
  39106. name: "Front",
  39107. image: {
  39108. source: "./media/characters/fox/front.svg",
  39109. extra: 1798/1703,
  39110. bottom: 55/1853
  39111. }
  39112. },
  39113. back: {
  39114. height: math.unit(7, "feet"),
  39115. name: "Back",
  39116. image: {
  39117. source: "./media/characters/fox/back.svg",
  39118. extra: 1748/1649,
  39119. bottom: 32/1780
  39120. }
  39121. },
  39122. head: {
  39123. height: math.unit(1.95, "feet"),
  39124. name: "Head",
  39125. image: {
  39126. source: "./media/characters/fox/head.svg"
  39127. }
  39128. },
  39129. dick: {
  39130. height: math.unit(1.33, "feet"),
  39131. name: "Dick",
  39132. image: {
  39133. source: "./media/characters/fox/dick.svg"
  39134. }
  39135. },
  39136. foot: {
  39137. height: math.unit(1, "feet"),
  39138. name: "Foot",
  39139. image: {
  39140. source: "./media/characters/fox/foot.svg"
  39141. }
  39142. },
  39143. paw: {
  39144. height: math.unit(0.92, "feet"),
  39145. name: "Paw",
  39146. image: {
  39147. source: "./media/characters/fox/paw.svg"
  39148. }
  39149. },
  39150. },
  39151. [
  39152. {
  39153. name: "Small",
  39154. height: math.unit(3, "inches")
  39155. },
  39156. {
  39157. name: "\"Realistic\"",
  39158. height: math.unit(7, "feet")
  39159. },
  39160. {
  39161. name: "Normal",
  39162. height: math.unit(150, "feet"),
  39163. default: true
  39164. },
  39165. {
  39166. name: "BIG",
  39167. height: math.unit(1200, "feet")
  39168. },
  39169. {
  39170. name: "👀",
  39171. height: math.unit(5, "miles")
  39172. },
  39173. {
  39174. name: "👀👀👀",
  39175. height: math.unit(64, "miles")
  39176. },
  39177. ]
  39178. ))
  39179. characterMakers.push(() => makeCharacter(
  39180. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39181. {
  39182. front: {
  39183. height: math.unit(625, "feet"),
  39184. name: "Front",
  39185. image: {
  39186. source: "./media/characters/asonja-rossa/front.svg",
  39187. extra: 1833/1686,
  39188. bottom: 24/1857
  39189. }
  39190. },
  39191. back: {
  39192. height: math.unit(625, "feet"),
  39193. name: "Back",
  39194. image: {
  39195. source: "./media/characters/asonja-rossa/back.svg",
  39196. extra: 1852/1753,
  39197. bottom: 26/1878
  39198. }
  39199. },
  39200. },
  39201. [
  39202. {
  39203. name: "Macro",
  39204. height: math.unit(625, "feet"),
  39205. default: true
  39206. },
  39207. ]
  39208. ))
  39209. characterMakers.push(() => makeCharacter(
  39210. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39211. {
  39212. side: {
  39213. height: math.unit(8, "feet"),
  39214. name: "Side",
  39215. image: {
  39216. source: "./media/characters/rezukii/side.svg",
  39217. extra: 979/542,
  39218. bottom: 87/1066
  39219. }
  39220. },
  39221. sitting: {
  39222. height: math.unit(14.6, "feet"),
  39223. name: "Sitting",
  39224. image: {
  39225. source: "./media/characters/rezukii/sitting.svg",
  39226. extra: 1023/813,
  39227. bottom: 45/1068
  39228. }
  39229. },
  39230. },
  39231. [
  39232. {
  39233. name: "Tiny",
  39234. height: math.unit(2, "feet")
  39235. },
  39236. {
  39237. name: "Smol",
  39238. height: math.unit(4, "feet")
  39239. },
  39240. {
  39241. name: "Normal",
  39242. height: math.unit(8, "feet"),
  39243. default: true
  39244. },
  39245. {
  39246. name: "Big",
  39247. height: math.unit(12, "feet")
  39248. },
  39249. {
  39250. name: "Macro",
  39251. height: math.unit(30, "feet")
  39252. },
  39253. ]
  39254. ))
  39255. characterMakers.push(() => makeCharacter(
  39256. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39257. {
  39258. front: {
  39259. height: math.unit(14, "feet"),
  39260. weight: math.unit(9.5, "tonnes"),
  39261. name: "Front",
  39262. image: {
  39263. source: "./media/characters/dawnheart/front.svg",
  39264. extra: 2792/2675,
  39265. bottom: 64/2856
  39266. }
  39267. },
  39268. },
  39269. [
  39270. {
  39271. name: "Normal",
  39272. height: math.unit(14, "feet"),
  39273. default: true
  39274. },
  39275. ]
  39276. ))
  39277. characterMakers.push(() => makeCharacter(
  39278. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39279. {
  39280. front: {
  39281. height: math.unit(1.7, "m"),
  39282. name: "Front",
  39283. image: {
  39284. source: "./media/characters/gladi/front.svg",
  39285. extra: 1460/1362,
  39286. bottom: 19/1479
  39287. }
  39288. },
  39289. back: {
  39290. height: math.unit(1.7, "m"),
  39291. name: "Back",
  39292. image: {
  39293. source: "./media/characters/gladi/back.svg",
  39294. extra: 1459/1357,
  39295. bottom: 12/1471
  39296. }
  39297. },
  39298. feral: {
  39299. height: math.unit(2.05, "m"),
  39300. name: "Feral",
  39301. image: {
  39302. source: "./media/characters/gladi/feral.svg",
  39303. extra: 821/557,
  39304. bottom: 91/912
  39305. }
  39306. },
  39307. },
  39308. [
  39309. {
  39310. name: "Shortest",
  39311. height: math.unit(70, "cm")
  39312. },
  39313. {
  39314. name: "Normal",
  39315. height: math.unit(1.7, "m")
  39316. },
  39317. {
  39318. name: "Macro",
  39319. height: math.unit(10, "m"),
  39320. default: true
  39321. },
  39322. {
  39323. name: "Tallest",
  39324. height: math.unit(200, "m")
  39325. },
  39326. ]
  39327. ))
  39328. characterMakers.push(() => makeCharacter(
  39329. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39330. {
  39331. front: {
  39332. height: math.unit(5 + 7/12, "feet"),
  39333. weight: math.unit(2, "tons"),
  39334. name: "Front",
  39335. image: {
  39336. source: "./media/characters/erdno/front.svg",
  39337. extra: 1234/1129,
  39338. bottom: 35/1269
  39339. }
  39340. },
  39341. angled: {
  39342. height: math.unit(5 + 7/12, "feet"),
  39343. weight: math.unit(2, "tons"),
  39344. name: "Angled",
  39345. image: {
  39346. source: "./media/characters/erdno/angled.svg",
  39347. extra: 1185/1139,
  39348. bottom: 36/1221
  39349. }
  39350. },
  39351. side: {
  39352. height: math.unit(5 + 7/12, "feet"),
  39353. weight: math.unit(2, "tons"),
  39354. name: "Side",
  39355. image: {
  39356. source: "./media/characters/erdno/side.svg",
  39357. extra: 1191/1144,
  39358. bottom: 40/1231
  39359. }
  39360. },
  39361. back: {
  39362. height: math.unit(5 + 7/12, "feet"),
  39363. weight: math.unit(2, "tons"),
  39364. name: "Back",
  39365. image: {
  39366. source: "./media/characters/erdno/back.svg",
  39367. extra: 1202/1146,
  39368. bottom: 17/1219
  39369. }
  39370. },
  39371. frontNsfw: {
  39372. height: math.unit(5 + 7/12, "feet"),
  39373. weight: math.unit(2, "tons"),
  39374. name: "Front (NSFW)",
  39375. image: {
  39376. source: "./media/characters/erdno/front-nsfw.svg",
  39377. extra: 1234/1129,
  39378. bottom: 35/1269
  39379. }
  39380. },
  39381. angledNsfw: {
  39382. height: math.unit(5 + 7/12, "feet"),
  39383. weight: math.unit(2, "tons"),
  39384. name: "Angled (NSFW)",
  39385. image: {
  39386. source: "./media/characters/erdno/angled-nsfw.svg",
  39387. extra: 1185/1139,
  39388. bottom: 36/1221
  39389. }
  39390. },
  39391. sideNsfw: {
  39392. height: math.unit(5 + 7/12, "feet"),
  39393. weight: math.unit(2, "tons"),
  39394. name: "Side (NSFW)",
  39395. image: {
  39396. source: "./media/characters/erdno/side-nsfw.svg",
  39397. extra: 1191/1144,
  39398. bottom: 40/1231
  39399. }
  39400. },
  39401. backNsfw: {
  39402. height: math.unit(5 + 7/12, "feet"),
  39403. weight: math.unit(2, "tons"),
  39404. name: "Back (NSFW)",
  39405. image: {
  39406. source: "./media/characters/erdno/back-nsfw.svg",
  39407. extra: 1202/1146,
  39408. bottom: 17/1219
  39409. }
  39410. },
  39411. frontHyper: {
  39412. height: math.unit(5 + 7/12, "feet"),
  39413. weight: math.unit(2, "tons"),
  39414. name: "Front (Hyper)",
  39415. image: {
  39416. source: "./media/characters/erdno/front-hyper.svg",
  39417. extra: 1298/1136,
  39418. bottom: 35/1333
  39419. }
  39420. },
  39421. },
  39422. [
  39423. {
  39424. name: "Normal",
  39425. height: math.unit(5 + 7/12, "feet"),
  39426. default: true
  39427. },
  39428. {
  39429. name: "Big",
  39430. height: math.unit(5.7, "meters")
  39431. },
  39432. {
  39433. name: "Macro",
  39434. height: math.unit(5.7, "kilometers")
  39435. },
  39436. {
  39437. name: "Megamacro",
  39438. height: math.unit(5.7, "earths")
  39439. },
  39440. ]
  39441. ))
  39442. characterMakers.push(() => makeCharacter(
  39443. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39444. {
  39445. front: {
  39446. height: math.unit(5 + 10/12, "feet"),
  39447. weight: math.unit(150, "lb"),
  39448. name: "Front",
  39449. image: {
  39450. source: "./media/characters/jamie/front.svg",
  39451. extra: 1908/1768,
  39452. bottom: 19/1927
  39453. }
  39454. },
  39455. },
  39456. [
  39457. {
  39458. name: "Minimum",
  39459. height: math.unit(2, "cm")
  39460. },
  39461. {
  39462. name: "Micro",
  39463. height: math.unit(3, "inches")
  39464. },
  39465. {
  39466. name: "Normal",
  39467. height: math.unit(5 + 10/12, "feet"),
  39468. default: true
  39469. },
  39470. {
  39471. name: "Macro",
  39472. height: math.unit(150, "feet")
  39473. },
  39474. {
  39475. name: "Megamacro",
  39476. height: math.unit(10000, "m")
  39477. },
  39478. ]
  39479. ))
  39480. characterMakers.push(() => makeCharacter(
  39481. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39482. {
  39483. front: {
  39484. height: math.unit(2, "meters"),
  39485. weight: math.unit(100, "kg"),
  39486. name: "Front",
  39487. image: {
  39488. source: "./media/characters/shiron/front.svg",
  39489. extra: 2103/1985,
  39490. bottom: 98/2201
  39491. }
  39492. },
  39493. back: {
  39494. height: math.unit(2, "meters"),
  39495. weight: math.unit(100, "kg"),
  39496. name: "Back",
  39497. image: {
  39498. source: "./media/characters/shiron/back.svg",
  39499. extra: 2110/2015,
  39500. bottom: 89/2199
  39501. }
  39502. },
  39503. hand: {
  39504. height: math.unit(0.96, "feet"),
  39505. name: "Hand",
  39506. image: {
  39507. source: "./media/characters/shiron/hand.svg"
  39508. }
  39509. },
  39510. foot: {
  39511. height: math.unit(1.464, "feet"),
  39512. name: "Foot",
  39513. image: {
  39514. source: "./media/characters/shiron/foot.svg"
  39515. }
  39516. },
  39517. },
  39518. [
  39519. {
  39520. name: "Normal",
  39521. height: math.unit(2, "meters")
  39522. },
  39523. {
  39524. name: "Macro",
  39525. height: math.unit(500, "meters"),
  39526. default: true
  39527. },
  39528. {
  39529. name: "Megamacro",
  39530. height: math.unit(20, "km")
  39531. },
  39532. ]
  39533. ))
  39534. characterMakers.push(() => makeCharacter(
  39535. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39536. {
  39537. front: {
  39538. height: math.unit(6, "feet"),
  39539. name: "Front",
  39540. image: {
  39541. source: "./media/characters/sam/front.svg",
  39542. extra: 849/826,
  39543. bottom: 19/868
  39544. }
  39545. },
  39546. },
  39547. [
  39548. {
  39549. name: "Normal",
  39550. height: math.unit(6, "feet"),
  39551. default: true
  39552. },
  39553. ]
  39554. ))
  39555. characterMakers.push(() => makeCharacter(
  39556. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39557. {
  39558. front: {
  39559. height: math.unit(8 + 4/12, "feet"),
  39560. weight: math.unit(122, "kg"),
  39561. name: "Front",
  39562. image: {
  39563. source: "./media/characters/namori-kurogawa/front.svg",
  39564. extra: 1894/1576,
  39565. bottom: 34/1928
  39566. }
  39567. },
  39568. },
  39569. [
  39570. {
  39571. name: "Normal",
  39572. height: math.unit(8 + 4/12, "feet"),
  39573. default: true
  39574. },
  39575. ]
  39576. ))
  39577. characterMakers.push(() => makeCharacter(
  39578. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39579. {
  39580. front: {
  39581. height: math.unit(9, "feet"),
  39582. weight: math.unit(621, "lb"),
  39583. name: "Front",
  39584. image: {
  39585. source: "./media/characters/unmru/front.svg",
  39586. extra: 1853/1747,
  39587. bottom: 73/1926
  39588. }
  39589. },
  39590. side: {
  39591. height: math.unit(9, "feet"),
  39592. weight: math.unit(621, "lb"),
  39593. name: "Side",
  39594. image: {
  39595. source: "./media/characters/unmru/side.svg",
  39596. extra: 1781/1671,
  39597. bottom: 127/1908
  39598. }
  39599. },
  39600. back: {
  39601. height: math.unit(9, "feet"),
  39602. weight: math.unit(621, "lb"),
  39603. name: "Back",
  39604. image: {
  39605. source: "./media/characters/unmru/back.svg",
  39606. extra: 1894/1765,
  39607. bottom: 75/1969
  39608. }
  39609. },
  39610. dick: {
  39611. height: math.unit(3, "feet"),
  39612. weight: math.unit(35, "lb"),
  39613. name: "Dick",
  39614. image: {
  39615. source: "./media/characters/unmru/dick.svg"
  39616. }
  39617. },
  39618. },
  39619. [
  39620. {
  39621. name: "Normal",
  39622. height: math.unit(9, "feet")
  39623. },
  39624. {
  39625. name: "Natural",
  39626. height: math.unit(27, "feet"),
  39627. default: true
  39628. },
  39629. {
  39630. name: "Giant",
  39631. height: math.unit(90, "feet")
  39632. },
  39633. {
  39634. name: "Kaiju",
  39635. height: math.unit(270, "feet")
  39636. },
  39637. {
  39638. name: "Macro",
  39639. height: math.unit(900, "feet")
  39640. },
  39641. {
  39642. name: "Macro+",
  39643. height: math.unit(2700, "feet")
  39644. },
  39645. {
  39646. name: "Megamacro",
  39647. height: math.unit(9000, "feet")
  39648. },
  39649. {
  39650. name: "City-Crushing",
  39651. height: math.unit(27000, "feet")
  39652. },
  39653. {
  39654. name: "Mountain-Mashing",
  39655. height: math.unit(90000, "feet")
  39656. },
  39657. {
  39658. name: "Earth-Eclipsing",
  39659. height: math.unit(2.7e8, "feet")
  39660. },
  39661. {
  39662. name: "Sol-Swallowing",
  39663. height: math.unit(9e10, "feet")
  39664. },
  39665. {
  39666. name: "Majoris-Munching",
  39667. height: math.unit(2.7e13, "feet")
  39668. },
  39669. ]
  39670. ))
  39671. characterMakers.push(() => makeCharacter(
  39672. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39673. {
  39674. front: {
  39675. height: math.unit(1, "inch"),
  39676. name: "Front",
  39677. image: {
  39678. source: "./media/characters/squeaks-mouse/front.svg",
  39679. extra: 352/308,
  39680. bottom: 25/377
  39681. }
  39682. },
  39683. },
  39684. [
  39685. {
  39686. name: "Micro",
  39687. height: math.unit(1, "inch"),
  39688. default: true
  39689. },
  39690. ]
  39691. ))
  39692. characterMakers.push(() => makeCharacter(
  39693. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39694. {
  39695. side: {
  39696. height: math.unit(35, "feet"),
  39697. name: "Side",
  39698. image: {
  39699. source: "./media/characters/sayko/side.svg",
  39700. extra: 1697/1021,
  39701. bottom: 82/1779
  39702. }
  39703. },
  39704. head: {
  39705. height: math.unit(16, "feet"),
  39706. name: "Head",
  39707. image: {
  39708. source: "./media/characters/sayko/head.svg"
  39709. }
  39710. },
  39711. forepaw: {
  39712. height: math.unit(7.85, "feet"),
  39713. name: "Forepaw",
  39714. image: {
  39715. source: "./media/characters/sayko/forepaw.svg"
  39716. }
  39717. },
  39718. hindpaw: {
  39719. height: math.unit(8.8, "feet"),
  39720. name: "Hindpaw",
  39721. image: {
  39722. source: "./media/characters/sayko/hindpaw.svg"
  39723. }
  39724. },
  39725. },
  39726. [
  39727. {
  39728. name: "Normal",
  39729. height: math.unit(35, "feet"),
  39730. default: true
  39731. },
  39732. {
  39733. name: "Colossus",
  39734. height: math.unit(100, "meters")
  39735. },
  39736. {
  39737. name: "\"Small\" Deity",
  39738. height: math.unit(1, "km")
  39739. },
  39740. {
  39741. name: "\"Large\" Deity",
  39742. height: math.unit(15, "km")
  39743. },
  39744. ]
  39745. ))
  39746. characterMakers.push(() => makeCharacter(
  39747. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39748. {
  39749. front: {
  39750. height: math.unit(6, "feet"),
  39751. weight: math.unit(250, "lb"),
  39752. name: "Front",
  39753. image: {
  39754. source: "./media/characters/mukiro/front.svg",
  39755. extra: 1368/1310,
  39756. bottom: 34/1402
  39757. }
  39758. },
  39759. },
  39760. [
  39761. {
  39762. name: "Normal",
  39763. height: math.unit(6, "feet"),
  39764. default: true
  39765. },
  39766. ]
  39767. ))
  39768. characterMakers.push(() => makeCharacter(
  39769. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39770. {
  39771. front: {
  39772. height: math.unit(12 + 4/12, "feet"),
  39773. name: "Front",
  39774. image: {
  39775. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39776. extra: 1346/1311,
  39777. bottom: 65/1411
  39778. }
  39779. },
  39780. },
  39781. [
  39782. {
  39783. name: "Base",
  39784. height: math.unit(12 + 4/12, "feet"),
  39785. default: true
  39786. },
  39787. {
  39788. name: "Macro",
  39789. height: math.unit(150, "feet")
  39790. },
  39791. {
  39792. name: "Mega",
  39793. height: math.unit(2, "miles")
  39794. },
  39795. {
  39796. name: "Demi God",
  39797. height: math.unit(4, "AU")
  39798. },
  39799. {
  39800. name: "God Size",
  39801. height: math.unit(1, "universe")
  39802. },
  39803. ]
  39804. ))
  39805. characterMakers.push(() => makeCharacter(
  39806. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39807. {
  39808. front: {
  39809. height: math.unit(3 + 3/12, "feet"),
  39810. weight: math.unit(88, "lb"),
  39811. name: "Front",
  39812. image: {
  39813. source: "./media/characters/trey/front.svg",
  39814. extra: 1815/1509,
  39815. bottom: 60/1875
  39816. }
  39817. },
  39818. },
  39819. [
  39820. {
  39821. name: "Normal",
  39822. height: math.unit(3 + 3/12, "feet"),
  39823. default: true
  39824. },
  39825. ]
  39826. ))
  39827. characterMakers.push(() => makeCharacter(
  39828. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39829. {
  39830. front: {
  39831. height: math.unit(4, "meters"),
  39832. name: "Front",
  39833. image: {
  39834. source: "./media/characters/adelonda/front.svg",
  39835. extra: 1077/982,
  39836. bottom: 39/1116
  39837. }
  39838. },
  39839. back: {
  39840. height: math.unit(4, "meters"),
  39841. name: "Back",
  39842. image: {
  39843. source: "./media/characters/adelonda/back.svg",
  39844. extra: 1105/1003,
  39845. bottom: 25/1130
  39846. }
  39847. },
  39848. feral: {
  39849. height: math.unit(40/1.5, "meters"),
  39850. name: "Feral",
  39851. image: {
  39852. source: "./media/characters/adelonda/feral.svg",
  39853. extra: 597/271,
  39854. bottom: 387/984
  39855. }
  39856. },
  39857. },
  39858. [
  39859. {
  39860. name: "Normal",
  39861. height: math.unit(4, "meters"),
  39862. default: true
  39863. },
  39864. ]
  39865. ))
  39866. characterMakers.push(() => makeCharacter(
  39867. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39868. {
  39869. front: {
  39870. height: math.unit(8 + 4/12, "feet"),
  39871. weight: math.unit(670, "lb"),
  39872. name: "Front",
  39873. image: {
  39874. source: "./media/characters/acadiel/front.svg",
  39875. extra: 1901/1595,
  39876. bottom: 142/2043
  39877. }
  39878. },
  39879. },
  39880. [
  39881. {
  39882. name: "Normal",
  39883. height: math.unit(8 + 4/12, "feet"),
  39884. default: true
  39885. },
  39886. {
  39887. name: "Macro",
  39888. height: math.unit(200, "feet")
  39889. },
  39890. ]
  39891. ))
  39892. characterMakers.push(() => makeCharacter(
  39893. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39894. {
  39895. front: {
  39896. height: math.unit(6 + 2/12, "feet"),
  39897. weight: math.unit(185, "lb"),
  39898. name: "Front",
  39899. image: {
  39900. source: "./media/characters/kayne-ein/front.svg",
  39901. extra: 1780/1560,
  39902. bottom: 81/1861
  39903. }
  39904. },
  39905. },
  39906. [
  39907. {
  39908. name: "Normal",
  39909. height: math.unit(6 + 2/12, "feet"),
  39910. default: true
  39911. },
  39912. {
  39913. name: "Transformation Stage",
  39914. height: math.unit(15, "feet")
  39915. },
  39916. {
  39917. name: "Macro",
  39918. height: math.unit(150, "feet")
  39919. },
  39920. {
  39921. name: "Earth's Shadow",
  39922. height: math.unit(6200, "miles")
  39923. },
  39924. {
  39925. name: "Universal Demon",
  39926. height: math.unit(28e9, "parsecs")
  39927. },
  39928. {
  39929. name: "Multiverse God",
  39930. height: math.unit(3, "multiverses")
  39931. },
  39932. ]
  39933. ))
  39934. characterMakers.push(() => makeCharacter(
  39935. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39936. {
  39937. front: {
  39938. height: math.unit(5 + 5/12, "feet"),
  39939. name: "Front",
  39940. image: {
  39941. source: "./media/characters/fawn/front.svg",
  39942. extra: 1873/1731,
  39943. bottom: 95/1968
  39944. }
  39945. },
  39946. back: {
  39947. height: math.unit(5 + 5/12, "feet"),
  39948. name: "Back",
  39949. image: {
  39950. source: "./media/characters/fawn/back.svg",
  39951. extra: 1813/1700,
  39952. bottom: 14/1827
  39953. }
  39954. },
  39955. hoof: {
  39956. height: math.unit(1.45, "feet"),
  39957. name: "Hoof",
  39958. image: {
  39959. source: "./media/characters/fawn/hoof.svg"
  39960. }
  39961. },
  39962. },
  39963. [
  39964. {
  39965. name: "Normal",
  39966. height: math.unit(5 + 5/12, "feet"),
  39967. default: true
  39968. },
  39969. ]
  39970. ))
  39971. characterMakers.push(() => makeCharacter(
  39972. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39973. {
  39974. front: {
  39975. height: math.unit(2 + 5/12, "feet"),
  39976. name: "Front",
  39977. image: {
  39978. source: "./media/characters/orion/front.svg",
  39979. extra: 1366/1304,
  39980. bottom: 43/1409
  39981. }
  39982. },
  39983. paw: {
  39984. height: math.unit(0.52, "feet"),
  39985. name: "Paw",
  39986. image: {
  39987. source: "./media/characters/orion/paw.svg"
  39988. }
  39989. },
  39990. },
  39991. [
  39992. {
  39993. name: "Normal",
  39994. height: math.unit(2 + 5/12, "feet"),
  39995. default: true
  39996. },
  39997. ]
  39998. ))
  39999. characterMakers.push(() => makeCharacter(
  40000. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40001. {
  40002. front: {
  40003. height: math.unit(5 + 10/12, "feet"),
  40004. name: "Front",
  40005. image: {
  40006. source: "./media/characters/vera/front.svg",
  40007. extra: 1680/1575,
  40008. bottom: 49/1729
  40009. }
  40010. },
  40011. back: {
  40012. height: math.unit(5 + 10/12, "feet"),
  40013. name: "Back",
  40014. image: {
  40015. source: "./media/characters/vera/back.svg",
  40016. extra: 1700/1588,
  40017. bottom: 18/1718
  40018. }
  40019. },
  40020. arcanine: {
  40021. height: math.unit(6 + 8/12, "feet"),
  40022. name: "Arcanine",
  40023. image: {
  40024. source: "./media/characters/vera/arcanine.svg",
  40025. extra: 1590/1511,
  40026. bottom: 71/1661
  40027. }
  40028. },
  40029. maw: {
  40030. height: math.unit(0.82, "feet"),
  40031. name: "Maw",
  40032. image: {
  40033. source: "./media/characters/vera/maw.svg"
  40034. }
  40035. },
  40036. mawArcanine: {
  40037. height: math.unit(0.97, "feet"),
  40038. name: "Maw (Arcanine)",
  40039. image: {
  40040. source: "./media/characters/vera/maw-arcanine.svg"
  40041. }
  40042. },
  40043. paw: {
  40044. height: math.unit(0.75, "feet"),
  40045. name: "Paw",
  40046. image: {
  40047. source: "./media/characters/vera/paw.svg"
  40048. }
  40049. },
  40050. pawprint: {
  40051. height: math.unit(0.52, "feet"),
  40052. name: "Pawprint",
  40053. image: {
  40054. source: "./media/characters/vera/pawprint.svg"
  40055. }
  40056. },
  40057. },
  40058. [
  40059. {
  40060. name: "Normal",
  40061. height: math.unit(5 + 10/12, "feet"),
  40062. default: true
  40063. },
  40064. {
  40065. name: "Macro",
  40066. height: math.unit(75, "feet")
  40067. },
  40068. ]
  40069. ))
  40070. characterMakers.push(() => makeCharacter(
  40071. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40072. {
  40073. front: {
  40074. height: math.unit(4, "feet"),
  40075. weight: math.unit(40, "lb"),
  40076. name: "Front",
  40077. image: {
  40078. source: "./media/characters/orvan-rabbit/front.svg",
  40079. extra: 1896/1642,
  40080. bottom: 29/1925
  40081. }
  40082. },
  40083. },
  40084. [
  40085. {
  40086. name: "Normal",
  40087. height: math.unit(4, "feet"),
  40088. default: true
  40089. },
  40090. ]
  40091. ))
  40092. characterMakers.push(() => makeCharacter(
  40093. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40094. {
  40095. front: {
  40096. height: math.unit(6, "feet"),
  40097. weight: math.unit(168, "lb"),
  40098. name: "Front",
  40099. image: {
  40100. source: "./media/characters/lisa/front.svg",
  40101. extra: 2065/1867,
  40102. bottom: 46/2111
  40103. }
  40104. },
  40105. back: {
  40106. height: math.unit(6, "feet"),
  40107. weight: math.unit(168, "lb"),
  40108. name: "Back",
  40109. image: {
  40110. source: "./media/characters/lisa/back.svg",
  40111. extra: 1982/1838,
  40112. bottom: 29/2011
  40113. }
  40114. },
  40115. maw: {
  40116. height: math.unit(0.81, "feet"),
  40117. name: "Maw",
  40118. image: {
  40119. source: "./media/characters/lisa/maw.svg"
  40120. }
  40121. },
  40122. paw: {
  40123. height: math.unit(0.9, "feet"),
  40124. name: "Paw",
  40125. image: {
  40126. source: "./media/characters/lisa/paw.svg"
  40127. }
  40128. },
  40129. caribousune: {
  40130. height: math.unit(7 + 2/12, "feet"),
  40131. weight: math.unit(268, "lb"),
  40132. name: "Caribousune",
  40133. image: {
  40134. source: "./media/characters/lisa/caribousune.svg",
  40135. extra: 1843/1633,
  40136. bottom: 29/1872
  40137. }
  40138. },
  40139. frontCaribousune: {
  40140. height: math.unit(7 + 2/12, "feet"),
  40141. weight: math.unit(268, "lb"),
  40142. name: "Front (Caribousune)",
  40143. image: {
  40144. source: "./media/characters/lisa/front-caribousune.svg",
  40145. extra: 1818/1638,
  40146. bottom: 52/1870
  40147. }
  40148. },
  40149. sideCaribousune: {
  40150. height: math.unit(7 + 2/12, "feet"),
  40151. weight: math.unit(268, "lb"),
  40152. name: "Side (Caribousune)",
  40153. image: {
  40154. source: "./media/characters/lisa/side-caribousune.svg",
  40155. extra: 1851/1635,
  40156. bottom: 16/1867
  40157. }
  40158. },
  40159. backCaribousune: {
  40160. height: math.unit(7 + 2/12, "feet"),
  40161. weight: math.unit(268, "lb"),
  40162. name: "Back (Caribousune)",
  40163. image: {
  40164. source: "./media/characters/lisa/back-caribousune.svg",
  40165. extra: 1801/1604,
  40166. bottom: 44/1845
  40167. }
  40168. },
  40169. caribou: {
  40170. height: math.unit(7 + 2/12, "feet"),
  40171. weight: math.unit(268, "lb"),
  40172. name: "Caribou",
  40173. image: {
  40174. source: "./media/characters/lisa/caribou.svg",
  40175. extra: 1843/1633,
  40176. bottom: 29/1872
  40177. }
  40178. },
  40179. frontCaribou: {
  40180. height: math.unit(7 + 2/12, "feet"),
  40181. weight: math.unit(268, "lb"),
  40182. name: "Front (Caribou)",
  40183. image: {
  40184. source: "./media/characters/lisa/front-caribou.svg",
  40185. extra: 1818/1638,
  40186. bottom: 52/1870
  40187. }
  40188. },
  40189. sideCaribou: {
  40190. height: math.unit(7 + 2/12, "feet"),
  40191. weight: math.unit(268, "lb"),
  40192. name: "Side (Caribou)",
  40193. image: {
  40194. source: "./media/characters/lisa/side-caribou.svg",
  40195. extra: 1851/1635,
  40196. bottom: 16/1867
  40197. }
  40198. },
  40199. backCaribou: {
  40200. height: math.unit(7 + 2/12, "feet"),
  40201. weight: math.unit(268, "lb"),
  40202. name: "Back (Caribou)",
  40203. image: {
  40204. source: "./media/characters/lisa/back-caribou.svg",
  40205. extra: 1801/1604,
  40206. bottom: 44/1845
  40207. }
  40208. },
  40209. mawCaribou: {
  40210. height: math.unit(1.45, "feet"),
  40211. name: "Maw (Caribou)",
  40212. image: {
  40213. source: "./media/characters/lisa/maw-caribou.svg"
  40214. }
  40215. },
  40216. mawCaribousune: {
  40217. height: math.unit(1.45, "feet"),
  40218. name: "Maw (Caribousune)",
  40219. image: {
  40220. source: "./media/characters/lisa/maw-caribousune.svg"
  40221. }
  40222. },
  40223. pawCaribousune: {
  40224. height: math.unit(1.61, "feet"),
  40225. name: "Paw (Caribou)",
  40226. image: {
  40227. source: "./media/characters/lisa/paw-caribousune.svg"
  40228. }
  40229. },
  40230. },
  40231. [
  40232. {
  40233. name: "Normal",
  40234. height: math.unit(6, "feet")
  40235. },
  40236. {
  40237. name: "God Size",
  40238. height: math.unit(72, "feet"),
  40239. default: true
  40240. },
  40241. {
  40242. name: "Towering",
  40243. height: math.unit(288, "feet")
  40244. },
  40245. {
  40246. name: "City Size",
  40247. height: math.unit(48384, "feet")
  40248. },
  40249. {
  40250. name: "Continental",
  40251. height: math.unit(4200, "miles")
  40252. },
  40253. {
  40254. name: "Planet Eater",
  40255. height: math.unit(42, "earths")
  40256. },
  40257. {
  40258. name: "Star Swallower",
  40259. height: math.unit(42, "solarradii")
  40260. },
  40261. {
  40262. name: "System Swallower",
  40263. height: math.unit(84000, "AU")
  40264. },
  40265. {
  40266. name: "Galaxy Gobbler",
  40267. height: math.unit(42, "galaxies")
  40268. },
  40269. {
  40270. name: "Universe Devourer",
  40271. height: math.unit(42, "universes")
  40272. },
  40273. {
  40274. name: "Multiverse Muncher",
  40275. height: math.unit(42, "multiverses")
  40276. },
  40277. ]
  40278. ))
  40279. characterMakers.push(() => makeCharacter(
  40280. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40281. {
  40282. front: {
  40283. height: math.unit(36, "feet"),
  40284. name: "Front",
  40285. image: {
  40286. source: "./media/characters/shadow-rat/front.svg",
  40287. extra: 1845/1758,
  40288. bottom: 83/1928
  40289. }
  40290. },
  40291. },
  40292. [
  40293. {
  40294. name: "Macro",
  40295. height: math.unit(36, "feet"),
  40296. default: true
  40297. },
  40298. ]
  40299. ))
  40300. characterMakers.push(() => makeCharacter(
  40301. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40302. {
  40303. side: {
  40304. height: math.unit(8, "feet"),
  40305. weight: math.unit(2630, "lb"),
  40306. name: "Side",
  40307. image: {
  40308. source: "./media/characters/torallia/side.svg",
  40309. extra: 2164/2021,
  40310. bottom: 371/2535
  40311. }
  40312. },
  40313. },
  40314. [
  40315. {
  40316. name: "Mortal Interaction",
  40317. height: math.unit(8, "feet")
  40318. },
  40319. {
  40320. name: "Natural",
  40321. height: math.unit(24, "feet"),
  40322. default: true
  40323. },
  40324. {
  40325. name: "Giant",
  40326. height: math.unit(80, "feet")
  40327. },
  40328. {
  40329. name: "Kaiju",
  40330. height: math.unit(240, "feet")
  40331. },
  40332. {
  40333. name: "Macro",
  40334. height: math.unit(800, "feet")
  40335. },
  40336. {
  40337. name: "Macro+",
  40338. height: math.unit(2400, "feet")
  40339. },
  40340. {
  40341. name: "Macro++",
  40342. height: math.unit(8000, "feet")
  40343. },
  40344. {
  40345. name: "City-Crushing",
  40346. height: math.unit(24000, "feet")
  40347. },
  40348. {
  40349. name: "Mountain-Mashing",
  40350. height: math.unit(80000, "feet")
  40351. },
  40352. {
  40353. name: "District Demolisher",
  40354. height: math.unit(240000, "feet")
  40355. },
  40356. {
  40357. name: "Tri-County Terror",
  40358. height: math.unit(800000, "feet")
  40359. },
  40360. {
  40361. name: "State Smasher",
  40362. height: math.unit(2.4e6, "feet")
  40363. },
  40364. {
  40365. name: "Nation Nemesis",
  40366. height: math.unit(8e6, "feet")
  40367. },
  40368. {
  40369. name: "Continent Cracker",
  40370. height: math.unit(2.4e7, "feet")
  40371. },
  40372. {
  40373. name: "Planet-Pillaging",
  40374. height: math.unit(8e7, "feet")
  40375. },
  40376. {
  40377. name: "Earth-Eclipsing",
  40378. height: math.unit(2.4e8, "feet")
  40379. },
  40380. {
  40381. name: "Jovian-Jostling",
  40382. height: math.unit(8e8, "feet")
  40383. },
  40384. {
  40385. name: "Gas Giant Gulper",
  40386. height: math.unit(2.4e9, "feet")
  40387. },
  40388. {
  40389. name: "Astral Annihilator",
  40390. height: math.unit(8e9, "feet")
  40391. },
  40392. {
  40393. name: "Celestial Conqueror",
  40394. height: math.unit(2.4e10, "feet")
  40395. },
  40396. {
  40397. name: "Sol-Swallowing",
  40398. height: math.unit(8e10, "feet")
  40399. },
  40400. {
  40401. name: "Hunter of the Heavens",
  40402. height: math.unit(2.4e13, "feet")
  40403. },
  40404. ]
  40405. ))
  40406. characterMakers.push(() => makeCharacter(
  40407. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40408. {
  40409. front: {
  40410. height: math.unit(6 + 8/12, "feet"),
  40411. weight: math.unit(250, "kilograms"),
  40412. volume: math.unit(28, "liters"),
  40413. name: "Front",
  40414. image: {
  40415. source: "./media/characters/rebecca-pawlson/front.svg",
  40416. extra: 1737/1596,
  40417. bottom: 107/1844
  40418. }
  40419. },
  40420. back: {
  40421. height: math.unit(6 + 8/12, "feet"),
  40422. weight: math.unit(250, "kilograms"),
  40423. volume: math.unit(28, "liters"),
  40424. name: "Back",
  40425. image: {
  40426. source: "./media/characters/rebecca-pawlson/back.svg",
  40427. extra: 1702/1523,
  40428. bottom: 86/1788
  40429. }
  40430. },
  40431. },
  40432. [
  40433. {
  40434. name: "Normal",
  40435. height: math.unit(6 + 8/12, "feet")
  40436. },
  40437. {
  40438. name: "Mini Macro",
  40439. height: math.unit(10, "feet"),
  40440. default: true
  40441. },
  40442. {
  40443. name: "Macro",
  40444. height: math.unit(100, "feet")
  40445. },
  40446. {
  40447. name: "Mega Macro",
  40448. height: math.unit(2500, "feet")
  40449. },
  40450. {
  40451. name: "Giga Macro",
  40452. height: math.unit(50, "miles")
  40453. },
  40454. ]
  40455. ))
  40456. characterMakers.push(() => makeCharacter(
  40457. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40458. {
  40459. front: {
  40460. height: math.unit(7 + 6/12, "feet"),
  40461. weight: math.unit(600, "lb"),
  40462. name: "Front",
  40463. image: {
  40464. source: "./media/characters/moxie-nova/front.svg",
  40465. extra: 1734/1652,
  40466. bottom: 41/1775
  40467. }
  40468. },
  40469. },
  40470. [
  40471. {
  40472. name: "Normal",
  40473. height: math.unit(7 + 6/12, "feet"),
  40474. default: true
  40475. },
  40476. ]
  40477. ))
  40478. characterMakers.push(() => makeCharacter(
  40479. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40480. {
  40481. goat: {
  40482. height: math.unit(4, "feet"),
  40483. weight: math.unit(180, "lb"),
  40484. name: "Goat",
  40485. image: {
  40486. source: "./media/characters/tiffany/goat.svg",
  40487. extra: 1845/1595,
  40488. bottom: 106/1951
  40489. }
  40490. },
  40491. front: {
  40492. height: math.unit(5, "feet"),
  40493. weight: math.unit(150, "lb"),
  40494. name: "Foxcoon",
  40495. image: {
  40496. source: "./media/characters/tiffany/foxcoon.svg",
  40497. extra: 1941/1845,
  40498. bottom: 58/1999
  40499. }
  40500. },
  40501. },
  40502. [
  40503. {
  40504. name: "Normal",
  40505. height: math.unit(5, "feet"),
  40506. default: true
  40507. },
  40508. ]
  40509. ))
  40510. characterMakers.push(() => makeCharacter(
  40511. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40512. {
  40513. front: {
  40514. height: math.unit(8, "feet"),
  40515. weight: math.unit(300, "lb"),
  40516. name: "Front",
  40517. image: {
  40518. source: "./media/characters/raxinath/front.svg",
  40519. extra: 1407/1309,
  40520. bottom: 39/1446
  40521. }
  40522. },
  40523. back: {
  40524. height: math.unit(8, "feet"),
  40525. weight: math.unit(300, "lb"),
  40526. name: "Back",
  40527. image: {
  40528. source: "./media/characters/raxinath/back.svg",
  40529. extra: 1405/1315,
  40530. bottom: 9/1414
  40531. }
  40532. },
  40533. },
  40534. [
  40535. {
  40536. name: "Speck",
  40537. height: math.unit(0.5, "nm")
  40538. },
  40539. {
  40540. name: "Micro",
  40541. height: math.unit(3, "inches")
  40542. },
  40543. {
  40544. name: "Kobold",
  40545. height: math.unit(3, "feet")
  40546. },
  40547. {
  40548. name: "Normal",
  40549. height: math.unit(8, "feet"),
  40550. default: true
  40551. },
  40552. {
  40553. name: "Giant",
  40554. height: math.unit(50, "feet")
  40555. },
  40556. {
  40557. name: "Macro",
  40558. height: math.unit(1000, "feet")
  40559. },
  40560. {
  40561. name: "Megamacro",
  40562. height: math.unit(1, "mile")
  40563. },
  40564. ]
  40565. ))
  40566. characterMakers.push(() => makeCharacter(
  40567. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40568. {
  40569. front: {
  40570. height: math.unit(10, "feet"),
  40571. weight: math.unit(1442, "lb"),
  40572. name: "Front",
  40573. image: {
  40574. source: "./media/characters/mal-dragon/front.svg",
  40575. extra: 1515/1444,
  40576. bottom: 113/1628
  40577. }
  40578. },
  40579. back: {
  40580. height: math.unit(10, "feet"),
  40581. weight: math.unit(1442, "lb"),
  40582. name: "Back",
  40583. image: {
  40584. source: "./media/characters/mal-dragon/back.svg",
  40585. extra: 1527/1434,
  40586. bottom: 25/1552
  40587. }
  40588. },
  40589. },
  40590. [
  40591. {
  40592. name: "Mortal Interaction",
  40593. height: math.unit(10, "feet"),
  40594. default: true
  40595. },
  40596. {
  40597. name: "Large",
  40598. height: math.unit(30, "feet")
  40599. },
  40600. {
  40601. name: "Kaiju",
  40602. height: math.unit(300, "feet")
  40603. },
  40604. {
  40605. name: "Megamacro",
  40606. height: math.unit(10000, "feet")
  40607. },
  40608. {
  40609. name: "Continent Cracker",
  40610. height: math.unit(30000000, "feet")
  40611. },
  40612. {
  40613. name: "Sol-Swallowing",
  40614. height: math.unit(1e11, "feet")
  40615. },
  40616. {
  40617. name: "Light Universal",
  40618. height: math.unit(5, "universes")
  40619. },
  40620. {
  40621. name: "Universe Atoms",
  40622. height: math.unit(1.829e9, "universes")
  40623. },
  40624. {
  40625. name: "Light Multiversal",
  40626. height: math.unit(5, "multiverses")
  40627. },
  40628. {
  40629. name: "Multiverse Atoms",
  40630. height: math.unit(1.829e9, "multiverses")
  40631. },
  40632. {
  40633. name: "Fabric of Time",
  40634. height: math.unit(1e262, "multiverses")
  40635. },
  40636. ]
  40637. ))
  40638. characterMakers.push(() => makeCharacter(
  40639. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40640. {
  40641. front: {
  40642. height: math.unit(9, "feet"),
  40643. weight: math.unit(1050, "lb"),
  40644. name: "Front",
  40645. image: {
  40646. source: "./media/characters/tabitha/front.svg",
  40647. extra: 2083/1994,
  40648. bottom: 68/2151
  40649. }
  40650. },
  40651. },
  40652. [
  40653. {
  40654. name: "Baseline",
  40655. height: math.unit(9, "feet"),
  40656. default: true
  40657. },
  40658. {
  40659. name: "Giant",
  40660. height: math.unit(90, "feet")
  40661. },
  40662. {
  40663. name: "Macro",
  40664. height: math.unit(900, "feet")
  40665. },
  40666. {
  40667. name: "Megamacro",
  40668. height: math.unit(9000, "feet")
  40669. },
  40670. {
  40671. name: "City-Crushing",
  40672. height: math.unit(27000, "feet")
  40673. },
  40674. {
  40675. name: "Mountain-Mashing",
  40676. height: math.unit(90000, "feet")
  40677. },
  40678. {
  40679. name: "Nation Nemesis",
  40680. height: math.unit(9e6, "feet")
  40681. },
  40682. {
  40683. name: "Continent Cracker",
  40684. height: math.unit(27e6, "feet")
  40685. },
  40686. {
  40687. name: "Earth-Eclipsing",
  40688. height: math.unit(2.7e8, "feet")
  40689. },
  40690. {
  40691. name: "Gas Giant Gulper",
  40692. height: math.unit(2.7e9, "feet")
  40693. },
  40694. {
  40695. name: "Sol-Swallowing",
  40696. height: math.unit(9e10, "feet")
  40697. },
  40698. {
  40699. name: "Galaxy Gulper",
  40700. height: math.unit(9, "galaxies")
  40701. },
  40702. {
  40703. name: "Cosmos Churner",
  40704. height: math.unit(9, "universes")
  40705. },
  40706. ]
  40707. ))
  40708. characterMakers.push(() => makeCharacter(
  40709. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40710. {
  40711. front: {
  40712. height: math.unit(160, "cm"),
  40713. weight: math.unit(55, "kg"),
  40714. name: "Front",
  40715. image: {
  40716. source: "./media/characters/tow/front.svg",
  40717. extra: 1751/1722,
  40718. bottom: 74/1825
  40719. }
  40720. },
  40721. },
  40722. [
  40723. {
  40724. name: "Norm",
  40725. height: math.unit(160, "cm")
  40726. },
  40727. {
  40728. name: "Casual",
  40729. height: math.unit(3200, "m"),
  40730. default: true
  40731. },
  40732. {
  40733. name: "Show-Off",
  40734. height: math.unit(160, "km")
  40735. },
  40736. ]
  40737. ))
  40738. characterMakers.push(() => makeCharacter(
  40739. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40740. {
  40741. front: {
  40742. height: math.unit(7 + 11/12, "feet"),
  40743. weight: math.unit(342.8, "lb"),
  40744. name: "Front",
  40745. image: {
  40746. source: "./media/characters/vivian-orca-dragon/front.svg",
  40747. extra: 1890/1865,
  40748. bottom: 28/1918
  40749. }
  40750. },
  40751. },
  40752. [
  40753. {
  40754. name: "Micro",
  40755. height: math.unit(5, "inches")
  40756. },
  40757. {
  40758. name: "Normal",
  40759. height: math.unit(7 + 11/12, "feet"),
  40760. default: true
  40761. },
  40762. {
  40763. name: "Macro",
  40764. height: math.unit(395 + 7/12, "feet")
  40765. },
  40766. ]
  40767. ))
  40768. characterMakers.push(() => makeCharacter(
  40769. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40770. {
  40771. side: {
  40772. height: math.unit(10, "feet"),
  40773. weight: math.unit(1442, "lb"),
  40774. name: "Side",
  40775. image: {
  40776. source: "./media/characters/lotherakon/side.svg",
  40777. extra: 1604/1497,
  40778. bottom: 89/1693
  40779. }
  40780. },
  40781. },
  40782. [
  40783. {
  40784. name: "Mortal Interaction",
  40785. height: math.unit(10, "feet")
  40786. },
  40787. {
  40788. name: "Large",
  40789. height: math.unit(30, "feet"),
  40790. default: true
  40791. },
  40792. {
  40793. name: "Giant",
  40794. height: math.unit(100, "feet")
  40795. },
  40796. {
  40797. name: "Kaiju",
  40798. height: math.unit(300, "feet")
  40799. },
  40800. {
  40801. name: "Macro",
  40802. height: math.unit(1000, "feet")
  40803. },
  40804. {
  40805. name: "Macro+",
  40806. height: math.unit(3000, "feet")
  40807. },
  40808. {
  40809. name: "Megamacro",
  40810. height: math.unit(10000, "feet")
  40811. },
  40812. {
  40813. name: "City-Crushing",
  40814. height: math.unit(30000, "feet")
  40815. },
  40816. {
  40817. name: "Continent Cracker",
  40818. height: math.unit(30e6, "feet")
  40819. },
  40820. {
  40821. name: "Earth Eclipsing",
  40822. height: math.unit(3e8, "feet")
  40823. },
  40824. {
  40825. name: "Gas Giant Gulper",
  40826. height: math.unit(3e9, "feet")
  40827. },
  40828. {
  40829. name: "Sol-Swallowing",
  40830. height: math.unit(1e11, "feet")
  40831. },
  40832. {
  40833. name: "System Swallower",
  40834. height: math.unit(3e14, "feet")
  40835. },
  40836. {
  40837. name: "Galaxy Gulper",
  40838. height: math.unit(10, "galaxies")
  40839. },
  40840. {
  40841. name: "Light Universal",
  40842. height: math.unit(5, "universes")
  40843. },
  40844. {
  40845. name: "Universe Palm",
  40846. height: math.unit(20, "universes")
  40847. },
  40848. {
  40849. name: "Light Multiversal",
  40850. height: math.unit(5, "multiverses")
  40851. },
  40852. {
  40853. name: "Multiverse Palm",
  40854. height: math.unit(20, "multiverses")
  40855. },
  40856. {
  40857. name: "Inferno Incarnate",
  40858. height: math.unit(1e7, "multiverses")
  40859. },
  40860. ]
  40861. ))
  40862. characterMakers.push(() => makeCharacter(
  40863. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40864. {
  40865. front: {
  40866. height: math.unit(8, "feet"),
  40867. weight: math.unit(1200, "lb"),
  40868. name: "Front",
  40869. image: {
  40870. source: "./media/characters/malithee/front.svg",
  40871. extra: 1675/1640,
  40872. bottom: 162/1837
  40873. }
  40874. },
  40875. },
  40876. [
  40877. {
  40878. name: "Mortal Interaction",
  40879. height: math.unit(8, "feet"),
  40880. default: true
  40881. },
  40882. {
  40883. name: "Large",
  40884. height: math.unit(24, "feet")
  40885. },
  40886. {
  40887. name: "Kaiju",
  40888. height: math.unit(240, "feet")
  40889. },
  40890. {
  40891. name: "Megamacro",
  40892. height: math.unit(8000, "feet")
  40893. },
  40894. {
  40895. name: "Continent Cracker",
  40896. height: math.unit(24e6, "feet")
  40897. },
  40898. {
  40899. name: "Earth-Eclipsing",
  40900. height: math.unit(2.4e8, "feet")
  40901. },
  40902. {
  40903. name: "Sol-Swallowing",
  40904. height: math.unit(8e10, "feet")
  40905. },
  40906. {
  40907. name: "Galaxy Gulper",
  40908. height: math.unit(8, "galaxies")
  40909. },
  40910. {
  40911. name: "Light Universal",
  40912. height: math.unit(4, "universes")
  40913. },
  40914. {
  40915. name: "Universe Atoms",
  40916. height: math.unit(1.829e9, "universes")
  40917. },
  40918. {
  40919. name: "Light Multiversal",
  40920. height: math.unit(4, "multiverses")
  40921. },
  40922. {
  40923. name: "Multiverse Atoms",
  40924. height: math.unit(1.829e9, "multiverses")
  40925. },
  40926. {
  40927. name: "Nigh-Omnipresence",
  40928. height: math.unit(8e261, "multiverses")
  40929. },
  40930. ]
  40931. ))
  40932. characterMakers.push(() => makeCharacter(
  40933. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40934. {
  40935. front: {
  40936. height: math.unit(10, "feet"),
  40937. weight: math.unit(1500, "lb"),
  40938. name: "Front",
  40939. image: {
  40940. source: "./media/characters/miles-thestia/front.svg",
  40941. extra: 1812/1727,
  40942. bottom: 86/1898
  40943. }
  40944. },
  40945. back: {
  40946. height: math.unit(10, "feet"),
  40947. weight: math.unit(1500, "lb"),
  40948. name: "Back",
  40949. image: {
  40950. source: "./media/characters/miles-thestia/back.svg",
  40951. extra: 1799/1690,
  40952. bottom: 47/1846
  40953. }
  40954. },
  40955. frontNsfw: {
  40956. height: math.unit(10, "feet"),
  40957. weight: math.unit(1500, "lb"),
  40958. name: "Front (NSFW)",
  40959. image: {
  40960. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40961. extra: 1812/1727,
  40962. bottom: 86/1898
  40963. }
  40964. },
  40965. },
  40966. [
  40967. {
  40968. name: "Mini-Macro",
  40969. height: math.unit(10, "feet"),
  40970. default: true
  40971. },
  40972. ]
  40973. ))
  40974. characterMakers.push(() => makeCharacter(
  40975. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40976. {
  40977. front: {
  40978. height: math.unit(25, "feet"),
  40979. name: "Front",
  40980. image: {
  40981. source: "./media/characters/titan-s-wulf/front.svg",
  40982. extra: 1560/1484,
  40983. bottom: 76/1636
  40984. }
  40985. },
  40986. },
  40987. [
  40988. {
  40989. name: "Smallest",
  40990. height: math.unit(25, "feet"),
  40991. default: true
  40992. },
  40993. {
  40994. name: "Normal",
  40995. height: math.unit(200, "feet")
  40996. },
  40997. {
  40998. name: "Macro",
  40999. height: math.unit(200000, "feet")
  41000. },
  41001. {
  41002. name: "Multiversal Original",
  41003. height: math.unit(10000, "multiverses")
  41004. },
  41005. ]
  41006. ))
  41007. characterMakers.push(() => makeCharacter(
  41008. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41009. {
  41010. front: {
  41011. height: math.unit(8, "feet"),
  41012. weight: math.unit(553, "lb"),
  41013. name: "Front",
  41014. image: {
  41015. source: "./media/characters/tawendeh/front.svg",
  41016. extra: 2365/2268,
  41017. bottom: 83/2448
  41018. }
  41019. },
  41020. frontClothed: {
  41021. height: math.unit(8, "feet"),
  41022. weight: math.unit(553, "lb"),
  41023. name: "Front (Clothed)",
  41024. image: {
  41025. source: "./media/characters/tawendeh/front-clothed.svg",
  41026. extra: 2365/2268,
  41027. bottom: 83/2448
  41028. }
  41029. },
  41030. back: {
  41031. height: math.unit(8, "feet"),
  41032. weight: math.unit(553, "lb"),
  41033. name: "Back",
  41034. image: {
  41035. source: "./media/characters/tawendeh/back.svg",
  41036. extra: 2397/2294,
  41037. bottom: 42/2439
  41038. }
  41039. },
  41040. },
  41041. [
  41042. {
  41043. name: "Mortal Interaction",
  41044. height: math.unit(8, "feet"),
  41045. default: true
  41046. },
  41047. {
  41048. name: "Giant",
  41049. height: math.unit(80, "feet")
  41050. },
  41051. {
  41052. name: "Macro",
  41053. height: math.unit(800, "feet")
  41054. },
  41055. {
  41056. name: "Megamacro",
  41057. height: math.unit(8000, "feet")
  41058. },
  41059. {
  41060. name: "City-Crushing",
  41061. height: math.unit(24000, "feet")
  41062. },
  41063. {
  41064. name: "Mountain-Mashing",
  41065. height: math.unit(80000, "feet")
  41066. },
  41067. {
  41068. name: "Nation Nemesis",
  41069. height: math.unit(8e6, "feet")
  41070. },
  41071. {
  41072. name: "Continent Cracker",
  41073. height: math.unit(24e6, "feet")
  41074. },
  41075. {
  41076. name: "Earth-Eclipsing",
  41077. height: math.unit(2.4e8, "feet")
  41078. },
  41079. {
  41080. name: "Gas Giant Gulper",
  41081. height: math.unit(2.4e9, "feet")
  41082. },
  41083. {
  41084. name: "Sol-Swallowing",
  41085. height: math.unit(8e10, "feet")
  41086. },
  41087. {
  41088. name: "Galaxy Gulper",
  41089. height: math.unit(8, "galaxies")
  41090. },
  41091. {
  41092. name: "Cosmos Churner",
  41093. height: math.unit(8, "universes")
  41094. },
  41095. {
  41096. name: "Omnipotent Otter",
  41097. height: math.unit(80, "universes")
  41098. },
  41099. ]
  41100. ))
  41101. characterMakers.push(() => makeCharacter(
  41102. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41103. {
  41104. front: {
  41105. height: math.unit(2.6, "meters"),
  41106. weight: math.unit(900, "kg"),
  41107. name: "Front",
  41108. image: {
  41109. source: "./media/characters/neesha/front.svg",
  41110. extra: 1803/1653,
  41111. bottom: 128/1931
  41112. }
  41113. },
  41114. },
  41115. [
  41116. {
  41117. name: "Normal",
  41118. height: math.unit(2.6, "meters"),
  41119. default: true
  41120. },
  41121. {
  41122. name: "Macro",
  41123. height: math.unit(50, "meters")
  41124. },
  41125. ]
  41126. ))
  41127. characterMakers.push(() => makeCharacter(
  41128. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41129. {
  41130. front: {
  41131. height: math.unit(5, "feet"),
  41132. weight: math.unit(185, "lb"),
  41133. name: "Front",
  41134. image: {
  41135. source: "./media/characters/kyera/front.svg",
  41136. extra: 1875/1790,
  41137. bottom: 96/1971
  41138. }
  41139. },
  41140. },
  41141. [
  41142. {
  41143. name: "Normal",
  41144. height: math.unit(5, "feet"),
  41145. default: true
  41146. },
  41147. ]
  41148. ))
  41149. characterMakers.push(() => makeCharacter(
  41150. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41151. {
  41152. front: {
  41153. height: math.unit(7 + 6/12, "feet"),
  41154. weight: math.unit(540, "lb"),
  41155. name: "Front",
  41156. image: {
  41157. source: "./media/characters/yuko/front.svg",
  41158. extra: 1282/1222,
  41159. bottom: 101/1383
  41160. }
  41161. },
  41162. frontClothed: {
  41163. height: math.unit(7 + 6/12, "feet"),
  41164. weight: math.unit(540, "lb"),
  41165. name: "Front (Clothed)",
  41166. image: {
  41167. source: "./media/characters/yuko/front-clothed.svg",
  41168. extra: 1282/1222,
  41169. bottom: 101/1383
  41170. }
  41171. },
  41172. },
  41173. [
  41174. {
  41175. name: "Normal",
  41176. height: math.unit(7 + 6/12, "feet"),
  41177. default: true
  41178. },
  41179. {
  41180. name: "Macro",
  41181. height: math.unit(26 + 9/12, "feet")
  41182. },
  41183. {
  41184. name: "Megamacro",
  41185. height: math.unit(300, "feet")
  41186. },
  41187. {
  41188. name: "Gigamacro",
  41189. height: math.unit(5000, "feet")
  41190. },
  41191. {
  41192. name: "Planetary",
  41193. height: math.unit(10000, "miles")
  41194. },
  41195. ]
  41196. ))
  41197. characterMakers.push(() => makeCharacter(
  41198. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41199. {
  41200. front: {
  41201. height: math.unit(8 + 2/12, "feet"),
  41202. weight: math.unit(600, "lb"),
  41203. name: "Front",
  41204. image: {
  41205. source: "./media/characters/deam-nitrel/front.svg",
  41206. extra: 1308/1234,
  41207. bottom: 125/1433
  41208. }
  41209. },
  41210. },
  41211. [
  41212. {
  41213. name: "Normal",
  41214. height: math.unit(8 + 2/12, "feet"),
  41215. default: true
  41216. },
  41217. ]
  41218. ))
  41219. characterMakers.push(() => makeCharacter(
  41220. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41221. {
  41222. front: {
  41223. height: math.unit(6.1, "feet"),
  41224. weight: math.unit(180, "lb"),
  41225. name: "Front",
  41226. image: {
  41227. source: "./media/characters/skyress/front.svg",
  41228. extra: 1045/915,
  41229. bottom: 28/1073
  41230. }
  41231. },
  41232. maw: {
  41233. height: math.unit(1, "feet"),
  41234. name: "Maw",
  41235. image: {
  41236. source: "./media/characters/skyress/maw.svg"
  41237. }
  41238. },
  41239. },
  41240. [
  41241. {
  41242. name: "Normal",
  41243. height: math.unit(6.1, "feet"),
  41244. default: true
  41245. },
  41246. {
  41247. name: "Macro",
  41248. height: math.unit(200, "feet")
  41249. },
  41250. ]
  41251. ))
  41252. characterMakers.push(() => makeCharacter(
  41253. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41254. {
  41255. front: {
  41256. height: math.unit(4 + 2/12, "feet"),
  41257. weight: math.unit(40, "kg"),
  41258. name: "Front",
  41259. image: {
  41260. source: "./media/characters/amethyst-jones/front.svg",
  41261. extra: 1220/1150,
  41262. bottom: 101/1321
  41263. }
  41264. },
  41265. },
  41266. [
  41267. {
  41268. name: "Normal",
  41269. height: math.unit(4 + 2/12, "feet"),
  41270. default: true
  41271. },
  41272. ]
  41273. ))
  41274. characterMakers.push(() => makeCharacter(
  41275. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41276. {
  41277. front: {
  41278. height: math.unit(1.7, "m"),
  41279. weight: math.unit(135, "lb"),
  41280. name: "Front",
  41281. image: {
  41282. source: "./media/characters/jade/front.svg",
  41283. extra: 1818/1767,
  41284. bottom: 32/1850
  41285. }
  41286. },
  41287. back: {
  41288. height: math.unit(1.7, "m"),
  41289. weight: math.unit(135, "lb"),
  41290. name: "Back",
  41291. image: {
  41292. source: "./media/characters/jade/back.svg",
  41293. extra: 1869/1809,
  41294. bottom: 35/1904
  41295. }
  41296. },
  41297. hand: {
  41298. height: math.unit(0.24, "m"),
  41299. name: "Hand",
  41300. image: {
  41301. source: "./media/characters/jade/hand.svg"
  41302. }
  41303. },
  41304. foot: {
  41305. height: math.unit(0.263, "m"),
  41306. name: "Foot",
  41307. image: {
  41308. source: "./media/characters/jade/foot.svg"
  41309. }
  41310. },
  41311. dick: {
  41312. height: math.unit(0.47, "m"),
  41313. name: "Dick",
  41314. image: {
  41315. source: "./media/characters/jade/dick.svg"
  41316. }
  41317. },
  41318. },
  41319. [
  41320. {
  41321. name: "Micro",
  41322. height: math.unit(22, "cm")
  41323. },
  41324. {
  41325. name: "Normal",
  41326. height: math.unit(1.7, "m"),
  41327. default: true
  41328. },
  41329. {
  41330. name: "Macro",
  41331. height: math.unit(152, "m")
  41332. },
  41333. ]
  41334. ))
  41335. characterMakers.push(() => makeCharacter(
  41336. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41337. {
  41338. front: {
  41339. height: math.unit(100, "miles"),
  41340. weight: math.unit(20000, "tons"),
  41341. name: "Front",
  41342. image: {
  41343. source: "./media/characters/cookie/front.svg",
  41344. extra: 1125/1070,
  41345. bottom: 30/1155
  41346. }
  41347. },
  41348. },
  41349. [
  41350. {
  41351. name: "Big",
  41352. height: math.unit(50, "feet")
  41353. },
  41354. {
  41355. name: "Macro",
  41356. height: math.unit(100, "miles"),
  41357. default: true
  41358. },
  41359. {
  41360. name: "Megamacro",
  41361. height: math.unit(90000, "miles")
  41362. },
  41363. ]
  41364. ))
  41365. characterMakers.push(() => makeCharacter(
  41366. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41367. {
  41368. front: {
  41369. height: math.unit(6, "feet"),
  41370. weight: math.unit(145, "lb"),
  41371. name: "Front",
  41372. image: {
  41373. source: "./media/characters/farzian/front.svg",
  41374. extra: 1902/1693,
  41375. bottom: 108/2010
  41376. }
  41377. },
  41378. },
  41379. [
  41380. {
  41381. name: "Macro",
  41382. height: math.unit(500, "feet"),
  41383. default: true
  41384. },
  41385. ]
  41386. ))
  41387. characterMakers.push(() => makeCharacter(
  41388. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41389. {
  41390. front: {
  41391. height: math.unit(3 + 6/12, "feet"),
  41392. weight: math.unit(50, "lb"),
  41393. name: "Front",
  41394. image: {
  41395. source: "./media/characters/kimberly-tilson/front.svg",
  41396. extra: 1400/1322,
  41397. bottom: 36/1436
  41398. }
  41399. },
  41400. back: {
  41401. height: math.unit(3 + 6/12, "feet"),
  41402. weight: math.unit(50, "lb"),
  41403. name: "Back",
  41404. image: {
  41405. source: "./media/characters/kimberly-tilson/back.svg",
  41406. extra: 1370/1307,
  41407. bottom: 20/1390
  41408. }
  41409. },
  41410. },
  41411. [
  41412. {
  41413. name: "Normal",
  41414. height: math.unit(3 + 6/12, "feet"),
  41415. default: true
  41416. },
  41417. ]
  41418. ))
  41419. characterMakers.push(() => makeCharacter(
  41420. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41421. {
  41422. front: {
  41423. height: math.unit(1148, "feet"),
  41424. weight: math.unit(34057, "lb"),
  41425. name: "Front",
  41426. image: {
  41427. source: "./media/characters/harthos/front.svg",
  41428. extra: 1391/1339,
  41429. bottom: 13/1404
  41430. }
  41431. },
  41432. },
  41433. [
  41434. {
  41435. name: "Macro",
  41436. height: math.unit(1148, "feet"),
  41437. default: true
  41438. },
  41439. ]
  41440. ))
  41441. characterMakers.push(() => makeCharacter(
  41442. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41443. {
  41444. front: {
  41445. height: math.unit(15, "feet"),
  41446. name: "Front",
  41447. image: {
  41448. source: "./media/characters/hypatia/front.svg",
  41449. extra: 1653/1591,
  41450. bottom: 79/1732
  41451. }
  41452. },
  41453. },
  41454. [
  41455. {
  41456. name: "Normal",
  41457. height: math.unit(15, "feet")
  41458. },
  41459. {
  41460. name: "Small",
  41461. height: math.unit(300, "feet")
  41462. },
  41463. {
  41464. name: "Macro",
  41465. height: math.unit(2500, "feet"),
  41466. default: true
  41467. },
  41468. {
  41469. name: "Mega Macro",
  41470. height: math.unit(1500, "miles")
  41471. },
  41472. {
  41473. name: "Giga Macro",
  41474. height: math.unit(1.5e6, "miles")
  41475. },
  41476. ]
  41477. ))
  41478. characterMakers.push(() => makeCharacter(
  41479. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41480. {
  41481. front: {
  41482. height: math.unit(6, "feet"),
  41483. weight: math.unit(200, "lb"),
  41484. name: "Front",
  41485. image: {
  41486. source: "./media/characters/wulver/front.svg",
  41487. extra: 1724/1632,
  41488. bottom: 130/1854
  41489. }
  41490. },
  41491. frontNsfw: {
  41492. height: math.unit(6, "feet"),
  41493. weight: math.unit(200, "lb"),
  41494. name: "Front (NSFW)",
  41495. image: {
  41496. source: "./media/characters/wulver/front-nsfw.svg",
  41497. extra: 1724/1632,
  41498. bottom: 130/1854
  41499. }
  41500. },
  41501. },
  41502. [
  41503. {
  41504. name: "Human-Sized",
  41505. height: math.unit(6, "feet")
  41506. },
  41507. {
  41508. name: "Normal",
  41509. height: math.unit(4, "meters"),
  41510. default: true
  41511. },
  41512. {
  41513. name: "Large",
  41514. height: math.unit(6, "m")
  41515. },
  41516. ]
  41517. ))
  41518. characterMakers.push(() => makeCharacter(
  41519. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41520. {
  41521. front: {
  41522. height: math.unit(7, "feet"),
  41523. name: "Front",
  41524. image: {
  41525. source: "./media/characters/maru/front.svg",
  41526. extra: 1595/1570,
  41527. bottom: 0/1595
  41528. }
  41529. },
  41530. },
  41531. [
  41532. {
  41533. name: "Normal",
  41534. height: math.unit(7, "feet"),
  41535. default: true
  41536. },
  41537. {
  41538. name: "Macro",
  41539. height: math.unit(700, "feet")
  41540. },
  41541. {
  41542. name: "Mega Macro",
  41543. height: math.unit(25, "miles")
  41544. },
  41545. ]
  41546. ))
  41547. characterMakers.push(() => makeCharacter(
  41548. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41549. {
  41550. front: {
  41551. height: math.unit(6, "feet"),
  41552. weight: math.unit(170, "lb"),
  41553. name: "Front",
  41554. image: {
  41555. source: "./media/characters/xenon/front.svg",
  41556. extra: 1376/1305,
  41557. bottom: 56/1432
  41558. }
  41559. },
  41560. back: {
  41561. height: math.unit(6, "feet"),
  41562. weight: math.unit(170, "lb"),
  41563. name: "Back",
  41564. image: {
  41565. source: "./media/characters/xenon/back.svg",
  41566. extra: 1328/1259,
  41567. bottom: 95/1423
  41568. }
  41569. },
  41570. maw: {
  41571. height: math.unit(0.52, "feet"),
  41572. name: "Maw",
  41573. image: {
  41574. source: "./media/characters/xenon/maw.svg"
  41575. }
  41576. },
  41577. handLeft: {
  41578. height: math.unit(0.82 * 169 / 153, "feet"),
  41579. name: "Hand (Left)",
  41580. image: {
  41581. source: "./media/characters/xenon/hand-left.svg"
  41582. }
  41583. },
  41584. handRight: {
  41585. height: math.unit(0.82, "feet"),
  41586. name: "Hand (Right)",
  41587. image: {
  41588. source: "./media/characters/xenon/hand-right.svg"
  41589. }
  41590. },
  41591. footLeft: {
  41592. height: math.unit(1.13, "feet"),
  41593. name: "Foot (Left)",
  41594. image: {
  41595. source: "./media/characters/xenon/foot-left.svg"
  41596. }
  41597. },
  41598. footRight: {
  41599. height: math.unit(1.13 * 194 / 196, "feet"),
  41600. name: "Foot (Right)",
  41601. image: {
  41602. source: "./media/characters/xenon/foot-right.svg"
  41603. }
  41604. },
  41605. },
  41606. [
  41607. {
  41608. name: "Micro",
  41609. height: math.unit(0.8, "inches")
  41610. },
  41611. {
  41612. name: "Normal",
  41613. height: math.unit(6, "feet")
  41614. },
  41615. {
  41616. name: "Macro",
  41617. height: math.unit(50, "feet"),
  41618. default: true
  41619. },
  41620. {
  41621. name: "Macro+",
  41622. height: math.unit(250, "feet")
  41623. },
  41624. {
  41625. name: "Megamacro",
  41626. height: math.unit(1500, "feet")
  41627. },
  41628. ]
  41629. ))
  41630. characterMakers.push(() => makeCharacter(
  41631. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41632. {
  41633. front: {
  41634. height: math.unit(7 + 5/12, "feet"),
  41635. name: "Front",
  41636. image: {
  41637. source: "./media/characters/zane/front.svg",
  41638. extra: 1260/1203,
  41639. bottom: 94/1354
  41640. }
  41641. },
  41642. back: {
  41643. height: math.unit(5.05, "feet"),
  41644. name: "Back",
  41645. image: {
  41646. source: "./media/characters/zane/back.svg",
  41647. extra: 893/829,
  41648. bottom: 30/923
  41649. }
  41650. },
  41651. werewolf: {
  41652. height: math.unit(11, "feet"),
  41653. name: "Werewolf",
  41654. image: {
  41655. source: "./media/characters/zane/werewolf.svg",
  41656. extra: 1383/1323,
  41657. bottom: 89/1472
  41658. }
  41659. },
  41660. foot: {
  41661. height: math.unit(1.46, "feet"),
  41662. name: "Foot",
  41663. image: {
  41664. source: "./media/characters/zane/foot.svg"
  41665. }
  41666. },
  41667. footFront: {
  41668. height: math.unit(0.784, "feet"),
  41669. name: "Foot (Front)",
  41670. image: {
  41671. source: "./media/characters/zane/foot-front.svg"
  41672. }
  41673. },
  41674. dick: {
  41675. height: math.unit(1.95, "feet"),
  41676. name: "Dick",
  41677. image: {
  41678. source: "./media/characters/zane/dick.svg"
  41679. }
  41680. },
  41681. dickWerewolf: {
  41682. height: math.unit(3.77, "feet"),
  41683. name: "Dick (Werewolf)",
  41684. image: {
  41685. source: "./media/characters/zane/dick.svg"
  41686. }
  41687. },
  41688. },
  41689. [
  41690. {
  41691. name: "Normal",
  41692. height: math.unit(7 + 5/12, "feet"),
  41693. default: true
  41694. },
  41695. ]
  41696. ))
  41697. characterMakers.push(() => makeCharacter(
  41698. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41699. {
  41700. front: {
  41701. height: math.unit(6 + 2/12, "feet"),
  41702. weight: math.unit(284, "lb"),
  41703. name: "Front",
  41704. image: {
  41705. source: "./media/characters/benni-desparque/front.svg",
  41706. extra: 1353/1126,
  41707. bottom: 69/1422
  41708. }
  41709. },
  41710. },
  41711. [
  41712. {
  41713. name: "Civilian",
  41714. height: math.unit(6 + 2/12, "feet")
  41715. },
  41716. {
  41717. name: "Normal",
  41718. height: math.unit(98, "feet"),
  41719. default: true
  41720. },
  41721. {
  41722. name: "Kaiju Fighter",
  41723. height: math.unit(268, "feet")
  41724. },
  41725. ]
  41726. ))
  41727. characterMakers.push(() => makeCharacter(
  41728. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41729. {
  41730. front: {
  41731. height: math.unit(5, "feet"),
  41732. weight: math.unit(105, "lb"),
  41733. name: "Front",
  41734. image: {
  41735. source: "./media/characters/maxine/front.svg",
  41736. extra: 1386/1250,
  41737. bottom: 71/1457
  41738. }
  41739. },
  41740. },
  41741. [
  41742. {
  41743. name: "Normal",
  41744. height: math.unit(5, "feet"),
  41745. default: true
  41746. },
  41747. ]
  41748. ))
  41749. characterMakers.push(() => makeCharacter(
  41750. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41751. {
  41752. front: {
  41753. height: math.unit(11 + 7/12, "feet"),
  41754. weight: math.unit(9576, "lb"),
  41755. name: "Front",
  41756. image: {
  41757. source: "./media/characters/scaly/front.svg",
  41758. extra: 888/867,
  41759. bottom: 36/924
  41760. }
  41761. },
  41762. },
  41763. [
  41764. {
  41765. name: "Normal",
  41766. height: math.unit(11 + 7/12, "feet"),
  41767. default: true
  41768. },
  41769. ]
  41770. ))
  41771. characterMakers.push(() => makeCharacter(
  41772. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41773. {
  41774. front: {
  41775. height: math.unit(6 + 3/12, "feet"),
  41776. name: "Front",
  41777. image: {
  41778. source: "./media/characters/saelria/front.svg",
  41779. extra: 1243/1138,
  41780. bottom: 46/1289
  41781. }
  41782. },
  41783. },
  41784. [
  41785. {
  41786. name: "Micro",
  41787. height: math.unit(6, "inches"),
  41788. },
  41789. {
  41790. name: "Normal",
  41791. height: math.unit(6 + 3/12, "feet"),
  41792. default: true
  41793. },
  41794. {
  41795. name: "Macro",
  41796. height: math.unit(25, "feet")
  41797. },
  41798. ]
  41799. ))
  41800. characterMakers.push(() => makeCharacter(
  41801. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41802. {
  41803. front: {
  41804. height: math.unit(80, "meters"),
  41805. weight: math.unit(7000, "tonnes"),
  41806. name: "Front",
  41807. image: {
  41808. source: "./media/characters/tef/front.svg",
  41809. extra: 2036/1991,
  41810. bottom: 54/2090
  41811. }
  41812. },
  41813. back: {
  41814. height: math.unit(80, "meters"),
  41815. weight: math.unit(7000, "tonnes"),
  41816. name: "Back",
  41817. image: {
  41818. source: "./media/characters/tef/back.svg",
  41819. extra: 2036/1991,
  41820. bottom: 54/2090
  41821. }
  41822. },
  41823. },
  41824. [
  41825. {
  41826. name: "Macro",
  41827. height: math.unit(80, "meters"),
  41828. default: true
  41829. },
  41830. ]
  41831. ))
  41832. characterMakers.push(() => makeCharacter(
  41833. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41834. {
  41835. front: {
  41836. height: math.unit(13, "feet"),
  41837. weight: math.unit(6, "tons"),
  41838. name: "Front",
  41839. image: {
  41840. source: "./media/characters/rover/front.svg",
  41841. extra: 1233/1156,
  41842. bottom: 50/1283
  41843. }
  41844. },
  41845. back: {
  41846. height: math.unit(13, "feet"),
  41847. weight: math.unit(6, "tons"),
  41848. name: "Back",
  41849. image: {
  41850. source: "./media/characters/rover/back.svg",
  41851. extra: 1327/1258,
  41852. bottom: 39/1366
  41853. }
  41854. },
  41855. },
  41856. [
  41857. {
  41858. name: "Normal",
  41859. height: math.unit(13, "feet"),
  41860. default: true
  41861. },
  41862. {
  41863. name: "Macro",
  41864. height: math.unit(1300, "feet")
  41865. },
  41866. {
  41867. name: "Megamacro",
  41868. height: math.unit(1300, "miles")
  41869. },
  41870. {
  41871. name: "Gigamacro",
  41872. height: math.unit(1300000, "miles")
  41873. },
  41874. ]
  41875. ))
  41876. characterMakers.push(() => makeCharacter(
  41877. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41878. {
  41879. front: {
  41880. height: math.unit(6, "feet"),
  41881. weight: math.unit(150, "lb"),
  41882. name: "Front",
  41883. image: {
  41884. source: "./media/characters/ariz/front.svg",
  41885. extra: 1401/1346,
  41886. bottom: 5/1406
  41887. }
  41888. },
  41889. },
  41890. [
  41891. {
  41892. name: "Normal",
  41893. height: math.unit(10, "feet"),
  41894. default: true
  41895. },
  41896. ]
  41897. ))
  41898. characterMakers.push(() => makeCharacter(
  41899. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41900. {
  41901. front: {
  41902. height: math.unit(6, "feet"),
  41903. weight: math.unit(140, "lb"),
  41904. name: "Front",
  41905. image: {
  41906. source: "./media/characters/sigrun/front.svg",
  41907. extra: 1418/1359,
  41908. bottom: 27/1445
  41909. }
  41910. },
  41911. },
  41912. [
  41913. {
  41914. name: "Macro",
  41915. height: math.unit(35, "feet"),
  41916. default: true
  41917. },
  41918. ]
  41919. ))
  41920. characterMakers.push(() => makeCharacter(
  41921. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41922. {
  41923. front: {
  41924. height: math.unit(6, "feet"),
  41925. weight: math.unit(150, "lb"),
  41926. name: "Front",
  41927. image: {
  41928. source: "./media/characters/numin/front.svg",
  41929. extra: 1433/1388,
  41930. bottom: 12/1445
  41931. }
  41932. },
  41933. },
  41934. [
  41935. {
  41936. name: "Macro",
  41937. height: math.unit(21.5, "km"),
  41938. default: true
  41939. },
  41940. ]
  41941. ))
  41942. characterMakers.push(() => makeCharacter(
  41943. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41944. {
  41945. front: {
  41946. height: math.unit(6, "feet"),
  41947. weight: math.unit(463, "lb"),
  41948. name: "Front",
  41949. image: {
  41950. source: "./media/characters/melwa/front.svg",
  41951. extra: 1307/1248,
  41952. bottom: 93/1400
  41953. }
  41954. },
  41955. },
  41956. [
  41957. {
  41958. name: "Macro",
  41959. height: math.unit(50, "meters"),
  41960. default: true
  41961. },
  41962. ]
  41963. ))
  41964. characterMakers.push(() => makeCharacter(
  41965. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41966. {
  41967. front: {
  41968. height: math.unit(325, "feet"),
  41969. name: "Front",
  41970. image: {
  41971. source: "./media/characters/zorkaiju/front.svg",
  41972. extra: 1955/1814,
  41973. bottom: 40/1995
  41974. }
  41975. },
  41976. frontExtended: {
  41977. height: math.unit(325, "feet"),
  41978. name: "Front (Extended)",
  41979. image: {
  41980. source: "./media/characters/zorkaiju/front-extended.svg",
  41981. extra: 1955/1814,
  41982. bottom: 40/1995
  41983. }
  41984. },
  41985. side: {
  41986. height: math.unit(325, "feet"),
  41987. name: "Side",
  41988. image: {
  41989. source: "./media/characters/zorkaiju/side.svg",
  41990. extra: 1495/1396,
  41991. bottom: 17/1512
  41992. }
  41993. },
  41994. sideExtended: {
  41995. height: math.unit(325, "feet"),
  41996. name: "Side (Extended)",
  41997. image: {
  41998. source: "./media/characters/zorkaiju/side-extended.svg",
  41999. extra: 1495/1396,
  42000. bottom: 17/1512
  42001. }
  42002. },
  42003. back: {
  42004. height: math.unit(325, "feet"),
  42005. name: "Back",
  42006. image: {
  42007. source: "./media/characters/zorkaiju/back.svg",
  42008. extra: 1959/1821,
  42009. bottom: 31/1990
  42010. }
  42011. },
  42012. backExtended: {
  42013. height: math.unit(325, "feet"),
  42014. name: "Back (Extended)",
  42015. image: {
  42016. source: "./media/characters/zorkaiju/back-extended.svg",
  42017. extra: 1959/1821,
  42018. bottom: 31/1990
  42019. }
  42020. },
  42021. hand: {
  42022. height: math.unit(58.4, "feet"),
  42023. name: "Hand",
  42024. image: {
  42025. source: "./media/characters/zorkaiju/hand.svg"
  42026. }
  42027. },
  42028. handExtended: {
  42029. height: math.unit(61.4, "feet"),
  42030. name: "Hand (Extended)",
  42031. image: {
  42032. source: "./media/characters/zorkaiju/hand-extended.svg"
  42033. }
  42034. },
  42035. foot: {
  42036. height: math.unit(95, "feet"),
  42037. name: "Foot",
  42038. image: {
  42039. source: "./media/characters/zorkaiju/foot.svg"
  42040. }
  42041. },
  42042. leftArm: {
  42043. height: math.unit(59, "feet"),
  42044. name: "Left Arm",
  42045. image: {
  42046. source: "./media/characters/zorkaiju/left-arm.svg"
  42047. }
  42048. },
  42049. rightArm: {
  42050. height: math.unit(59, "feet"),
  42051. name: "Right Arm",
  42052. image: {
  42053. source: "./media/characters/zorkaiju/right-arm.svg"
  42054. }
  42055. },
  42056. leftArmExtended: {
  42057. height: math.unit(59 * 1.033546, "feet"),
  42058. name: "Left Arm (Extended)",
  42059. image: {
  42060. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42061. }
  42062. },
  42063. rightArmExtended: {
  42064. height: math.unit(59 * 1.0496, "feet"),
  42065. name: "Right Arm (Extended)",
  42066. image: {
  42067. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42068. }
  42069. },
  42070. tail: {
  42071. height: math.unit(104, "feet"),
  42072. name: "Tail",
  42073. image: {
  42074. source: "./media/characters/zorkaiju/tail.svg"
  42075. }
  42076. },
  42077. tailExtended: {
  42078. height: math.unit(104, "feet"),
  42079. name: "Tail (Extended)",
  42080. image: {
  42081. source: "./media/characters/zorkaiju/tail-extended.svg"
  42082. }
  42083. },
  42084. tailBottom: {
  42085. height: math.unit(104, "feet"),
  42086. name: "Tail Bottom",
  42087. image: {
  42088. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42089. }
  42090. },
  42091. crystal: {
  42092. height: math.unit(27.54, "feet"),
  42093. name: "Crystal",
  42094. image: {
  42095. source: "./media/characters/zorkaiju/crystal.svg"
  42096. }
  42097. },
  42098. },
  42099. [
  42100. {
  42101. name: "Kaiju",
  42102. height: math.unit(325, "feet"),
  42103. default: true
  42104. },
  42105. ]
  42106. ))
  42107. characterMakers.push(() => makeCharacter(
  42108. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42109. {
  42110. front: {
  42111. height: math.unit(6 + 1/12, "feet"),
  42112. weight: math.unit(115, "lb"),
  42113. name: "Front",
  42114. image: {
  42115. source: "./media/characters/bailey-belfry/front.svg",
  42116. extra: 1240/1121,
  42117. bottom: 101/1341
  42118. }
  42119. },
  42120. },
  42121. [
  42122. {
  42123. name: "Normal",
  42124. height: math.unit(6 + 1/12, "feet"),
  42125. default: true
  42126. },
  42127. ]
  42128. ))
  42129. characterMakers.push(() => makeCharacter(
  42130. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42131. {
  42132. side: {
  42133. height: math.unit(4, "meters"),
  42134. weight: math.unit(250, "kg"),
  42135. name: "Side",
  42136. image: {
  42137. source: "./media/characters/blacky/side.svg",
  42138. extra: 1027/919,
  42139. bottom: 43/1070
  42140. }
  42141. },
  42142. maw: {
  42143. height: math.unit(1, "meters"),
  42144. name: "Maw",
  42145. image: {
  42146. source: "./media/characters/blacky/maw.svg"
  42147. }
  42148. },
  42149. paw: {
  42150. height: math.unit(1, "meters"),
  42151. name: "Paw",
  42152. image: {
  42153. source: "./media/characters/blacky/paw.svg"
  42154. }
  42155. },
  42156. },
  42157. [
  42158. {
  42159. name: "Normal",
  42160. height: math.unit(4, "meters"),
  42161. default: true
  42162. },
  42163. ]
  42164. ))
  42165. characterMakers.push(() => makeCharacter(
  42166. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42167. {
  42168. front: {
  42169. height: math.unit(170, "cm"),
  42170. weight: math.unit(66, "kg"),
  42171. name: "Front",
  42172. image: {
  42173. source: "./media/characters/thux-ei/front.svg",
  42174. extra: 1109/1011,
  42175. bottom: 8/1117
  42176. }
  42177. },
  42178. },
  42179. [
  42180. {
  42181. name: "Normal",
  42182. height: math.unit(170, "cm"),
  42183. default: true
  42184. },
  42185. ]
  42186. ))
  42187. characterMakers.push(() => makeCharacter(
  42188. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42189. {
  42190. front: {
  42191. height: math.unit(5, "feet"),
  42192. weight: math.unit(120, "lb"),
  42193. name: "Front",
  42194. image: {
  42195. source: "./media/characters/roxanne-voltaire/front.svg",
  42196. extra: 1901/1779,
  42197. bottom: 53/1954
  42198. }
  42199. },
  42200. },
  42201. [
  42202. {
  42203. name: "Normal",
  42204. height: math.unit(5, "feet"),
  42205. default: true
  42206. },
  42207. {
  42208. name: "Giant",
  42209. height: math.unit(50, "feet")
  42210. },
  42211. {
  42212. name: "Titan",
  42213. height: math.unit(500, "feet")
  42214. },
  42215. {
  42216. name: "Macro",
  42217. height: math.unit(5000, "feet")
  42218. },
  42219. {
  42220. name: "Megamacro",
  42221. height: math.unit(50000, "feet")
  42222. },
  42223. {
  42224. name: "Gigamacro",
  42225. height: math.unit(500000, "feet")
  42226. },
  42227. {
  42228. name: "Teramacro",
  42229. height: math.unit(5e6, "feet")
  42230. },
  42231. ]
  42232. ))
  42233. characterMakers.push(() => makeCharacter(
  42234. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42235. {
  42236. front: {
  42237. height: math.unit(6 + 2/12, "feet"),
  42238. name: "Front",
  42239. image: {
  42240. source: "./media/characters/squeaks/front.svg",
  42241. extra: 1823/1768,
  42242. bottom: 138/1961
  42243. }
  42244. },
  42245. },
  42246. [
  42247. {
  42248. name: "Micro",
  42249. height: math.unit(0.5, "inches")
  42250. },
  42251. {
  42252. name: "Normal",
  42253. height: math.unit(6 + 2/12, "feet"),
  42254. default: true
  42255. },
  42256. {
  42257. name: "Macro",
  42258. height: math.unit(600, "feet")
  42259. },
  42260. ]
  42261. ))
  42262. characterMakers.push(() => makeCharacter(
  42263. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42264. {
  42265. front: {
  42266. height: math.unit(1.72, "meters"),
  42267. name: "Front",
  42268. image: {
  42269. source: "./media/characters/archinger/front.svg",
  42270. extra: 1861/1675,
  42271. bottom: 125/1986
  42272. }
  42273. },
  42274. back: {
  42275. height: math.unit(1.72, "meters"),
  42276. name: "Back",
  42277. image: {
  42278. source: "./media/characters/archinger/back.svg",
  42279. extra: 1844/1701,
  42280. bottom: 104/1948
  42281. }
  42282. },
  42283. cock: {
  42284. height: math.unit(0.59, "feet"),
  42285. name: "Cock",
  42286. image: {
  42287. source: "./media/characters/archinger/cock.svg"
  42288. }
  42289. },
  42290. },
  42291. [
  42292. {
  42293. name: "Normal",
  42294. height: math.unit(1.72, "meters"),
  42295. default: true
  42296. },
  42297. {
  42298. name: "Macro",
  42299. height: math.unit(84, "meters")
  42300. },
  42301. {
  42302. name: "Macro+",
  42303. height: math.unit(112, "meters")
  42304. },
  42305. {
  42306. name: "Macro++",
  42307. height: math.unit(960, "meters")
  42308. },
  42309. {
  42310. name: "Macro+++",
  42311. height: math.unit(4, "km")
  42312. },
  42313. {
  42314. name: "Macro++++",
  42315. height: math.unit(48, "km")
  42316. },
  42317. {
  42318. name: "Macro+++++",
  42319. height: math.unit(4500, "km")
  42320. },
  42321. ]
  42322. ))
  42323. characterMakers.push(() => makeCharacter(
  42324. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42325. {
  42326. front: {
  42327. height: math.unit(5 + 5/12, "feet"),
  42328. name: "Front",
  42329. image: {
  42330. source: "./media/characters/alsnapz/front.svg",
  42331. extra: 1157/1065,
  42332. bottom: 42/1199
  42333. }
  42334. },
  42335. },
  42336. [
  42337. {
  42338. name: "Normal",
  42339. height: math.unit(5 + 5/12, "feet"),
  42340. default: true
  42341. },
  42342. ]
  42343. ))
  42344. characterMakers.push(() => makeCharacter(
  42345. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42346. {
  42347. side: {
  42348. height: math.unit(3.2, "earths"),
  42349. name: "Side",
  42350. image: {
  42351. source: "./media/characters/mag/side.svg",
  42352. extra: 1331/1008,
  42353. bottom: 52/1383
  42354. }
  42355. },
  42356. wing: {
  42357. height: math.unit(1.94, "earths"),
  42358. name: "Wing",
  42359. image: {
  42360. source: "./media/characters/mag/wing.svg"
  42361. }
  42362. },
  42363. dick: {
  42364. height: math.unit(1.8, "earths"),
  42365. name: "Dick",
  42366. image: {
  42367. source: "./media/characters/mag/dick.svg"
  42368. }
  42369. },
  42370. ass: {
  42371. height: math.unit(1.33, "earths"),
  42372. name: "Ass",
  42373. image: {
  42374. source: "./media/characters/mag/ass.svg"
  42375. }
  42376. },
  42377. head: {
  42378. height: math.unit(1.1, "earths"),
  42379. name: "Head",
  42380. image: {
  42381. source: "./media/characters/mag/head.svg"
  42382. }
  42383. },
  42384. maw: {
  42385. height: math.unit(1.62, "earths"),
  42386. name: "Maw",
  42387. image: {
  42388. source: "./media/characters/mag/maw.svg"
  42389. }
  42390. },
  42391. },
  42392. [
  42393. {
  42394. name: "Small",
  42395. height: math.unit(162, "feet")
  42396. },
  42397. {
  42398. name: "Normal",
  42399. height: math.unit(3.2, "earths"),
  42400. default: true
  42401. },
  42402. ]
  42403. ))
  42404. characterMakers.push(() => makeCharacter(
  42405. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42406. {
  42407. front: {
  42408. height: math.unit(512, "feet"),
  42409. weight: math.unit(63509, "tonnes"),
  42410. name: "Front",
  42411. image: {
  42412. source: "./media/characters/vorrel-harroc/front.svg",
  42413. extra: 1075/1063,
  42414. bottom: 62/1137
  42415. }
  42416. },
  42417. },
  42418. [
  42419. {
  42420. name: "Normal",
  42421. height: math.unit(10, "feet")
  42422. },
  42423. {
  42424. name: "Macro",
  42425. height: math.unit(512, "feet"),
  42426. default: true
  42427. },
  42428. {
  42429. name: "Megamacro",
  42430. height: math.unit(256, "miles")
  42431. },
  42432. {
  42433. name: "Gigamacro",
  42434. height: math.unit(4096, "miles")
  42435. },
  42436. ]
  42437. ))
  42438. characterMakers.push(() => makeCharacter(
  42439. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42440. {
  42441. side: {
  42442. height: math.unit(50, "feet"),
  42443. name: "Side",
  42444. image: {
  42445. source: "./media/characters/froimar/side.svg",
  42446. extra: 855/638,
  42447. bottom: 99/954
  42448. }
  42449. },
  42450. },
  42451. [
  42452. {
  42453. name: "Macro",
  42454. height: math.unit(50, "feet"),
  42455. default: true
  42456. },
  42457. ]
  42458. ))
  42459. characterMakers.push(() => makeCharacter(
  42460. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42461. {
  42462. front: {
  42463. height: math.unit(210, "miles"),
  42464. name: "Front",
  42465. image: {
  42466. source: "./media/characters/timothy/front.svg",
  42467. extra: 1007/943,
  42468. bottom: 62/1069
  42469. }
  42470. },
  42471. frontSkirt: {
  42472. height: math.unit(210, "miles"),
  42473. name: "Front (Skirt)",
  42474. image: {
  42475. source: "./media/characters/timothy/front-skirt.svg",
  42476. extra: 1007/943,
  42477. bottom: 62/1069
  42478. }
  42479. },
  42480. frontCoat: {
  42481. height: math.unit(210, "miles"),
  42482. name: "Front (Coat)",
  42483. image: {
  42484. source: "./media/characters/timothy/front-coat.svg",
  42485. extra: 1007/943,
  42486. bottom: 62/1069
  42487. }
  42488. },
  42489. },
  42490. [
  42491. {
  42492. name: "Macro",
  42493. height: math.unit(210, "miles"),
  42494. default: true
  42495. },
  42496. {
  42497. name: "Megamacro",
  42498. height: math.unit(210000, "miles")
  42499. },
  42500. ]
  42501. ))
  42502. characterMakers.push(() => makeCharacter(
  42503. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42504. {
  42505. front: {
  42506. height: math.unit(188, "feet"),
  42507. name: "Front",
  42508. image: {
  42509. source: "./media/characters/pyotr/front.svg",
  42510. extra: 1912/1826,
  42511. bottom: 18/1930
  42512. }
  42513. },
  42514. },
  42515. [
  42516. {
  42517. name: "Macro",
  42518. height: math.unit(188, "feet"),
  42519. default: true
  42520. },
  42521. {
  42522. name: "Megamacro",
  42523. height: math.unit(8, "miles")
  42524. },
  42525. ]
  42526. ))
  42527. characterMakers.push(() => makeCharacter(
  42528. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42529. {
  42530. side: {
  42531. height: math.unit(10, "feet"),
  42532. weight: math.unit(4500, "lb"),
  42533. name: "Side",
  42534. image: {
  42535. source: "./media/characters/ackart/side.svg",
  42536. extra: 1776/1668,
  42537. bottom: 116/1892
  42538. }
  42539. },
  42540. },
  42541. [
  42542. {
  42543. name: "Normal",
  42544. height: math.unit(10, "feet"),
  42545. default: true
  42546. },
  42547. ]
  42548. ))
  42549. characterMakers.push(() => makeCharacter(
  42550. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42551. {
  42552. side: {
  42553. height: math.unit(21, "feet"),
  42554. name: "Side",
  42555. image: {
  42556. source: "./media/characters/nolow/side.svg",
  42557. extra: 1484/1434,
  42558. bottom: 85/1569
  42559. }
  42560. },
  42561. sideErect: {
  42562. height: math.unit(21, "feet"),
  42563. name: "Side-erect",
  42564. image: {
  42565. source: "./media/characters/nolow/side-erect.svg",
  42566. extra: 1484/1434,
  42567. bottom: 85/1569
  42568. }
  42569. },
  42570. },
  42571. [
  42572. {
  42573. name: "Regular",
  42574. height: math.unit(12, "feet")
  42575. },
  42576. {
  42577. name: "Big Chee",
  42578. height: math.unit(21, "feet"),
  42579. default: true
  42580. },
  42581. ]
  42582. ))
  42583. characterMakers.push(() => makeCharacter(
  42584. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42585. {
  42586. front: {
  42587. height: math.unit(7, "feet"),
  42588. weight: math.unit(250, "lb"),
  42589. name: "Front",
  42590. image: {
  42591. source: "./media/characters/nines/front.svg",
  42592. extra: 1741/1607,
  42593. bottom: 41/1782
  42594. }
  42595. },
  42596. side: {
  42597. height: math.unit(7, "feet"),
  42598. weight: math.unit(250, "lb"),
  42599. name: "Side",
  42600. image: {
  42601. source: "./media/characters/nines/side.svg",
  42602. extra: 1854/1735,
  42603. bottom: 93/1947
  42604. }
  42605. },
  42606. back: {
  42607. height: math.unit(7, "feet"),
  42608. weight: math.unit(250, "lb"),
  42609. name: "Back",
  42610. image: {
  42611. source: "./media/characters/nines/back.svg",
  42612. extra: 1748/1615,
  42613. bottom: 20/1768
  42614. }
  42615. },
  42616. },
  42617. [
  42618. {
  42619. name: "Megamacro",
  42620. height: math.unit(99, "km"),
  42621. default: true
  42622. },
  42623. ]
  42624. ))
  42625. characterMakers.push(() => makeCharacter(
  42626. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42627. {
  42628. front: {
  42629. height: math.unit(5 + 10/12, "feet"),
  42630. weight: math.unit(210, "lb"),
  42631. name: "Front",
  42632. image: {
  42633. source: "./media/characters/zenith/front.svg",
  42634. extra: 1531/1452,
  42635. bottom: 198/1729
  42636. }
  42637. },
  42638. back: {
  42639. height: math.unit(5 + 10/12, "feet"),
  42640. weight: math.unit(210, "lb"),
  42641. name: "Back",
  42642. image: {
  42643. source: "./media/characters/zenith/back.svg",
  42644. extra: 1571/1487,
  42645. bottom: 75/1646
  42646. }
  42647. },
  42648. },
  42649. [
  42650. {
  42651. name: "Normal",
  42652. height: math.unit(5 + 10/12, "feet"),
  42653. default: true
  42654. }
  42655. ]
  42656. ))
  42657. characterMakers.push(() => makeCharacter(
  42658. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42659. {
  42660. front: {
  42661. height: math.unit(4, "feet"),
  42662. weight: math.unit(60, "lb"),
  42663. name: "Front",
  42664. image: {
  42665. source: "./media/characters/jasper/front.svg",
  42666. extra: 1450/1379,
  42667. bottom: 19/1469
  42668. }
  42669. },
  42670. },
  42671. [
  42672. {
  42673. name: "Normal",
  42674. height: math.unit(4, "feet"),
  42675. default: true
  42676. },
  42677. ]
  42678. ))
  42679. characterMakers.push(() => makeCharacter(
  42680. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42681. {
  42682. front: {
  42683. height: math.unit(6 + 5/12, "feet"),
  42684. weight: math.unit(290, "lb"),
  42685. name: "Front",
  42686. image: {
  42687. source: "./media/characters/tiberius-thyben/front.svg",
  42688. extra: 757/739,
  42689. bottom: 39/796
  42690. }
  42691. },
  42692. },
  42693. [
  42694. {
  42695. name: "Micro",
  42696. height: math.unit(1.5, "inches")
  42697. },
  42698. {
  42699. name: "Normal",
  42700. height: math.unit(6 + 5/12, "feet"),
  42701. default: true
  42702. },
  42703. {
  42704. name: "Macro",
  42705. height: math.unit(300, "feet")
  42706. },
  42707. ]
  42708. ))
  42709. characterMakers.push(() => makeCharacter(
  42710. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42711. {
  42712. front: {
  42713. height: math.unit(5 + 6/12, "feet"),
  42714. weight: math.unit(60, "kg"),
  42715. name: "Front",
  42716. image: {
  42717. source: "./media/characters/sabre/front.svg",
  42718. extra: 738/671,
  42719. bottom: 27/765
  42720. }
  42721. },
  42722. },
  42723. [
  42724. {
  42725. name: "Teeny",
  42726. height: math.unit(2, "inches")
  42727. },
  42728. {
  42729. name: "Smol",
  42730. height: math.unit(8, "inches")
  42731. },
  42732. {
  42733. name: "Normal",
  42734. height: math.unit(5 + 6/12, "feet"),
  42735. default: true
  42736. },
  42737. {
  42738. name: "Mini-Macro",
  42739. height: math.unit(15, "feet")
  42740. },
  42741. {
  42742. name: "Macro",
  42743. height: math.unit(50, "feet")
  42744. },
  42745. ]
  42746. ))
  42747. characterMakers.push(() => makeCharacter(
  42748. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42749. {
  42750. front: {
  42751. height: math.unit(6 + 4/12, "feet"),
  42752. weight: math.unit(170, "lb"),
  42753. name: "Front",
  42754. image: {
  42755. source: "./media/characters/charlie/front.svg",
  42756. extra: 1348/1228,
  42757. bottom: 15/1363
  42758. }
  42759. },
  42760. },
  42761. [
  42762. {
  42763. name: "Macro",
  42764. height: math.unit(1700, "meters"),
  42765. default: true
  42766. },
  42767. {
  42768. name: "MegaMacro",
  42769. height: math.unit(20400, "meters")
  42770. },
  42771. ]
  42772. ))
  42773. characterMakers.push(() => makeCharacter(
  42774. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42775. {
  42776. front: {
  42777. height: math.unit(6 + 3/12, "feet"),
  42778. weight: math.unit(185, "lb"),
  42779. name: "Front",
  42780. image: {
  42781. source: "./media/characters/susan-grant/front.svg",
  42782. extra: 1351/1327,
  42783. bottom: 26/1377
  42784. }
  42785. },
  42786. },
  42787. [
  42788. {
  42789. name: "Normal",
  42790. height: math.unit(6 + 3/12, "feet"),
  42791. default: true
  42792. },
  42793. {
  42794. name: "Macro",
  42795. height: math.unit(225, "feet")
  42796. },
  42797. {
  42798. name: "Macro+",
  42799. height: math.unit(900, "feet")
  42800. },
  42801. {
  42802. name: "MegaMacro",
  42803. height: math.unit(14400, "feet")
  42804. },
  42805. ]
  42806. ))
  42807. characterMakers.push(() => makeCharacter(
  42808. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42809. {
  42810. front: {
  42811. height: math.unit(5 + 4/12, "feet"),
  42812. weight: math.unit(110, "lb"),
  42813. name: "Front",
  42814. image: {
  42815. source: "./media/characters/axel-isanov/front.svg",
  42816. extra: 1096/1065,
  42817. bottom: 13/1109
  42818. }
  42819. },
  42820. },
  42821. [
  42822. {
  42823. name: "Normal",
  42824. height: math.unit(5 + 4/12, "feet"),
  42825. default: true
  42826. },
  42827. ]
  42828. ))
  42829. characterMakers.push(() => makeCharacter(
  42830. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42831. {
  42832. front: {
  42833. height: math.unit(9, "feet"),
  42834. weight: math.unit(467, "lb"),
  42835. name: "Front",
  42836. image: {
  42837. source: "./media/characters/necahual/front.svg",
  42838. extra: 920/873,
  42839. bottom: 26/946
  42840. }
  42841. },
  42842. back: {
  42843. height: math.unit(9, "feet"),
  42844. weight: math.unit(467, "lb"),
  42845. name: "Back",
  42846. image: {
  42847. source: "./media/characters/necahual/back.svg",
  42848. extra: 930/884,
  42849. bottom: 16/946
  42850. }
  42851. },
  42852. frontUnderwear: {
  42853. height: math.unit(9, "feet"),
  42854. weight: math.unit(467, "lb"),
  42855. name: "Front (Underwear)",
  42856. image: {
  42857. source: "./media/characters/necahual/front-underwear.svg",
  42858. extra: 920/873,
  42859. bottom: 26/946
  42860. }
  42861. },
  42862. frontDressed: {
  42863. height: math.unit(9, "feet"),
  42864. weight: math.unit(467, "lb"),
  42865. name: "Front (Dressed)",
  42866. image: {
  42867. source: "./media/characters/necahual/front-dressed.svg",
  42868. extra: 920/873,
  42869. bottom: 26/946
  42870. }
  42871. },
  42872. },
  42873. [
  42874. {
  42875. name: "Comprsesed",
  42876. height: math.unit(9, "feet")
  42877. },
  42878. {
  42879. name: "Natural",
  42880. height: math.unit(15, "feet"),
  42881. default: true
  42882. },
  42883. {
  42884. name: "Boosted",
  42885. height: math.unit(50, "feet")
  42886. },
  42887. {
  42888. name: "Boosted+",
  42889. height: math.unit(150, "feet")
  42890. },
  42891. {
  42892. name: "Max",
  42893. height: math.unit(500, "feet")
  42894. },
  42895. ]
  42896. ))
  42897. characterMakers.push(() => makeCharacter(
  42898. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42899. {
  42900. front: {
  42901. height: math.unit(22 + 1/12, "feet"),
  42902. weight: math.unit(3200, "lb"),
  42903. name: "Front",
  42904. image: {
  42905. source: "./media/characters/theo-acacia/front.svg",
  42906. extra: 1796/1741,
  42907. bottom: 83/1879
  42908. }
  42909. },
  42910. frontUnderwear: {
  42911. height: math.unit(22 + 1/12, "feet"),
  42912. weight: math.unit(3200, "lb"),
  42913. name: "Front (Underwear)",
  42914. image: {
  42915. source: "./media/characters/theo-acacia/front-underwear.svg",
  42916. extra: 1796/1741,
  42917. bottom: 83/1879
  42918. }
  42919. },
  42920. frontNude: {
  42921. height: math.unit(22 + 1/12, "feet"),
  42922. weight: math.unit(3200, "lb"),
  42923. name: "Front (Nude)",
  42924. image: {
  42925. source: "./media/characters/theo-acacia/front-nude.svg",
  42926. extra: 1796/1741,
  42927. bottom: 83/1879
  42928. }
  42929. },
  42930. },
  42931. [
  42932. {
  42933. name: "Normal",
  42934. height: math.unit(22 + 1/12, "feet"),
  42935. default: true
  42936. },
  42937. ]
  42938. ))
  42939. characterMakers.push(() => makeCharacter(
  42940. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42941. {
  42942. front: {
  42943. height: math.unit(20, "feet"),
  42944. name: "Front",
  42945. image: {
  42946. source: "./media/characters/astra/front.svg",
  42947. extra: 1850/1714,
  42948. bottom: 106/1956
  42949. }
  42950. },
  42951. frontUndressed: {
  42952. height: math.unit(20, "feet"),
  42953. name: "Front (Undressed)",
  42954. image: {
  42955. source: "./media/characters/astra/front-undressed.svg",
  42956. extra: 1926/1749,
  42957. bottom: 0/1926
  42958. }
  42959. },
  42960. hand: {
  42961. height: math.unit(1.53, "feet"),
  42962. name: "Hand",
  42963. image: {
  42964. source: "./media/characters/astra/hand.svg"
  42965. }
  42966. },
  42967. paw: {
  42968. height: math.unit(1.53, "feet"),
  42969. name: "Paw",
  42970. image: {
  42971. source: "./media/characters/astra/paw.svg"
  42972. }
  42973. },
  42974. },
  42975. [
  42976. {
  42977. name: "Smallest",
  42978. height: math.unit(20, "feet")
  42979. },
  42980. {
  42981. name: "Normal",
  42982. height: math.unit(1e9, "miles"),
  42983. default: true
  42984. },
  42985. {
  42986. name: "Larger",
  42987. height: math.unit(5, "multiverses")
  42988. },
  42989. {
  42990. name: "Largest",
  42991. height: math.unit(1e9, "multiverses")
  42992. },
  42993. ]
  42994. ))
  42995. characterMakers.push(() => makeCharacter(
  42996. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42997. {
  42998. front: {
  42999. height: math.unit(8, "feet"),
  43000. name: "Front",
  43001. image: {
  43002. source: "./media/characters/breanna/front.svg",
  43003. extra: 1912/1632,
  43004. bottom: 33/1945
  43005. }
  43006. },
  43007. },
  43008. [
  43009. {
  43010. name: "Smallest",
  43011. height: math.unit(8, "feet")
  43012. },
  43013. {
  43014. name: "Normal",
  43015. height: math.unit(1, "mile"),
  43016. default: true
  43017. },
  43018. {
  43019. name: "Maximum",
  43020. height: math.unit(1500000000000, "lightyears")
  43021. },
  43022. ]
  43023. ))
  43024. characterMakers.push(() => makeCharacter(
  43025. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43026. {
  43027. front: {
  43028. height: math.unit(5 + 11/12, "feet"),
  43029. weight: math.unit(155, "lb"),
  43030. name: "Front",
  43031. image: {
  43032. source: "./media/characters/cai/front.svg",
  43033. extra: 1823/1702,
  43034. bottom: 32/1855
  43035. }
  43036. },
  43037. back: {
  43038. height: math.unit(5 + 11/12, "feet"),
  43039. weight: math.unit(155, "lb"),
  43040. name: "Back",
  43041. image: {
  43042. source: "./media/characters/cai/back.svg",
  43043. extra: 1809/1708,
  43044. bottom: 31/1840
  43045. }
  43046. },
  43047. },
  43048. [
  43049. {
  43050. name: "Normal",
  43051. height: math.unit(5 + 11/12, "feet"),
  43052. default: true
  43053. },
  43054. {
  43055. name: "Big",
  43056. height: math.unit(15, "feet")
  43057. },
  43058. {
  43059. name: "Macro",
  43060. height: math.unit(200, "feet")
  43061. },
  43062. ]
  43063. ))
  43064. characterMakers.push(() => makeCharacter(
  43065. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43066. {
  43067. front: {
  43068. height: math.unit(5 + 6/12, "feet"),
  43069. weight: math.unit(160, "lb"),
  43070. name: "Front",
  43071. image: {
  43072. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43073. extra: 1227/1174,
  43074. bottom: 37/1264
  43075. }
  43076. },
  43077. },
  43078. [
  43079. {
  43080. name: "Macro",
  43081. height: math.unit(444, "meters"),
  43082. default: true
  43083. },
  43084. ]
  43085. ))
  43086. characterMakers.push(() => makeCharacter(
  43087. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43088. {
  43089. front: {
  43090. height: math.unit(18 + 7/12, "feet"),
  43091. name: "Front",
  43092. image: {
  43093. source: "./media/characters/rex/front.svg",
  43094. extra: 1941/1807,
  43095. bottom: 66/2007
  43096. }
  43097. },
  43098. back: {
  43099. height: math.unit(18 + 7/12, "feet"),
  43100. name: "Back",
  43101. image: {
  43102. source: "./media/characters/rex/back.svg",
  43103. extra: 1937/1822,
  43104. bottom: 42/1979
  43105. }
  43106. },
  43107. boot: {
  43108. height: math.unit(3.45, "feet"),
  43109. name: "Boot",
  43110. image: {
  43111. source: "./media/characters/rex/boot.svg"
  43112. }
  43113. },
  43114. paw: {
  43115. height: math.unit(4.17, "feet"),
  43116. name: "Paw",
  43117. image: {
  43118. source: "./media/characters/rex/paw.svg"
  43119. }
  43120. },
  43121. head: {
  43122. height: math.unit(6.728, "feet"),
  43123. name: "Head",
  43124. image: {
  43125. source: "./media/characters/rex/head.svg"
  43126. }
  43127. },
  43128. },
  43129. [
  43130. {
  43131. name: "Nano",
  43132. height: math.unit(18 + 7/12, "feet")
  43133. },
  43134. {
  43135. name: "Micro",
  43136. height: math.unit(1.5, "megameters")
  43137. },
  43138. {
  43139. name: "Normal",
  43140. height: math.unit(440, "megameters"),
  43141. default: true
  43142. },
  43143. {
  43144. name: "Macro",
  43145. height: math.unit(2.5, "gigameters")
  43146. },
  43147. {
  43148. name: "Gigamacro",
  43149. height: math.unit(2, "galaxies")
  43150. },
  43151. ]
  43152. ))
  43153. characterMakers.push(() => makeCharacter(
  43154. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43155. {
  43156. side: {
  43157. height: math.unit(32, "feet"),
  43158. weight: math.unit(250000, "lb"),
  43159. name: "Side",
  43160. image: {
  43161. source: "./media/characters/silverwing/side.svg",
  43162. extra: 1100/1019,
  43163. bottom: 204/1304
  43164. }
  43165. },
  43166. },
  43167. [
  43168. {
  43169. name: "Normal",
  43170. height: math.unit(32, "feet"),
  43171. default: true
  43172. },
  43173. ]
  43174. ))
  43175. characterMakers.push(() => makeCharacter(
  43176. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43177. {
  43178. front: {
  43179. height: math.unit(6 + 6/12, "feet"),
  43180. weight: math.unit(350, "lb"),
  43181. name: "Front",
  43182. image: {
  43183. source: "./media/characters/tristan-hawthorne/front.svg",
  43184. extra: 1159/1124,
  43185. bottom: 37/1196
  43186. },
  43187. form: "labrador",
  43188. default: true
  43189. },
  43190. skunkFront: {
  43191. height: math.unit(4 + 6/12, "feet"),
  43192. weight: math.unit(120, "lb"),
  43193. name: "Front",
  43194. image: {
  43195. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43196. extra: 1609/1551,
  43197. bottom: 169/1778
  43198. },
  43199. form: "skunk",
  43200. default: true
  43201. },
  43202. },
  43203. [
  43204. {
  43205. name: "Normal",
  43206. height: math.unit(6 + 6/12, "feet"),
  43207. form: "labrador",
  43208. default: true
  43209. },
  43210. {
  43211. name: "Normal",
  43212. height: math.unit(4 + 6/12, "feet"),
  43213. form: "skunk",
  43214. default: true
  43215. },
  43216. ],
  43217. {
  43218. "labrador": {
  43219. name: "Labrador",
  43220. default: true
  43221. },
  43222. "skunk": {
  43223. name: "Skunk"
  43224. }
  43225. }
  43226. ))
  43227. characterMakers.push(() => makeCharacter(
  43228. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43229. {
  43230. front: {
  43231. height: math.unit(5 + 11/12, "feet"),
  43232. weight: math.unit(190, "lb"),
  43233. name: "Front",
  43234. image: {
  43235. source: "./media/characters/mizu/front.svg",
  43236. extra: 1988/1788,
  43237. bottom: 14/2002
  43238. }
  43239. },
  43240. },
  43241. [
  43242. {
  43243. name: "Normal",
  43244. height: math.unit(5 + 11/12, "feet"),
  43245. default: true
  43246. },
  43247. ]
  43248. ))
  43249. characterMakers.push(() => makeCharacter(
  43250. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43251. {
  43252. front: {
  43253. height: math.unit(1.7, "feet"),
  43254. weight: math.unit(50, "lb"),
  43255. name: "Front",
  43256. image: {
  43257. source: "./media/characters/dechroma/front.svg",
  43258. extra: 1095/859,
  43259. bottom: 64/1159
  43260. }
  43261. },
  43262. },
  43263. [
  43264. {
  43265. name: "Normal",
  43266. height: math.unit(1.7, "feet"),
  43267. default: true
  43268. },
  43269. ]
  43270. ))
  43271. characterMakers.push(() => makeCharacter(
  43272. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43273. {
  43274. side: {
  43275. height: math.unit(30, "feet"),
  43276. name: "Side",
  43277. image: {
  43278. source: "./media/characters/veluren-thanazel/side.svg",
  43279. extra: 1611/633,
  43280. bottom: 118/1729
  43281. }
  43282. },
  43283. front: {
  43284. height: math.unit(30, "feet"),
  43285. name: "Front",
  43286. image: {
  43287. source: "./media/characters/veluren-thanazel/front.svg",
  43288. extra: 1486/636,
  43289. bottom: 238/1724
  43290. }
  43291. },
  43292. head: {
  43293. height: math.unit(21.4, "feet"),
  43294. name: "Head",
  43295. image: {
  43296. source: "./media/characters/veluren-thanazel/head.svg"
  43297. }
  43298. },
  43299. genitals: {
  43300. height: math.unit(19.4, "feet"),
  43301. name: "Genitals",
  43302. image: {
  43303. source: "./media/characters/veluren-thanazel/genitals.svg"
  43304. }
  43305. },
  43306. },
  43307. [
  43308. {
  43309. name: "Social",
  43310. height: math.unit(6, "feet")
  43311. },
  43312. {
  43313. name: "Play",
  43314. height: math.unit(12, "feet")
  43315. },
  43316. {
  43317. name: "True",
  43318. height: math.unit(30, "feet"),
  43319. default: true
  43320. },
  43321. ]
  43322. ))
  43323. characterMakers.push(() => makeCharacter(
  43324. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43325. {
  43326. front: {
  43327. height: math.unit(7 + 6/12, "feet"),
  43328. weight: math.unit(500, "kg"),
  43329. name: "Front",
  43330. image: {
  43331. source: "./media/characters/arcturas/front.svg",
  43332. extra: 1700/1500,
  43333. bottom: 145/1845
  43334. }
  43335. },
  43336. },
  43337. [
  43338. {
  43339. name: "Normal",
  43340. height: math.unit(7 + 6/12, "feet"),
  43341. default: true
  43342. },
  43343. ]
  43344. ))
  43345. characterMakers.push(() => makeCharacter(
  43346. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43347. {
  43348. side: {
  43349. height: math.unit(6, "feet"),
  43350. weight: math.unit(2, "tons"),
  43351. name: "Side",
  43352. image: {
  43353. source: "./media/characters/vitaen/side.svg",
  43354. extra: 1157/617,
  43355. bottom: 122/1279
  43356. }
  43357. },
  43358. },
  43359. [
  43360. {
  43361. name: "Normal",
  43362. height: math.unit(6, "feet"),
  43363. default: true
  43364. },
  43365. ]
  43366. ))
  43367. characterMakers.push(() => makeCharacter(
  43368. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43369. {
  43370. front: {
  43371. height: math.unit(19, "feet"),
  43372. name: "Front",
  43373. image: {
  43374. source: "./media/characters/fia-dreamweaver/front.svg",
  43375. extra: 1630/1504,
  43376. bottom: 25/1655
  43377. }
  43378. },
  43379. },
  43380. [
  43381. {
  43382. name: "Normal",
  43383. height: math.unit(19, "feet"),
  43384. default: true
  43385. },
  43386. ]
  43387. ))
  43388. characterMakers.push(() => makeCharacter(
  43389. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43390. {
  43391. front: {
  43392. height: math.unit(5 + 4/12, "feet"),
  43393. name: "Front",
  43394. image: {
  43395. source: "./media/characters/artan/front.svg",
  43396. extra: 1618/1535,
  43397. bottom: 46/1664
  43398. }
  43399. },
  43400. back: {
  43401. height: math.unit(5 + 4/12, "feet"),
  43402. name: "Back",
  43403. image: {
  43404. source: "./media/characters/artan/back.svg",
  43405. extra: 1618/1543,
  43406. bottom: 31/1649
  43407. }
  43408. },
  43409. },
  43410. [
  43411. {
  43412. name: "Normal",
  43413. height: math.unit(5 + 4/12, "feet"),
  43414. default: true
  43415. },
  43416. ]
  43417. ))
  43418. characterMakers.push(() => makeCharacter(
  43419. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43420. {
  43421. side: {
  43422. height: math.unit(182, "cm"),
  43423. weight: math.unit(1000, "lb"),
  43424. name: "Side",
  43425. image: {
  43426. source: "./media/characters/silver-dragon/side.svg",
  43427. extra: 710/287,
  43428. bottom: 88/798
  43429. }
  43430. },
  43431. },
  43432. [
  43433. {
  43434. name: "Normal",
  43435. height: math.unit(182, "cm"),
  43436. default: true
  43437. },
  43438. ]
  43439. ))
  43440. characterMakers.push(() => makeCharacter(
  43441. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43442. {
  43443. side: {
  43444. height: math.unit(6 + 6/12, "feet"),
  43445. weight: math.unit(1.5, "tons"),
  43446. name: "Side",
  43447. image: {
  43448. source: "./media/characters/zephyr/side.svg",
  43449. extra: 1433/586,
  43450. bottom: 109/1542
  43451. }
  43452. },
  43453. },
  43454. [
  43455. {
  43456. name: "Normal",
  43457. height: math.unit(6 + 6/12, "feet"),
  43458. default: true
  43459. },
  43460. ]
  43461. ))
  43462. characterMakers.push(() => makeCharacter(
  43463. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43464. {
  43465. side: {
  43466. height: math.unit(1, "feet"),
  43467. name: "Side",
  43468. image: {
  43469. source: "./media/characters/vixye/side.svg",
  43470. extra: 632/541,
  43471. bottom: 0/632
  43472. }
  43473. },
  43474. },
  43475. [
  43476. {
  43477. name: "Normal",
  43478. height: math.unit(1, "feet"),
  43479. default: true
  43480. },
  43481. {
  43482. name: "True",
  43483. height: math.unit(1e15, "multiverses")
  43484. },
  43485. ]
  43486. ))
  43487. characterMakers.push(() => makeCharacter(
  43488. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43489. {
  43490. front: {
  43491. height: math.unit(8 + 2/12, "feet"),
  43492. weight: math.unit(650, "lb"),
  43493. name: "Front",
  43494. image: {
  43495. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43496. extra: 1174/1137,
  43497. bottom: 82/1256
  43498. }
  43499. },
  43500. back: {
  43501. height: math.unit(8 + 2/12, "feet"),
  43502. weight: math.unit(650, "lb"),
  43503. name: "Back",
  43504. image: {
  43505. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43506. extra: 1204/1157,
  43507. bottom: 46/1250
  43508. }
  43509. },
  43510. },
  43511. [
  43512. {
  43513. name: "Wildform",
  43514. height: math.unit(8 + 2/12, "feet"),
  43515. default: true
  43516. },
  43517. ]
  43518. ))
  43519. characterMakers.push(() => makeCharacter(
  43520. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43521. {
  43522. front: {
  43523. height: math.unit(18, "feet"),
  43524. name: "Front",
  43525. image: {
  43526. source: "./media/characters/cyphin/front.svg",
  43527. extra: 970/886,
  43528. bottom: 42/1012
  43529. }
  43530. },
  43531. back: {
  43532. height: math.unit(18, "feet"),
  43533. name: "Back",
  43534. image: {
  43535. source: "./media/characters/cyphin/back.svg",
  43536. extra: 1009/894,
  43537. bottom: 24/1033
  43538. }
  43539. },
  43540. head: {
  43541. height: math.unit(5.05, "feet"),
  43542. name: "Head",
  43543. image: {
  43544. source: "./media/characters/cyphin/head.svg"
  43545. }
  43546. },
  43547. tailbud: {
  43548. height: math.unit(5, "feet"),
  43549. name: "Tailbud",
  43550. image: {
  43551. source: "./media/characters/cyphin/tailbud.svg"
  43552. }
  43553. },
  43554. },
  43555. [
  43556. ]
  43557. ))
  43558. characterMakers.push(() => makeCharacter(
  43559. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43560. {
  43561. side: {
  43562. height: math.unit(10, "feet"),
  43563. weight: math.unit(6, "tons"),
  43564. name: "Side",
  43565. image: {
  43566. source: "./media/characters/raijin/side.svg",
  43567. extra: 1529/613,
  43568. bottom: 337/1866
  43569. }
  43570. },
  43571. },
  43572. [
  43573. {
  43574. name: "Normal",
  43575. height: math.unit(10, "feet"),
  43576. default: true
  43577. },
  43578. ]
  43579. ))
  43580. characterMakers.push(() => makeCharacter(
  43581. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43582. {
  43583. side: {
  43584. height: math.unit(9, "feet"),
  43585. name: "Side",
  43586. image: {
  43587. source: "./media/characters/nilghais/side.svg",
  43588. extra: 1047/744,
  43589. bottom: 91/1138
  43590. }
  43591. },
  43592. head: {
  43593. height: math.unit(3.14, "feet"),
  43594. name: "Head",
  43595. image: {
  43596. source: "./media/characters/nilghais/head.svg"
  43597. }
  43598. },
  43599. mouth: {
  43600. height: math.unit(4.6, "feet"),
  43601. name: "Mouth",
  43602. image: {
  43603. source: "./media/characters/nilghais/mouth.svg"
  43604. }
  43605. },
  43606. wings: {
  43607. height: math.unit(24, "feet"),
  43608. name: "Wings",
  43609. image: {
  43610. source: "./media/characters/nilghais/wings.svg"
  43611. }
  43612. },
  43613. ass: {
  43614. height: math.unit(6.12, "feet"),
  43615. name: "Ass",
  43616. image: {
  43617. source: "./media/characters/nilghais/ass.svg"
  43618. }
  43619. },
  43620. },
  43621. [
  43622. {
  43623. name: "Normal",
  43624. height: math.unit(9, "feet"),
  43625. default: true
  43626. },
  43627. ]
  43628. ))
  43629. characterMakers.push(() => makeCharacter(
  43630. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43631. {
  43632. regular: {
  43633. height: math.unit(16 + 2/12, "feet"),
  43634. weight: math.unit(2300, "lb"),
  43635. name: "Regular",
  43636. image: {
  43637. source: "./media/characters/zolgar/regular.svg",
  43638. extra: 1246/1004,
  43639. bottom: 124/1370
  43640. }
  43641. },
  43642. boxers: {
  43643. height: math.unit(16 + 2/12, "feet"),
  43644. weight: math.unit(2300, "lb"),
  43645. name: "Boxers",
  43646. image: {
  43647. source: "./media/characters/zolgar/boxers.svg",
  43648. extra: 1246/1004,
  43649. bottom: 124/1370
  43650. }
  43651. },
  43652. armored: {
  43653. height: math.unit(16 + 2/12, "feet"),
  43654. weight: math.unit(2300, "lb"),
  43655. name: "Armored",
  43656. image: {
  43657. source: "./media/characters/zolgar/armored.svg",
  43658. extra: 1246/1004,
  43659. bottom: 124/1370
  43660. }
  43661. },
  43662. goth: {
  43663. height: math.unit(16 + 2/12, "feet"),
  43664. weight: math.unit(2300, "lb"),
  43665. name: "Goth",
  43666. image: {
  43667. source: "./media/characters/zolgar/goth.svg",
  43668. extra: 1246/1004,
  43669. bottom: 124/1370
  43670. }
  43671. },
  43672. },
  43673. [
  43674. {
  43675. name: "Shrunken Down",
  43676. height: math.unit(9 + 2/12, "feet")
  43677. },
  43678. {
  43679. name: "Normal",
  43680. height: math.unit(16 + 2/12, "feet"),
  43681. default: true
  43682. },
  43683. ]
  43684. ))
  43685. characterMakers.push(() => makeCharacter(
  43686. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43687. {
  43688. front: {
  43689. height: math.unit(6, "feet"),
  43690. weight: math.unit(168, "lb"),
  43691. name: "Front",
  43692. image: {
  43693. source: "./media/characters/luca/front.svg",
  43694. extra: 841/667,
  43695. bottom: 102/943
  43696. }
  43697. },
  43698. },
  43699. [
  43700. {
  43701. name: "Normal",
  43702. height: math.unit(6, "feet"),
  43703. default: true
  43704. },
  43705. ]
  43706. ))
  43707. characterMakers.push(() => makeCharacter(
  43708. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43709. {
  43710. side: {
  43711. height: math.unit(7 + 3/12, "feet"),
  43712. weight: math.unit(312, "lb"),
  43713. name: "Side",
  43714. image: {
  43715. source: "./media/characters/zezo/side.svg",
  43716. extra: 1192/1067,
  43717. bottom: 63/1255
  43718. }
  43719. },
  43720. },
  43721. [
  43722. {
  43723. name: "Normal",
  43724. height: math.unit(7 + 3/12, "feet"),
  43725. default: true
  43726. },
  43727. ]
  43728. ))
  43729. characterMakers.push(() => makeCharacter(
  43730. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43731. {
  43732. front: {
  43733. height: math.unit(5 + 5/12, "feet"),
  43734. weight: math.unit(170, "lb"),
  43735. name: "Front",
  43736. image: {
  43737. source: "./media/characters/mayso/front.svg",
  43738. extra: 1215/1108,
  43739. bottom: 16/1231
  43740. }
  43741. },
  43742. },
  43743. [
  43744. {
  43745. name: "Normal",
  43746. height: math.unit(5 + 5/12, "feet"),
  43747. default: true
  43748. },
  43749. ]
  43750. ))
  43751. characterMakers.push(() => makeCharacter(
  43752. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43753. {
  43754. front: {
  43755. height: math.unit(4 + 3/12, "feet"),
  43756. weight: math.unit(80, "lb"),
  43757. name: "Front",
  43758. image: {
  43759. source: "./media/characters/hess/front.svg",
  43760. extra: 1200/1123,
  43761. bottom: 16/1216
  43762. }
  43763. },
  43764. },
  43765. [
  43766. {
  43767. name: "Normal",
  43768. height: math.unit(4 + 3/12, "feet"),
  43769. default: true
  43770. },
  43771. ]
  43772. ))
  43773. characterMakers.push(() => makeCharacter(
  43774. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43775. {
  43776. front: {
  43777. height: math.unit(1.9, "meters"),
  43778. name: "Front",
  43779. image: {
  43780. source: "./media/characters/ashgar/front.svg",
  43781. extra: 1177/1146,
  43782. bottom: 99/1276
  43783. }
  43784. },
  43785. back: {
  43786. height: math.unit(1.9, "meters"),
  43787. name: "Back",
  43788. image: {
  43789. source: "./media/characters/ashgar/back.svg",
  43790. extra: 1201/1183,
  43791. bottom: 53/1254
  43792. }
  43793. },
  43794. feral: {
  43795. height: math.unit(1.4, "meters"),
  43796. name: "Feral",
  43797. image: {
  43798. source: "./media/characters/ashgar/feral.svg",
  43799. extra: 370/345,
  43800. bottom: 45/415
  43801. }
  43802. },
  43803. },
  43804. [
  43805. {
  43806. name: "Normal",
  43807. height: math.unit(1.9, "meters"),
  43808. default: true
  43809. },
  43810. ]
  43811. ))
  43812. characterMakers.push(() => makeCharacter(
  43813. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43814. {
  43815. regular: {
  43816. height: math.unit(6, "feet"),
  43817. weight: math.unit(220, "lb"),
  43818. name: "Regular",
  43819. image: {
  43820. source: "./media/characters/phillip/regular.svg",
  43821. extra: 1373/1277,
  43822. bottom: 75/1448
  43823. }
  43824. },
  43825. dressed: {
  43826. height: math.unit(6, "feet"),
  43827. weight: math.unit(220, "lb"),
  43828. name: "Dressed",
  43829. image: {
  43830. source: "./media/characters/phillip/dressed.svg",
  43831. extra: 1373/1277,
  43832. bottom: 75/1448
  43833. }
  43834. },
  43835. paw: {
  43836. height: math.unit(1.44, "feet"),
  43837. name: "Paw",
  43838. image: {
  43839. source: "./media/characters/phillip/paw.svg"
  43840. }
  43841. },
  43842. },
  43843. [
  43844. {
  43845. name: "Normal",
  43846. height: math.unit(6, "feet"),
  43847. default: true
  43848. },
  43849. ]
  43850. ))
  43851. characterMakers.push(() => makeCharacter(
  43852. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43853. {
  43854. side: {
  43855. height: math.unit(42, "feet"),
  43856. name: "Side",
  43857. image: {
  43858. source: "./media/characters/uvula/side.svg",
  43859. extra: 683/586,
  43860. bottom: 60/743
  43861. }
  43862. },
  43863. front: {
  43864. height: math.unit(42, "feet"),
  43865. name: "Front",
  43866. image: {
  43867. source: "./media/characters/uvula/front.svg",
  43868. extra: 705/613,
  43869. bottom: 54/759
  43870. }
  43871. },
  43872. maw: {
  43873. height: math.unit(23.5, "feet"),
  43874. name: "Maw",
  43875. image: {
  43876. source: "./media/characters/uvula/maw.svg"
  43877. }
  43878. },
  43879. },
  43880. [
  43881. {
  43882. name: "Original Size",
  43883. height: math.unit(14, "inches")
  43884. },
  43885. {
  43886. name: "Human Size",
  43887. height: math.unit(6, "feet")
  43888. },
  43889. {
  43890. name: "Big",
  43891. height: math.unit(42, "feet"),
  43892. default: true
  43893. },
  43894. {
  43895. name: "Bigger",
  43896. height: math.unit(100, "feet")
  43897. },
  43898. ]
  43899. ))
  43900. characterMakers.push(() => makeCharacter(
  43901. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43902. {
  43903. front: {
  43904. height: math.unit(5 + 11/12, "feet"),
  43905. name: "Front",
  43906. image: {
  43907. source: "./media/characters/lannah/front.svg",
  43908. extra: 1208/1113,
  43909. bottom: 97/1305
  43910. }
  43911. },
  43912. },
  43913. [
  43914. {
  43915. name: "Normal",
  43916. height: math.unit(5 + 11/12, "feet"),
  43917. default: true
  43918. },
  43919. ]
  43920. ))
  43921. characterMakers.push(() => makeCharacter(
  43922. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43923. {
  43924. front: {
  43925. height: math.unit(6 + 3/12, "feet"),
  43926. weight: math.unit(3.5, "tons"),
  43927. name: "Front",
  43928. image: {
  43929. source: "./media/characters/emberflame/front.svg",
  43930. extra: 1198/672,
  43931. bottom: 82/1280
  43932. }
  43933. },
  43934. side: {
  43935. height: math.unit(6 + 3/12, "feet"),
  43936. weight: math.unit(3.5, "tons"),
  43937. name: "Side",
  43938. image: {
  43939. source: "./media/characters/emberflame/side.svg",
  43940. extra: 938/527,
  43941. bottom: 56/994
  43942. }
  43943. },
  43944. },
  43945. [
  43946. {
  43947. name: "Normal",
  43948. height: math.unit(6 + 3/12, "feet"),
  43949. default: true
  43950. },
  43951. ]
  43952. ))
  43953. characterMakers.push(() => makeCharacter(
  43954. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43955. {
  43956. side: {
  43957. height: math.unit(17.5, "feet"),
  43958. weight: math.unit(35, "tons"),
  43959. name: "Side",
  43960. image: {
  43961. source: "./media/characters/sophie-ambrose/side.svg",
  43962. extra: 1573/1242,
  43963. bottom: 71/1644
  43964. }
  43965. },
  43966. maw: {
  43967. height: math.unit(7.4, "feet"),
  43968. name: "Maw",
  43969. image: {
  43970. source: "./media/characters/sophie-ambrose/maw.svg"
  43971. }
  43972. },
  43973. },
  43974. [
  43975. {
  43976. name: "Normal",
  43977. height: math.unit(17.5, "feet"),
  43978. default: true
  43979. },
  43980. ]
  43981. ))
  43982. characterMakers.push(() => makeCharacter(
  43983. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43984. {
  43985. front: {
  43986. height: math.unit(280, "feet"),
  43987. weight: math.unit(550, "tons"),
  43988. name: "Front",
  43989. image: {
  43990. source: "./media/characters/king-mugi/front.svg",
  43991. extra: 1102/947,
  43992. bottom: 104/1206
  43993. }
  43994. },
  43995. },
  43996. [
  43997. {
  43998. name: "King Mugi",
  43999. height: math.unit(280, "feet"),
  44000. default: true
  44001. },
  44002. ]
  44003. ))
  44004. characterMakers.push(() => makeCharacter(
  44005. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44006. {
  44007. front: {
  44008. height: math.unit(64, "meters"),
  44009. name: "Front",
  44010. image: {
  44011. source: "./media/characters/nova-fox/front.svg",
  44012. extra: 1310/1246,
  44013. bottom: 65/1375
  44014. }
  44015. },
  44016. },
  44017. [
  44018. {
  44019. name: "Macro",
  44020. height: math.unit(64, "meters"),
  44021. default: true
  44022. },
  44023. ]
  44024. ))
  44025. characterMakers.push(() => makeCharacter(
  44026. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44027. {
  44028. front: {
  44029. height: math.unit(6 + 3/12, "feet"),
  44030. weight: math.unit(170, "lb"),
  44031. name: "Front",
  44032. image: {
  44033. source: "./media/characters/sam-bat/front.svg",
  44034. extra: 1601/1411,
  44035. bottom: 125/1726
  44036. }
  44037. },
  44038. back: {
  44039. height: math.unit(6 + 3/12, "feet"),
  44040. weight: math.unit(170, "lb"),
  44041. name: "Back",
  44042. image: {
  44043. source: "./media/characters/sam-bat/back.svg",
  44044. extra: 1577/1405,
  44045. bottom: 58/1635
  44046. }
  44047. },
  44048. },
  44049. [
  44050. {
  44051. name: "Normal",
  44052. height: math.unit(6 + 3/12, "feet"),
  44053. default: true
  44054. },
  44055. ]
  44056. ))
  44057. characterMakers.push(() => makeCharacter(
  44058. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44059. {
  44060. front: {
  44061. height: math.unit(59, "feet"),
  44062. weight: math.unit(40000, "lb"),
  44063. name: "Front",
  44064. image: {
  44065. source: "./media/characters/inari/front.svg",
  44066. extra: 1884/1350,
  44067. bottom: 95/1979
  44068. }
  44069. },
  44070. },
  44071. [
  44072. {
  44073. name: "Gigantamax",
  44074. height: math.unit(59, "feet"),
  44075. default: true
  44076. },
  44077. ]
  44078. ))
  44079. characterMakers.push(() => makeCharacter(
  44080. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44081. {
  44082. front: {
  44083. height: math.unit(5 + 8/12, "feet"),
  44084. name: "Front",
  44085. image: {
  44086. source: "./media/characters/elizabeth/front.svg",
  44087. extra: 1395/1298,
  44088. bottom: 54/1449
  44089. }
  44090. },
  44091. mouth: {
  44092. height: math.unit(1.97, "feet"),
  44093. name: "Mouth",
  44094. image: {
  44095. source: "./media/characters/elizabeth/mouth.svg"
  44096. }
  44097. },
  44098. foot: {
  44099. height: math.unit(1.17, "feet"),
  44100. name: "Foot",
  44101. image: {
  44102. source: "./media/characters/elizabeth/foot.svg"
  44103. }
  44104. },
  44105. },
  44106. [
  44107. {
  44108. name: "Normal",
  44109. height: math.unit(5 + 8/12, "feet"),
  44110. default: true
  44111. },
  44112. {
  44113. name: "Minimacro",
  44114. height: math.unit(18, "feet")
  44115. },
  44116. {
  44117. name: "Macro",
  44118. height: math.unit(180, "feet")
  44119. },
  44120. ]
  44121. ))
  44122. characterMakers.push(() => makeCharacter(
  44123. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44124. {
  44125. front: {
  44126. height: math.unit(5 + 2/12, "feet"),
  44127. name: "Front",
  44128. image: {
  44129. source: "./media/characters/october-gossamer/front.svg",
  44130. extra: 505/454,
  44131. bottom: 7/512
  44132. }
  44133. },
  44134. back: {
  44135. height: math.unit(5 + 2/12, "feet"),
  44136. name: "Back",
  44137. image: {
  44138. source: "./media/characters/october-gossamer/back.svg",
  44139. extra: 501/454,
  44140. bottom: 11/512
  44141. }
  44142. },
  44143. },
  44144. [
  44145. {
  44146. name: "Normal",
  44147. height: math.unit(5 + 2/12, "feet"),
  44148. default: true
  44149. },
  44150. ]
  44151. ))
  44152. characterMakers.push(() => makeCharacter(
  44153. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44154. {
  44155. front: {
  44156. height: math.unit(5, "feet"),
  44157. name: "Front",
  44158. image: {
  44159. source: "./media/characters/epiglottis/front.svg",
  44160. extra: 923/849,
  44161. bottom: 17/940
  44162. }
  44163. },
  44164. },
  44165. [
  44166. {
  44167. name: "Original Size",
  44168. height: math.unit(10, "inches")
  44169. },
  44170. {
  44171. name: "Human Size",
  44172. height: math.unit(5, "feet"),
  44173. default: true
  44174. },
  44175. {
  44176. name: "Big",
  44177. height: math.unit(25, "feet")
  44178. },
  44179. {
  44180. name: "Bigger",
  44181. height: math.unit(50, "feet")
  44182. },
  44183. {
  44184. name: "oh lawd",
  44185. height: math.unit(75, "feet")
  44186. },
  44187. ]
  44188. ))
  44189. characterMakers.push(() => makeCharacter(
  44190. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44191. {
  44192. front: {
  44193. height: math.unit(2 + 4/12, "feet"),
  44194. weight: math.unit(60, "lb"),
  44195. name: "Front",
  44196. image: {
  44197. source: "./media/characters/lerm/front.svg",
  44198. extra: 796/790,
  44199. bottom: 79/875
  44200. }
  44201. },
  44202. },
  44203. [
  44204. {
  44205. name: "Normal",
  44206. height: math.unit(2 + 4/12, "feet"),
  44207. default: true
  44208. },
  44209. ]
  44210. ))
  44211. characterMakers.push(() => makeCharacter(
  44212. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44213. {
  44214. front: {
  44215. height: math.unit(5.5, "feet"),
  44216. weight: math.unit(130, "lb"),
  44217. name: "Front",
  44218. image: {
  44219. source: "./media/characters/xena-nebadon/front.svg",
  44220. extra: 1828/1730,
  44221. bottom: 79/1907
  44222. }
  44223. },
  44224. },
  44225. [
  44226. {
  44227. name: "Tiny Puppy",
  44228. height: math.unit(3, "inches")
  44229. },
  44230. {
  44231. name: "Normal",
  44232. height: math.unit(5.5, "feet"),
  44233. default: true
  44234. },
  44235. {
  44236. name: "Lotta Lady",
  44237. height: math.unit(12, "feet")
  44238. },
  44239. {
  44240. name: "Pretty Big",
  44241. height: math.unit(100, "feet")
  44242. },
  44243. {
  44244. name: "Big",
  44245. height: math.unit(500, "feet")
  44246. },
  44247. {
  44248. name: "Skyscraper Toys",
  44249. height: math.unit(2500, "feet")
  44250. },
  44251. {
  44252. name: "Plane Catcher",
  44253. height: math.unit(8, "miles")
  44254. },
  44255. {
  44256. name: "Planet Toys",
  44257. height: math.unit(15, "earths")
  44258. },
  44259. {
  44260. name: "Stardust",
  44261. height: math.unit(0.25, "galaxies")
  44262. },
  44263. {
  44264. name: "Snacks",
  44265. height: math.unit(70, "universes")
  44266. },
  44267. ]
  44268. ))
  44269. characterMakers.push(() => makeCharacter(
  44270. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44271. {
  44272. front: {
  44273. height: math.unit(1.6, "meters"),
  44274. weight: math.unit(60, "kg"),
  44275. name: "Front",
  44276. image: {
  44277. source: "./media/characters/bounty/front.svg",
  44278. extra: 1426/1308,
  44279. bottom: 15/1441
  44280. }
  44281. },
  44282. back: {
  44283. height: math.unit(1.6, "meters"),
  44284. weight: math.unit(60, "kg"),
  44285. name: "Back",
  44286. image: {
  44287. source: "./media/characters/bounty/back.svg",
  44288. extra: 1417/1307,
  44289. bottom: 8/1425
  44290. }
  44291. },
  44292. },
  44293. [
  44294. {
  44295. name: "Normal",
  44296. height: math.unit(1.6, "meters"),
  44297. default: true
  44298. },
  44299. {
  44300. name: "Macro",
  44301. height: math.unit(300, "meters")
  44302. },
  44303. ]
  44304. ))
  44305. characterMakers.push(() => makeCharacter(
  44306. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44307. {
  44308. front: {
  44309. height: math.unit(2 + 8/12, "feet"),
  44310. weight: math.unit(15, "lb"),
  44311. name: "Front",
  44312. image: {
  44313. source: "./media/characters/mochi/front.svg",
  44314. extra: 1022/852,
  44315. bottom: 435/1457
  44316. }
  44317. },
  44318. back: {
  44319. height: math.unit(2 + 8/12, "feet"),
  44320. weight: math.unit(15, "lb"),
  44321. name: "Back",
  44322. image: {
  44323. source: "./media/characters/mochi/back.svg",
  44324. extra: 1335/1119,
  44325. bottom: 39/1374
  44326. }
  44327. },
  44328. bird: {
  44329. height: math.unit(2 + 8/12, "feet"),
  44330. weight: math.unit(15, "lb"),
  44331. name: "Bird",
  44332. image: {
  44333. source: "./media/characters/mochi/bird.svg",
  44334. extra: 1251/1113,
  44335. bottom: 178/1429
  44336. }
  44337. },
  44338. kaiju: {
  44339. height: math.unit(154, "feet"),
  44340. weight: math.unit(1e7, "lb"),
  44341. name: "Kaiju",
  44342. image: {
  44343. source: "./media/characters/mochi/kaiju.svg",
  44344. extra: 460/324,
  44345. bottom: 40/500
  44346. }
  44347. },
  44348. head: {
  44349. height: math.unit(1.21, "feet"),
  44350. name: "Head",
  44351. image: {
  44352. source: "./media/characters/mochi/head.svg"
  44353. }
  44354. },
  44355. alternateTail: {
  44356. height: math.unit(2 + 8/12, "feet"),
  44357. weight: math.unit(45, "lb"),
  44358. name: "Alternate Tail",
  44359. image: {
  44360. source: "./media/characters/mochi/alternate-tail.svg",
  44361. extra: 139/76,
  44362. bottom: 45/184
  44363. }
  44364. },
  44365. },
  44366. [
  44367. {
  44368. name: "Micro",
  44369. height: math.unit(2, "inches")
  44370. },
  44371. {
  44372. name: "Normal",
  44373. height: math.unit(2 + 8/12, "feet"),
  44374. default: true
  44375. },
  44376. {
  44377. name: "Macro",
  44378. height: math.unit(106, "feet")
  44379. },
  44380. ]
  44381. ))
  44382. characterMakers.push(() => makeCharacter(
  44383. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44384. {
  44385. front: {
  44386. height: math.unit(5.67, "feet"),
  44387. weight: math.unit(135, "lb"),
  44388. name: "Front",
  44389. image: {
  44390. source: "./media/characters/sarel/front.svg",
  44391. extra: 865/788,
  44392. bottom: 97/962
  44393. }
  44394. },
  44395. back: {
  44396. height: math.unit(5.67, "feet"),
  44397. weight: math.unit(135, "lb"),
  44398. name: "Back",
  44399. image: {
  44400. source: "./media/characters/sarel/back.svg",
  44401. extra: 857/777,
  44402. bottom: 32/889
  44403. }
  44404. },
  44405. chozoan: {
  44406. height: math.unit(5.67, "feet"),
  44407. weight: math.unit(135, "lb"),
  44408. name: "Chozoan",
  44409. image: {
  44410. source: "./media/characters/sarel/chozoan.svg",
  44411. extra: 865/788,
  44412. bottom: 97/962
  44413. }
  44414. },
  44415. current: {
  44416. height: math.unit(5.67, "feet"),
  44417. weight: math.unit(135, "lb"),
  44418. name: "Current",
  44419. image: {
  44420. source: "./media/characters/sarel/current.svg",
  44421. extra: 865/788,
  44422. bottom: 97/962
  44423. }
  44424. },
  44425. head: {
  44426. height: math.unit(1.77, "feet"),
  44427. name: "Head",
  44428. image: {
  44429. source: "./media/characters/sarel/head.svg"
  44430. }
  44431. },
  44432. claws: {
  44433. height: math.unit(1.8, "feet"),
  44434. name: "Claws",
  44435. image: {
  44436. source: "./media/characters/sarel/claws.svg"
  44437. }
  44438. },
  44439. clawsAlt: {
  44440. height: math.unit(1.8, "feet"),
  44441. name: "Claws-alt",
  44442. image: {
  44443. source: "./media/characters/sarel/claws-alt.svg"
  44444. }
  44445. },
  44446. },
  44447. [
  44448. {
  44449. name: "Normal",
  44450. height: math.unit(5.67, "feet"),
  44451. default: true
  44452. },
  44453. ]
  44454. ))
  44455. characterMakers.push(() => makeCharacter(
  44456. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44457. {
  44458. front: {
  44459. height: math.unit(5500, "feet"),
  44460. name: "Front",
  44461. image: {
  44462. source: "./media/characters/alyonia/front.svg",
  44463. extra: 1200/1135,
  44464. bottom: 29/1229
  44465. }
  44466. },
  44467. back: {
  44468. height: math.unit(5500, "feet"),
  44469. name: "Back",
  44470. image: {
  44471. source: "./media/characters/alyonia/back.svg",
  44472. extra: 1205/1138,
  44473. bottom: 10/1215
  44474. }
  44475. },
  44476. },
  44477. [
  44478. {
  44479. name: "Small",
  44480. height: math.unit(10, "feet")
  44481. },
  44482. {
  44483. name: "Macro",
  44484. height: math.unit(500, "feet")
  44485. },
  44486. {
  44487. name: "Mega Macro",
  44488. height: math.unit(5500, "feet"),
  44489. default: true
  44490. },
  44491. {
  44492. name: "Mega Macro+",
  44493. height: math.unit(500000, "feet")
  44494. },
  44495. {
  44496. name: "Giga Macro",
  44497. height: math.unit(3000, "miles")
  44498. },
  44499. {
  44500. name: "Tera Macro",
  44501. height: math.unit(2.8e6, "miles")
  44502. },
  44503. {
  44504. name: "Galactic",
  44505. height: math.unit(120000, "lightyears")
  44506. },
  44507. ]
  44508. ))
  44509. characterMakers.push(() => makeCharacter(
  44510. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44511. {
  44512. werewolf: {
  44513. height: math.unit(8, "feet"),
  44514. weight: math.unit(425, "lb"),
  44515. name: "Werewolf",
  44516. image: {
  44517. source: "./media/characters/autumn/werewolf.svg",
  44518. extra: 2154/2031,
  44519. bottom: 160/2314
  44520. }
  44521. },
  44522. human: {
  44523. height: math.unit(5 + 8/12, "feet"),
  44524. weight: math.unit(150, "lb"),
  44525. name: "Human",
  44526. image: {
  44527. source: "./media/characters/autumn/human.svg",
  44528. extra: 1200/1149,
  44529. bottom: 30/1230
  44530. }
  44531. },
  44532. },
  44533. [
  44534. {
  44535. name: "Normal",
  44536. height: math.unit(8, "feet"),
  44537. default: true
  44538. },
  44539. ]
  44540. ))
  44541. characterMakers.push(() => makeCharacter(
  44542. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44543. {
  44544. front: {
  44545. height: math.unit(8 + 5/12, "feet"),
  44546. weight: math.unit(825, "lb"),
  44547. name: "Front",
  44548. image: {
  44549. source: "./media/characters/cobalt-charizard/front.svg",
  44550. extra: 1268/1155,
  44551. bottom: 122/1390
  44552. }
  44553. },
  44554. side: {
  44555. height: math.unit(8 + 5/12, "feet"),
  44556. weight: math.unit(825, "lb"),
  44557. name: "Side",
  44558. image: {
  44559. source: "./media/characters/cobalt-charizard/side.svg",
  44560. extra: 1348/1257,
  44561. bottom: 58/1406
  44562. }
  44563. },
  44564. gMax: {
  44565. height: math.unit(134 + 11/12, "feet"),
  44566. name: "G-Max",
  44567. image: {
  44568. source: "./media/characters/cobalt-charizard/g-max.svg",
  44569. extra: 1835/1541,
  44570. bottom: 151/1986
  44571. }
  44572. },
  44573. },
  44574. [
  44575. {
  44576. name: "Normal",
  44577. height: math.unit(8 + 5/12, "feet"),
  44578. default: true
  44579. },
  44580. ]
  44581. ))
  44582. characterMakers.push(() => makeCharacter(
  44583. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44584. {
  44585. front: {
  44586. height: math.unit(6 + 3/12, "feet"),
  44587. weight: math.unit(210, "lb"),
  44588. name: "Front",
  44589. image: {
  44590. source: "./media/characters/stella/front.svg",
  44591. extra: 3549/3335,
  44592. bottom: 51/3600
  44593. }
  44594. },
  44595. },
  44596. [
  44597. {
  44598. name: "Normal",
  44599. height: math.unit(6 + 3/12, "feet"),
  44600. default: true
  44601. },
  44602. ]
  44603. ))
  44604. characterMakers.push(() => makeCharacter(
  44605. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44606. {
  44607. front: {
  44608. height: math.unit(5, "feet"),
  44609. weight: math.unit(90, "lb"),
  44610. name: "Front",
  44611. image: {
  44612. source: "./media/characters/riley-bishop/front.svg",
  44613. extra: 1450/1428,
  44614. bottom: 152/1602
  44615. }
  44616. },
  44617. },
  44618. [
  44619. {
  44620. name: "Normal",
  44621. height: math.unit(5, "feet"),
  44622. default: true
  44623. },
  44624. ]
  44625. ))
  44626. characterMakers.push(() => makeCharacter(
  44627. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44628. {
  44629. side: {
  44630. height: math.unit(8 + 2/12, "feet"),
  44631. weight: math.unit(500, "kg"),
  44632. name: "Side",
  44633. image: {
  44634. source: "./media/characters/theo-arcanine/side.svg",
  44635. extra: 1342/1074,
  44636. bottom: 111/1453
  44637. }
  44638. },
  44639. },
  44640. [
  44641. {
  44642. name: "Normal",
  44643. height: math.unit(8 + 2/12, "feet"),
  44644. default: true
  44645. },
  44646. ]
  44647. ))
  44648. characterMakers.push(() => makeCharacter(
  44649. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44650. {
  44651. front: {
  44652. height: math.unit(4, "feet"),
  44653. name: "Front",
  44654. image: {
  44655. source: "./media/characters/kali/front.svg",
  44656. extra: 1921/1357,
  44657. bottom: 70/1991
  44658. }
  44659. },
  44660. },
  44661. [
  44662. {
  44663. name: "Normal",
  44664. height: math.unit(4, "feet"),
  44665. default: true
  44666. },
  44667. {
  44668. name: "Macro",
  44669. height: math.unit(32, "meters")
  44670. },
  44671. {
  44672. name: "Macro+",
  44673. height: math.unit(150, "meters")
  44674. },
  44675. {
  44676. name: "Megamacro",
  44677. height: math.unit(7500, "meters")
  44678. },
  44679. {
  44680. name: "Megamacro+",
  44681. height: math.unit(80, "kilometers")
  44682. },
  44683. ]
  44684. ))
  44685. characterMakers.push(() => makeCharacter(
  44686. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44687. {
  44688. side: {
  44689. height: math.unit(5 + 11/12, "feet"),
  44690. weight: math.unit(236, "lb"),
  44691. name: "Side",
  44692. image: {
  44693. source: "./media/characters/gapp/side.svg",
  44694. extra: 775/340,
  44695. bottom: 58/833
  44696. }
  44697. },
  44698. mouth: {
  44699. height: math.unit(2.98, "feet"),
  44700. name: "Mouth",
  44701. image: {
  44702. source: "./media/characters/gapp/mouth.svg"
  44703. }
  44704. },
  44705. },
  44706. [
  44707. {
  44708. name: "Normal",
  44709. height: math.unit(5 + 1/12, "feet"),
  44710. default: true
  44711. },
  44712. ]
  44713. ))
  44714. characterMakers.push(() => makeCharacter(
  44715. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44716. {
  44717. front: {
  44718. height: math.unit(6, "feet"),
  44719. name: "Front",
  44720. image: {
  44721. source: "./media/characters/persephone/front.svg",
  44722. extra: 1895/1717,
  44723. bottom: 96/1991
  44724. }
  44725. },
  44726. back: {
  44727. height: math.unit(6, "feet"),
  44728. name: "Back",
  44729. image: {
  44730. source: "./media/characters/persephone/back.svg",
  44731. extra: 1868/1679,
  44732. bottom: 26/1894
  44733. }
  44734. },
  44735. casual: {
  44736. height: math.unit(6, "feet"),
  44737. name: "Casual",
  44738. image: {
  44739. source: "./media/characters/persephone/casual.svg",
  44740. extra: 1713/1541,
  44741. bottom: 76/1789
  44742. }
  44743. },
  44744. },
  44745. [
  44746. {
  44747. name: "Human Size",
  44748. height: math.unit(6, "feet")
  44749. },
  44750. {
  44751. name: "Big Steppy",
  44752. height: math.unit(600, "meters"),
  44753. default: true
  44754. },
  44755. {
  44756. name: "Galaxy Brain",
  44757. height: math.unit(1, "zettameter")
  44758. },
  44759. ]
  44760. ))
  44761. characterMakers.push(() => makeCharacter(
  44762. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44763. {
  44764. front: {
  44765. height: math.unit(1.85, "meters"),
  44766. name: "Front",
  44767. image: {
  44768. source: "./media/characters/riley-foxthing/front.svg",
  44769. extra: 1495/1354,
  44770. bottom: 122/1617
  44771. }
  44772. },
  44773. frontAlt: {
  44774. height: math.unit(1.85, "meters"),
  44775. name: "Front (Alt)",
  44776. image: {
  44777. source: "./media/characters/riley-foxthing/front-alt.svg",
  44778. extra: 1572/1389,
  44779. bottom: 116/1688
  44780. }
  44781. },
  44782. },
  44783. [
  44784. {
  44785. name: "Normal Sized",
  44786. height: math.unit(1.85, "meters"),
  44787. default: true
  44788. },
  44789. {
  44790. name: "Quite Sizable",
  44791. height: math.unit(5, "meters")
  44792. },
  44793. {
  44794. name: "Rather Large",
  44795. height: math.unit(20, "meters")
  44796. },
  44797. {
  44798. name: "Macro",
  44799. height: math.unit(450, "meters")
  44800. },
  44801. {
  44802. name: "Giga",
  44803. height: math.unit(5, "km")
  44804. },
  44805. ]
  44806. ))
  44807. characterMakers.push(() => makeCharacter(
  44808. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44809. {
  44810. front: {
  44811. height: math.unit(6, "feet"),
  44812. weight: math.unit(200, "lb"),
  44813. name: "Front",
  44814. image: {
  44815. source: "./media/characters/blizzard/front.svg",
  44816. extra: 1136/990,
  44817. bottom: 136/1272
  44818. }
  44819. },
  44820. back: {
  44821. height: math.unit(6, "feet"),
  44822. weight: math.unit(200, "lb"),
  44823. name: "Back",
  44824. image: {
  44825. source: "./media/characters/blizzard/back.svg",
  44826. extra: 1175/1034,
  44827. bottom: 97/1272
  44828. }
  44829. },
  44830. sitting: {
  44831. height: math.unit(3.725, "feet"),
  44832. weight: math.unit(200, "lb"),
  44833. name: "Sitting",
  44834. image: {
  44835. source: "./media/characters/blizzard/sitting.svg",
  44836. extra: 581/485,
  44837. bottom: 90/671
  44838. }
  44839. },
  44840. frontWizard: {
  44841. height: math.unit(7.9, "feet"),
  44842. weight: math.unit(200, "lb"),
  44843. name: "Front (Wizard)",
  44844. image: {
  44845. source: "./media/characters/blizzard/front-wizard.svg"
  44846. }
  44847. },
  44848. backWizard: {
  44849. height: math.unit(7.9, "feet"),
  44850. weight: math.unit(200, "lb"),
  44851. name: "Back (Wizard)",
  44852. image: {
  44853. source: "./media/characters/blizzard/back-wizard.svg"
  44854. }
  44855. },
  44856. frontNsfw: {
  44857. height: math.unit(6, "feet"),
  44858. weight: math.unit(200, "lb"),
  44859. name: "Front (NSFW)",
  44860. image: {
  44861. source: "./media/characters/blizzard/front-nsfw.svg",
  44862. extra: 1136/990,
  44863. bottom: 136/1272
  44864. }
  44865. },
  44866. backNsfw: {
  44867. height: math.unit(6, "feet"),
  44868. weight: math.unit(200, "lb"),
  44869. name: "Back (NSFW)",
  44870. image: {
  44871. source: "./media/characters/blizzard/back-nsfw.svg",
  44872. extra: 1175/1034,
  44873. bottom: 97/1272
  44874. }
  44875. },
  44876. sittingNsfw: {
  44877. height: math.unit(3.725, "feet"),
  44878. weight: math.unit(200, "lb"),
  44879. name: "Sitting (NSFW)",
  44880. image: {
  44881. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44882. extra: 581/485,
  44883. bottom: 90/671
  44884. }
  44885. },
  44886. wizardFrontNsfw: {
  44887. height: math.unit(7.9, "feet"),
  44888. weight: math.unit(200, "lb"),
  44889. name: "Wizard (Front, NSFW)",
  44890. image: {
  44891. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44892. }
  44893. },
  44894. },
  44895. [
  44896. {
  44897. name: "Normal",
  44898. height: math.unit(6, "feet"),
  44899. default: true
  44900. },
  44901. ]
  44902. ))
  44903. characterMakers.push(() => makeCharacter(
  44904. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44905. {
  44906. front: {
  44907. height: math.unit(5 + 2/12, "feet"),
  44908. name: "Front",
  44909. image: {
  44910. source: "./media/characters/lumi/front.svg",
  44911. extra: 1328/1268,
  44912. bottom: 103/1431
  44913. }
  44914. },
  44915. back: {
  44916. height: math.unit(5 + 2/12, "feet"),
  44917. name: "Back",
  44918. image: {
  44919. source: "./media/characters/lumi/back.svg",
  44920. extra: 1381/1327,
  44921. bottom: 43/1424
  44922. }
  44923. },
  44924. },
  44925. [
  44926. {
  44927. name: "Normal",
  44928. height: math.unit(5 + 2/12, "feet"),
  44929. default: true
  44930. },
  44931. ]
  44932. ))
  44933. characterMakers.push(() => makeCharacter(
  44934. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44935. {
  44936. front: {
  44937. height: math.unit(5 + 9/12, "feet"),
  44938. name: "Front",
  44939. image: {
  44940. source: "./media/characters/aliya-cotton/front.svg",
  44941. extra: 577/564,
  44942. bottom: 29/606
  44943. }
  44944. },
  44945. },
  44946. [
  44947. {
  44948. name: "Normal",
  44949. height: math.unit(5 + 9/12, "feet"),
  44950. default: true
  44951. },
  44952. ]
  44953. ))
  44954. characterMakers.push(() => makeCharacter(
  44955. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44956. {
  44957. front: {
  44958. height: math.unit(2.7, "meters"),
  44959. weight: math.unit(25000, "lb"),
  44960. name: "Front",
  44961. image: {
  44962. source: "./media/characters/noah-luxray/front.svg",
  44963. extra: 1644/825,
  44964. bottom: 339/1983
  44965. }
  44966. },
  44967. side: {
  44968. height: math.unit(2.97, "meters"),
  44969. weight: math.unit(25000, "lb"),
  44970. name: "Side",
  44971. image: {
  44972. source: "./media/characters/noah-luxray/side.svg",
  44973. extra: 1319/650,
  44974. bottom: 163/1482
  44975. }
  44976. },
  44977. dick: {
  44978. height: math.unit(7.4, "feet"),
  44979. weight: math.unit(2500, "lb"),
  44980. name: "Dick",
  44981. image: {
  44982. source: "./media/characters/noah-luxray/dick.svg"
  44983. }
  44984. },
  44985. dickAlt: {
  44986. height: math.unit(10.83, "feet"),
  44987. weight: math.unit(2500, "lb"),
  44988. name: "Dick-alt",
  44989. image: {
  44990. source: "./media/characters/noah-luxray/dick-alt.svg"
  44991. }
  44992. },
  44993. },
  44994. [
  44995. {
  44996. name: "BIG",
  44997. height: math.unit(2.7, "meters"),
  44998. default: true
  44999. },
  45000. ]
  45001. ))
  45002. characterMakers.push(() => makeCharacter(
  45003. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45004. {
  45005. standing: {
  45006. height: math.unit(183, "cm"),
  45007. weight: math.unit(68, "kg"),
  45008. name: "Standing",
  45009. image: {
  45010. source: "./media/characters/arion/standing.svg",
  45011. extra: 1869/1807,
  45012. bottom: 93/1962
  45013. }
  45014. },
  45015. reclining: {
  45016. height: math.unit(70.5, "cm"),
  45017. weight: math.unit(68, "lb"),
  45018. name: "Reclining",
  45019. image: {
  45020. source: "./media/characters/arion/reclining.svg",
  45021. extra: 937/870,
  45022. bottom: 63/1000
  45023. }
  45024. },
  45025. },
  45026. [
  45027. {
  45028. name: "Colossus Size, Low",
  45029. height: math.unit(33, "meters"),
  45030. default: true
  45031. },
  45032. {
  45033. name: "Colossus Size, Mid",
  45034. height: math.unit(52, "meters")
  45035. },
  45036. {
  45037. name: "Colossus Size, High",
  45038. height: math.unit(60, "meters")
  45039. },
  45040. {
  45041. name: "Titan Size, Low",
  45042. height: math.unit(91, "meters"),
  45043. },
  45044. {
  45045. name: "Titan Size, Mid",
  45046. height: math.unit(122, "meters")
  45047. },
  45048. {
  45049. name: "Titan Size, High",
  45050. height: math.unit(162, "meters")
  45051. },
  45052. ]
  45053. ))
  45054. characterMakers.push(() => makeCharacter(
  45055. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45056. {
  45057. front: {
  45058. height: math.unit(53, "meters"),
  45059. name: "Front",
  45060. image: {
  45061. source: "./media/characters/stellar-marbey/front.svg",
  45062. extra: 1913/1805,
  45063. bottom: 92/2005
  45064. }
  45065. },
  45066. back: {
  45067. height: math.unit(53, "meters"),
  45068. name: "Back",
  45069. image: {
  45070. source: "./media/characters/stellar-marbey/back.svg",
  45071. extra: 1960/1851,
  45072. bottom: 28/1988
  45073. }
  45074. },
  45075. mouth: {
  45076. height: math.unit(3.5, "meters"),
  45077. name: "Mouth",
  45078. image: {
  45079. source: "./media/characters/stellar-marbey/mouth.svg"
  45080. }
  45081. },
  45082. },
  45083. [
  45084. {
  45085. name: "Macro",
  45086. height: math.unit(53, "meters"),
  45087. default: true
  45088. },
  45089. ]
  45090. ))
  45091. characterMakers.push(() => makeCharacter(
  45092. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45093. {
  45094. front: {
  45095. height: math.unit(8 + 1/12, "feet"),
  45096. weight: math.unit(233, "lb"),
  45097. name: "Front",
  45098. image: {
  45099. source: "./media/characters/matsu/front.svg",
  45100. extra: 832/772,
  45101. bottom: 40/872
  45102. }
  45103. },
  45104. back: {
  45105. height: math.unit(8 + 1/12, "feet"),
  45106. weight: math.unit(233, "lb"),
  45107. name: "Back",
  45108. image: {
  45109. source: "./media/characters/matsu/back.svg",
  45110. extra: 839/780,
  45111. bottom: 47/886
  45112. }
  45113. },
  45114. },
  45115. [
  45116. {
  45117. name: "Normal",
  45118. height: math.unit(8 + 1/12, "feet"),
  45119. default: true
  45120. },
  45121. ]
  45122. ))
  45123. characterMakers.push(() => makeCharacter(
  45124. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45125. {
  45126. front: {
  45127. height: math.unit(4, "feet"),
  45128. weight: math.unit(148, "lb"),
  45129. name: "Front",
  45130. image: {
  45131. source: "./media/characters/thiz/front.svg",
  45132. extra: 1913/1748,
  45133. bottom: 62/1975
  45134. }
  45135. },
  45136. },
  45137. [
  45138. {
  45139. name: "Normal",
  45140. height: math.unit(4, "feet"),
  45141. default: true
  45142. },
  45143. ]
  45144. ))
  45145. characterMakers.push(() => makeCharacter(
  45146. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45147. {
  45148. front: {
  45149. height: math.unit(7 + 6/12, "feet"),
  45150. weight: math.unit(267, "lb"),
  45151. name: "Front",
  45152. image: {
  45153. source: "./media/characters/marcel/front.svg",
  45154. extra: 1221/1096,
  45155. bottom: 76/1297
  45156. }
  45157. },
  45158. },
  45159. [
  45160. {
  45161. name: "Normal",
  45162. height: math.unit(7 + 6/12, "feet"),
  45163. default: true
  45164. },
  45165. ]
  45166. ))
  45167. characterMakers.push(() => makeCharacter(
  45168. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45169. {
  45170. side: {
  45171. height: math.unit(42, "meters"),
  45172. name: "Side",
  45173. image: {
  45174. source: "./media/characters/flake/side.svg",
  45175. extra: 1525/1306,
  45176. bottom: 209/1734
  45177. }
  45178. },
  45179. },
  45180. [
  45181. {
  45182. name: "Normal",
  45183. height: math.unit(42, "meters"),
  45184. default: true
  45185. },
  45186. ]
  45187. ))
  45188. characterMakers.push(() => makeCharacter(
  45189. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45190. {
  45191. dressed: {
  45192. height: math.unit(6 + 4/12, "feet"),
  45193. weight: math.unit(520, "lb"),
  45194. name: "Dressed",
  45195. image: {
  45196. source: "./media/characters/someonne/dressed.svg",
  45197. extra: 1020/1010,
  45198. bottom: 178/1198
  45199. }
  45200. },
  45201. undressed: {
  45202. height: math.unit(6 + 4/12, "feet"),
  45203. weight: math.unit(520, "lb"),
  45204. name: "Undressed",
  45205. image: {
  45206. source: "./media/characters/someonne/undressed.svg",
  45207. extra: 1019/1014,
  45208. bottom: 169/1188
  45209. }
  45210. },
  45211. },
  45212. [
  45213. {
  45214. name: "Normal",
  45215. height: math.unit(6 + 4/12, "feet"),
  45216. default: true
  45217. },
  45218. ]
  45219. ))
  45220. characterMakers.push(() => makeCharacter(
  45221. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45222. {
  45223. front: {
  45224. height: math.unit(3, "feet"),
  45225. weight: math.unit(30, "lb"),
  45226. name: "Front",
  45227. image: {
  45228. source: "./media/characters/till/front.svg",
  45229. extra: 892/823,
  45230. bottom: 55/947
  45231. }
  45232. },
  45233. },
  45234. [
  45235. {
  45236. name: "Normal",
  45237. height: math.unit(3, "feet"),
  45238. default: true
  45239. },
  45240. ]
  45241. ))
  45242. characterMakers.push(() => makeCharacter(
  45243. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45244. {
  45245. front: {
  45246. height: math.unit(9 + 8/12, "feet"),
  45247. weight: math.unit(800, "lb"),
  45248. name: "Front",
  45249. image: {
  45250. source: "./media/characters/sydney-heki/front.svg",
  45251. extra: 1360/1300,
  45252. bottom: 22/1382
  45253. }
  45254. },
  45255. back: {
  45256. height: math.unit(9 + 8/12, "feet"),
  45257. weight: math.unit(800, "lb"),
  45258. name: "Back",
  45259. image: {
  45260. source: "./media/characters/sydney-heki/back.svg",
  45261. extra: 1356/1293,
  45262. bottom: 12/1368
  45263. }
  45264. },
  45265. frontDressed: {
  45266. height: math.unit(9 + 8/12, "feet"),
  45267. weight: math.unit(800, "lb"),
  45268. name: "Front-dressed",
  45269. image: {
  45270. source: "./media/characters/sydney-heki/front-dressed.svg",
  45271. extra: 1360/1300,
  45272. bottom: 22/1382
  45273. }
  45274. },
  45275. },
  45276. [
  45277. {
  45278. name: "Normal",
  45279. height: math.unit(9 + 8/12, "feet"),
  45280. default: true
  45281. },
  45282. {
  45283. name: "Macro",
  45284. height: math.unit(500, "feet")
  45285. },
  45286. {
  45287. name: "Megamacro",
  45288. height: math.unit(3.6, "miles")
  45289. },
  45290. ]
  45291. ))
  45292. characterMakers.push(() => makeCharacter(
  45293. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45294. {
  45295. front: {
  45296. height: math.unit(200, "cm"),
  45297. weight: math.unit(250, "lb"),
  45298. name: "Front",
  45299. image: {
  45300. source: "./media/characters/fowler-karlsson/front.svg",
  45301. extra: 897/845,
  45302. bottom: 123/1020
  45303. }
  45304. },
  45305. back: {
  45306. height: math.unit(200, "cm"),
  45307. weight: math.unit(250, "lb"),
  45308. name: "Back",
  45309. image: {
  45310. source: "./media/characters/fowler-karlsson/back.svg",
  45311. extra: 999/944,
  45312. bottom: 26/1025
  45313. }
  45314. },
  45315. dick: {
  45316. height: math.unit(1.92, "feet"),
  45317. weight: math.unit(150, "lb"),
  45318. name: "Dick",
  45319. image: {
  45320. source: "./media/characters/fowler-karlsson/dick.svg"
  45321. }
  45322. },
  45323. },
  45324. [
  45325. {
  45326. name: "Normal",
  45327. height: math.unit(200, "cm"),
  45328. default: true
  45329. },
  45330. {
  45331. name: "Smaller Macro",
  45332. height: math.unit(90, "m")
  45333. },
  45334. {
  45335. name: "Macro",
  45336. height: math.unit(150, "m")
  45337. },
  45338. {
  45339. name: "Bigger Macro",
  45340. height: math.unit(300, "m")
  45341. },
  45342. ]
  45343. ))
  45344. characterMakers.push(() => makeCharacter(
  45345. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45346. {
  45347. side: {
  45348. height: math.unit(8 + 2/12, "feet"),
  45349. weight: math.unit(1, "tonne"),
  45350. name: "Side",
  45351. image: {
  45352. source: "./media/characters/rylide/side.svg",
  45353. extra: 1318/1034,
  45354. bottom: 106/1424
  45355. }
  45356. },
  45357. sitting: {
  45358. height: math.unit(303, "cm"),
  45359. weight: math.unit(1, "tonne"),
  45360. name: "Sitting",
  45361. image: {
  45362. source: "./media/characters/rylide/sitting.svg",
  45363. extra: 1303/1103,
  45364. bottom: 36/1339
  45365. }
  45366. },
  45367. },
  45368. [
  45369. {
  45370. name: "Normal",
  45371. height: math.unit(8 + 2/12, "feet"),
  45372. default: true
  45373. },
  45374. ]
  45375. ))
  45376. characterMakers.push(() => makeCharacter(
  45377. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45378. {
  45379. front: {
  45380. height: math.unit(5 + 10/12, "feet"),
  45381. weight: math.unit(160, "lb"),
  45382. name: "Front",
  45383. image: {
  45384. source: "./media/characters/pudask/front.svg",
  45385. extra: 1616/1590,
  45386. bottom: 161/1777
  45387. }
  45388. },
  45389. },
  45390. [
  45391. {
  45392. name: "Ferret Height",
  45393. height: math.unit(2 + 5/12, "feet")
  45394. },
  45395. {
  45396. name: "Canon Height",
  45397. height: math.unit(5 + 10/12, "feet"),
  45398. default: true
  45399. },
  45400. ]
  45401. ))
  45402. characterMakers.push(() => makeCharacter(
  45403. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45404. {
  45405. front: {
  45406. height: math.unit(3 + 6/12, "feet"),
  45407. weight: math.unit(60, "lb"),
  45408. name: "Front",
  45409. image: {
  45410. source: "./media/characters/ramita/front.svg",
  45411. extra: 1402/1232,
  45412. bottom: 62/1464
  45413. }
  45414. },
  45415. dressed: {
  45416. height: math.unit(3 + 6/12, "feet"),
  45417. weight: math.unit(60, "lb"),
  45418. name: "Dressed",
  45419. image: {
  45420. source: "./media/characters/ramita/dressed.svg",
  45421. extra: 1534/1249,
  45422. bottom: 50/1584
  45423. }
  45424. },
  45425. },
  45426. [
  45427. {
  45428. name: "Normal",
  45429. height: math.unit(3 + 6/12, "feet"),
  45430. default: true
  45431. },
  45432. ]
  45433. ))
  45434. characterMakers.push(() => makeCharacter(
  45435. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45436. {
  45437. front: {
  45438. height: math.unit(8, "feet"),
  45439. name: "Front",
  45440. image: {
  45441. source: "./media/characters/ark/front.svg",
  45442. extra: 772/693,
  45443. bottom: 45/817
  45444. }
  45445. },
  45446. },
  45447. [
  45448. {
  45449. name: "Normal",
  45450. height: math.unit(8, "feet"),
  45451. default: true
  45452. },
  45453. ]
  45454. ))
  45455. characterMakers.push(() => makeCharacter(
  45456. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45457. {
  45458. front: {
  45459. height: math.unit(6, "feet"),
  45460. weight: math.unit(250, "lb"),
  45461. volume: math.unit(5/8, "gallons"),
  45462. name: "Front",
  45463. image: {
  45464. source: "./media/characters/ludwig-horn/front.svg",
  45465. extra: 1782/1635,
  45466. bottom: 96/1878
  45467. }
  45468. },
  45469. back: {
  45470. height: math.unit(6, "feet"),
  45471. weight: math.unit(250, "lb"),
  45472. volume: math.unit(5/8, "gallons"),
  45473. name: "Back",
  45474. image: {
  45475. source: "./media/characters/ludwig-horn/back.svg",
  45476. extra: 1874/1729,
  45477. bottom: 27/1901
  45478. }
  45479. },
  45480. dick: {
  45481. height: math.unit(1.05, "feet"),
  45482. weight: math.unit(15, "lb"),
  45483. volume: math.unit(5/8, "gallons"),
  45484. name: "Dick",
  45485. image: {
  45486. source: "./media/characters/ludwig-horn/dick.svg"
  45487. }
  45488. },
  45489. },
  45490. [
  45491. {
  45492. name: "Small",
  45493. height: math.unit(6, "feet")
  45494. },
  45495. {
  45496. name: "Typical",
  45497. height: math.unit(12, "feet"),
  45498. default: true
  45499. },
  45500. {
  45501. name: "Building",
  45502. height: math.unit(80, "feet")
  45503. },
  45504. {
  45505. name: "Town",
  45506. height: math.unit(800, "feet")
  45507. },
  45508. {
  45509. name: "Kingdom",
  45510. height: math.unit(80000, "feet")
  45511. },
  45512. {
  45513. name: "Planet",
  45514. height: math.unit(8000000, "feet")
  45515. },
  45516. {
  45517. name: "Universe",
  45518. height: math.unit(8000000000, "feet")
  45519. },
  45520. {
  45521. name: "Transcended",
  45522. height: math.unit(8e27, "feet")
  45523. },
  45524. ]
  45525. ))
  45526. characterMakers.push(() => makeCharacter(
  45527. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45528. {
  45529. front: {
  45530. height: math.unit(5, "feet"),
  45531. weight: math.unit(50, "kg"),
  45532. name: "Front",
  45533. image: {
  45534. source: "./media/characters/biot-avery/front.svg",
  45535. extra: 1295/1232,
  45536. bottom: 86/1381
  45537. }
  45538. },
  45539. },
  45540. [
  45541. {
  45542. name: "Normal",
  45543. height: math.unit(5, "feet"),
  45544. default: true
  45545. },
  45546. ]
  45547. ))
  45548. characterMakers.push(() => makeCharacter(
  45549. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45550. {
  45551. front: {
  45552. height: math.unit(6, "feet"),
  45553. name: "Front",
  45554. image: {
  45555. source: "./media/characters/kitsune-kiro/front.svg",
  45556. extra: 1270/1158,
  45557. bottom: 42/1312
  45558. }
  45559. },
  45560. frontAlt: {
  45561. height: math.unit(6, "feet"),
  45562. name: "Front-alt",
  45563. image: {
  45564. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45565. extra: 1130/1081,
  45566. bottom: 36/1166
  45567. }
  45568. },
  45569. },
  45570. [
  45571. {
  45572. name: "Smol",
  45573. height: math.unit(3, "feet")
  45574. },
  45575. {
  45576. name: "Normal",
  45577. height: math.unit(6, "feet"),
  45578. default: true
  45579. },
  45580. ]
  45581. ))
  45582. characterMakers.push(() => makeCharacter(
  45583. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45584. {
  45585. front: {
  45586. height: math.unit(6, "feet"),
  45587. weight: math.unit(125, "lb"),
  45588. name: "Front",
  45589. image: {
  45590. source: "./media/characters/jack-thatcher/front.svg",
  45591. extra: 1474/1370,
  45592. bottom: 26/1500
  45593. }
  45594. },
  45595. back: {
  45596. height: math.unit(6, "feet"),
  45597. weight: math.unit(125, "lb"),
  45598. name: "Back",
  45599. image: {
  45600. source: "./media/characters/jack-thatcher/back.svg",
  45601. extra: 1489/1384,
  45602. bottom: 18/1507
  45603. }
  45604. },
  45605. },
  45606. [
  45607. {
  45608. name: "Normal",
  45609. height: math.unit(6, "feet"),
  45610. default: true
  45611. },
  45612. {
  45613. name: "Macro",
  45614. height: math.unit(75, "feet")
  45615. },
  45616. {
  45617. name: "Macro-er",
  45618. height: math.unit(250, "feet")
  45619. },
  45620. ]
  45621. ))
  45622. characterMakers.push(() => makeCharacter(
  45623. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45624. {
  45625. front: {
  45626. height: math.unit(7, "feet"),
  45627. weight: math.unit(110, "kg"),
  45628. name: "Front",
  45629. image: {
  45630. source: "./media/characters/max-hyper/front.svg",
  45631. extra: 1969/1881,
  45632. bottom: 49/2018
  45633. }
  45634. },
  45635. },
  45636. [
  45637. {
  45638. name: "Normal",
  45639. height: math.unit(7, "feet"),
  45640. default: true
  45641. },
  45642. ]
  45643. ))
  45644. characterMakers.push(() => makeCharacter(
  45645. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45646. {
  45647. front: {
  45648. height: math.unit(5 + 5/12, "feet"),
  45649. weight: math.unit(160, "lb"),
  45650. name: "Front",
  45651. image: {
  45652. source: "./media/characters/spook/front.svg",
  45653. extra: 794/791,
  45654. bottom: 54/848
  45655. }
  45656. },
  45657. back: {
  45658. height: math.unit(5 + 5/12, "feet"),
  45659. weight: math.unit(160, "lb"),
  45660. name: "Back",
  45661. image: {
  45662. source: "./media/characters/spook/back.svg",
  45663. extra: 812/798,
  45664. bottom: 32/844
  45665. }
  45666. },
  45667. },
  45668. [
  45669. {
  45670. name: "Normal",
  45671. height: math.unit(5 + 5/12, "feet"),
  45672. default: true
  45673. },
  45674. ]
  45675. ))
  45676. characterMakers.push(() => makeCharacter(
  45677. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45678. {
  45679. front: {
  45680. height: math.unit(18, "feet"),
  45681. name: "Front",
  45682. image: {
  45683. source: "./media/characters/xeaduulix/front.svg",
  45684. extra: 1380/1166,
  45685. bottom: 110/1490
  45686. }
  45687. },
  45688. back: {
  45689. height: math.unit(18, "feet"),
  45690. name: "Back",
  45691. image: {
  45692. source: "./media/characters/xeaduulix/back.svg",
  45693. extra: 1592/1170,
  45694. bottom: 128/1720
  45695. }
  45696. },
  45697. frontNsfw: {
  45698. height: math.unit(18, "feet"),
  45699. name: "Front (NSFW)",
  45700. image: {
  45701. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45702. extra: 1380/1166,
  45703. bottom: 110/1490
  45704. }
  45705. },
  45706. backNsfw: {
  45707. height: math.unit(18, "feet"),
  45708. name: "Back (NSFW)",
  45709. image: {
  45710. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45711. extra: 1592/1170,
  45712. bottom: 128/1720
  45713. }
  45714. },
  45715. },
  45716. [
  45717. {
  45718. name: "Normal",
  45719. height: math.unit(18, "feet"),
  45720. default: true
  45721. },
  45722. ]
  45723. ))
  45724. characterMakers.push(() => makeCharacter(
  45725. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45726. {
  45727. spreadWings: {
  45728. height: math.unit(20, "feet"),
  45729. name: "Spread Wings",
  45730. image: {
  45731. source: "./media/characters/fledge/spread-wings.svg",
  45732. extra: 693/635,
  45733. bottom: 26/719
  45734. }
  45735. },
  45736. front: {
  45737. height: math.unit(20, "feet"),
  45738. name: "Front",
  45739. image: {
  45740. source: "./media/characters/fledge/front.svg",
  45741. extra: 684/637,
  45742. bottom: 18/702
  45743. }
  45744. },
  45745. frontAlt: {
  45746. height: math.unit(20, "feet"),
  45747. name: "Front (Alt)",
  45748. image: {
  45749. source: "./media/characters/fledge/front-alt.svg",
  45750. extra: 708/664,
  45751. bottom: 13/721
  45752. }
  45753. },
  45754. back: {
  45755. height: math.unit(20, "feet"),
  45756. name: "Back",
  45757. image: {
  45758. source: "./media/characters/fledge/back.svg",
  45759. extra: 718/634,
  45760. bottom: 22/740
  45761. }
  45762. },
  45763. head: {
  45764. height: math.unit(5.55, "feet"),
  45765. name: "Head",
  45766. image: {
  45767. source: "./media/characters/fledge/head.svg"
  45768. }
  45769. },
  45770. headAlt: {
  45771. height: math.unit(5.1, "feet"),
  45772. name: "Head (Alt)",
  45773. image: {
  45774. source: "./media/characters/fledge/head-alt.svg"
  45775. }
  45776. },
  45777. },
  45778. [
  45779. {
  45780. name: "Small",
  45781. height: math.unit(6 + 2/12, "feet")
  45782. },
  45783. {
  45784. name: "Big",
  45785. height: math.unit(20, "feet"),
  45786. default: true
  45787. },
  45788. {
  45789. name: "Giant",
  45790. height: math.unit(100, "feet")
  45791. },
  45792. {
  45793. name: "Macro",
  45794. height: math.unit(200, "feet")
  45795. },
  45796. ]
  45797. ))
  45798. characterMakers.push(() => makeCharacter(
  45799. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45800. {
  45801. front: {
  45802. height: math.unit(1, "meter"),
  45803. name: "Front",
  45804. image: {
  45805. source: "./media/characters/atlas-morenai/front.svg",
  45806. extra: 1275/1043,
  45807. bottom: 19/1294
  45808. }
  45809. },
  45810. back: {
  45811. height: math.unit(1, "meter"),
  45812. name: "Back",
  45813. image: {
  45814. source: "./media/characters/atlas-morenai/back.svg",
  45815. extra: 1141/1001,
  45816. bottom: 25/1166
  45817. }
  45818. },
  45819. },
  45820. [
  45821. {
  45822. name: "Normal",
  45823. height: math.unit(1, "meter"),
  45824. default: true
  45825. },
  45826. {
  45827. name: "Magic-Infused",
  45828. height: math.unit(5, "meters")
  45829. },
  45830. ]
  45831. ))
  45832. characterMakers.push(() => makeCharacter(
  45833. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45834. {
  45835. front: {
  45836. height: math.unit(5, "meters"),
  45837. name: "Front",
  45838. image: {
  45839. source: "./media/characters/cintia/front.svg",
  45840. extra: 1312/1228,
  45841. bottom: 38/1350
  45842. }
  45843. },
  45844. back: {
  45845. height: math.unit(5, "meters"),
  45846. name: "Back",
  45847. image: {
  45848. source: "./media/characters/cintia/back.svg",
  45849. extra: 1260/1166,
  45850. bottom: 98/1358
  45851. }
  45852. },
  45853. frontDick: {
  45854. height: math.unit(5, "meters"),
  45855. name: "Front (Dick)",
  45856. image: {
  45857. source: "./media/characters/cintia/front-dick.svg",
  45858. extra: 1312/1228,
  45859. bottom: 38/1350
  45860. }
  45861. },
  45862. backDick: {
  45863. height: math.unit(5, "meters"),
  45864. name: "Back (Dick)",
  45865. image: {
  45866. source: "./media/characters/cintia/back-dick.svg",
  45867. extra: 1260/1166,
  45868. bottom: 98/1358
  45869. }
  45870. },
  45871. bust: {
  45872. height: math.unit(1.97, "meters"),
  45873. name: "Bust",
  45874. image: {
  45875. source: "./media/characters/cintia/bust.svg",
  45876. extra: 617/565,
  45877. bottom: 0/617
  45878. }
  45879. },
  45880. },
  45881. [
  45882. {
  45883. name: "Normal",
  45884. height: math.unit(5, "meters"),
  45885. default: true
  45886. },
  45887. ]
  45888. ))
  45889. characterMakers.push(() => makeCharacter(
  45890. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45891. {
  45892. side: {
  45893. height: math.unit(100, "feet"),
  45894. name: "Side",
  45895. image: {
  45896. source: "./media/characters/denora/side.svg",
  45897. extra: 875/803,
  45898. bottom: 9/884
  45899. }
  45900. },
  45901. },
  45902. [
  45903. {
  45904. name: "Standard",
  45905. height: math.unit(100, "feet"),
  45906. default: true
  45907. },
  45908. {
  45909. name: "Grand",
  45910. height: math.unit(1000, "feet")
  45911. },
  45912. {
  45913. name: "Conquering",
  45914. height: math.unit(10000, "feet")
  45915. },
  45916. ]
  45917. ))
  45918. characterMakers.push(() => makeCharacter(
  45919. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45920. {
  45921. dressed: {
  45922. height: math.unit(8 + 5/12, "feet"),
  45923. weight: math.unit(700, "lb"),
  45924. name: "Dressed",
  45925. image: {
  45926. source: "./media/characters/kiva/dressed.svg",
  45927. extra: 1102/1055,
  45928. bottom: 60/1162
  45929. }
  45930. },
  45931. nude: {
  45932. height: math.unit(8 + 5/12, "feet"),
  45933. weight: math.unit(700, "lb"),
  45934. name: "Nude",
  45935. image: {
  45936. source: "./media/characters/kiva/nude.svg",
  45937. extra: 1102/1055,
  45938. bottom: 60/1162
  45939. }
  45940. },
  45941. },
  45942. [
  45943. {
  45944. name: "Base Height",
  45945. height: math.unit(8 + 5/12, "feet"),
  45946. default: true
  45947. },
  45948. {
  45949. name: "Macro",
  45950. height: math.unit(100, "feet")
  45951. },
  45952. {
  45953. name: "Max",
  45954. height: math.unit(3280, "feet")
  45955. },
  45956. ]
  45957. ))
  45958. characterMakers.push(() => makeCharacter(
  45959. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45960. {
  45961. front: {
  45962. height: math.unit(6 + 8/12, "feet"),
  45963. weight: math.unit(250, "lb"),
  45964. name: "Front",
  45965. image: {
  45966. source: "./media/characters/ztragon/front.svg",
  45967. extra: 1825/1684,
  45968. bottom: 98/1923
  45969. }
  45970. },
  45971. },
  45972. [
  45973. {
  45974. name: "Normal",
  45975. height: math.unit(6 + 8/12, "feet"),
  45976. default: true
  45977. },
  45978. {
  45979. name: "Macro",
  45980. height: math.unit(80, "feet")
  45981. },
  45982. ]
  45983. ))
  45984. characterMakers.push(() => makeCharacter(
  45985. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45986. {
  45987. front: {
  45988. height: math.unit(10.4, "feet"),
  45989. weight: math.unit(2, "tons"),
  45990. name: "Front",
  45991. image: {
  45992. source: "./media/characters/yesenia/front.svg",
  45993. extra: 1479/1474,
  45994. bottom: 233/1712
  45995. }
  45996. },
  45997. },
  45998. [
  45999. {
  46000. name: "Normal",
  46001. height: math.unit(10.4, "feet"),
  46002. default: true
  46003. },
  46004. ]
  46005. ))
  46006. characterMakers.push(() => makeCharacter(
  46007. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46008. {
  46009. normal: {
  46010. height: math.unit(6 + 1/12, "feet"),
  46011. weight: math.unit(180, "lb"),
  46012. name: "Normal",
  46013. image: {
  46014. source: "./media/characters/leanne-lycheborne/normal.svg",
  46015. extra: 1748/1660,
  46016. bottom: 98/1846
  46017. }
  46018. },
  46019. were: {
  46020. height: math.unit(12, "feet"),
  46021. weight: math.unit(1600, "lb"),
  46022. name: "Were",
  46023. image: {
  46024. source: "./media/characters/leanne-lycheborne/were.svg",
  46025. extra: 1485/1432,
  46026. bottom: 66/1551
  46027. }
  46028. },
  46029. },
  46030. [
  46031. {
  46032. name: "Normal",
  46033. height: math.unit(6 + 1/12, "feet"),
  46034. default: true
  46035. },
  46036. ]
  46037. ))
  46038. characterMakers.push(() => makeCharacter(
  46039. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46040. {
  46041. side: {
  46042. height: math.unit(13, "feet"),
  46043. name: "Side",
  46044. image: {
  46045. source: "./media/characters/kira-tyler/side.svg",
  46046. extra: 693/393,
  46047. bottom: 58/751
  46048. }
  46049. },
  46050. },
  46051. [
  46052. {
  46053. name: "Normal",
  46054. height: math.unit(13, "feet"),
  46055. default: true
  46056. },
  46057. ]
  46058. ))
  46059. characterMakers.push(() => makeCharacter(
  46060. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46061. {
  46062. front: {
  46063. height: math.unit(10.3, "feet"),
  46064. weight: math.unit(150, "lb"),
  46065. name: "Front",
  46066. image: {
  46067. source: "./media/characters/blaze/front.svg",
  46068. extra: 1378/1286,
  46069. bottom: 172/1550
  46070. }
  46071. },
  46072. },
  46073. [
  46074. {
  46075. name: "Normal",
  46076. height: math.unit(10.3, "feet"),
  46077. default: true
  46078. },
  46079. ]
  46080. ))
  46081. characterMakers.push(() => makeCharacter(
  46082. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46083. {
  46084. side: {
  46085. height: math.unit(2, "meters"),
  46086. weight: math.unit(400, "kg"),
  46087. name: "Side",
  46088. image: {
  46089. source: "./media/characters/anu/side.svg",
  46090. extra: 506/394,
  46091. bottom: 18/524
  46092. }
  46093. },
  46094. },
  46095. [
  46096. {
  46097. name: "Humanoid",
  46098. height: math.unit(2, "meters")
  46099. },
  46100. {
  46101. name: "Normal",
  46102. height: math.unit(5, "meters"),
  46103. default: true
  46104. },
  46105. ]
  46106. ))
  46107. characterMakers.push(() => makeCharacter(
  46108. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46109. {
  46110. front: {
  46111. height: math.unit(5 + 5/12, "feet"),
  46112. weight: math.unit(170, "lb"),
  46113. name: "Front",
  46114. image: {
  46115. source: "./media/characters/synx-the-lynx/front.svg",
  46116. extra: 1893/1745,
  46117. bottom: 17/1910
  46118. }
  46119. },
  46120. side: {
  46121. height: math.unit(5 + 5/12, "feet"),
  46122. weight: math.unit(170, "lb"),
  46123. name: "Side",
  46124. image: {
  46125. source: "./media/characters/synx-the-lynx/side.svg",
  46126. extra: 1884/1740,
  46127. bottom: 39/1923
  46128. }
  46129. },
  46130. back: {
  46131. height: math.unit(5 + 5/12, "feet"),
  46132. weight: math.unit(170, "lb"),
  46133. name: "Back",
  46134. image: {
  46135. source: "./media/characters/synx-the-lynx/back.svg",
  46136. extra: 1903/1755,
  46137. bottom: 14/1917
  46138. }
  46139. },
  46140. },
  46141. [
  46142. {
  46143. name: "Normal",
  46144. height: math.unit(5 + 5/12, "feet"),
  46145. default: true
  46146. },
  46147. ]
  46148. ))
  46149. characterMakers.push(() => makeCharacter(
  46150. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46151. {
  46152. back: {
  46153. height: math.unit(15, "feet"),
  46154. name: "Back",
  46155. image: {
  46156. source: "./media/characters/nadezda-fex/back.svg",
  46157. extra: 1695/1481,
  46158. bottom: 25/1720
  46159. }
  46160. },
  46161. },
  46162. [
  46163. {
  46164. name: "Normal",
  46165. height: math.unit(15, "feet"),
  46166. default: true
  46167. },
  46168. {
  46169. name: "Macro",
  46170. height: math.unit(2.5, "miles")
  46171. },
  46172. {
  46173. name: "Goddess",
  46174. height: math.unit(2, "multiverses")
  46175. },
  46176. ]
  46177. ))
  46178. characterMakers.push(() => makeCharacter(
  46179. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46180. {
  46181. front: {
  46182. height: math.unit(216, "cm"),
  46183. name: "Front",
  46184. image: {
  46185. source: "./media/characters/lev/front.svg",
  46186. extra: 1728/1670,
  46187. bottom: 82/1810
  46188. }
  46189. },
  46190. back: {
  46191. height: math.unit(216, "cm"),
  46192. name: "Back",
  46193. image: {
  46194. source: "./media/characters/lev/back.svg",
  46195. extra: 1738/1675,
  46196. bottom: 24/1762
  46197. }
  46198. },
  46199. dressed: {
  46200. height: math.unit(216, "cm"),
  46201. name: "Dressed",
  46202. image: {
  46203. source: "./media/characters/lev/dressed.svg",
  46204. extra: 1397/1351,
  46205. bottom: 73/1470
  46206. }
  46207. },
  46208. head: {
  46209. height: math.unit(0.51, "meter"),
  46210. name: "Head",
  46211. image: {
  46212. source: "./media/characters/lev/head.svg"
  46213. }
  46214. },
  46215. },
  46216. [
  46217. {
  46218. name: "Normal",
  46219. height: math.unit(216, "cm"),
  46220. default: true
  46221. },
  46222. {
  46223. name: "Relatively Macro",
  46224. height: math.unit(80, "meters")
  46225. },
  46226. {
  46227. name: "Megamacro",
  46228. height: math.unit(21600, "meters")
  46229. },
  46230. {
  46231. name: "Megamacro+",
  46232. height: math.unit(64800, "meters")
  46233. },
  46234. ]
  46235. ))
  46236. characterMakers.push(() => makeCharacter(
  46237. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46238. {
  46239. front: {
  46240. height: math.unit(2, "meters"),
  46241. weight: math.unit(80, "kg"),
  46242. name: "Front",
  46243. image: {
  46244. source: "./media/characters/moka/front.svg",
  46245. extra: 1337/1255,
  46246. bottom: 58/1395
  46247. }
  46248. },
  46249. },
  46250. [
  46251. {
  46252. name: "Micro",
  46253. height: math.unit(15, "cm")
  46254. },
  46255. {
  46256. name: "Normal",
  46257. height: math.unit(2, "meters"),
  46258. default: true
  46259. },
  46260. {
  46261. name: "Macro",
  46262. height: math.unit(20, "meters"),
  46263. },
  46264. ]
  46265. ))
  46266. characterMakers.push(() => makeCharacter(
  46267. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46268. {
  46269. front: {
  46270. height: math.unit(9, "feet"),
  46271. weight: math.unit(240, "lb"),
  46272. name: "Front",
  46273. image: {
  46274. source: "./media/characters/kuzco/front.svg",
  46275. extra: 1593/1487,
  46276. bottom: 32/1625
  46277. }
  46278. },
  46279. side: {
  46280. height: math.unit(9, "feet"),
  46281. weight: math.unit(240, "lb"),
  46282. name: "Side",
  46283. image: {
  46284. source: "./media/characters/kuzco/side.svg",
  46285. extra: 1575/1485,
  46286. bottom: 30/1605
  46287. }
  46288. },
  46289. back: {
  46290. height: math.unit(9, "feet"),
  46291. weight: math.unit(240, "lb"),
  46292. name: "Back",
  46293. image: {
  46294. source: "./media/characters/kuzco/back.svg",
  46295. extra: 1603/1514,
  46296. bottom: 14/1617
  46297. }
  46298. },
  46299. },
  46300. [
  46301. {
  46302. name: "Normal",
  46303. height: math.unit(9, "feet"),
  46304. default: true
  46305. },
  46306. ]
  46307. ))
  46308. characterMakers.push(() => makeCharacter(
  46309. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46310. {
  46311. side: {
  46312. height: math.unit(2, "meters"),
  46313. weight: math.unit(300, "kg"),
  46314. name: "Side",
  46315. image: {
  46316. source: "./media/characters/ceruleus/side.svg",
  46317. extra: 1068/974,
  46318. bottom: 126/1194
  46319. }
  46320. },
  46321. },
  46322. [
  46323. {
  46324. name: "Normal",
  46325. height: math.unit(16, "meters"),
  46326. default: true
  46327. },
  46328. ]
  46329. ))
  46330. characterMakers.push(() => makeCharacter(
  46331. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46332. {
  46333. front: {
  46334. height: math.unit(9, "feet"),
  46335. weight: math.unit(500, "kg"),
  46336. name: "Front",
  46337. image: {
  46338. source: "./media/characters/acouya/front.svg",
  46339. extra: 1660/1473,
  46340. bottom: 28/1688
  46341. }
  46342. },
  46343. },
  46344. [
  46345. {
  46346. name: "Normal",
  46347. height: math.unit(9, "feet"),
  46348. default: true
  46349. },
  46350. ]
  46351. ))
  46352. characterMakers.push(() => makeCharacter(
  46353. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46354. {
  46355. front: {
  46356. height: math.unit(5 + 6/12, "feet"),
  46357. weight: math.unit(195, "lb"),
  46358. name: "Front",
  46359. image: {
  46360. source: "./media/characters/vant/front.svg",
  46361. extra: 1396/1320,
  46362. bottom: 20/1416
  46363. }
  46364. },
  46365. back: {
  46366. height: math.unit(5 + 6/12, "feet"),
  46367. weight: math.unit(195, "lb"),
  46368. name: "Back",
  46369. image: {
  46370. source: "./media/characters/vant/back.svg",
  46371. extra: 1396/1320,
  46372. bottom: 20/1416
  46373. }
  46374. },
  46375. maw: {
  46376. height: math.unit(0.75, "feet"),
  46377. name: "Maw",
  46378. image: {
  46379. source: "./media/characters/vant/maw.svg"
  46380. }
  46381. },
  46382. paw: {
  46383. height: math.unit(1.07, "feet"),
  46384. name: "Paw",
  46385. image: {
  46386. source: "./media/characters/vant/paw.svg"
  46387. }
  46388. },
  46389. },
  46390. [
  46391. {
  46392. name: "Micro",
  46393. height: math.unit(0.25, "inches")
  46394. },
  46395. {
  46396. name: "Normal",
  46397. height: math.unit(5 + 6/12, "feet"),
  46398. default: true
  46399. },
  46400. {
  46401. name: "Macro",
  46402. height: math.unit(75, "feet")
  46403. },
  46404. ]
  46405. ))
  46406. characterMakers.push(() => makeCharacter(
  46407. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46408. {
  46409. front: {
  46410. height: math.unit(30, "meters"),
  46411. weight: math.unit(363, "tons"),
  46412. name: "Front",
  46413. image: {
  46414. source: "./media/characters/ahra/front.svg",
  46415. extra: 1914/1814,
  46416. bottom: 46/1960
  46417. }
  46418. },
  46419. },
  46420. [
  46421. {
  46422. name: "Macro",
  46423. height: math.unit(30, "meters"),
  46424. default: true
  46425. },
  46426. ]
  46427. ))
  46428. characterMakers.push(() => makeCharacter(
  46429. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46430. {
  46431. undressed: {
  46432. height: math.unit(2, "m"),
  46433. weight: math.unit(250, "kg"),
  46434. name: "Undressed",
  46435. image: {
  46436. source: "./media/characters/coriander/undressed.svg",
  46437. extra: 1757/1606,
  46438. bottom: 107/1864
  46439. }
  46440. },
  46441. dressed: {
  46442. height: math.unit(2, "m"),
  46443. weight: math.unit(250, "kg"),
  46444. name: "Dressed",
  46445. image: {
  46446. source: "./media/characters/coriander/dressed.svg",
  46447. extra: 1757/1606,
  46448. bottom: 107/1864
  46449. }
  46450. },
  46451. },
  46452. [
  46453. {
  46454. name: "Normal",
  46455. height: math.unit(4, "meters"),
  46456. default: true
  46457. },
  46458. {
  46459. name: "XL",
  46460. height: math.unit(6, "meters")
  46461. },
  46462. {
  46463. name: "XXL",
  46464. height: math.unit(8, "meters")
  46465. },
  46466. ]
  46467. ))
  46468. characterMakers.push(() => makeCharacter(
  46469. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46470. {
  46471. front: {
  46472. height: math.unit(6, "feet"),
  46473. name: "Front",
  46474. image: {
  46475. source: "./media/characters/syrinx/front.svg",
  46476. extra: 1557/1259,
  46477. bottom: 171/1728
  46478. }
  46479. },
  46480. },
  46481. [
  46482. {
  46483. name: "Normal",
  46484. height: math.unit(6 + 3/12, "feet"),
  46485. default: true
  46486. },
  46487. ]
  46488. ))
  46489. characterMakers.push(() => makeCharacter(
  46490. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46491. {
  46492. front: {
  46493. height: math.unit(11 + 6/12, "feet"),
  46494. weight: math.unit(1.5, "tons"),
  46495. name: "Front",
  46496. image: {
  46497. source: "./media/characters/bor/front.svg",
  46498. extra: 1189/1109,
  46499. bottom: 170/1359
  46500. }
  46501. },
  46502. },
  46503. [
  46504. {
  46505. name: "Normal",
  46506. height: math.unit(11 + 6/12, "feet"),
  46507. default: true
  46508. },
  46509. {
  46510. name: "Macro",
  46511. height: math.unit(32 + 9/12, "feet")
  46512. },
  46513. ]
  46514. ))
  46515. characterMakers.push(() => makeCharacter(
  46516. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46517. {
  46518. anthro: {
  46519. height: math.unit(9, "feet"),
  46520. weight: math.unit(2076, "lb"),
  46521. name: "Anthro",
  46522. image: {
  46523. source: "./media/characters/abacus/anthro.svg",
  46524. extra: 1540/1494,
  46525. bottom: 233/1773
  46526. }
  46527. },
  46528. pigeon: {
  46529. height: math.unit(1, "feet"),
  46530. name: "Pigeon",
  46531. image: {
  46532. source: "./media/characters/abacus/pigeon.svg",
  46533. extra: 528/525,
  46534. bottom: 46/574
  46535. }
  46536. },
  46537. },
  46538. [
  46539. {
  46540. name: "Normal",
  46541. height: math.unit(9, "feet"),
  46542. default: true
  46543. },
  46544. ]
  46545. ))
  46546. characterMakers.push(() => makeCharacter(
  46547. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46548. {
  46549. side: {
  46550. height: math.unit(6, "feet"),
  46551. name: "Side",
  46552. image: {
  46553. source: "./media/characters/delkhan/side.svg",
  46554. extra: 1884/1786,
  46555. bottom: 308/2192
  46556. }
  46557. },
  46558. head: {
  46559. height: math.unit(3.38, "feet"),
  46560. name: "Head",
  46561. image: {
  46562. source: "./media/characters/delkhan/head.svg"
  46563. }
  46564. },
  46565. },
  46566. [
  46567. {
  46568. name: "Normal",
  46569. height: math.unit(72, "feet"),
  46570. default: true
  46571. },
  46572. {
  46573. name: "Giant",
  46574. height: math.unit(172, "feet")
  46575. },
  46576. ]
  46577. ))
  46578. characterMakers.push(() => makeCharacter(
  46579. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46580. {
  46581. standing: {
  46582. height: math.unit(6, "feet"),
  46583. name: "Standing",
  46584. image: {
  46585. source: "./media/characters/euchidat/standing.svg",
  46586. extra: 1612/1553,
  46587. bottom: 116/1728
  46588. }
  46589. },
  46590. leaning: {
  46591. height: math.unit(6, "feet"),
  46592. name: "Leaning",
  46593. image: {
  46594. source: "./media/characters/euchidat/leaning.svg",
  46595. extra: 1719/1674,
  46596. bottom: 27/1746
  46597. }
  46598. },
  46599. },
  46600. [
  46601. {
  46602. name: "Normal",
  46603. height: math.unit(175, "feet"),
  46604. default: true
  46605. },
  46606. {
  46607. name: "Megamacro",
  46608. height: math.unit(190, "miles")
  46609. },
  46610. {
  46611. name: "Gigamacro",
  46612. height: math.unit(190000, "miles")
  46613. },
  46614. ]
  46615. ))
  46616. characterMakers.push(() => makeCharacter(
  46617. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46618. {
  46619. front: {
  46620. height: math.unit(6, "feet"),
  46621. weight: math.unit(150, "lb"),
  46622. name: "Front",
  46623. image: {
  46624. source: "./media/characters/rebecca-stack/front.svg",
  46625. extra: 1256/1201,
  46626. bottom: 18/1274
  46627. }
  46628. },
  46629. },
  46630. [
  46631. {
  46632. name: "Normal",
  46633. height: math.unit(5 + 8/12, "feet"),
  46634. default: true
  46635. },
  46636. {
  46637. name: "Demolitionist",
  46638. height: math.unit(200, "feet")
  46639. },
  46640. {
  46641. name: "Out of Control",
  46642. height: math.unit(2, "miles")
  46643. },
  46644. {
  46645. name: "Giga",
  46646. height: math.unit(7200, "miles")
  46647. },
  46648. ]
  46649. ))
  46650. characterMakers.push(() => makeCharacter(
  46651. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46652. {
  46653. front: {
  46654. height: math.unit(6, "feet"),
  46655. weight: math.unit(150, "lb"),
  46656. name: "Front",
  46657. image: {
  46658. source: "./media/characters/jenny-cartwright/front.svg",
  46659. extra: 1384/1376,
  46660. bottom: 58/1442
  46661. }
  46662. },
  46663. },
  46664. [
  46665. {
  46666. name: "Normal",
  46667. height: math.unit(6 + 7/12, "feet"),
  46668. default: true
  46669. },
  46670. {
  46671. name: "Librarian",
  46672. height: math.unit(55, "feet")
  46673. },
  46674. {
  46675. name: "Sightseer",
  46676. height: math.unit(50, "miles")
  46677. },
  46678. {
  46679. name: "Giga",
  46680. height: math.unit(30000, "miles")
  46681. },
  46682. ]
  46683. ))
  46684. characterMakers.push(() => makeCharacter(
  46685. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46686. {
  46687. nude: {
  46688. height: math.unit(8, "feet"),
  46689. weight: math.unit(225, "lb"),
  46690. name: "Nude",
  46691. image: {
  46692. source: "./media/characters/marvy/nude.svg",
  46693. extra: 1900/1683,
  46694. bottom: 89/1989
  46695. }
  46696. },
  46697. dressed: {
  46698. height: math.unit(8, "feet"),
  46699. weight: math.unit(225, "lb"),
  46700. name: "Dressed",
  46701. image: {
  46702. source: "./media/characters/marvy/dressed.svg",
  46703. extra: 1900/1683,
  46704. bottom: 89/1989
  46705. }
  46706. },
  46707. head: {
  46708. height: math.unit(2.85, "feet"),
  46709. name: "Head",
  46710. image: {
  46711. source: "./media/characters/marvy/head.svg"
  46712. }
  46713. },
  46714. },
  46715. [
  46716. {
  46717. name: "Normal",
  46718. height: math.unit(8, "feet"),
  46719. default: true
  46720. },
  46721. ]
  46722. ))
  46723. characterMakers.push(() => makeCharacter(
  46724. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46725. {
  46726. front: {
  46727. height: math.unit(8, "feet"),
  46728. weight: math.unit(250, "lb"),
  46729. name: "Front",
  46730. image: {
  46731. source: "./media/characters/leah/front.svg",
  46732. extra: 1257/1149,
  46733. bottom: 109/1366
  46734. }
  46735. },
  46736. },
  46737. [
  46738. {
  46739. name: "Normal",
  46740. height: math.unit(8, "feet"),
  46741. default: true
  46742. },
  46743. {
  46744. name: "Minimacro",
  46745. height: math.unit(40, "feet")
  46746. },
  46747. {
  46748. name: "Macro",
  46749. height: math.unit(124, "feet")
  46750. },
  46751. {
  46752. name: "Megamacro",
  46753. height: math.unit(850, "feet")
  46754. },
  46755. ]
  46756. ))
  46757. characterMakers.push(() => makeCharacter(
  46758. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46759. {
  46760. side: {
  46761. height: math.unit(13 + 6/12, "feet"),
  46762. weight: math.unit(3200, "lb"),
  46763. name: "Side",
  46764. image: {
  46765. source: "./media/characters/alvir/side.svg",
  46766. extra: 896/589,
  46767. bottom: 26/922
  46768. }
  46769. },
  46770. },
  46771. [
  46772. {
  46773. name: "Normal",
  46774. height: math.unit(13 + 6/12, "feet"),
  46775. default: true
  46776. },
  46777. ]
  46778. ))
  46779. characterMakers.push(() => makeCharacter(
  46780. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46781. {
  46782. front: {
  46783. height: math.unit(5 + 4/12, "feet"),
  46784. weight: math.unit(236, "lb"),
  46785. name: "Front",
  46786. image: {
  46787. source: "./media/characters/zaina-khalil/front.svg",
  46788. extra: 1533/1485,
  46789. bottom: 94/1627
  46790. }
  46791. },
  46792. side: {
  46793. height: math.unit(5 + 4/12, "feet"),
  46794. weight: math.unit(236, "lb"),
  46795. name: "Side",
  46796. image: {
  46797. source: "./media/characters/zaina-khalil/side.svg",
  46798. extra: 1537/1498,
  46799. bottom: 66/1603
  46800. }
  46801. },
  46802. back: {
  46803. height: math.unit(5 + 4/12, "feet"),
  46804. weight: math.unit(236, "lb"),
  46805. name: "Back",
  46806. image: {
  46807. source: "./media/characters/zaina-khalil/back.svg",
  46808. extra: 1546/1494,
  46809. bottom: 89/1635
  46810. }
  46811. },
  46812. },
  46813. [
  46814. {
  46815. name: "Normal",
  46816. height: math.unit(5 + 4/12, "feet"),
  46817. default: true
  46818. },
  46819. ]
  46820. ))
  46821. characterMakers.push(() => makeCharacter(
  46822. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46823. {
  46824. side: {
  46825. height: math.unit(12, "feet"),
  46826. weight: math.unit(4000, "lb"),
  46827. name: "Side",
  46828. image: {
  46829. source: "./media/characters/terry/side.svg",
  46830. extra: 1518/1439,
  46831. bottom: 149/1667
  46832. }
  46833. },
  46834. },
  46835. [
  46836. {
  46837. name: "Normal",
  46838. height: math.unit(12, "feet"),
  46839. default: true
  46840. },
  46841. ]
  46842. ))
  46843. characterMakers.push(() => makeCharacter(
  46844. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46845. {
  46846. front: {
  46847. height: math.unit(12, "feet"),
  46848. weight: math.unit(1500, "lb"),
  46849. name: "Front",
  46850. image: {
  46851. source: "./media/characters/kahea/front.svg",
  46852. extra: 1722/1617,
  46853. bottom: 179/1901
  46854. }
  46855. },
  46856. },
  46857. [
  46858. {
  46859. name: "Normal",
  46860. height: math.unit(12, "feet"),
  46861. default: true
  46862. },
  46863. ]
  46864. ))
  46865. characterMakers.push(() => makeCharacter(
  46866. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46867. {
  46868. demonFront: {
  46869. height: math.unit(36, "feet"),
  46870. name: "Front",
  46871. image: {
  46872. source: "./media/characters/alex-xuria/demon-front.svg",
  46873. extra: 1705/1673,
  46874. bottom: 198/1903
  46875. },
  46876. form: "demon",
  46877. default: true
  46878. },
  46879. demonBack: {
  46880. height: math.unit(36, "feet"),
  46881. name: "Back",
  46882. image: {
  46883. source: "./media/characters/alex-xuria/demon-back.svg",
  46884. extra: 1725/1693,
  46885. bottom: 70/1795
  46886. },
  46887. form: "demon"
  46888. },
  46889. demonHead: {
  46890. height: math.unit(2.14, "meters"),
  46891. name: "Head",
  46892. image: {
  46893. source: "./media/characters/alex-xuria/demon-head.svg"
  46894. },
  46895. form: "demon"
  46896. },
  46897. demonHand: {
  46898. height: math.unit(1.61, "meters"),
  46899. name: "Hand",
  46900. image: {
  46901. source: "./media/characters/alex-xuria/demon-hand.svg"
  46902. },
  46903. form: "demon"
  46904. },
  46905. demonPaw: {
  46906. height: math.unit(1.35, "meters"),
  46907. name: "Paw",
  46908. image: {
  46909. source: "./media/characters/alex-xuria/demon-paw.svg"
  46910. },
  46911. form: "demon"
  46912. },
  46913. demonFoot: {
  46914. height: math.unit(2.2, "meters"),
  46915. name: "Foot",
  46916. image: {
  46917. source: "./media/characters/alex-xuria/demon-foot.svg"
  46918. },
  46919. form: "demon"
  46920. },
  46921. demonCock: {
  46922. height: math.unit(1.74, "meters"),
  46923. name: "Cock",
  46924. image: {
  46925. source: "./media/characters/alex-xuria/demon-cock.svg"
  46926. },
  46927. form: "demon"
  46928. },
  46929. demonTailClosed: {
  46930. height: math.unit(1.47, "meters"),
  46931. name: "Tail (Closed)",
  46932. image: {
  46933. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46934. },
  46935. form: "demon"
  46936. },
  46937. demonTailOpen: {
  46938. height: math.unit(2.85, "meters"),
  46939. name: "Tail (Open)",
  46940. image: {
  46941. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46942. },
  46943. form: "demon"
  46944. },
  46945. incubusFront: {
  46946. height: math.unit(12, "feet"),
  46947. name: "Front",
  46948. image: {
  46949. source: "./media/characters/alex-xuria/incubus-front.svg",
  46950. extra: 1754/1677,
  46951. bottom: 125/1879
  46952. },
  46953. form: "incubus",
  46954. default: true
  46955. },
  46956. incubusBack: {
  46957. height: math.unit(12, "feet"),
  46958. name: "Back",
  46959. image: {
  46960. source: "./media/characters/alex-xuria/incubus-back.svg",
  46961. extra: 1702/1647,
  46962. bottom: 30/1732
  46963. },
  46964. form: "incubus"
  46965. },
  46966. incubusHead: {
  46967. height: math.unit(3.45, "feet"),
  46968. name: "Head",
  46969. image: {
  46970. source: "./media/characters/alex-xuria/incubus-head.svg"
  46971. },
  46972. form: "incubus"
  46973. },
  46974. rabbitFront: {
  46975. height: math.unit(6, "feet"),
  46976. name: "Front",
  46977. image: {
  46978. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46979. extra: 1369/1349,
  46980. bottom: 45/1414
  46981. },
  46982. form: "rabbit",
  46983. default: true
  46984. },
  46985. rabbitSide: {
  46986. height: math.unit(6, "feet"),
  46987. name: "Side",
  46988. image: {
  46989. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46990. extra: 1370/1356,
  46991. bottom: 37/1407
  46992. },
  46993. form: "rabbit"
  46994. },
  46995. rabbitBack: {
  46996. height: math.unit(6, "feet"),
  46997. name: "Back",
  46998. image: {
  46999. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47000. extra: 1375/1358,
  47001. bottom: 43/1418
  47002. },
  47003. form: "rabbit"
  47004. },
  47005. },
  47006. [
  47007. {
  47008. name: "Normal",
  47009. height: math.unit(6, "feet"),
  47010. default: true,
  47011. form: "rabbit"
  47012. },
  47013. {
  47014. name: "Incubus",
  47015. height: math.unit(12, "feet"),
  47016. default: true,
  47017. form: "incubus"
  47018. },
  47019. {
  47020. name: "Demon",
  47021. height: math.unit(36, "feet"),
  47022. default: true,
  47023. form: "demon"
  47024. }
  47025. ],
  47026. {
  47027. "demon": {
  47028. name: "Demon",
  47029. default: true
  47030. },
  47031. "incubus": {
  47032. name: "Incubus",
  47033. },
  47034. "rabbit": {
  47035. name: "Rabbit"
  47036. }
  47037. }
  47038. ))
  47039. characterMakers.push(() => makeCharacter(
  47040. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47041. {
  47042. front: {
  47043. height: math.unit(7 + 5/12, "feet"),
  47044. weight: math.unit(510, "lb"),
  47045. name: "Front",
  47046. image: {
  47047. source: "./media/characters/syrup/front.svg",
  47048. extra: 932/916,
  47049. bottom: 26/958
  47050. }
  47051. },
  47052. },
  47053. [
  47054. {
  47055. name: "Normal",
  47056. height: math.unit(7 + 5/12, "feet"),
  47057. default: true
  47058. },
  47059. {
  47060. name: "Big",
  47061. height: math.unit(50, "feet")
  47062. },
  47063. {
  47064. name: "Macro",
  47065. height: math.unit(300, "feet")
  47066. },
  47067. {
  47068. name: "Megamacro",
  47069. height: math.unit(1, "mile")
  47070. },
  47071. ]
  47072. ))
  47073. characterMakers.push(() => makeCharacter(
  47074. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47075. {
  47076. front: {
  47077. height: math.unit(6 + 9/12, "feet"),
  47078. name: "Front",
  47079. image: {
  47080. source: "./media/characters/zeimne/front.svg",
  47081. extra: 1969/1806,
  47082. bottom: 53/2022
  47083. }
  47084. },
  47085. },
  47086. [
  47087. {
  47088. name: "Normal",
  47089. height: math.unit(6 + 9/12, "feet"),
  47090. default: true
  47091. },
  47092. {
  47093. name: "Giant",
  47094. height: math.unit(550, "feet")
  47095. },
  47096. {
  47097. name: "Mega",
  47098. height: math.unit(3, "miles")
  47099. },
  47100. {
  47101. name: "Giga",
  47102. height: math.unit(250, "miles")
  47103. },
  47104. {
  47105. name: "Tera",
  47106. height: math.unit(1, "AU")
  47107. },
  47108. ]
  47109. ))
  47110. characterMakers.push(() => makeCharacter(
  47111. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47112. {
  47113. front: {
  47114. height: math.unit(5 + 2/12, "feet"),
  47115. name: "Front",
  47116. image: {
  47117. source: "./media/characters/grar/front.svg",
  47118. extra: 1331/1119,
  47119. bottom: 60/1391
  47120. }
  47121. },
  47122. back: {
  47123. height: math.unit(5 + 2/12, "feet"),
  47124. name: "Back",
  47125. image: {
  47126. source: "./media/characters/grar/back.svg",
  47127. extra: 1385/1169,
  47128. bottom: 23/1408
  47129. }
  47130. },
  47131. },
  47132. [
  47133. {
  47134. name: "Normal",
  47135. height: math.unit(5 + 2/12, "feet"),
  47136. default: true
  47137. },
  47138. ]
  47139. ))
  47140. characterMakers.push(() => makeCharacter(
  47141. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47142. {
  47143. front: {
  47144. height: math.unit(13 + 7/12, "feet"),
  47145. weight: math.unit(2200, "lb"),
  47146. name: "Front",
  47147. image: {
  47148. source: "./media/characters/endraya/front.svg",
  47149. extra: 1289/1215,
  47150. bottom: 50/1339
  47151. }
  47152. },
  47153. nude: {
  47154. height: math.unit(13 + 7/12, "feet"),
  47155. weight: math.unit(2200, "lb"),
  47156. name: "Nude",
  47157. image: {
  47158. source: "./media/characters/endraya/nude.svg",
  47159. extra: 1247/1171,
  47160. bottom: 40/1287
  47161. }
  47162. },
  47163. head: {
  47164. height: math.unit(2.6, "feet"),
  47165. name: "Head",
  47166. image: {
  47167. source: "./media/characters/endraya/head.svg"
  47168. }
  47169. },
  47170. slit: {
  47171. height: math.unit(3.4, "feet"),
  47172. name: "Slit",
  47173. image: {
  47174. source: "./media/characters/endraya/slit.svg"
  47175. }
  47176. },
  47177. },
  47178. [
  47179. {
  47180. name: "Normal",
  47181. height: math.unit(13 + 7/12, "feet"),
  47182. default: true
  47183. },
  47184. {
  47185. name: "Macro",
  47186. height: math.unit(200, "feet")
  47187. },
  47188. ]
  47189. ))
  47190. characterMakers.push(() => makeCharacter(
  47191. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47192. {
  47193. front: {
  47194. height: math.unit(1.81, "meters"),
  47195. weight: math.unit(69, "kg"),
  47196. name: "Front",
  47197. image: {
  47198. source: "./media/characters/rodryana/front.svg",
  47199. extra: 2002/1921,
  47200. bottom: 53/2055
  47201. }
  47202. },
  47203. back: {
  47204. height: math.unit(1.81, "meters"),
  47205. weight: math.unit(69, "kg"),
  47206. name: "Back",
  47207. image: {
  47208. source: "./media/characters/rodryana/back.svg",
  47209. extra: 1993/1926,
  47210. bottom: 48/2041
  47211. }
  47212. },
  47213. maw: {
  47214. height: math.unit(0.19769417475, "meters"),
  47215. name: "Maw",
  47216. image: {
  47217. source: "./media/characters/rodryana/maw.svg"
  47218. }
  47219. },
  47220. slit: {
  47221. height: math.unit(0.31631067961, "meters"),
  47222. name: "Slit",
  47223. image: {
  47224. source: "./media/characters/rodryana/slit.svg"
  47225. }
  47226. },
  47227. },
  47228. [
  47229. {
  47230. name: "Normal",
  47231. height: math.unit(1.81, "meters")
  47232. },
  47233. {
  47234. name: "Mini Macro",
  47235. height: math.unit(181, "meters")
  47236. },
  47237. {
  47238. name: "Macro",
  47239. height: math.unit(452, "meters"),
  47240. default: true
  47241. },
  47242. {
  47243. name: "Mega Macro",
  47244. height: math.unit(1.375, "km")
  47245. },
  47246. {
  47247. name: "Giga Macro",
  47248. height: math.unit(13.575, "km")
  47249. },
  47250. ]
  47251. ))
  47252. characterMakers.push(() => makeCharacter(
  47253. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47254. {
  47255. front: {
  47256. height: math.unit(6, "feet"),
  47257. weight: math.unit(1000, "lb"),
  47258. name: "Front",
  47259. image: {
  47260. source: "./media/characters/asaya/front.svg",
  47261. extra: 1460/1200,
  47262. bottom: 71/1531
  47263. }
  47264. },
  47265. },
  47266. [
  47267. {
  47268. name: "Normal",
  47269. height: math.unit(8, "km"),
  47270. default: true
  47271. },
  47272. ]
  47273. ))
  47274. characterMakers.push(() => makeCharacter(
  47275. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47276. {
  47277. front: {
  47278. height: math.unit(3.5, "meters"),
  47279. name: "Front",
  47280. image: {
  47281. source: "./media/characters/sarzu-and-israz/front.svg",
  47282. extra: 1570/1558,
  47283. bottom: 150/1720
  47284. },
  47285. },
  47286. back: {
  47287. height: math.unit(3.5, "meters"),
  47288. name: "Back",
  47289. image: {
  47290. source: "./media/characters/sarzu-and-israz/back.svg",
  47291. extra: 1523/1509,
  47292. bottom: 132/1655
  47293. },
  47294. },
  47295. frontFemale: {
  47296. height: math.unit(3.5, "meters"),
  47297. name: "Front (Female)",
  47298. image: {
  47299. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47300. extra: 1570/1558,
  47301. bottom: 150/1720
  47302. },
  47303. },
  47304. frontHerm: {
  47305. height: math.unit(3.5, "meters"),
  47306. name: "Front (Herm)",
  47307. image: {
  47308. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47309. extra: 1570/1558,
  47310. bottom: 150/1720
  47311. },
  47312. },
  47313. },
  47314. [
  47315. {
  47316. name: "Normal",
  47317. height: math.unit(3.5, "meters"),
  47318. default: true,
  47319. },
  47320. {
  47321. name: "Macro",
  47322. height: math.unit(65.5, "meters"),
  47323. },
  47324. ],
  47325. ))
  47326. characterMakers.push(() => makeCharacter(
  47327. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47328. {
  47329. front: {
  47330. height: math.unit(6, "feet"),
  47331. weight: math.unit(250, "lb"),
  47332. name: "Front",
  47333. image: {
  47334. source: "./media/characters/zenimma/front.svg",
  47335. extra: 1346/1320,
  47336. bottom: 58/1404
  47337. }
  47338. },
  47339. back: {
  47340. height: math.unit(6, "feet"),
  47341. weight: math.unit(250, "lb"),
  47342. name: "Back",
  47343. image: {
  47344. source: "./media/characters/zenimma/back.svg",
  47345. extra: 1324/1308,
  47346. bottom: 44/1368
  47347. }
  47348. },
  47349. dick: {
  47350. height: math.unit(1.44, "feet"),
  47351. name: "Dick",
  47352. image: {
  47353. source: "./media/characters/zenimma/dick.svg"
  47354. }
  47355. },
  47356. },
  47357. [
  47358. {
  47359. name: "Canon Height",
  47360. height: math.unit(66, "miles"),
  47361. default: true
  47362. },
  47363. ]
  47364. ))
  47365. characterMakers.push(() => makeCharacter(
  47366. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47367. {
  47368. nude: {
  47369. height: math.unit(6, "feet"),
  47370. weight: math.unit(150, "lb"),
  47371. name: "Nude",
  47372. image: {
  47373. source: "./media/characters/shavon/nude.svg",
  47374. extra: 1242/1096,
  47375. bottom: 98/1340
  47376. }
  47377. },
  47378. dressed: {
  47379. height: math.unit(6, "feet"),
  47380. weight: math.unit(150, "lb"),
  47381. name: "Dressed",
  47382. image: {
  47383. source: "./media/characters/shavon/dressed.svg",
  47384. extra: 1242/1096,
  47385. bottom: 98/1340
  47386. }
  47387. },
  47388. },
  47389. [
  47390. {
  47391. name: "Macro",
  47392. height: math.unit(255, "feet"),
  47393. default: true
  47394. },
  47395. ]
  47396. ))
  47397. characterMakers.push(() => makeCharacter(
  47398. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47399. {
  47400. front: {
  47401. height: math.unit(6, "feet"),
  47402. name: "Front",
  47403. image: {
  47404. source: "./media/characters/steph/front.svg",
  47405. extra: 1430/1330,
  47406. bottom: 54/1484
  47407. }
  47408. },
  47409. },
  47410. [
  47411. {
  47412. name: "Normal",
  47413. height: math.unit(6, "feet"),
  47414. default: true
  47415. },
  47416. ]
  47417. ))
  47418. characterMakers.push(() => makeCharacter(
  47419. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47420. {
  47421. front: {
  47422. height: math.unit(9, "feet"),
  47423. weight: math.unit(400, "lb"),
  47424. name: "Front",
  47425. image: {
  47426. source: "./media/characters/kil'aman/front.svg",
  47427. extra: 1210/1159,
  47428. bottom: 109/1319
  47429. }
  47430. },
  47431. head: {
  47432. height: math.unit(2.14, "feet"),
  47433. name: "Head",
  47434. image: {
  47435. source: "./media/characters/kil'aman/head.svg"
  47436. }
  47437. },
  47438. maw: {
  47439. height: math.unit(1.21, "feet"),
  47440. name: "Maw",
  47441. image: {
  47442. source: "./media/characters/kil'aman/maw.svg"
  47443. }
  47444. },
  47445. foot: {
  47446. height: math.unit(1.7, "feet"),
  47447. name: "Foot",
  47448. image: {
  47449. source: "./media/characters/kil'aman/foot.svg"
  47450. }
  47451. },
  47452. dick: {
  47453. height: math.unit(2.1, "feet"),
  47454. name: "Dick",
  47455. image: {
  47456. source: "./media/characters/kil'aman/dick.svg"
  47457. }
  47458. },
  47459. },
  47460. [
  47461. {
  47462. name: "Normal",
  47463. height: math.unit(9, "feet")
  47464. },
  47465. {
  47466. name: "Canon Height",
  47467. height: math.unit(10, "miles"),
  47468. default: true
  47469. },
  47470. {
  47471. name: "Maximum",
  47472. height: math.unit(6e9, "miles")
  47473. },
  47474. ]
  47475. ))
  47476. characterMakers.push(() => makeCharacter(
  47477. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47478. {
  47479. front: {
  47480. height: math.unit(90, "feet"),
  47481. weight: math.unit(675000, "lb"),
  47482. name: "Front",
  47483. image: {
  47484. source: "./media/characters/qadan/front.svg",
  47485. extra: 1012/1004,
  47486. bottom: 78/1090
  47487. }
  47488. },
  47489. back: {
  47490. height: math.unit(90, "feet"),
  47491. weight: math.unit(675000, "lb"),
  47492. name: "Back",
  47493. image: {
  47494. source: "./media/characters/qadan/back.svg",
  47495. extra: 1042/1031,
  47496. bottom: 55/1097
  47497. }
  47498. },
  47499. armored: {
  47500. height: math.unit(90, "feet"),
  47501. weight: math.unit(675000, "lb"),
  47502. name: "Armored",
  47503. image: {
  47504. source: "./media/characters/qadan/armored.svg",
  47505. extra: 1047/1037,
  47506. bottom: 48/1095
  47507. }
  47508. },
  47509. },
  47510. [
  47511. {
  47512. name: "Normal",
  47513. height: math.unit(90, "feet"),
  47514. default: true
  47515. },
  47516. ]
  47517. ))
  47518. characterMakers.push(() => makeCharacter(
  47519. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47520. {
  47521. front: {
  47522. height: math.unit(6, "feet"),
  47523. weight: math.unit(225, "lb"),
  47524. name: "Front",
  47525. image: {
  47526. source: "./media/characters/brooke/front.svg",
  47527. extra: 1050/1010,
  47528. bottom: 66/1116
  47529. }
  47530. },
  47531. back: {
  47532. height: math.unit(6, "feet"),
  47533. weight: math.unit(225, "lb"),
  47534. name: "Back",
  47535. image: {
  47536. source: "./media/characters/brooke/back.svg",
  47537. extra: 1053/1013,
  47538. bottom: 41/1094
  47539. }
  47540. },
  47541. dressed: {
  47542. height: math.unit(6, "feet"),
  47543. weight: math.unit(225, "lb"),
  47544. name: "Dressed",
  47545. image: {
  47546. source: "./media/characters/brooke/dressed.svg",
  47547. extra: 1050/1010,
  47548. bottom: 66/1116
  47549. }
  47550. },
  47551. },
  47552. [
  47553. {
  47554. name: "Canon Height",
  47555. height: math.unit(500, "miles"),
  47556. default: true
  47557. },
  47558. ]
  47559. ))
  47560. characterMakers.push(() => makeCharacter(
  47561. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47562. {
  47563. front: {
  47564. height: math.unit(6 + 2/12, "feet"),
  47565. weight: math.unit(210, "lb"),
  47566. name: "Front",
  47567. image: {
  47568. source: "./media/characters/wubs/front.svg",
  47569. extra: 1345/1325,
  47570. bottom: 70/1415
  47571. }
  47572. },
  47573. back: {
  47574. height: math.unit(6 + 2/12, "feet"),
  47575. weight: math.unit(210, "lb"),
  47576. name: "Back",
  47577. image: {
  47578. source: "./media/characters/wubs/back.svg",
  47579. extra: 1296/1275,
  47580. bottom: 58/1354
  47581. }
  47582. },
  47583. },
  47584. [
  47585. {
  47586. name: "Normal",
  47587. height: math.unit(6 + 2/12, "feet"),
  47588. default: true
  47589. },
  47590. {
  47591. name: "Macro",
  47592. height: math.unit(1000, "feet")
  47593. },
  47594. {
  47595. name: "Megamacro",
  47596. height: math.unit(1, "mile")
  47597. },
  47598. ]
  47599. ))
  47600. characterMakers.push(() => makeCharacter(
  47601. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47602. {
  47603. front: {
  47604. height: math.unit(4, "feet"),
  47605. weight: math.unit(120, "lb"),
  47606. name: "Front",
  47607. image: {
  47608. source: "./media/characters/blue/front.svg",
  47609. extra: 1636/1525,
  47610. bottom: 43/1679
  47611. }
  47612. },
  47613. back: {
  47614. height: math.unit(4, "feet"),
  47615. weight: math.unit(120, "lb"),
  47616. name: "Back",
  47617. image: {
  47618. source: "./media/characters/blue/back.svg",
  47619. extra: 1660/1560,
  47620. bottom: 57/1717
  47621. }
  47622. },
  47623. paws: {
  47624. height: math.unit(0.826, "feet"),
  47625. name: "Paws",
  47626. image: {
  47627. source: "./media/characters/blue/paws.svg"
  47628. }
  47629. },
  47630. },
  47631. [
  47632. {
  47633. name: "Micro",
  47634. height: math.unit(3, "inches")
  47635. },
  47636. {
  47637. name: "Normal",
  47638. height: math.unit(4, "feet"),
  47639. default: true
  47640. },
  47641. {
  47642. name: "Femenine Form",
  47643. height: math.unit(14, "feet")
  47644. },
  47645. {
  47646. name: "Werebat Form",
  47647. height: math.unit(18, "feet")
  47648. },
  47649. ]
  47650. ))
  47651. characterMakers.push(() => makeCharacter(
  47652. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47653. {
  47654. female: {
  47655. height: math.unit(7 + 4/12, "feet"),
  47656. weight: math.unit(243, "lb"),
  47657. name: "Female",
  47658. image: {
  47659. source: "./media/characters/kaya/female.svg",
  47660. extra: 975/898,
  47661. bottom: 34/1009
  47662. }
  47663. },
  47664. herm: {
  47665. height: math.unit(7 + 4/12, "feet"),
  47666. weight: math.unit(243, "lb"),
  47667. name: "Herm",
  47668. image: {
  47669. source: "./media/characters/kaya/herm.svg",
  47670. extra: 975/898,
  47671. bottom: 34/1009
  47672. }
  47673. },
  47674. },
  47675. [
  47676. {
  47677. name: "Normal",
  47678. height: math.unit(7 + 4/12, "feet"),
  47679. default: true
  47680. },
  47681. ]
  47682. ))
  47683. characterMakers.push(() => makeCharacter(
  47684. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47685. {
  47686. female: {
  47687. height: math.unit(9 + 4/12, "feet"),
  47688. weight: math.unit(398, "lb"),
  47689. name: "Female",
  47690. image: {
  47691. source: "./media/characters/kassandra/female.svg",
  47692. extra: 908/839,
  47693. bottom: 61/969
  47694. }
  47695. },
  47696. intersex: {
  47697. height: math.unit(9 + 4/12, "feet"),
  47698. weight: math.unit(398, "lb"),
  47699. name: "Intersex",
  47700. image: {
  47701. source: "./media/characters/kassandra/intersex.svg",
  47702. extra: 908/839,
  47703. bottom: 61/969
  47704. }
  47705. },
  47706. },
  47707. [
  47708. {
  47709. name: "Normal",
  47710. height: math.unit(9 + 4/12, "feet"),
  47711. default: true
  47712. },
  47713. ]
  47714. ))
  47715. characterMakers.push(() => makeCharacter(
  47716. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47717. {
  47718. front: {
  47719. height: math.unit(3, "meters"),
  47720. name: "Front",
  47721. image: {
  47722. source: "./media/characters/amy/front.svg",
  47723. extra: 1380/1343,
  47724. bottom: 70/1450
  47725. }
  47726. },
  47727. back: {
  47728. height: math.unit(3, "meters"),
  47729. name: "Back",
  47730. image: {
  47731. source: "./media/characters/amy/back.svg",
  47732. extra: 1380/1347,
  47733. bottom: 66/1446
  47734. }
  47735. },
  47736. },
  47737. [
  47738. {
  47739. name: "Normal",
  47740. height: math.unit(3, "meters"),
  47741. default: true
  47742. },
  47743. ]
  47744. ))
  47745. characterMakers.push(() => makeCharacter(
  47746. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47747. {
  47748. side: {
  47749. height: math.unit(47, "cm"),
  47750. weight: math.unit(10.8, "kg"),
  47751. name: "Side",
  47752. image: {
  47753. source: "./media/characters/alphaschakal/side.svg",
  47754. extra: 1058/568,
  47755. bottom: 62/1120
  47756. }
  47757. },
  47758. back: {
  47759. height: math.unit(78, "cm"),
  47760. weight: math.unit(10.8, "kg"),
  47761. name: "Back",
  47762. image: {
  47763. source: "./media/characters/alphaschakal/back.svg",
  47764. extra: 1102/942,
  47765. bottom: 185/1287
  47766. }
  47767. },
  47768. head: {
  47769. height: math.unit(28, "cm"),
  47770. name: "Head",
  47771. image: {
  47772. source: "./media/characters/alphaschakal/head.svg",
  47773. extra: 696/508,
  47774. bottom: 0/696
  47775. }
  47776. },
  47777. paw: {
  47778. height: math.unit(16, "cm"),
  47779. name: "Paw",
  47780. image: {
  47781. source: "./media/characters/alphaschakal/paw.svg"
  47782. }
  47783. },
  47784. },
  47785. [
  47786. {
  47787. name: "Normal",
  47788. height: math.unit(47, "cm"),
  47789. default: true
  47790. },
  47791. {
  47792. name: "Macro",
  47793. height: math.unit(340, "cm")
  47794. },
  47795. ]
  47796. ))
  47797. characterMakers.push(() => makeCharacter(
  47798. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47799. {
  47800. front: {
  47801. height: math.unit(36, "earths"),
  47802. name: "Front",
  47803. image: {
  47804. source: "./media/characters/ecobyss/front.svg",
  47805. extra: 1282/1215,
  47806. bottom: 11/1293
  47807. }
  47808. },
  47809. back: {
  47810. height: math.unit(36, "earths"),
  47811. name: "Back",
  47812. image: {
  47813. source: "./media/characters/ecobyss/back.svg",
  47814. extra: 1291/1222,
  47815. bottom: 8/1299
  47816. }
  47817. },
  47818. },
  47819. [
  47820. {
  47821. name: "Normal",
  47822. height: math.unit(36, "earths"),
  47823. default: true
  47824. },
  47825. ]
  47826. ))
  47827. characterMakers.push(() => makeCharacter(
  47828. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47829. {
  47830. front: {
  47831. height: math.unit(12, "feet"),
  47832. name: "Front",
  47833. image: {
  47834. source: "./media/characters/vasuk/front.svg",
  47835. extra: 1326/1207,
  47836. bottom: 64/1390
  47837. }
  47838. },
  47839. },
  47840. [
  47841. {
  47842. name: "Normal",
  47843. height: math.unit(12, "feet"),
  47844. default: true
  47845. },
  47846. ]
  47847. ))
  47848. characterMakers.push(() => makeCharacter(
  47849. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47850. {
  47851. side: {
  47852. height: math.unit(100, "feet"),
  47853. name: "Side",
  47854. image: {
  47855. source: "./media/characters/linneaus/side.svg",
  47856. extra: 987/807,
  47857. bottom: 47/1034
  47858. }
  47859. },
  47860. },
  47861. [
  47862. {
  47863. name: "Macro",
  47864. height: math.unit(100, "feet"),
  47865. default: true
  47866. },
  47867. ]
  47868. ))
  47869. characterMakers.push(() => makeCharacter(
  47870. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47871. {
  47872. front: {
  47873. height: math.unit(8, "feet"),
  47874. weight: math.unit(1200, "lb"),
  47875. name: "Front",
  47876. image: {
  47877. source: "./media/characters/nyterious-daligdig/front.svg",
  47878. extra: 1284/1094,
  47879. bottom: 84/1368
  47880. }
  47881. },
  47882. back: {
  47883. height: math.unit(8, "feet"),
  47884. weight: math.unit(1200, "lb"),
  47885. name: "Back",
  47886. image: {
  47887. source: "./media/characters/nyterious-daligdig/back.svg",
  47888. extra: 1301/1121,
  47889. bottom: 129/1430
  47890. }
  47891. },
  47892. mouth: {
  47893. height: math.unit(1.464, "feet"),
  47894. name: "Mouth",
  47895. image: {
  47896. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47897. }
  47898. },
  47899. },
  47900. [
  47901. {
  47902. name: "Small",
  47903. height: math.unit(8, "feet"),
  47904. default: true
  47905. },
  47906. {
  47907. name: "Normal",
  47908. height: math.unit(15, "feet")
  47909. },
  47910. {
  47911. name: "Macro",
  47912. height: math.unit(90, "feet")
  47913. },
  47914. ]
  47915. ))
  47916. characterMakers.push(() => makeCharacter(
  47917. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47918. {
  47919. front: {
  47920. height: math.unit(7 + 4/12, "feet"),
  47921. weight: math.unit(252, "lb"),
  47922. name: "Front",
  47923. image: {
  47924. source: "./media/characters/bandel/front.svg",
  47925. extra: 1946/1775,
  47926. bottom: 26/1972
  47927. }
  47928. },
  47929. back: {
  47930. height: math.unit(7 + 4/12, "feet"),
  47931. weight: math.unit(252, "lb"),
  47932. name: "Back",
  47933. image: {
  47934. source: "./media/characters/bandel/back.svg",
  47935. extra: 1940/1770,
  47936. bottom: 25/1965
  47937. }
  47938. },
  47939. maw: {
  47940. height: math.unit(2.15, "feet"),
  47941. name: "Maw",
  47942. image: {
  47943. source: "./media/characters/bandel/maw.svg"
  47944. }
  47945. },
  47946. stomach: {
  47947. height: math.unit(1.95, "feet"),
  47948. name: "Stomach",
  47949. image: {
  47950. source: "./media/characters/bandel/stomach.svg"
  47951. }
  47952. },
  47953. },
  47954. [
  47955. {
  47956. name: "Normal",
  47957. height: math.unit(7 + 4/12, "feet"),
  47958. default: true
  47959. },
  47960. ]
  47961. ))
  47962. characterMakers.push(() => makeCharacter(
  47963. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47964. {
  47965. front: {
  47966. height: math.unit(10 + 5/12, "feet"),
  47967. weight: math.unit(773.5, "kg"),
  47968. name: "Front",
  47969. image: {
  47970. source: "./media/characters/zed/front.svg",
  47971. extra: 987/941,
  47972. bottom: 52/1039
  47973. }
  47974. },
  47975. },
  47976. [
  47977. {
  47978. name: "Short",
  47979. height: math.unit(5 + 4/12, "feet")
  47980. },
  47981. {
  47982. name: "Average",
  47983. height: math.unit(10 + 5/12, "feet"),
  47984. default: true
  47985. },
  47986. {
  47987. name: "Mini-Macro",
  47988. height: math.unit(24 + 9/12, "feet")
  47989. },
  47990. {
  47991. name: "Macro",
  47992. height: math.unit(249, "feet")
  47993. },
  47994. {
  47995. name: "Mega-Macro",
  47996. height: math.unit(12490, "feet")
  47997. },
  47998. {
  47999. name: "Giga-Macro",
  48000. height: math.unit(24.9, "miles")
  48001. },
  48002. {
  48003. name: "Tera-Macro",
  48004. height: math.unit(24900, "miles")
  48005. },
  48006. {
  48007. name: "Cosmic Scale",
  48008. height: math.unit(38.9, "lightyears")
  48009. },
  48010. {
  48011. name: "Universal Scale",
  48012. height: math.unit(138e12, "lightyears")
  48013. },
  48014. ]
  48015. ))
  48016. characterMakers.push(() => makeCharacter(
  48017. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48018. {
  48019. front: {
  48020. height: math.unit(1561, "inches"),
  48021. name: "Front",
  48022. image: {
  48023. source: "./media/characters/ivan/front.svg",
  48024. extra: 1126/1071,
  48025. bottom: 26/1152
  48026. }
  48027. },
  48028. back: {
  48029. height: math.unit(1561, "inches"),
  48030. name: "Back",
  48031. image: {
  48032. source: "./media/characters/ivan/back.svg",
  48033. extra: 1134/1079,
  48034. bottom: 30/1164
  48035. }
  48036. },
  48037. },
  48038. [
  48039. {
  48040. name: "Normal",
  48041. height: math.unit(1561, "inches"),
  48042. default: true
  48043. },
  48044. ]
  48045. ))
  48046. characterMakers.push(() => makeCharacter(
  48047. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48048. {
  48049. front: {
  48050. height: math.unit(5 + 7/12, "feet"),
  48051. weight: math.unit(150, "lb"),
  48052. name: "Front",
  48053. image: {
  48054. source: "./media/characters/robin-arctic-hare/front.svg",
  48055. extra: 1148/974,
  48056. bottom: 20/1168
  48057. }
  48058. },
  48059. },
  48060. [
  48061. {
  48062. name: "Normal",
  48063. height: math.unit(5 + 7/12, "feet"),
  48064. default: true
  48065. },
  48066. ]
  48067. ))
  48068. characterMakers.push(() => makeCharacter(
  48069. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48070. {
  48071. side: {
  48072. height: math.unit(5, "feet"),
  48073. name: "Side",
  48074. image: {
  48075. source: "./media/characters/birch/side.svg",
  48076. extra: 985/796,
  48077. bottom: 111/1096
  48078. }
  48079. },
  48080. },
  48081. [
  48082. {
  48083. name: "Normal",
  48084. height: math.unit(5, "feet"),
  48085. default: true
  48086. },
  48087. ]
  48088. ))
  48089. characterMakers.push(() => makeCharacter(
  48090. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48091. {
  48092. front: {
  48093. height: math.unit(4, "feet"),
  48094. name: "Front",
  48095. image: {
  48096. source: "./media/characters/rasp/front.svg",
  48097. extra: 561/478,
  48098. bottom: 74/635
  48099. }
  48100. },
  48101. },
  48102. [
  48103. {
  48104. name: "Normal",
  48105. height: math.unit(4, "feet"),
  48106. default: true
  48107. },
  48108. ]
  48109. ))
  48110. characterMakers.push(() => makeCharacter(
  48111. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48112. {
  48113. front: {
  48114. height: math.unit(4 + 6/12, "feet"),
  48115. name: "Front",
  48116. image: {
  48117. source: "./media/characters/agatha/front.svg",
  48118. extra: 947/933,
  48119. bottom: 42/989
  48120. }
  48121. },
  48122. back: {
  48123. height: math.unit(4 + 6/12, "feet"),
  48124. name: "Back",
  48125. image: {
  48126. source: "./media/characters/agatha/back.svg",
  48127. extra: 935/922,
  48128. bottom: 48/983
  48129. }
  48130. },
  48131. },
  48132. [
  48133. {
  48134. name: "Normal",
  48135. height: math.unit(4 + 6 /12, "feet"),
  48136. default: true
  48137. },
  48138. {
  48139. name: "Max Size",
  48140. height: math.unit(500, "feet")
  48141. },
  48142. ]
  48143. ))
  48144. characterMakers.push(() => makeCharacter(
  48145. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48146. {
  48147. side: {
  48148. height: math.unit(30, "feet"),
  48149. name: "Side",
  48150. image: {
  48151. source: "./media/characters/roggy/side.svg",
  48152. extra: 909/643,
  48153. bottom: 63/972
  48154. }
  48155. },
  48156. lounging: {
  48157. height: math.unit(20, "feet"),
  48158. name: "Lounging",
  48159. image: {
  48160. source: "./media/characters/roggy/lounging.svg",
  48161. extra: 643/479,
  48162. bottom: 145/788
  48163. }
  48164. },
  48165. handpaw: {
  48166. height: math.unit(13.1, "feet"),
  48167. name: "Handpaw",
  48168. image: {
  48169. source: "./media/characters/roggy/handpaw.svg"
  48170. }
  48171. },
  48172. footpaw: {
  48173. height: math.unit(15.8, "feet"),
  48174. name: "Footpaw",
  48175. image: {
  48176. source: "./media/characters/roggy/footpaw.svg"
  48177. }
  48178. },
  48179. },
  48180. [
  48181. {
  48182. name: "Menacing",
  48183. height: math.unit(30, "feet"),
  48184. default: true
  48185. },
  48186. ]
  48187. ))
  48188. characterMakers.push(() => makeCharacter(
  48189. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48190. {
  48191. front: {
  48192. height: math.unit(5 + 7/12, "feet"),
  48193. weight: math.unit(135, "lb"),
  48194. name: "Front",
  48195. image: {
  48196. source: "./media/characters/naomi/front.svg",
  48197. extra: 1209/1154,
  48198. bottom: 129/1338
  48199. }
  48200. },
  48201. back: {
  48202. height: math.unit(5 + 7/12, "feet"),
  48203. weight: math.unit(135, "lb"),
  48204. name: "Back",
  48205. image: {
  48206. source: "./media/characters/naomi/back.svg",
  48207. extra: 1252/1190,
  48208. bottom: 23/1275
  48209. }
  48210. },
  48211. },
  48212. [
  48213. {
  48214. name: "Normal",
  48215. height: math.unit(5 + 7 /12, "feet"),
  48216. default: true
  48217. },
  48218. ]
  48219. ))
  48220. characterMakers.push(() => makeCharacter(
  48221. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48222. {
  48223. side: {
  48224. height: math.unit(35, "meters"),
  48225. name: "Side",
  48226. image: {
  48227. source: "./media/characters/kimpi/side.svg",
  48228. extra: 419/382,
  48229. bottom: 63/482
  48230. }
  48231. },
  48232. hand: {
  48233. height: math.unit(8.96, "meters"),
  48234. name: "Hand",
  48235. image: {
  48236. source: "./media/characters/kimpi/hand.svg"
  48237. }
  48238. },
  48239. },
  48240. [
  48241. {
  48242. name: "Normal",
  48243. height: math.unit(35, "meters"),
  48244. default: true
  48245. },
  48246. ]
  48247. ))
  48248. characterMakers.push(() => makeCharacter(
  48249. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48250. {
  48251. front: {
  48252. height: math.unit(4 + 4/12, "feet"),
  48253. name: "Front",
  48254. image: {
  48255. source: "./media/characters/pepper-purrloin/front.svg",
  48256. extra: 1141/1024,
  48257. bottom: 21/1162
  48258. }
  48259. },
  48260. },
  48261. [
  48262. {
  48263. name: "Normal",
  48264. height: math.unit(4 + 4/12, "feet"),
  48265. default: true
  48266. },
  48267. ]
  48268. ))
  48269. characterMakers.push(() => makeCharacter(
  48270. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48271. {
  48272. front: {
  48273. height: math.unit(6 + 2/12, "feet"),
  48274. name: "Front",
  48275. image: {
  48276. source: "./media/characters/raphael/front.svg",
  48277. extra: 1101/962,
  48278. bottom: 59/1160
  48279. }
  48280. },
  48281. },
  48282. [
  48283. {
  48284. name: "Normal",
  48285. height: math.unit(6 + 2/12, "feet"),
  48286. default: true
  48287. },
  48288. ]
  48289. ))
  48290. characterMakers.push(() => makeCharacter(
  48291. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48292. {
  48293. front: {
  48294. height: math.unit(6, "feet"),
  48295. weight: math.unit(150, "lb"),
  48296. name: "Front",
  48297. image: {
  48298. source: "./media/characters/victor-williams/front.svg",
  48299. extra: 1894/1825,
  48300. bottom: 67/1961
  48301. }
  48302. },
  48303. },
  48304. [
  48305. {
  48306. name: "Normal",
  48307. height: math.unit(6, "feet"),
  48308. default: true
  48309. },
  48310. ]
  48311. ))
  48312. characterMakers.push(() => makeCharacter(
  48313. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48314. {
  48315. front: {
  48316. height: math.unit(5 + 8/12, "feet"),
  48317. weight: math.unit(150, "lb"),
  48318. name: "Front",
  48319. image: {
  48320. source: "./media/characters/rachel/front.svg",
  48321. extra: 1902/1787,
  48322. bottom: 46/1948
  48323. }
  48324. },
  48325. },
  48326. [
  48327. {
  48328. name: "Base Height",
  48329. height: math.unit(5 + 8/12, "feet"),
  48330. default: true
  48331. },
  48332. {
  48333. name: "Macro",
  48334. height: math.unit(200, "feet")
  48335. },
  48336. {
  48337. name: "Mega Macro",
  48338. height: math.unit(1, "mile")
  48339. },
  48340. {
  48341. name: "Giga Macro",
  48342. height: math.unit(1500, "miles")
  48343. },
  48344. {
  48345. name: "Tera Macro",
  48346. height: math.unit(8000, "miles")
  48347. },
  48348. {
  48349. name: "Tera Macro+",
  48350. height: math.unit(2e5, "miles")
  48351. },
  48352. ]
  48353. ))
  48354. characterMakers.push(() => makeCharacter(
  48355. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48356. {
  48357. front: {
  48358. height: math.unit(6.5, "feet"),
  48359. name: "Front",
  48360. image: {
  48361. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48362. extra: 860/819,
  48363. bottom: 307/1167
  48364. }
  48365. },
  48366. back: {
  48367. height: math.unit(6.5, "feet"),
  48368. name: "Back",
  48369. image: {
  48370. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48371. extra: 880/837,
  48372. bottom: 395/1275
  48373. }
  48374. },
  48375. sleeping: {
  48376. height: math.unit(2.79, "feet"),
  48377. name: "Sleeping",
  48378. image: {
  48379. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48380. extra: 465/383,
  48381. bottom: 263/728
  48382. }
  48383. },
  48384. maw: {
  48385. height: math.unit(2.52, "feet"),
  48386. name: "Maw",
  48387. image: {
  48388. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48389. }
  48390. },
  48391. },
  48392. [
  48393. {
  48394. name: "Normal",
  48395. height: math.unit(6.5, "feet"),
  48396. default: true
  48397. },
  48398. ]
  48399. ))
  48400. characterMakers.push(() => makeCharacter(
  48401. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48402. {
  48403. front: {
  48404. height: math.unit(5, "feet"),
  48405. name: "Front",
  48406. image: {
  48407. source: "./media/characters/nova-nerium/front.svg",
  48408. extra: 1548/1392,
  48409. bottom: 374/1922
  48410. }
  48411. },
  48412. back: {
  48413. height: math.unit(5, "feet"),
  48414. name: "Back",
  48415. image: {
  48416. source: "./media/characters/nova-nerium/back.svg",
  48417. extra: 1658/1468,
  48418. bottom: 257/1915
  48419. }
  48420. },
  48421. },
  48422. [
  48423. {
  48424. name: "Normal",
  48425. height: math.unit(5, "feet"),
  48426. default: true
  48427. },
  48428. ]
  48429. ))
  48430. characterMakers.push(() => makeCharacter(
  48431. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48432. {
  48433. front: {
  48434. height: math.unit(5 + 4/12, "feet"),
  48435. name: "Front",
  48436. image: {
  48437. source: "./media/characters/ashe-pyriph/front.svg",
  48438. extra: 1935/1747,
  48439. bottom: 60/1995
  48440. }
  48441. },
  48442. },
  48443. [
  48444. {
  48445. name: "Normal",
  48446. height: math.unit(5 + 4/12, "feet"),
  48447. default: true
  48448. },
  48449. ]
  48450. ))
  48451. characterMakers.push(() => makeCharacter(
  48452. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48453. {
  48454. front: {
  48455. height: math.unit(8.7, "feet"),
  48456. name: "Front",
  48457. image: {
  48458. source: "./media/characters/flicker-wisp/front.svg",
  48459. extra: 1835/1613,
  48460. bottom: 449/2284
  48461. }
  48462. },
  48463. side: {
  48464. height: math.unit(8.7, "feet"),
  48465. name: "Side",
  48466. image: {
  48467. source: "./media/characters/flicker-wisp/side.svg",
  48468. extra: 1841/1642,
  48469. bottom: 336/2177
  48470. },
  48471. default: true
  48472. },
  48473. maw: {
  48474. height: math.unit(3.35, "feet"),
  48475. name: "Maw",
  48476. image: {
  48477. source: "./media/characters/flicker-wisp/maw.svg",
  48478. extra: 2338/1506,
  48479. bottom: 0/2338
  48480. }
  48481. },
  48482. ovipositor: {
  48483. height: math.unit(4.95, "feet"),
  48484. name: "Ovipositor",
  48485. image: {
  48486. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48487. }
  48488. },
  48489. egg: {
  48490. height: math.unit(0.385, "feet"),
  48491. weight: math.unit(2, "lb"),
  48492. name: "Egg",
  48493. image: {
  48494. source: "./media/characters/flicker-wisp/egg.svg"
  48495. }
  48496. },
  48497. },
  48498. [
  48499. {
  48500. name: "Normal",
  48501. height: math.unit(8.7, "feet"),
  48502. default: true
  48503. },
  48504. ]
  48505. ))
  48506. characterMakers.push(() => makeCharacter(
  48507. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48508. {
  48509. side: {
  48510. height: math.unit(11, "feet"),
  48511. name: "Side",
  48512. image: {
  48513. source: "./media/characters/faefnul/side.svg",
  48514. extra: 1100/1007,
  48515. bottom: 0/1100
  48516. }
  48517. },
  48518. },
  48519. [
  48520. {
  48521. name: "Normal",
  48522. height: math.unit(11, "feet"),
  48523. default: true
  48524. },
  48525. ]
  48526. ))
  48527. characterMakers.push(() => makeCharacter(
  48528. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48529. {
  48530. front: {
  48531. height: math.unit(6 + 2/12, "feet"),
  48532. name: "Front",
  48533. image: {
  48534. source: "./media/characters/shady/front.svg",
  48535. extra: 502/461,
  48536. bottom: 9/511
  48537. }
  48538. },
  48539. kneeling: {
  48540. height: math.unit(4.6, "feet"),
  48541. name: "Kneeling",
  48542. image: {
  48543. source: "./media/characters/shady/kneeling.svg",
  48544. extra: 1328/1219,
  48545. bottom: 117/1445
  48546. }
  48547. },
  48548. maw: {
  48549. height: math.unit(2, "feet"),
  48550. name: "Maw",
  48551. image: {
  48552. source: "./media/characters/shady/maw.svg"
  48553. }
  48554. },
  48555. },
  48556. [
  48557. {
  48558. name: "Nano",
  48559. height: math.unit(1, "mm")
  48560. },
  48561. {
  48562. name: "Micro",
  48563. height: math.unit(12, "mm")
  48564. },
  48565. {
  48566. name: "Tiny",
  48567. height: math.unit(3, "inches")
  48568. },
  48569. {
  48570. name: "Normal",
  48571. height: math.unit(6 + 2/12, "feet"),
  48572. default: true
  48573. },
  48574. {
  48575. name: "Big",
  48576. height: math.unit(15, "feet")
  48577. },
  48578. {
  48579. name: "Macro",
  48580. height: math.unit(150, "feet")
  48581. },
  48582. {
  48583. name: "Titanic",
  48584. height: math.unit(500, "feet")
  48585. },
  48586. ]
  48587. ))
  48588. characterMakers.push(() => makeCharacter(
  48589. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48590. {
  48591. front: {
  48592. height: math.unit(12, "feet"),
  48593. name: "Front",
  48594. image: {
  48595. source: "./media/characters/fenrir/front.svg",
  48596. extra: 968/875,
  48597. bottom: 22/990
  48598. }
  48599. },
  48600. },
  48601. [
  48602. {
  48603. name: "Big",
  48604. height: math.unit(12, "feet"),
  48605. default: true
  48606. },
  48607. ]
  48608. ))
  48609. characterMakers.push(() => makeCharacter(
  48610. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48611. {
  48612. front: {
  48613. height: math.unit(5 + 4/12, "feet"),
  48614. name: "Front",
  48615. image: {
  48616. source: "./media/characters/makar/front.svg",
  48617. extra: 1181/1112,
  48618. bottom: 78/1259
  48619. }
  48620. },
  48621. },
  48622. [
  48623. {
  48624. name: "Normal",
  48625. height: math.unit(5 + 4/12, "feet"),
  48626. default: true
  48627. },
  48628. ]
  48629. ))
  48630. characterMakers.push(() => makeCharacter(
  48631. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48632. {
  48633. front: {
  48634. height: math.unit(5 + 7/12, "feet"),
  48635. name: "Front",
  48636. image: {
  48637. source: "./media/characters/callow/front.svg",
  48638. extra: 1482/1304,
  48639. bottom: 23/1505
  48640. }
  48641. },
  48642. back: {
  48643. height: math.unit(5 + 7/12, "feet"),
  48644. name: "Back",
  48645. image: {
  48646. source: "./media/characters/callow/back.svg",
  48647. extra: 1484/1296,
  48648. bottom: 25/1509
  48649. }
  48650. },
  48651. },
  48652. [
  48653. {
  48654. name: "Micro",
  48655. height: math.unit(3, "inches"),
  48656. default: true
  48657. },
  48658. {
  48659. name: "Normal",
  48660. height: math.unit(5 + 7/12, "feet")
  48661. },
  48662. ]
  48663. ))
  48664. characterMakers.push(() => makeCharacter(
  48665. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48666. {
  48667. front: {
  48668. height: math.unit(6 + 2/12, "feet"),
  48669. name: "Front",
  48670. image: {
  48671. source: "./media/characters/natel/front.svg",
  48672. extra: 1833/1692,
  48673. bottom: 166/1999
  48674. }
  48675. },
  48676. },
  48677. [
  48678. {
  48679. name: "Normal",
  48680. height: math.unit(6 + 2/12, "feet"),
  48681. default: true
  48682. },
  48683. ]
  48684. ))
  48685. characterMakers.push(() => makeCharacter(
  48686. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48687. {
  48688. front: {
  48689. height: math.unit(1.75, "meters"),
  48690. name: "Front",
  48691. image: {
  48692. source: "./media/characters/misu/front.svg",
  48693. extra: 1690/1558,
  48694. bottom: 234/1924
  48695. }
  48696. },
  48697. back: {
  48698. height: math.unit(1.75, "meters"),
  48699. name: "Back",
  48700. image: {
  48701. source: "./media/characters/misu/back.svg",
  48702. extra: 1762/1618,
  48703. bottom: 146/1908
  48704. }
  48705. },
  48706. frontNude: {
  48707. height: math.unit(1.75, "meters"),
  48708. name: "Front (Nude)",
  48709. image: {
  48710. source: "./media/characters/misu/front-nude.svg",
  48711. extra: 1690/1558,
  48712. bottom: 234/1924
  48713. }
  48714. },
  48715. backNude: {
  48716. height: math.unit(1.75, "meters"),
  48717. name: "Back (Nude)",
  48718. image: {
  48719. source: "./media/characters/misu/back-nude.svg",
  48720. extra: 1762/1618,
  48721. bottom: 146/1908
  48722. }
  48723. },
  48724. frontErect: {
  48725. height: math.unit(1.75, "meters"),
  48726. name: "Front (Erect)",
  48727. image: {
  48728. source: "./media/characters/misu/front-erect.svg",
  48729. extra: 1690/1558,
  48730. bottom: 234/1924
  48731. }
  48732. },
  48733. maw: {
  48734. height: math.unit(0.47, "meters"),
  48735. name: "Maw",
  48736. image: {
  48737. source: "./media/characters/misu/maw.svg"
  48738. }
  48739. },
  48740. head: {
  48741. height: math.unit(0.35, "meters"),
  48742. name: "Head",
  48743. image: {
  48744. source: "./media/characters/misu/head.svg"
  48745. }
  48746. },
  48747. rear: {
  48748. height: math.unit(0.47, "meters"),
  48749. name: "Rear",
  48750. image: {
  48751. source: "./media/characters/misu/rear.svg"
  48752. }
  48753. },
  48754. },
  48755. [
  48756. {
  48757. name: "Normal",
  48758. height: math.unit(1.75, "meters")
  48759. },
  48760. {
  48761. name: "Not good for the people",
  48762. height: math.unit(42, "meters")
  48763. },
  48764. {
  48765. name: "Not good for the neighborhood",
  48766. height: math.unit(135, "meters")
  48767. },
  48768. {
  48769. name: "Bit bigger problem",
  48770. height: math.unit(380, "meters"),
  48771. default: true
  48772. },
  48773. {
  48774. name: "Not good for the city",
  48775. height: math.unit(1.5, "km")
  48776. },
  48777. {
  48778. name: "Not good for the county",
  48779. height: math.unit(5.5, "km")
  48780. },
  48781. {
  48782. name: "Not good for the state",
  48783. height: math.unit(25, "km")
  48784. },
  48785. {
  48786. name: "Not good for the country",
  48787. height: math.unit(125, "km")
  48788. },
  48789. {
  48790. name: "Not good for the continent",
  48791. height: math.unit(2100, "km")
  48792. },
  48793. {
  48794. name: "Not good for the planet",
  48795. height: math.unit(35000, "km")
  48796. },
  48797. {
  48798. name: "Just no",
  48799. height: math.unit(8.5e18, "km")
  48800. },
  48801. ]
  48802. ))
  48803. characterMakers.push(() => makeCharacter(
  48804. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48805. {
  48806. front: {
  48807. height: math.unit(6.5, "feet"),
  48808. name: "Front",
  48809. image: {
  48810. source: "./media/characters/poppy/front.svg",
  48811. extra: 1878/1812,
  48812. bottom: 43/1921
  48813. }
  48814. },
  48815. feet: {
  48816. height: math.unit(1.06, "feet"),
  48817. name: "Feet",
  48818. image: {
  48819. source: "./media/characters/poppy/feet.svg",
  48820. extra: 1083/1083,
  48821. bottom: 87/1170
  48822. }
  48823. },
  48824. },
  48825. [
  48826. {
  48827. name: "Human",
  48828. height: math.unit(6.5, "feet")
  48829. },
  48830. {
  48831. name: "Default",
  48832. height: math.unit(300, "feet"),
  48833. default: true
  48834. },
  48835. {
  48836. name: "Huge",
  48837. height: math.unit(850, "feet")
  48838. },
  48839. {
  48840. name: "Mega",
  48841. height: math.unit(8000, "feet")
  48842. },
  48843. {
  48844. name: "Giga",
  48845. height: math.unit(300, "miles")
  48846. },
  48847. ]
  48848. ))
  48849. characterMakers.push(() => makeCharacter(
  48850. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48851. {
  48852. bipedal: {
  48853. height: math.unit(7, "feet"),
  48854. name: "Bipedal",
  48855. image: {
  48856. source: "./media/characters/zener/bipedal.svg",
  48857. extra: 874/805,
  48858. bottom: 109/983
  48859. }
  48860. },
  48861. quadrupedal: {
  48862. height: math.unit(4.64, "feet"),
  48863. name: "Quadrupedal",
  48864. image: {
  48865. source: "./media/characters/zener/quadrupedal.svg",
  48866. extra: 638/507,
  48867. bottom: 190/828
  48868. }
  48869. },
  48870. cock: {
  48871. height: math.unit(18, "inches"),
  48872. name: "Cock",
  48873. image: {
  48874. source: "./media/characters/zener/cock.svg"
  48875. }
  48876. },
  48877. },
  48878. [
  48879. {
  48880. name: "Normal",
  48881. height: math.unit(7, "feet"),
  48882. default: true
  48883. },
  48884. ]
  48885. ))
  48886. characterMakers.push(() => makeCharacter(
  48887. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48888. {
  48889. nude: {
  48890. height: math.unit(5 + 6/12, "feet"),
  48891. name: "Nude",
  48892. image: {
  48893. source: "./media/characters/charlie-dog/nude.svg",
  48894. extra: 768/734,
  48895. bottom: 26/794
  48896. }
  48897. },
  48898. dressed: {
  48899. height: math.unit(5 + 6/12, "feet"),
  48900. name: "Dressed",
  48901. image: {
  48902. source: "./media/characters/charlie-dog/dressed.svg",
  48903. extra: 768/734,
  48904. bottom: 26/794
  48905. }
  48906. },
  48907. },
  48908. [
  48909. {
  48910. name: "Normal",
  48911. height: math.unit(5 + 6/12, "feet"),
  48912. default: true
  48913. },
  48914. ]
  48915. ))
  48916. characterMakers.push(() => makeCharacter(
  48917. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48918. {
  48919. front: {
  48920. height: math.unit(6 + 4/12, "feet"),
  48921. name: "Front",
  48922. image: {
  48923. source: "./media/characters/ir'istrasz/front.svg",
  48924. extra: 1014/977,
  48925. bottom: 65/1079
  48926. }
  48927. },
  48928. back: {
  48929. height: math.unit(6 + 4/12, "feet"),
  48930. name: "Back",
  48931. image: {
  48932. source: "./media/characters/ir'istrasz/back.svg",
  48933. extra: 1024/992,
  48934. bottom: 34/1058
  48935. }
  48936. },
  48937. },
  48938. [
  48939. {
  48940. name: "Normal",
  48941. height: math.unit(6 + 4/12, "feet"),
  48942. default: true
  48943. },
  48944. ]
  48945. ))
  48946. characterMakers.push(() => makeCharacter(
  48947. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48948. {
  48949. front: {
  48950. height: math.unit(5 + 8/12, "feet"),
  48951. name: "Front",
  48952. image: {
  48953. source: "./media/characters/dee-ditto/front.svg",
  48954. extra: 1874/1785,
  48955. bottom: 68/1942
  48956. }
  48957. },
  48958. back: {
  48959. height: math.unit(5 + 8/12, "feet"),
  48960. name: "Back",
  48961. image: {
  48962. source: "./media/characters/dee-ditto/back.svg",
  48963. extra: 1870/1783,
  48964. bottom: 77/1947
  48965. }
  48966. },
  48967. },
  48968. [
  48969. {
  48970. name: "Normal",
  48971. height: math.unit(5 + 8/12, "feet"),
  48972. default: true
  48973. },
  48974. ]
  48975. ))
  48976. characterMakers.push(() => makeCharacter(
  48977. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48978. {
  48979. front: {
  48980. height: math.unit(7 + 6/12, "feet"),
  48981. name: "Front",
  48982. image: {
  48983. source: "./media/characters/fey/front.svg",
  48984. extra: 995/979,
  48985. bottom: 30/1025
  48986. }
  48987. },
  48988. back: {
  48989. height: math.unit(7 + 6/12, "feet"),
  48990. name: "Back",
  48991. image: {
  48992. source: "./media/characters/fey/back.svg",
  48993. extra: 1079/1008,
  48994. bottom: 5/1084
  48995. }
  48996. },
  48997. dressed: {
  48998. height: math.unit(7 + 6/12, "feet"),
  48999. name: "Dressed",
  49000. image: {
  49001. source: "./media/characters/fey/dressed.svg",
  49002. extra: 995/979,
  49003. bottom: 30/1025
  49004. }
  49005. },
  49006. },
  49007. [
  49008. {
  49009. name: "Normal",
  49010. height: math.unit(7 + 6/12, "feet"),
  49011. default: true
  49012. },
  49013. ]
  49014. ))
  49015. characterMakers.push(() => makeCharacter(
  49016. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49017. {
  49018. standing: {
  49019. height: math.unit(17, "feet"),
  49020. name: "Standing",
  49021. image: {
  49022. source: "./media/characters/aster/standing.svg",
  49023. extra: 1798/1598,
  49024. bottom: 117/1915
  49025. }
  49026. },
  49027. },
  49028. [
  49029. {
  49030. name: "Normal",
  49031. height: math.unit(17, "feet"),
  49032. default: true
  49033. },
  49034. {
  49035. name: "Homewrecker",
  49036. height: math.unit(95, "feet")
  49037. },
  49038. {
  49039. name: "Planet Devourer",
  49040. height: math.unit(1008000, "miles")
  49041. },
  49042. ]
  49043. ))
  49044. characterMakers.push(() => makeCharacter(
  49045. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49046. {
  49047. front: {
  49048. height: math.unit(6 + 5/12, "feet"),
  49049. weight: math.unit(265, "lb"),
  49050. name: "Front",
  49051. image: {
  49052. source: "./media/characters/devon-childs/front.svg",
  49053. extra: 1795/1721,
  49054. bottom: 41/1836
  49055. }
  49056. },
  49057. side: {
  49058. height: math.unit(6 + 5/12, "feet"),
  49059. weight: math.unit(265, "lb"),
  49060. name: "Side",
  49061. image: {
  49062. source: "./media/characters/devon-childs/side.svg",
  49063. extra: 1812/1738,
  49064. bottom: 30/1842
  49065. }
  49066. },
  49067. back: {
  49068. height: math.unit(6 + 5/12, "feet"),
  49069. weight: math.unit(265, "lb"),
  49070. name: "Back",
  49071. image: {
  49072. source: "./media/characters/devon-childs/back.svg",
  49073. extra: 1808/1735,
  49074. bottom: 23/1831
  49075. }
  49076. },
  49077. hand: {
  49078. height: math.unit(1.464, "feet"),
  49079. name: "Hand",
  49080. image: {
  49081. source: "./media/characters/devon-childs/hand.svg"
  49082. }
  49083. },
  49084. foot: {
  49085. height: math.unit(1.6, "feet"),
  49086. name: "Foot",
  49087. image: {
  49088. source: "./media/characters/devon-childs/foot.svg"
  49089. }
  49090. },
  49091. },
  49092. [
  49093. {
  49094. name: "Micro",
  49095. height: math.unit(7, "cm")
  49096. },
  49097. {
  49098. name: "Normal",
  49099. height: math.unit(6 + 5/12, "feet"),
  49100. default: true
  49101. },
  49102. {
  49103. name: "Macro",
  49104. height: math.unit(154, "feet")
  49105. },
  49106. ]
  49107. ))
  49108. characterMakers.push(() => makeCharacter(
  49109. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49110. {
  49111. front: {
  49112. height: math.unit(6, "feet"),
  49113. weight: math.unit(180, "lb"),
  49114. name: "Front",
  49115. image: {
  49116. source: "./media/characters/lydemox-vir/front.svg",
  49117. extra: 1632/1435,
  49118. bottom: 58/1690
  49119. }
  49120. },
  49121. frontSFW: {
  49122. height: math.unit(6, "feet"),
  49123. weight: math.unit(180, "lb"),
  49124. name: "Front (SFW)",
  49125. image: {
  49126. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49127. extra: 1632/1435,
  49128. bottom: 58/1690
  49129. }
  49130. },
  49131. back: {
  49132. height: math.unit(6, "feet"),
  49133. weight: math.unit(180, "lb"),
  49134. name: "Back",
  49135. image: {
  49136. source: "./media/characters/lydemox-vir/back.svg",
  49137. extra: 1593/1408,
  49138. bottom: 31/1624
  49139. }
  49140. },
  49141. paw: {
  49142. height: math.unit(1.85, "feet"),
  49143. name: "Paw",
  49144. image: {
  49145. source: "./media/characters/lydemox-vir/paw.svg"
  49146. }
  49147. },
  49148. dick: {
  49149. height: math.unit(1.8, "feet"),
  49150. name: "Dick",
  49151. image: {
  49152. source: "./media/characters/lydemox-vir/dick.svg"
  49153. }
  49154. },
  49155. },
  49156. [
  49157. {
  49158. name: "Macro",
  49159. height: math.unit(100, "feet"),
  49160. default: true
  49161. },
  49162. {
  49163. name: "Teramacro",
  49164. height: math.unit(1, "earth")
  49165. },
  49166. {
  49167. name: "Planetary",
  49168. height: math.unit(20, "earths")
  49169. },
  49170. ]
  49171. ))
  49172. characterMakers.push(() => makeCharacter(
  49173. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49174. {
  49175. front: {
  49176. height: math.unit(15 + 8/12, "feet"),
  49177. weight: math.unit(1237, "kg"),
  49178. name: "Front",
  49179. image: {
  49180. source: "./media/characters/mia/front.svg",
  49181. extra: 1573/1446,
  49182. bottom: 58/1631
  49183. }
  49184. },
  49185. },
  49186. [
  49187. {
  49188. name: "Small",
  49189. height: math.unit(9 + 5/12, "feet")
  49190. },
  49191. {
  49192. name: "Normal",
  49193. height: math.unit(15 + 8/12, "feet"),
  49194. default: true
  49195. },
  49196. ]
  49197. ))
  49198. characterMakers.push(() => makeCharacter(
  49199. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49200. {
  49201. front: {
  49202. height: math.unit(10 + 6/12, "feet"),
  49203. weight: math.unit(1.3, "tons"),
  49204. name: "Front",
  49205. image: {
  49206. source: "./media/characters/mr-graves/front.svg",
  49207. extra: 1779/1695,
  49208. bottom: 198/1977
  49209. }
  49210. },
  49211. },
  49212. [
  49213. {
  49214. name: "Normal",
  49215. height: math.unit(10 + 6 /12, "feet"),
  49216. default: true
  49217. },
  49218. ]
  49219. ))
  49220. characterMakers.push(() => makeCharacter(
  49221. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49222. {
  49223. dressedFront: {
  49224. height: math.unit(5 + 8/12, "feet"),
  49225. weight: math.unit(125, "lb"),
  49226. name: "Dressed (Front)",
  49227. image: {
  49228. source: "./media/characters/jess/dressed-front.svg",
  49229. extra: 1176/1152,
  49230. bottom: 42/1218
  49231. }
  49232. },
  49233. dressedSide: {
  49234. height: math.unit(5 + 8/12, "feet"),
  49235. weight: math.unit(125, "lb"),
  49236. name: "Dressed (Side)",
  49237. image: {
  49238. source: "./media/characters/jess/dressed-side.svg",
  49239. extra: 1204/1190,
  49240. bottom: 6/1210
  49241. }
  49242. },
  49243. nudeFront: {
  49244. height: math.unit(5 + 8/12, "feet"),
  49245. weight: math.unit(125, "lb"),
  49246. name: "Nude (Front)",
  49247. image: {
  49248. source: "./media/characters/jess/nude-front.svg",
  49249. extra: 1176/1152,
  49250. bottom: 42/1218
  49251. }
  49252. },
  49253. nudeSide: {
  49254. height: math.unit(5 + 8/12, "feet"),
  49255. weight: math.unit(125, "lb"),
  49256. name: "Nude (Side)",
  49257. image: {
  49258. source: "./media/characters/jess/nude-side.svg",
  49259. extra: 1204/1190,
  49260. bottom: 6/1210
  49261. }
  49262. },
  49263. organsFront: {
  49264. height: math.unit(2.83799342105, "feet"),
  49265. name: "Organs (Front)",
  49266. image: {
  49267. source: "./media/characters/jess/organs-front.svg"
  49268. }
  49269. },
  49270. organsSide: {
  49271. height: math.unit(2.64225290474, "feet"),
  49272. name: "Organs (Side)",
  49273. image: {
  49274. source: "./media/characters/jess/organs-side.svg"
  49275. }
  49276. },
  49277. digestiveTractFront: {
  49278. height: math.unit(2.8106580871, "feet"),
  49279. name: "Digestive Tract (Front)",
  49280. image: {
  49281. source: "./media/characters/jess/digestive-tract-front.svg"
  49282. }
  49283. },
  49284. digestiveTractSide: {
  49285. height: math.unit(2.54365045014, "feet"),
  49286. name: "Digestive Tract (Side)",
  49287. image: {
  49288. source: "./media/characters/jess/digestive-tract-side.svg"
  49289. }
  49290. },
  49291. respiratorySystemFront: {
  49292. height: math.unit(1.11196233456, "feet"),
  49293. name: "Respiratory System (Front)",
  49294. image: {
  49295. source: "./media/characters/jess/respiratory-system-front.svg"
  49296. }
  49297. },
  49298. respiratorySystemSide: {
  49299. height: math.unit(0.89327966297, "feet"),
  49300. name: "Respiratory System (Side)",
  49301. image: {
  49302. source: "./media/characters/jess/respiratory-system-side.svg"
  49303. }
  49304. },
  49305. urinaryTractFront: {
  49306. height: math.unit(1.16126356186, "feet"),
  49307. name: "Urinary Tract (Front)",
  49308. image: {
  49309. source: "./media/characters/jess/urinary-tract-front.svg"
  49310. }
  49311. },
  49312. urinaryTractSide: {
  49313. height: math.unit(1.20910039627, "feet"),
  49314. name: "Urinary Tract (Side)",
  49315. image: {
  49316. source: "./media/characters/jess/urinary-tract-side.svg"
  49317. }
  49318. },
  49319. reproductiveOrgansFront: {
  49320. height: math.unit(0.48422591566, "feet"),
  49321. name: "Reproductive Organs (Front)",
  49322. image: {
  49323. source: "./media/characters/jess/reproductive-organs-front.svg"
  49324. }
  49325. },
  49326. reproductiveOrgansSide: {
  49327. height: math.unit(0.61553314481, "feet"),
  49328. name: "Reproductive Organs (Side)",
  49329. image: {
  49330. source: "./media/characters/jess/reproductive-organs-side.svg"
  49331. }
  49332. },
  49333. breastsFront: {
  49334. height: math.unit(0.47690395121, "feet"),
  49335. name: "Breasts (Front)",
  49336. image: {
  49337. source: "./media/characters/jess/breasts-front.svg"
  49338. }
  49339. },
  49340. breastsSide: {
  49341. height: math.unit(0.30556998307, "feet"),
  49342. name: "Breasts (Side)",
  49343. image: {
  49344. source: "./media/characters/jess/breasts-side.svg"
  49345. }
  49346. },
  49347. heartFront: {
  49348. height: math.unit(0.53011022622, "feet"),
  49349. name: "Heart (Front)",
  49350. image: {
  49351. source: "./media/characters/jess/heart-front.svg"
  49352. }
  49353. },
  49354. heartSide: {
  49355. height: math.unit(0.51790695213, "feet"),
  49356. name: "Heart (Side)",
  49357. image: {
  49358. source: "./media/characters/jess/heart-side.svg"
  49359. }
  49360. },
  49361. earsAndNoseFront: {
  49362. height: math.unit(0.29385483995, "feet"),
  49363. name: "Ears and Nose (Front)",
  49364. image: {
  49365. source: "./media/characters/jess/ears-and-nose-front.svg"
  49366. }
  49367. },
  49368. earsAndNoseSide: {
  49369. height: math.unit(0.18109658741, "feet"),
  49370. name: "Ears and Nose (Side)",
  49371. image: {
  49372. source: "./media/characters/jess/ears-and-nose-side.svg"
  49373. }
  49374. },
  49375. },
  49376. [
  49377. {
  49378. name: "Normal",
  49379. height: math.unit(5 + 8/12, "feet"),
  49380. default: true
  49381. },
  49382. ]
  49383. ))
  49384. characterMakers.push(() => makeCharacter(
  49385. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49386. {
  49387. front: {
  49388. height: math.unit(6, "feet"),
  49389. weight: math.unit(6.64467e-7, "grams"),
  49390. name: "Front",
  49391. image: {
  49392. source: "./media/characters/wimpering/front.svg",
  49393. extra: 597/587,
  49394. bottom: 34/631
  49395. }
  49396. },
  49397. },
  49398. [
  49399. {
  49400. name: "Micro",
  49401. height: math.unit(0.4, "mm"),
  49402. default: true
  49403. },
  49404. ]
  49405. ))
  49406. characterMakers.push(() => makeCharacter(
  49407. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49408. {
  49409. front: {
  49410. height: math.unit(5 + 2/12, "feet"),
  49411. weight: math.unit(110, "lb"),
  49412. name: "Front",
  49413. image: {
  49414. source: "./media/characters/keltre/front.svg",
  49415. extra: 1099/1057,
  49416. bottom: 22/1121
  49417. }
  49418. },
  49419. back: {
  49420. height: math.unit(5 + 2/12, "feet"),
  49421. weight: math.unit(110, "lb"),
  49422. name: "Back",
  49423. image: {
  49424. source: "./media/characters/keltre/back.svg",
  49425. extra: 1095/1053,
  49426. bottom: 17/1112
  49427. }
  49428. },
  49429. dressed: {
  49430. height: math.unit(5 + 2/12, "feet"),
  49431. weight: math.unit(110, "lb"),
  49432. name: "Dressed",
  49433. image: {
  49434. source: "./media/characters/keltre/dressed.svg",
  49435. extra: 1099/1057,
  49436. bottom: 22/1121
  49437. }
  49438. },
  49439. winter: {
  49440. height: math.unit(5 + 2/12, "feet"),
  49441. weight: math.unit(110, "lb"),
  49442. name: "Winter",
  49443. image: {
  49444. source: "./media/characters/keltre/winter.svg",
  49445. extra: 1099/1057,
  49446. bottom: 22/1121
  49447. }
  49448. },
  49449. head: {
  49450. height: math.unit(1.61 * 0.86, "feet"),
  49451. name: "Head",
  49452. image: {
  49453. source: "./media/characters/keltre/head.svg",
  49454. extra: 534/421,
  49455. bottom: 0/534
  49456. }
  49457. },
  49458. hand: {
  49459. height: math.unit(1.3 * 0.86, "feet"),
  49460. name: "Hand",
  49461. image: {
  49462. source: "./media/characters/keltre/hand.svg"
  49463. }
  49464. },
  49465. foot: {
  49466. height: math.unit(1.8 * 0.86, "feet"),
  49467. name: "Foot",
  49468. image: {
  49469. source: "./media/characters/keltre/foot.svg"
  49470. }
  49471. },
  49472. },
  49473. [
  49474. {
  49475. name: "Fine",
  49476. height: math.unit(1, "inch")
  49477. },
  49478. {
  49479. name: "Dimnutive",
  49480. height: math.unit(4, "inches")
  49481. },
  49482. {
  49483. name: "Tiny",
  49484. height: math.unit(1, "foot")
  49485. },
  49486. {
  49487. name: "Small",
  49488. height: math.unit(3, "feet")
  49489. },
  49490. {
  49491. name: "Normal",
  49492. height: math.unit(5 + 2/12, "feet"),
  49493. default: true
  49494. },
  49495. ]
  49496. ))
  49497. characterMakers.push(() => makeCharacter(
  49498. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49499. {
  49500. front: {
  49501. height: math.unit(6 + 2/12, "feet"),
  49502. name: "Front",
  49503. image: {
  49504. source: "./media/characters/nox/front.svg",
  49505. extra: 1917/1830,
  49506. bottom: 74/1991
  49507. }
  49508. },
  49509. back: {
  49510. height: math.unit(6 + 2/12, "feet"),
  49511. name: "Back",
  49512. image: {
  49513. source: "./media/characters/nox/back.svg",
  49514. extra: 1896/1815,
  49515. bottom: 21/1917
  49516. }
  49517. },
  49518. head: {
  49519. height: math.unit(1.1, "feet"),
  49520. name: "Head",
  49521. image: {
  49522. source: "./media/characters/nox/head.svg",
  49523. extra: 874/704,
  49524. bottom: 0/874
  49525. }
  49526. },
  49527. tattoo: {
  49528. height: math.unit(0.729, "feet"),
  49529. name: "Tattoo",
  49530. image: {
  49531. source: "./media/characters/nox/tattoo.svg"
  49532. }
  49533. },
  49534. },
  49535. [
  49536. {
  49537. name: "Normal",
  49538. height: math.unit(6 + 2/12, "feet")
  49539. },
  49540. {
  49541. name: "Gigamacro",
  49542. height: math.unit(2, "earths"),
  49543. default: true
  49544. },
  49545. {
  49546. name: "Cosmic",
  49547. height: math.unit(867, "yottameters")
  49548. },
  49549. ]
  49550. ))
  49551. characterMakers.push(() => makeCharacter(
  49552. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49553. {
  49554. front: {
  49555. height: math.unit(6, "feet"),
  49556. weight: math.unit(150, "lb"),
  49557. name: "Front",
  49558. image: {
  49559. source: "./media/characters/caspian/front.svg",
  49560. extra: 1443/1359,
  49561. bottom: 0/1443
  49562. }
  49563. },
  49564. back: {
  49565. height: math.unit(6, "feet"),
  49566. weight: math.unit(150, "lb"),
  49567. name: "Back",
  49568. image: {
  49569. source: "./media/characters/caspian/back.svg",
  49570. extra: 1379/1309,
  49571. bottom: 0/1379
  49572. }
  49573. },
  49574. head: {
  49575. height: math.unit(0.9, "feet"),
  49576. name: "Head",
  49577. image: {
  49578. source: "./media/characters/caspian/head.svg",
  49579. extra: 692/492,
  49580. bottom: 0/692
  49581. }
  49582. },
  49583. headAlt: {
  49584. height: math.unit(0.95, "feet"),
  49585. name: "Head (Alt)",
  49586. image: {
  49587. source: "./media/characters/caspian/head-alt.svg",
  49588. extra: 668/508,
  49589. bottom: 0/668
  49590. }
  49591. },
  49592. hand: {
  49593. height: math.unit(0.8, "feet"),
  49594. name: "Hand",
  49595. image: {
  49596. source: "./media/characters/caspian/hand.svg"
  49597. }
  49598. },
  49599. paw: {
  49600. height: math.unit(0.95, "feet"),
  49601. name: "Paw",
  49602. image: {
  49603. source: "./media/characters/caspian/paw.svg"
  49604. }
  49605. },
  49606. },
  49607. [
  49608. {
  49609. name: "Normal",
  49610. height: math.unit(162, "feet"),
  49611. default: true
  49612. },
  49613. ]
  49614. ))
  49615. characterMakers.push(() => makeCharacter(
  49616. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49617. {
  49618. front: {
  49619. height: math.unit(6, "feet"),
  49620. name: "Front",
  49621. image: {
  49622. source: "./media/characters/myra-aisling/front.svg",
  49623. extra: 1268/1166,
  49624. bottom: 73/1341
  49625. }
  49626. },
  49627. back: {
  49628. height: math.unit(6, "feet"),
  49629. name: "Back",
  49630. image: {
  49631. source: "./media/characters/myra-aisling/back.svg",
  49632. extra: 1249/1149,
  49633. bottom: 79/1328
  49634. }
  49635. },
  49636. dressed: {
  49637. height: math.unit(6, "feet"),
  49638. name: "Dressed",
  49639. image: {
  49640. source: "./media/characters/myra-aisling/dressed.svg",
  49641. extra: 1290/1189,
  49642. bottom: 47/1337
  49643. }
  49644. },
  49645. hand: {
  49646. height: math.unit(1.1, "feet"),
  49647. name: "Hand",
  49648. image: {
  49649. source: "./media/characters/myra-aisling/hand.svg"
  49650. }
  49651. },
  49652. paw: {
  49653. height: math.unit(1.23, "feet"),
  49654. name: "Paw",
  49655. image: {
  49656. source: "./media/characters/myra-aisling/paw.svg"
  49657. }
  49658. },
  49659. },
  49660. [
  49661. {
  49662. name: "Normal",
  49663. height: math.unit(160, "feet"),
  49664. default: true
  49665. },
  49666. ]
  49667. ))
  49668. characterMakers.push(() => makeCharacter(
  49669. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49670. {
  49671. front: {
  49672. height: math.unit(6, "feet"),
  49673. name: "Front",
  49674. image: {
  49675. source: "./media/characters/tenley-sidero/front.svg",
  49676. extra: 1365/1276,
  49677. bottom: 47/1412
  49678. }
  49679. },
  49680. back: {
  49681. height: math.unit(6, "feet"),
  49682. name: "Back",
  49683. image: {
  49684. source: "./media/characters/tenley-sidero/back.svg",
  49685. extra: 1383/1283,
  49686. bottom: 35/1418
  49687. }
  49688. },
  49689. dressed: {
  49690. height: math.unit(6, "feet"),
  49691. name: "Dressed",
  49692. image: {
  49693. source: "./media/characters/tenley-sidero/dressed.svg",
  49694. extra: 1364/1275,
  49695. bottom: 42/1406
  49696. }
  49697. },
  49698. head: {
  49699. height: math.unit(1.47, "feet"),
  49700. name: "Head",
  49701. image: {
  49702. source: "./media/characters/tenley-sidero/head.svg",
  49703. extra: 610/490,
  49704. bottom: 0/610
  49705. }
  49706. },
  49707. },
  49708. [
  49709. {
  49710. name: "Normal",
  49711. height: math.unit(154, "feet"),
  49712. default: true
  49713. },
  49714. ]
  49715. ))
  49716. characterMakers.push(() => makeCharacter(
  49717. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49718. {
  49719. front: {
  49720. height: math.unit(5, "inches"),
  49721. name: "Front",
  49722. image: {
  49723. source: "./media/characters/mallory/front.svg",
  49724. extra: 1919/1678,
  49725. bottom: 29/1948
  49726. }
  49727. },
  49728. hand: {
  49729. height: math.unit(0.73, "inches"),
  49730. name: "Hand",
  49731. image: {
  49732. source: "./media/characters/mallory/hand.svg"
  49733. }
  49734. },
  49735. paw: {
  49736. height: math.unit(0.68, "inches"),
  49737. name: "Paw",
  49738. image: {
  49739. source: "./media/characters/mallory/paw.svg"
  49740. }
  49741. },
  49742. },
  49743. [
  49744. {
  49745. name: "Small",
  49746. height: math.unit(5, "inches"),
  49747. default: true
  49748. },
  49749. ]
  49750. ))
  49751. characterMakers.push(() => makeCharacter(
  49752. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49753. {
  49754. naked: {
  49755. height: math.unit(6, "feet"),
  49756. name: "Naked",
  49757. image: {
  49758. source: "./media/characters/mab/naked.svg",
  49759. extra: 1855/1757,
  49760. bottom: 208/2063
  49761. }
  49762. },
  49763. outside: {
  49764. height: math.unit(6, "feet"),
  49765. name: "Outside",
  49766. image: {
  49767. source: "./media/characters/mab/outside.svg",
  49768. extra: 1855/1757,
  49769. bottom: 208/2063
  49770. }
  49771. },
  49772. party: {
  49773. height: math.unit(6, "feet"),
  49774. name: "Party",
  49775. image: {
  49776. source: "./media/characters/mab/party.svg",
  49777. extra: 1855/1757,
  49778. bottom: 208/2063
  49779. }
  49780. },
  49781. },
  49782. [
  49783. {
  49784. name: "Normal",
  49785. height: math.unit(165, "feet"),
  49786. default: true
  49787. },
  49788. ]
  49789. ))
  49790. characterMakers.push(() => makeCharacter(
  49791. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49792. {
  49793. feral: {
  49794. height: math.unit(12, "feet"),
  49795. weight: math.unit(20000, "lb"),
  49796. name: "Side",
  49797. image: {
  49798. source: "./media/characters/winter/feral.svg",
  49799. extra: 1286/943,
  49800. bottom: 112/1398
  49801. },
  49802. form: "feral",
  49803. default: true
  49804. },
  49805. feralNsfw: {
  49806. height: math.unit(12, "feet"),
  49807. weight: math.unit(20000, "lb"),
  49808. name: "Side (NSFW)",
  49809. image: {
  49810. source: "./media/characters/winter/feral-nsfw.svg",
  49811. extra: 1286/943,
  49812. bottom: 112/1398
  49813. },
  49814. form: "feral"
  49815. },
  49816. dick: {
  49817. height: math.unit(3.79, "feet"),
  49818. name: "Dick",
  49819. image: {
  49820. source: "./media/characters/winter/dick.svg"
  49821. },
  49822. form: "feral"
  49823. },
  49824. anthro: {
  49825. height: math.unit(12, "feet"),
  49826. weight: math.unit(10, "tons"),
  49827. name: "Anthro",
  49828. image: {
  49829. source: "./media/characters/winter/anthro.svg",
  49830. extra: 1701/1553,
  49831. bottom: 64/1765
  49832. },
  49833. form: "anthro",
  49834. default: true
  49835. },
  49836. },
  49837. [
  49838. {
  49839. name: "Big",
  49840. height: math.unit(12, "feet"),
  49841. default: true,
  49842. form: "feral"
  49843. },
  49844. {
  49845. name: "Big",
  49846. height: math.unit(12, "feet"),
  49847. default: true,
  49848. form: "anthro"
  49849. },
  49850. ],
  49851. {
  49852. "feral": {
  49853. name: "Feral",
  49854. default: true
  49855. },
  49856. "anthro": {
  49857. name: "Anthro"
  49858. }
  49859. }
  49860. ))
  49861. characterMakers.push(() => makeCharacter(
  49862. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49863. {
  49864. front: {
  49865. height: math.unit(4.1, "inches"),
  49866. name: "Front",
  49867. image: {
  49868. source: "./media/characters/alto/front.svg",
  49869. extra: 736/627,
  49870. bottom: 90/826
  49871. }
  49872. },
  49873. },
  49874. [
  49875. {
  49876. name: "Normal",
  49877. height: math.unit(4.1, "inches"),
  49878. default: true
  49879. },
  49880. ]
  49881. ))
  49882. characterMakers.push(() => makeCharacter(
  49883. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49884. {
  49885. sitting: {
  49886. height: math.unit(3, "feet"),
  49887. name: "Sitting",
  49888. image: {
  49889. source: "./media/characters/ratstrid-v/sitting.svg",
  49890. extra: 355/310,
  49891. bottom: 136/491
  49892. }
  49893. },
  49894. },
  49895. [
  49896. {
  49897. name: "Normal",
  49898. height: math.unit(3, "feet"),
  49899. default: true
  49900. },
  49901. ]
  49902. ))
  49903. characterMakers.push(() => makeCharacter(
  49904. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49905. {
  49906. back: {
  49907. height: math.unit(6, "feet"),
  49908. weight: math.unit(350, "lb"),
  49909. name: "Back",
  49910. image: {
  49911. source: "./media/characters/siz/back.svg",
  49912. extra: 1449/1274,
  49913. bottom: 13/1462
  49914. }
  49915. },
  49916. },
  49917. [
  49918. {
  49919. name: "Over-Overcompressed",
  49920. height: math.unit(8, "feet")
  49921. },
  49922. {
  49923. name: "Overcompressed",
  49924. height: math.unit(32, "feet")
  49925. },
  49926. {
  49927. name: "Compressed",
  49928. height: math.unit(128, "feet"),
  49929. default: true
  49930. },
  49931. {
  49932. name: "Half-Compressed",
  49933. height: math.unit(512, "feet")
  49934. },
  49935. {
  49936. name: "Quarter-Compressed",
  49937. height: math.unit(2048, "feet")
  49938. },
  49939. {
  49940. name: "Uncompressed?",
  49941. height: math.unit(8192, "feet")
  49942. },
  49943. ]
  49944. ))
  49945. characterMakers.push(() => makeCharacter(
  49946. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49947. {
  49948. front: {
  49949. height: math.unit(5 + 9/12, "feet"),
  49950. weight: math.unit(150, "lb"),
  49951. name: "Front",
  49952. image: {
  49953. source: "./media/characters/ven/front.svg",
  49954. extra: 1372/1320,
  49955. bottom: 73/1445
  49956. }
  49957. },
  49958. side: {
  49959. height: math.unit(5 + 9/12, "feet"),
  49960. weight: math.unit(1150, "lb"),
  49961. name: "Side",
  49962. image: {
  49963. source: "./media/characters/ven/side.svg",
  49964. extra: 1119/1070,
  49965. bottom: 42/1161
  49966. },
  49967. default: true
  49968. },
  49969. },
  49970. [
  49971. {
  49972. name: "Normal",
  49973. height: math.unit(5 + 9/12, "feet"),
  49974. default: true
  49975. },
  49976. ]
  49977. ))
  49978. characterMakers.push(() => makeCharacter(
  49979. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49980. {
  49981. front: {
  49982. height: math.unit(12, "feet"),
  49983. weight: math.unit(1000, "kg"),
  49984. name: "Front",
  49985. image: {
  49986. source: "./media/characters/maple/front.svg",
  49987. extra: 1193/1081,
  49988. bottom: 22/1215
  49989. }
  49990. },
  49991. },
  49992. [
  49993. {
  49994. name: "Compressed",
  49995. height: math.unit(7, "feet")
  49996. },
  49997. {
  49998. name: "Normal",
  49999. height: math.unit(12, "feet"),
  50000. default: true
  50001. },
  50002. ]
  50003. ))
  50004. characterMakers.push(() => makeCharacter(
  50005. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50006. {
  50007. front: {
  50008. height: math.unit(9, "feet"),
  50009. weight: math.unit(1500, "lb"),
  50010. name: "Front",
  50011. image: {
  50012. source: "./media/characters/nora/front.svg",
  50013. extra: 1348/1286,
  50014. bottom: 218/1566
  50015. }
  50016. },
  50017. erect: {
  50018. height: math.unit(9, "feet"),
  50019. weight: math.unit(11500, "lb"),
  50020. name: "Erect",
  50021. image: {
  50022. source: "./media/characters/nora/erect.svg",
  50023. extra: 1488/1433,
  50024. bottom: 133/1621
  50025. }
  50026. },
  50027. },
  50028. [
  50029. {
  50030. name: "Normal",
  50031. height: math.unit(9, "feet"),
  50032. default: true
  50033. },
  50034. ]
  50035. ))
  50036. characterMakers.push(() => makeCharacter(
  50037. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50038. {
  50039. front: {
  50040. height: math.unit(25, "feet"),
  50041. weight: math.unit(27500, "lb"),
  50042. name: "Front",
  50043. image: {
  50044. source: "./media/characters/north-caudin/front.svg",
  50045. extra: 1184/1082,
  50046. bottom: 23/1207
  50047. }
  50048. },
  50049. },
  50050. [
  50051. {
  50052. name: "Compressed",
  50053. height: math.unit(10, "feet")
  50054. },
  50055. {
  50056. name: "Normal",
  50057. height: math.unit(25, "feet"),
  50058. default: true
  50059. },
  50060. ]
  50061. ))
  50062. characterMakers.push(() => makeCharacter(
  50063. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50064. {
  50065. front: {
  50066. height: math.unit(9, "feet"),
  50067. weight: math.unit(1250, "lb"),
  50068. name: "Front",
  50069. image: {
  50070. source: "./media/characters/merrian/front.svg",
  50071. extra: 2393/2304,
  50072. bottom: 40/2433
  50073. }
  50074. },
  50075. },
  50076. [
  50077. {
  50078. name: "Normal",
  50079. height: math.unit(9, "feet"),
  50080. default: true
  50081. },
  50082. ]
  50083. ))
  50084. characterMakers.push(() => makeCharacter(
  50085. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50086. {
  50087. front: {
  50088. height: math.unit(9, "feet"),
  50089. weight: math.unit(1000, "lb"),
  50090. name: "Front",
  50091. image: {
  50092. source: "./media/characters/hazel/front.svg",
  50093. extra: 2351/2298,
  50094. bottom: 38/2389
  50095. }
  50096. },
  50097. },
  50098. [
  50099. {
  50100. name: "Normal",
  50101. height: math.unit(9, "feet"),
  50102. default: true
  50103. },
  50104. ]
  50105. ))
  50106. characterMakers.push(() => makeCharacter(
  50107. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50108. {
  50109. front: {
  50110. height: math.unit(13, "feet"),
  50111. weight: math.unit(3200, "lb"),
  50112. name: "Front",
  50113. image: {
  50114. source: "./media/characters/emma/front.svg",
  50115. extra: 2263/2029,
  50116. bottom: 68/2331
  50117. }
  50118. },
  50119. },
  50120. [
  50121. {
  50122. name: "Normal",
  50123. height: math.unit(13, "feet"),
  50124. default: true
  50125. },
  50126. ]
  50127. ))
  50128. characterMakers.push(() => makeCharacter(
  50129. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50130. {
  50131. front: {
  50132. height: math.unit(11 + 9/12, "feet"),
  50133. weight: math.unit(2500, "lb"),
  50134. name: "Front",
  50135. image: {
  50136. source: "./media/characters/ilumina/front.svg",
  50137. extra: 2248/2209,
  50138. bottom: 164/2412
  50139. }
  50140. },
  50141. },
  50142. [
  50143. {
  50144. name: "Normal",
  50145. height: math.unit(11 + 9/12, "feet"),
  50146. default: true
  50147. },
  50148. ]
  50149. ))
  50150. characterMakers.push(() => makeCharacter(
  50151. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50152. {
  50153. front: {
  50154. height: math.unit(8 + 10/12, "feet"),
  50155. weight: math.unit(1350, "lb"),
  50156. name: "Front",
  50157. image: {
  50158. source: "./media/characters/moonshine/front.svg",
  50159. extra: 2395/2288,
  50160. bottom: 40/2435
  50161. }
  50162. },
  50163. },
  50164. [
  50165. {
  50166. name: "Normal",
  50167. height: math.unit(8 + 10/12, "feet"),
  50168. default: true
  50169. },
  50170. ]
  50171. ))
  50172. characterMakers.push(() => makeCharacter(
  50173. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50174. {
  50175. front: {
  50176. height: math.unit(14, "feet"),
  50177. weight: math.unit(3400, "lb"),
  50178. name: "Front",
  50179. image: {
  50180. source: "./media/characters/aletia/front.svg",
  50181. extra: 1185/1052,
  50182. bottom: 21/1206
  50183. }
  50184. },
  50185. },
  50186. [
  50187. {
  50188. name: "Compressed",
  50189. height: math.unit(8, "feet")
  50190. },
  50191. {
  50192. name: "Normal",
  50193. height: math.unit(14, "feet"),
  50194. default: true
  50195. },
  50196. ]
  50197. ))
  50198. characterMakers.push(() => makeCharacter(
  50199. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50200. {
  50201. front: {
  50202. height: math.unit(17, "feet"),
  50203. weight: math.unit(6500, "lb"),
  50204. name: "Front",
  50205. image: {
  50206. source: "./media/characters/deidra/front.svg",
  50207. extra: 1201/1081,
  50208. bottom: 16/1217
  50209. }
  50210. },
  50211. },
  50212. [
  50213. {
  50214. name: "Compressed",
  50215. height: math.unit(9 + 6/12, "feet")
  50216. },
  50217. {
  50218. name: "Normal",
  50219. height: math.unit(17, "feet"),
  50220. default: true
  50221. },
  50222. ]
  50223. ))
  50224. characterMakers.push(() => makeCharacter(
  50225. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50226. {
  50227. front: {
  50228. height: math.unit(7 + 4/12, "feet"),
  50229. weight: math.unit(280, "lb"),
  50230. name: "Front",
  50231. image: {
  50232. source: "./media/characters/freki-yrmori/front.svg",
  50233. extra: 1286/1182,
  50234. bottom: 29/1315
  50235. }
  50236. },
  50237. maw: {
  50238. height: math.unit(0.9, "feet"),
  50239. name: "Maw",
  50240. image: {
  50241. source: "./media/characters/freki-yrmori/maw.svg"
  50242. }
  50243. },
  50244. },
  50245. [
  50246. {
  50247. name: "Normal",
  50248. height: math.unit(7 + 4/12, "feet"),
  50249. default: true
  50250. },
  50251. {
  50252. name: "Macro",
  50253. height: math.unit(38.5, "meters")
  50254. },
  50255. ]
  50256. ))
  50257. characterMakers.push(() => makeCharacter(
  50258. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50259. {
  50260. side: {
  50261. height: math.unit(47.2, "meters"),
  50262. weight: math.unit(10000, "tons"),
  50263. name: "Side",
  50264. image: {
  50265. source: "./media/characters/aetherios/side.svg",
  50266. extra: 2363/642,
  50267. bottom: 221/2584
  50268. }
  50269. },
  50270. top: {
  50271. height: math.unit(240, "meters"),
  50272. weight: math.unit(10000, "tons"),
  50273. name: "Top",
  50274. image: {
  50275. source: "./media/characters/aetherios/top.svg"
  50276. }
  50277. },
  50278. bottom: {
  50279. height: math.unit(240, "meters"),
  50280. weight: math.unit(10000, "tons"),
  50281. name: "Bottom",
  50282. image: {
  50283. source: "./media/characters/aetherios/bottom.svg"
  50284. }
  50285. },
  50286. head: {
  50287. height: math.unit(38.6, "meters"),
  50288. name: "Head",
  50289. image: {
  50290. source: "./media/characters/aetherios/head.svg",
  50291. extra: 1335/1112,
  50292. bottom: 0/1335
  50293. }
  50294. },
  50295. front: {
  50296. height: math.unit(29, "meters"),
  50297. name: "Front",
  50298. image: {
  50299. source: "./media/characters/aetherios/front.svg",
  50300. extra: 1266/953,
  50301. bottom: 158/1424
  50302. }
  50303. },
  50304. maw: {
  50305. height: math.unit(16.37, "meters"),
  50306. name: "Maw",
  50307. image: {
  50308. source: "./media/characters/aetherios/maw.svg",
  50309. extra: 748/637,
  50310. bottom: 0/748
  50311. },
  50312. extraAttributes: {
  50313. preyCapacity: {
  50314. name: "Capacity",
  50315. power: 3,
  50316. type: "volume",
  50317. base: math.unit(1000, "people")
  50318. },
  50319. tongueSize: {
  50320. name: "Tongue Size",
  50321. power: 2,
  50322. type: "area",
  50323. base: math.unit(21, "m^2")
  50324. }
  50325. }
  50326. },
  50327. forepaw: {
  50328. height: math.unit(18, "meters"),
  50329. name: "Forepaw",
  50330. image: {
  50331. source: "./media/characters/aetherios/forepaw.svg"
  50332. }
  50333. },
  50334. hindpaw: {
  50335. height: math.unit(23, "meters"),
  50336. name: "Hindpaw",
  50337. image: {
  50338. source: "./media/characters/aetherios/hindpaw.svg"
  50339. }
  50340. },
  50341. genitals: {
  50342. height: math.unit(42, "meters"),
  50343. name: "Genitals",
  50344. image: {
  50345. source: "./media/characters/aetherios/genitals.svg"
  50346. }
  50347. },
  50348. },
  50349. [
  50350. {
  50351. name: "Normal",
  50352. height: math.unit(47.2, "meters"),
  50353. default: true
  50354. },
  50355. {
  50356. name: "Macro",
  50357. height: math.unit(160, "meters")
  50358. },
  50359. {
  50360. name: "Mega",
  50361. height: math.unit(1.87, "km")
  50362. },
  50363. {
  50364. name: "Giga",
  50365. height: math.unit(40000, "km")
  50366. },
  50367. {
  50368. name: "Stellar",
  50369. height: math.unit(158000000, "km")
  50370. },
  50371. {
  50372. name: "Cosmic",
  50373. height: math.unit(9.46e12, "km")
  50374. },
  50375. ]
  50376. ))
  50377. characterMakers.push(() => makeCharacter(
  50378. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50379. {
  50380. front: {
  50381. height: math.unit(5 + 4/12, "feet"),
  50382. weight: math.unit(80, "lb"),
  50383. name: "Front",
  50384. image: {
  50385. source: "./media/characters/mizu-gieeg/front.svg",
  50386. extra: 850/709,
  50387. bottom: 52/902
  50388. }
  50389. },
  50390. back: {
  50391. height: math.unit(5 + 4/12, "feet"),
  50392. weight: math.unit(80, "lb"),
  50393. name: "Back",
  50394. image: {
  50395. source: "./media/characters/mizu-gieeg/back.svg",
  50396. extra: 882/745,
  50397. bottom: 25/907
  50398. }
  50399. },
  50400. },
  50401. [
  50402. {
  50403. name: "Normal",
  50404. height: math.unit(5 + 4/12, "feet"),
  50405. default: true
  50406. },
  50407. ]
  50408. ))
  50409. characterMakers.push(() => makeCharacter(
  50410. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50411. {
  50412. front: {
  50413. height: math.unit(6, "feet"),
  50414. name: "Front",
  50415. image: {
  50416. source: "./media/characters/roselle-st-papier/front.svg",
  50417. extra: 1430/1280,
  50418. bottom: 37/1467
  50419. }
  50420. },
  50421. back: {
  50422. height: math.unit(6, "feet"),
  50423. name: "Back",
  50424. image: {
  50425. source: "./media/characters/roselle-st-papier/back.svg",
  50426. extra: 1491/1296,
  50427. bottom: 23/1514
  50428. }
  50429. },
  50430. ear: {
  50431. height: math.unit(1.26, "feet"),
  50432. name: "Ear",
  50433. image: {
  50434. source: "./media/characters/roselle-st-papier/ear.svg"
  50435. }
  50436. },
  50437. },
  50438. [
  50439. {
  50440. name: "Normal",
  50441. height: math.unit(150, "feet"),
  50442. default: true
  50443. },
  50444. ]
  50445. ))
  50446. characterMakers.push(() => makeCharacter(
  50447. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50448. {
  50449. front: {
  50450. height: math.unit(1, "inches"),
  50451. name: "Front",
  50452. image: {
  50453. source: "./media/characters/valargent/front.svg",
  50454. extra: 1825/1694,
  50455. bottom: 62/1887
  50456. }
  50457. },
  50458. back: {
  50459. height: math.unit(1, "inches"),
  50460. name: "Back",
  50461. image: {
  50462. source: "./media/characters/valargent/back.svg",
  50463. extra: 1775/1682,
  50464. bottom: 88/1863
  50465. }
  50466. },
  50467. },
  50468. [
  50469. {
  50470. name: "Micro",
  50471. height: math.unit(1, "inch"),
  50472. default: true
  50473. },
  50474. ]
  50475. ))
  50476. characterMakers.push(() => makeCharacter(
  50477. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50478. {
  50479. front: {
  50480. height: math.unit(3.4, "meters"),
  50481. name: "Front",
  50482. image: {
  50483. source: "./media/characters/zarina/front.svg",
  50484. extra: 1733/1425,
  50485. bottom: 93/1826
  50486. }
  50487. },
  50488. squatting: {
  50489. height: math.unit(2.14, "meters"),
  50490. name: "Squatting",
  50491. image: {
  50492. source: "./media/characters/zarina/squatting.svg",
  50493. extra: 1073/788,
  50494. bottom: 63/1136
  50495. }
  50496. },
  50497. back: {
  50498. height: math.unit(2.14, "meters"),
  50499. name: "Back",
  50500. image: {
  50501. source: "./media/characters/zarina/back.svg",
  50502. extra: 1128/885,
  50503. bottom: 0/1128
  50504. }
  50505. },
  50506. },
  50507. [
  50508. {
  50509. name: "Normal",
  50510. height: math.unit(3.4, "meters"),
  50511. default: true
  50512. },
  50513. {
  50514. name: "Big",
  50515. height: math.unit(5, "meters")
  50516. },
  50517. {
  50518. name: "Macro",
  50519. height: math.unit(110, "meters")
  50520. },
  50521. ]
  50522. ))
  50523. characterMakers.push(() => makeCharacter(
  50524. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50525. {
  50526. front: {
  50527. height: math.unit(7, "feet"),
  50528. name: "Front",
  50529. image: {
  50530. source: "./media/characters/ventus-astro-fox/front.svg",
  50531. extra: 1792/1623,
  50532. bottom: 28/1820
  50533. }
  50534. },
  50535. back: {
  50536. height: math.unit(7, "feet"),
  50537. name: "Back",
  50538. image: {
  50539. source: "./media/characters/ventus-astro-fox/back.svg",
  50540. extra: 1789/1620,
  50541. bottom: 31/1820
  50542. }
  50543. },
  50544. outfit: {
  50545. height: math.unit(7, "feet"),
  50546. name: "Outfit",
  50547. image: {
  50548. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50549. extra: 1054/925,
  50550. bottom: 15/1069
  50551. }
  50552. },
  50553. head: {
  50554. height: math.unit(1.12, "feet"),
  50555. name: "Head",
  50556. image: {
  50557. source: "./media/characters/ventus-astro-fox/head.svg",
  50558. extra: 866/504,
  50559. bottom: 0/866
  50560. }
  50561. },
  50562. hand: {
  50563. height: math.unit(1, "feet"),
  50564. name: "Hand",
  50565. image: {
  50566. source: "./media/characters/ventus-astro-fox/hand.svg"
  50567. }
  50568. },
  50569. paw: {
  50570. height: math.unit(1.5, "feet"),
  50571. name: "Paw",
  50572. image: {
  50573. source: "./media/characters/ventus-astro-fox/paw.svg"
  50574. }
  50575. },
  50576. },
  50577. [
  50578. {
  50579. name: "Normal",
  50580. height: math.unit(7, "feet"),
  50581. default: true
  50582. },
  50583. {
  50584. name: "Macro",
  50585. height: math.unit(200, "feet")
  50586. },
  50587. {
  50588. name: "Cosmic",
  50589. height: math.unit(3, "universes")
  50590. },
  50591. ]
  50592. ))
  50593. characterMakers.push(() => makeCharacter(
  50594. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50595. {
  50596. front: {
  50597. height: math.unit(3, "meters"),
  50598. weight: math.unit(7000, "lb"),
  50599. name: "Front",
  50600. image: {
  50601. source: "./media/characters/core-t/front.svg",
  50602. extra: 5729/4941,
  50603. bottom: 1129/6858
  50604. }
  50605. },
  50606. },
  50607. [
  50608. {
  50609. name: "Big",
  50610. height: math.unit(3, "meters"),
  50611. default: true
  50612. },
  50613. ]
  50614. ))
  50615. characterMakers.push(() => makeCharacter(
  50616. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50617. {
  50618. normal: {
  50619. height: math.unit(6 + 6/12, "feet"),
  50620. weight: math.unit(275, "lb"),
  50621. name: "Front",
  50622. image: {
  50623. source: "./media/characters/cadbunny/normal.svg",
  50624. extra: 1129/947,
  50625. bottom: 93/1222
  50626. },
  50627. default: true,
  50628. form: "normal"
  50629. },
  50630. gigantamax: {
  50631. height: math.unit(26, "feet"),
  50632. weight: math.unit(16000, "lb"),
  50633. name: "Front",
  50634. image: {
  50635. source: "./media/characters/cadbunny/gigantamax.svg",
  50636. extra: 1133/944,
  50637. bottom: 90/1223
  50638. },
  50639. default: true,
  50640. form: "gigantamax"
  50641. },
  50642. },
  50643. [
  50644. {
  50645. name: "Normal",
  50646. height: math.unit(6 + 6/12, "feet"),
  50647. default: true,
  50648. form: "normal"
  50649. },
  50650. {
  50651. name: "Small",
  50652. height: math.unit(26, "feet"),
  50653. default: true,
  50654. form: "gigantamax"
  50655. },
  50656. {
  50657. name: "Large",
  50658. height: math.unit(78, "feet"),
  50659. form: "gigantamax"
  50660. },
  50661. ],
  50662. {
  50663. "normal": {
  50664. name: "Normal",
  50665. default: true
  50666. },
  50667. "gigantamax": {
  50668. name: "Gigantamax"
  50669. }
  50670. }
  50671. ))
  50672. characterMakers.push(() => makeCharacter(
  50673. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50674. {
  50675. anthroFront: {
  50676. height: math.unit(8, "feet"),
  50677. weight: math.unit(300, "lb"),
  50678. name: "Front",
  50679. image: {
  50680. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50681. extra: 1272/1176,
  50682. bottom: 53/1325
  50683. },
  50684. form: "anthro",
  50685. default: true
  50686. },
  50687. feralSide: {
  50688. height: math.unit(4, "feet"),
  50689. weight: math.unit(250, "lb"),
  50690. name: "Side",
  50691. image: {
  50692. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50693. extra: 731/621,
  50694. bottom: 0/731
  50695. },
  50696. form: "feral",
  50697. default: true
  50698. },
  50699. },
  50700. [
  50701. {
  50702. name: "Regular",
  50703. height: math.unit(8, "feet"),
  50704. form: "anthro"
  50705. },
  50706. {
  50707. name: "Macro",
  50708. height: math.unit(250, "feet"),
  50709. form: "anthro",
  50710. default: true
  50711. },
  50712. {
  50713. name: "Regular",
  50714. height: math.unit(4, "feet"),
  50715. form: "feral"
  50716. },
  50717. {
  50718. name: "Macro",
  50719. height: math.unit(125, "feet"),
  50720. form: "feral",
  50721. default: true
  50722. },
  50723. ],
  50724. {
  50725. "anthro": {
  50726. name: "Anthro",
  50727. default: true
  50728. },
  50729. "feral": {
  50730. name: "Feral",
  50731. },
  50732. }
  50733. ))
  50734. characterMakers.push(() => makeCharacter(
  50735. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50736. {
  50737. front: {
  50738. height: math.unit(11 + 10/12, "feet"),
  50739. weight: math.unit(1587, "kg"),
  50740. name: "Front",
  50741. image: {
  50742. source: "./media/characters/maple-javira-dragon/front.svg",
  50743. extra: 1136/744,
  50744. bottom: 73/1209
  50745. }
  50746. },
  50747. side: {
  50748. height: math.unit(11 + 10/12, "feet"),
  50749. weight: math.unit(1587, "kg"),
  50750. name: "Side",
  50751. image: {
  50752. source: "./media/characters/maple-javira-dragon/side.svg",
  50753. extra: 712/505,
  50754. bottom: 17/729
  50755. }
  50756. },
  50757. head: {
  50758. height: math.unit(8.05, "feet"),
  50759. name: "Head",
  50760. image: {
  50761. source: "./media/characters/maple-javira-dragon/head.svg",
  50762. extra: 1420/1344,
  50763. bottom: 0/1420
  50764. }
  50765. },
  50766. },
  50767. [
  50768. {
  50769. name: "Normal",
  50770. height: math.unit(11 + 10/12, "feet"),
  50771. default: true
  50772. },
  50773. ]
  50774. ))
  50775. characterMakers.push(() => makeCharacter(
  50776. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50777. {
  50778. front: {
  50779. height: math.unit(117, "cm"),
  50780. weight: math.unit(50, "kg"),
  50781. name: "Front",
  50782. image: {
  50783. source: "./media/characters/sonia-wyverntail/front.svg",
  50784. extra: 708/592,
  50785. bottom: 25/733
  50786. }
  50787. },
  50788. },
  50789. [
  50790. {
  50791. name: "Normal",
  50792. height: math.unit(117, "cm"),
  50793. default: true
  50794. },
  50795. ]
  50796. ))
  50797. characterMakers.push(() => makeCharacter(
  50798. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50799. {
  50800. front: {
  50801. height: math.unit(6 + 5/12, "feet"),
  50802. name: "Front",
  50803. image: {
  50804. source: "./media/characters/micah/front.svg",
  50805. extra: 1758/1546,
  50806. bottom: 214/1972
  50807. }
  50808. },
  50809. },
  50810. [
  50811. {
  50812. name: "Normal",
  50813. height: math.unit(6 + 5/12, "feet"),
  50814. default: true
  50815. },
  50816. ]
  50817. ))
  50818. characterMakers.push(() => makeCharacter(
  50819. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50820. {
  50821. front: {
  50822. height: math.unit(5 + 10/12, "feet"),
  50823. weight: math.unit(220, "lb"),
  50824. name: "Front",
  50825. image: {
  50826. source: "./media/characters/zarya/front.svg",
  50827. extra: 593/572,
  50828. bottom: 50/643
  50829. }
  50830. },
  50831. back: {
  50832. height: math.unit(5 + 10/12, "feet"),
  50833. weight: math.unit(220, "lb"),
  50834. name: "Back",
  50835. image: {
  50836. source: "./media/characters/zarya/back.svg",
  50837. extra: 603/582,
  50838. bottom: 38/641
  50839. }
  50840. },
  50841. },
  50842. [
  50843. {
  50844. name: "Normal",
  50845. height: math.unit(5 + 10/12, "feet"),
  50846. default: true
  50847. },
  50848. ]
  50849. ))
  50850. characterMakers.push(() => makeCharacter(
  50851. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50852. {
  50853. front: {
  50854. height: math.unit(7.5, "feet"),
  50855. name: "Front",
  50856. image: {
  50857. source: "./media/characters/sven-hatisson/front.svg",
  50858. extra: 917/857,
  50859. bottom: 42/959
  50860. }
  50861. },
  50862. back: {
  50863. height: math.unit(7.5, "feet"),
  50864. name: "Back",
  50865. image: {
  50866. source: "./media/characters/sven-hatisson/back.svg",
  50867. extra: 903/856,
  50868. bottom: 15/918
  50869. }
  50870. },
  50871. },
  50872. [
  50873. {
  50874. name: "Base Height",
  50875. height: math.unit(7.5, "feet")
  50876. },
  50877. {
  50878. name: "Usual Height",
  50879. height: math.unit(13.5, "feet"),
  50880. default: true
  50881. },
  50882. {
  50883. name: "Smaller Macro",
  50884. height: math.unit(85, "feet")
  50885. },
  50886. {
  50887. name: "Moderate Macro",
  50888. height: math.unit(320, "feet")
  50889. },
  50890. {
  50891. name: "Large Macro",
  50892. height: math.unit(1000, "feet")
  50893. },
  50894. {
  50895. name: "Largest Size",
  50896. height: math.unit(2, "miles")
  50897. },
  50898. ]
  50899. ))
  50900. characterMakers.push(() => makeCharacter(
  50901. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50902. {
  50903. side: {
  50904. height: math.unit(1.8, "meters"),
  50905. weight: math.unit(275, "kg"),
  50906. name: "Side",
  50907. image: {
  50908. source: "./media/characters/terra/side.svg",
  50909. extra: 1273/1147,
  50910. bottom: 0/1273
  50911. }
  50912. },
  50913. },
  50914. [
  50915. {
  50916. name: "Normal",
  50917. height: math.unit(16.2, "meters"),
  50918. default: true
  50919. },
  50920. ]
  50921. ))
  50922. characterMakers.push(() => makeCharacter(
  50923. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50924. {
  50925. borzoiFront: {
  50926. height: math.unit(6 + 9/12, "feet"),
  50927. name: "Front",
  50928. image: {
  50929. source: "./media/characters/rae/borzoi-front.svg",
  50930. extra: 1161/1098,
  50931. bottom: 31/1192
  50932. },
  50933. form: "borzoi",
  50934. default: true
  50935. },
  50936. werewolfFront: {
  50937. height: math.unit(8 + 7/12, "feet"),
  50938. name: "Front",
  50939. image: {
  50940. source: "./media/characters/rae/werewolf-front.svg",
  50941. extra: 1411/1334,
  50942. bottom: 127/1538
  50943. },
  50944. form: "werewolf",
  50945. default: true
  50946. },
  50947. },
  50948. [
  50949. {
  50950. name: "Normal",
  50951. height: math.unit(6 + 9/12, "feet"),
  50952. default: true,
  50953. form: "borzoi"
  50954. },
  50955. {
  50956. name: "Normal",
  50957. height: math.unit(8 + 7/12, "feet"),
  50958. default: true,
  50959. form: "werewolf"
  50960. },
  50961. ],
  50962. {
  50963. "borzoi": {
  50964. name: "Borzoi",
  50965. default: true
  50966. },
  50967. "werewolf": {
  50968. name: "Werewolf",
  50969. },
  50970. }
  50971. ))
  50972. characterMakers.push(() => makeCharacter(
  50973. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50974. {
  50975. front: {
  50976. height: math.unit(8 + 7/12, "feet"),
  50977. weight: math.unit(482, "lb"),
  50978. name: "Front",
  50979. image: {
  50980. source: "./media/characters/kit/front.svg",
  50981. extra: 1247/1103,
  50982. bottom: 41/1288
  50983. }
  50984. },
  50985. back: {
  50986. height: math.unit(8 + 7/12, "feet"),
  50987. weight: math.unit(482, "lb"),
  50988. name: "Back",
  50989. image: {
  50990. source: "./media/characters/kit/back.svg",
  50991. extra: 1252/1123,
  50992. bottom: 21/1273
  50993. }
  50994. },
  50995. paw: {
  50996. height: math.unit(1.46, "feet"),
  50997. name: "Paw",
  50998. image: {
  50999. source: "./media/characters/kit/paw.svg"
  51000. }
  51001. },
  51002. },
  51003. [
  51004. {
  51005. name: "Normal",
  51006. height: math.unit(2.61, "meters"),
  51007. default: true
  51008. },
  51009. {
  51010. name: "\"Tall\"",
  51011. height: math.unit(8.21, "meters")
  51012. },
  51013. {
  51014. name: "Tall",
  51015. height: math.unit(19.6, "meters")
  51016. },
  51017. {
  51018. name: "Very Tall",
  51019. height: math.unit(57.91, "meters")
  51020. },
  51021. {
  51022. name: "Semi-Macro",
  51023. height: math.unit(138.64, "meters")
  51024. },
  51025. {
  51026. name: "Macro",
  51027. height: math.unit(831.99, "meters")
  51028. },
  51029. {
  51030. name: "EX-Macro",
  51031. height: math.unit(96451121, "meters")
  51032. },
  51033. {
  51034. name: "S1-Omnipotent",
  51035. height: math.unit(4.42074e+9, "meters")
  51036. },
  51037. {
  51038. name: "S2-Omnipotent",
  51039. height: math.unit(9.42074e+17, "meters")
  51040. },
  51041. {
  51042. name: "Omnipotent",
  51043. height: math.unit(4.23112e+24, "meters")
  51044. },
  51045. {
  51046. name: "Hypergod",
  51047. height: math.unit(5.05176e+27, "meters")
  51048. },
  51049. {
  51050. name: "Hypergod-EX",
  51051. height: math.unit(9.45532e+49, "meters")
  51052. },
  51053. {
  51054. name: "Hypergod-SP",
  51055. height: math.unit(9.45532e+195, "meters")
  51056. },
  51057. ]
  51058. ))
  51059. characterMakers.push(() => makeCharacter(
  51060. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51061. {
  51062. side: {
  51063. height: math.unit(0.6, "meters"),
  51064. weight: math.unit(24, "kg"),
  51065. name: "Side",
  51066. image: {
  51067. source: "./media/characters/celeste/side.svg",
  51068. extra: 810/517,
  51069. bottom: 53/863
  51070. }
  51071. },
  51072. },
  51073. [
  51074. {
  51075. name: "Velociraptor",
  51076. height: math.unit(0.6, "meters"),
  51077. default: true
  51078. },
  51079. {
  51080. name: "Utahraptor",
  51081. height: math.unit(1.8, "meters")
  51082. },
  51083. {
  51084. name: "Gallimimus",
  51085. height: math.unit(4.0, "meters")
  51086. },
  51087. {
  51088. name: "Large",
  51089. height: math.unit(20, "meters")
  51090. },
  51091. {
  51092. name: "Planetary",
  51093. height: math.unit(50, "megameters")
  51094. },
  51095. {
  51096. name: "Stellar",
  51097. height: math.unit(1.5, "gigameters")
  51098. },
  51099. {
  51100. name: "Galactic",
  51101. height: math.unit(100, "exameters")
  51102. },
  51103. ]
  51104. ))
  51105. characterMakers.push(() => makeCharacter(
  51106. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51107. {
  51108. front: {
  51109. height: math.unit(6, "feet"),
  51110. weight: math.unit(210, "lb"),
  51111. name: "Front",
  51112. image: {
  51113. source: "./media/characters/glacia/front.svg",
  51114. extra: 958/901,
  51115. bottom: 45/1003
  51116. }
  51117. },
  51118. },
  51119. [
  51120. {
  51121. name: "Macro",
  51122. height: math.unit(1000, "meters"),
  51123. default: true
  51124. },
  51125. ]
  51126. ))
  51127. characterMakers.push(() => makeCharacter(
  51128. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51129. {
  51130. front: {
  51131. height: math.unit(4, "meters"),
  51132. name: "Front",
  51133. image: {
  51134. source: "./media/characters/giri/front.svg",
  51135. extra: 966/894,
  51136. bottom: 21/987
  51137. }
  51138. },
  51139. },
  51140. [
  51141. {
  51142. name: "Normal",
  51143. height: math.unit(4, "meters"),
  51144. default: true
  51145. },
  51146. ]
  51147. ))
  51148. characterMakers.push(() => makeCharacter(
  51149. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51150. {
  51151. back: {
  51152. height: math.unit(4, "feet"),
  51153. weight: math.unit(37, "lb"),
  51154. name: "Back",
  51155. image: {
  51156. source: "./media/characters/tin/back.svg",
  51157. extra: 845/780,
  51158. bottom: 28/873
  51159. }
  51160. },
  51161. },
  51162. [
  51163. {
  51164. name: "Normal",
  51165. height: math.unit(4, "feet"),
  51166. default: true
  51167. },
  51168. ]
  51169. ))
  51170. characterMakers.push(() => makeCharacter(
  51171. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51172. {
  51173. front: {
  51174. height: math.unit(25, "feet"),
  51175. name: "Front",
  51176. image: {
  51177. source: "./media/characters/cadenza-vivace/front.svg",
  51178. extra: 1842/1578,
  51179. bottom: 30/1872
  51180. }
  51181. },
  51182. },
  51183. [
  51184. {
  51185. name: "Macro",
  51186. height: math.unit(25, "feet"),
  51187. default: true
  51188. },
  51189. ]
  51190. ))
  51191. characterMakers.push(() => makeCharacter(
  51192. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51193. {
  51194. front: {
  51195. height: math.unit(10, "feet"),
  51196. weight: math.unit(625, "kg"),
  51197. name: "Front",
  51198. image: {
  51199. source: "./media/characters/zain/front.svg",
  51200. extra: 1682/1498,
  51201. bottom: 223/1905
  51202. }
  51203. },
  51204. back: {
  51205. height: math.unit(10, "feet"),
  51206. weight: math.unit(625, "kg"),
  51207. name: "Back",
  51208. image: {
  51209. source: "./media/characters/zain/back.svg",
  51210. extra: 1814/1657,
  51211. bottom: 152/1966
  51212. }
  51213. },
  51214. head: {
  51215. height: math.unit(10, "feet"),
  51216. weight: math.unit(625, "kg"),
  51217. name: "Head",
  51218. image: {
  51219. source: "./media/characters/zain/head.svg",
  51220. extra: 1059/762,
  51221. bottom: 0/1059
  51222. }
  51223. },
  51224. },
  51225. [
  51226. {
  51227. name: "Normal",
  51228. height: math.unit(10, "feet"),
  51229. default: true
  51230. },
  51231. ]
  51232. ))
  51233. characterMakers.push(() => makeCharacter(
  51234. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51235. {
  51236. front: {
  51237. height: math.unit(6 + 5/12, "feet"),
  51238. weight: math.unit(750, "lb"),
  51239. name: "Front",
  51240. image: {
  51241. source: "./media/characters/ruchex/front.svg",
  51242. extra: 877/820,
  51243. bottom: 17/894
  51244. },
  51245. extraAttributes: {
  51246. "width": {
  51247. name: "Width",
  51248. power: 1,
  51249. type: "length",
  51250. base: math.unit(4.757, "feet")
  51251. },
  51252. }
  51253. },
  51254. },
  51255. [
  51256. {
  51257. name: "Normal",
  51258. height: math.unit(6 + 5/12, "feet"),
  51259. default: true
  51260. },
  51261. ]
  51262. ))
  51263. characterMakers.push(() => makeCharacter(
  51264. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51265. {
  51266. dressedFront: {
  51267. height: math.unit(191, "cm"),
  51268. weight: math.unit(80, "kg"),
  51269. name: "Front",
  51270. image: {
  51271. source: "./media/characters/buster/dressed-front.svg",
  51272. extra: 1022/973,
  51273. bottom: 69/1091
  51274. }
  51275. },
  51276. dressedBack: {
  51277. height: math.unit(191, "cm"),
  51278. weight: math.unit(80, "kg"),
  51279. name: "Back",
  51280. image: {
  51281. source: "./media/characters/buster/dressed-back.svg",
  51282. extra: 1018/970,
  51283. bottom: 55/1073
  51284. }
  51285. },
  51286. nudeFront: {
  51287. height: math.unit(191, "cm"),
  51288. weight: math.unit(80, "kg"),
  51289. name: "Front (Nude)",
  51290. image: {
  51291. source: "./media/characters/buster/nude-front.svg",
  51292. extra: 1022/973,
  51293. bottom: 69/1091
  51294. }
  51295. },
  51296. nudeBack: {
  51297. height: math.unit(191, "cm"),
  51298. weight: math.unit(80, "kg"),
  51299. name: "Back (Nude)",
  51300. image: {
  51301. source: "./media/characters/buster/nude-back.svg",
  51302. extra: 1018/970,
  51303. bottom: 55/1073
  51304. }
  51305. },
  51306. dick: {
  51307. height: math.unit(2.59, "feet"),
  51308. name: "Dick",
  51309. image: {
  51310. source: "./media/characters/buster/dick.svg"
  51311. }
  51312. },
  51313. ass: {
  51314. height: math.unit(1.2, "feet"),
  51315. name: "Ass",
  51316. image: {
  51317. source: "./media/characters/buster/ass.svg"
  51318. }
  51319. },
  51320. },
  51321. [
  51322. {
  51323. name: "Normal",
  51324. height: math.unit(191, "cm"),
  51325. default: true
  51326. },
  51327. ]
  51328. ))
  51329. characterMakers.push(() => makeCharacter(
  51330. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51331. {
  51332. side: {
  51333. height: math.unit(8.1, "feet"),
  51334. weight: math.unit(3500, "lb"),
  51335. name: "Side",
  51336. image: {
  51337. source: "./media/characters/sonya/side.svg",
  51338. extra: 1730/1317,
  51339. bottom: 86/1816
  51340. }
  51341. },
  51342. },
  51343. [
  51344. {
  51345. name: "Normal",
  51346. height: math.unit(8.1, "feet"),
  51347. default: true
  51348. },
  51349. ]
  51350. ))
  51351. characterMakers.push(() => makeCharacter(
  51352. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51353. {
  51354. front: {
  51355. height: math.unit(6, "feet"),
  51356. weight: math.unit(150, "lb"),
  51357. name: "Front",
  51358. image: {
  51359. source: "./media/characters/cadence-andrysiak/front.svg",
  51360. extra: 1164/1121,
  51361. bottom: 60/1224
  51362. }
  51363. },
  51364. back: {
  51365. height: math.unit(6, "feet"),
  51366. weight: math.unit(150, "lb"),
  51367. name: "Back",
  51368. image: {
  51369. source: "./media/characters/cadence-andrysiak/back.svg",
  51370. extra: 1200/1165,
  51371. bottom: 9/1209
  51372. }
  51373. },
  51374. dressed: {
  51375. height: math.unit(6, "feet"),
  51376. weight: math.unit(150, "lb"),
  51377. name: "Dressed",
  51378. image: {
  51379. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51380. extra: 1164/1121,
  51381. bottom: 60/1224
  51382. }
  51383. },
  51384. },
  51385. [
  51386. {
  51387. name: "Micro",
  51388. height: math.unit(1, "mm")
  51389. },
  51390. {
  51391. name: "Normal",
  51392. height: math.unit(6, "feet"),
  51393. default: true
  51394. },
  51395. ]
  51396. ))
  51397. characterMakers.push(() => makeCharacter(
  51398. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51399. {
  51400. front: {
  51401. height: math.unit(60, "inches"),
  51402. weight: math.unit(16, "lb"),
  51403. preyCapacity: math.unit(80, "liters"),
  51404. name: "Front",
  51405. image: {
  51406. source: "./media/characters/penny-lynx/front.svg",
  51407. extra: 1959/1769,
  51408. bottom: 49/2008
  51409. }
  51410. },
  51411. },
  51412. [
  51413. {
  51414. name: "Nokia",
  51415. height: math.unit(2, "inches")
  51416. },
  51417. {
  51418. name: "Desktop",
  51419. height: math.unit(24, "inches")
  51420. },
  51421. {
  51422. name: "TV",
  51423. height: math.unit(60, "inches")
  51424. },
  51425. {
  51426. name: "Jumbotron",
  51427. height: math.unit(12, "feet")
  51428. },
  51429. {
  51430. name: "Billboard",
  51431. height: math.unit(48, "feet"),
  51432. default: true
  51433. },
  51434. {
  51435. name: "IMAX",
  51436. height: math.unit(96, "feet")
  51437. },
  51438. {
  51439. name: "SINGULARITY",
  51440. height: math.unit(864938, "miles")
  51441. },
  51442. ]
  51443. ))
  51444. characterMakers.push(() => makeCharacter(
  51445. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51446. {
  51447. front: {
  51448. height: math.unit(5 + 4/12, "feet"),
  51449. weight: math.unit(230, "lb"),
  51450. name: "Front",
  51451. image: {
  51452. source: "./media/characters/sukebe/front.svg",
  51453. extra: 2130/2038,
  51454. bottom: 90/2220
  51455. }
  51456. },
  51457. back: {
  51458. height: math.unit(3.48, "feet"),
  51459. weight: math.unit(230, "lb"),
  51460. name: "Back",
  51461. image: {
  51462. source: "./media/characters/sukebe/back.svg",
  51463. extra: 1670/1604,
  51464. bottom: 0/1670
  51465. }
  51466. },
  51467. },
  51468. [
  51469. {
  51470. name: "Normal",
  51471. height: math.unit(5 + 4/12, "feet"),
  51472. default: true
  51473. },
  51474. ]
  51475. ))
  51476. characterMakers.push(() => makeCharacter(
  51477. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51478. {
  51479. front: {
  51480. height: math.unit(6, "feet"),
  51481. name: "Front",
  51482. image: {
  51483. source: "./media/characters/nylla/front.svg",
  51484. extra: 1868/1699,
  51485. bottom: 97/1965
  51486. }
  51487. },
  51488. back: {
  51489. height: math.unit(6, "feet"),
  51490. name: "Back",
  51491. image: {
  51492. source: "./media/characters/nylla/back.svg",
  51493. extra: 1889/1712,
  51494. bottom: 93/1982
  51495. }
  51496. },
  51497. frontNsfw: {
  51498. height: math.unit(6, "feet"),
  51499. name: "Front (NSFW)",
  51500. image: {
  51501. source: "./media/characters/nylla/front-nsfw.svg",
  51502. extra: 1868/1699,
  51503. bottom: 97/1965
  51504. },
  51505. extraAttributes: {
  51506. "dickLength": {
  51507. name: "Dick Length",
  51508. power: 1,
  51509. type: "length",
  51510. base: math.unit(1.4, "feet")
  51511. },
  51512. "cumVolume": {
  51513. name: "Cum Volume",
  51514. power: 3,
  51515. type: "volume",
  51516. base: math.unit(100, "mL")
  51517. },
  51518. }
  51519. },
  51520. backNsfw: {
  51521. height: math.unit(6, "feet"),
  51522. name: "Back (NSFW)",
  51523. image: {
  51524. source: "./media/characters/nylla/back-nsfw.svg",
  51525. extra: 1889/1712,
  51526. bottom: 93/1982
  51527. }
  51528. },
  51529. maw: {
  51530. height: math.unit(2.10, "feet"),
  51531. name: "Maw",
  51532. image: {
  51533. source: "./media/characters/nylla/maw.svg"
  51534. }
  51535. },
  51536. paws: {
  51537. height: math.unit(2.06, "feet"),
  51538. name: "Paws",
  51539. image: {
  51540. source: "./media/characters/nylla/paws.svg"
  51541. }
  51542. },
  51543. muzzle: {
  51544. height: math.unit(0.61, "feet"),
  51545. name: "Muzzle",
  51546. image: {
  51547. source: "./media/characters/nylla/muzzle.svg"
  51548. }
  51549. },
  51550. sheath: {
  51551. height: math.unit(1.305, "feet"),
  51552. name: "Sheath",
  51553. image: {
  51554. source: "./media/characters/nylla/sheath.svg"
  51555. }
  51556. },
  51557. },
  51558. [
  51559. {
  51560. name: "Micro",
  51561. height: math.unit(7.5, "inches")
  51562. },
  51563. {
  51564. name: "Normal",
  51565. height: math.unit(7, "feet"),
  51566. default: true
  51567. },
  51568. {
  51569. name: "Macro",
  51570. height: math.unit(60, "feet")
  51571. },
  51572. {
  51573. name: "Mega",
  51574. height: math.unit(200, "feet")
  51575. },
  51576. ]
  51577. ))
  51578. characterMakers.push(() => makeCharacter(
  51579. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51580. {
  51581. front: {
  51582. height: math.unit(10, "feet"),
  51583. weight: math.unit(2300, "lb"),
  51584. name: "Front",
  51585. image: {
  51586. source: "./media/characters/hunt3r/front.svg",
  51587. extra: 1909/1742,
  51588. bottom: 46/1955
  51589. }
  51590. },
  51591. },
  51592. [
  51593. {
  51594. name: "Normal",
  51595. height: math.unit(10, "feet"),
  51596. default: true
  51597. },
  51598. ]
  51599. ))
  51600. characterMakers.push(() => makeCharacter(
  51601. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51602. {
  51603. dressed: {
  51604. height: math.unit(11, "feet"),
  51605. weight: math.unit(18500, "lb"),
  51606. preyCapacity: math.unit(9, "people"),
  51607. name: "Dressed",
  51608. image: {
  51609. source: "./media/characters/cylphis/dressed.svg",
  51610. extra: 1028/1003,
  51611. bottom: 75/1103
  51612. },
  51613. },
  51614. undressed: {
  51615. height: math.unit(11, "feet"),
  51616. weight: math.unit(18500, "lb"),
  51617. preyCapacity: math.unit(9, "people"),
  51618. name: "Undressed",
  51619. image: {
  51620. source: "./media/characters/cylphis/undressed.svg",
  51621. extra: 1028/1003,
  51622. bottom: 75/1103
  51623. }
  51624. },
  51625. full: {
  51626. height: math.unit(11, "feet"),
  51627. weight: math.unit(18500 + 150*9, "lb"),
  51628. preyCapacity: math.unit(9, "people"),
  51629. name: "Full",
  51630. image: {
  51631. source: "./media/characters/cylphis/full.svg",
  51632. extra: 1028/1003,
  51633. bottom: 75/1103
  51634. }
  51635. },
  51636. },
  51637. [
  51638. {
  51639. name: "Small",
  51640. height: math.unit(8, "feet")
  51641. },
  51642. {
  51643. name: "Normal",
  51644. height: math.unit(11, "feet"),
  51645. default: true
  51646. },
  51647. ]
  51648. ))
  51649. characterMakers.push(() => makeCharacter(
  51650. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51651. {
  51652. front: {
  51653. height: math.unit(2 + 7/12, "feet"),
  51654. name: "Front",
  51655. image: {
  51656. source: "./media/characters/orishan/front.svg",
  51657. extra: 1058/1023,
  51658. bottom: 23/1081
  51659. }
  51660. },
  51661. back: {
  51662. height: math.unit(2 + 7/12, "feet"),
  51663. name: "Back",
  51664. image: {
  51665. source: "./media/characters/orishan/back.svg",
  51666. extra: 1058/1023,
  51667. bottom: 23/1081
  51668. }
  51669. },
  51670. },
  51671. [
  51672. {
  51673. name: "Micro",
  51674. height: math.unit(2, "cm")
  51675. },
  51676. {
  51677. name: "Normal",
  51678. height: math.unit(2 + 7/12, "feet"),
  51679. default: true
  51680. },
  51681. ]
  51682. ))
  51683. characterMakers.push(() => makeCharacter(
  51684. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51685. {
  51686. front: {
  51687. height: math.unit(3, "meters"),
  51688. weight: math.unit(508, "kg"),
  51689. name: "Front",
  51690. image: {
  51691. source: "./media/characters/seranis/front.svg",
  51692. extra: 1478/1454,
  51693. bottom: 41/1519
  51694. }
  51695. },
  51696. },
  51697. [
  51698. {
  51699. name: "Normal",
  51700. height: math.unit(3, "meters"),
  51701. default: true
  51702. },
  51703. {
  51704. name: "Macro",
  51705. height: math.unit(108, "meters")
  51706. },
  51707. {
  51708. name: "Megamacro",
  51709. height: math.unit(1250, "meters")
  51710. },
  51711. ]
  51712. ))
  51713. characterMakers.push(() => makeCharacter(
  51714. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51715. {
  51716. undressed: {
  51717. height: math.unit(5 + 3/12, "feet"),
  51718. name: "Undressed",
  51719. image: {
  51720. source: "./media/characters/ankou/undressed.svg",
  51721. extra: 1301/1213,
  51722. bottom: 87/1388
  51723. }
  51724. },
  51725. dressed: {
  51726. height: math.unit(5 + 3/12, "feet"),
  51727. name: "Dressed",
  51728. image: {
  51729. source: "./media/characters/ankou/dressed.svg",
  51730. extra: 1301/1213,
  51731. bottom: 87/1388
  51732. }
  51733. },
  51734. head: {
  51735. height: math.unit(1.61, "feet"),
  51736. name: "Head",
  51737. image: {
  51738. source: "./media/characters/ankou/head.svg"
  51739. }
  51740. },
  51741. },
  51742. [
  51743. {
  51744. name: "Normal",
  51745. height: math.unit(5 + 3/12, "feet"),
  51746. default: true
  51747. },
  51748. ]
  51749. ))
  51750. characterMakers.push(() => makeCharacter(
  51751. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51752. {
  51753. side: {
  51754. height: math.unit(6 + 3/12, "feet"),
  51755. weight: math.unit(200, "kg"),
  51756. name: "Side",
  51757. image: {
  51758. source: "./media/characters/juniper-skunktaur/side.svg",
  51759. extra: 1574/1229,
  51760. bottom: 38/1612
  51761. }
  51762. },
  51763. front: {
  51764. height: math.unit(6 + 3/12, "feet"),
  51765. weight: math.unit(200, "kg"),
  51766. name: "Front",
  51767. image: {
  51768. source: "./media/characters/juniper-skunktaur/front.svg",
  51769. extra: 1337/1278,
  51770. bottom: 22/1359
  51771. }
  51772. },
  51773. back: {
  51774. height: math.unit(6 + 3/12, "feet"),
  51775. weight: math.unit(200, "kg"),
  51776. name: "Back",
  51777. image: {
  51778. source: "./media/characters/juniper-skunktaur/back.svg",
  51779. extra: 1618/1273,
  51780. bottom: 13/1631
  51781. }
  51782. },
  51783. top: {
  51784. height: math.unit(2.62, "feet"),
  51785. weight: math.unit(200, "kg"),
  51786. name: "Top",
  51787. image: {
  51788. source: "./media/characters/juniper-skunktaur/top.svg"
  51789. }
  51790. },
  51791. },
  51792. [
  51793. {
  51794. name: "Normal",
  51795. height: math.unit(6 + 3/12, "feet"),
  51796. default: true
  51797. },
  51798. ]
  51799. ))
  51800. characterMakers.push(() => makeCharacter(
  51801. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51802. {
  51803. front: {
  51804. height: math.unit(20.5, "feet"),
  51805. name: "Front",
  51806. image: {
  51807. source: "./media/characters/rei/front.svg",
  51808. extra: 1349/1195,
  51809. bottom: 31/1380
  51810. }
  51811. },
  51812. back: {
  51813. height: math.unit(20.5, "feet"),
  51814. name: "Back",
  51815. image: {
  51816. source: "./media/characters/rei/back.svg",
  51817. extra: 1358/1204,
  51818. bottom: 22/1380
  51819. }
  51820. },
  51821. pawsDigi: {
  51822. height: math.unit(3.45, "feet"),
  51823. name: "Paws (Digi)",
  51824. image: {
  51825. source: "./media/characters/rei/paws-digi.svg"
  51826. }
  51827. },
  51828. pawsPlanti: {
  51829. height: math.unit(3.45, "feet"),
  51830. name: "Paws (Planti)",
  51831. image: {
  51832. source: "./media/characters/rei/paws-planti.svg"
  51833. }
  51834. },
  51835. },
  51836. [
  51837. {
  51838. name: "Normal",
  51839. height: math.unit(20.5, "feet"),
  51840. default: true
  51841. },
  51842. ]
  51843. ))
  51844. characterMakers.push(() => makeCharacter(
  51845. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51846. {
  51847. front: {
  51848. height: math.unit(5 + 11/12, "feet"),
  51849. name: "Front",
  51850. image: {
  51851. source: "./media/characters/carina/front.svg",
  51852. extra: 1720/1449,
  51853. bottom: 14/1734
  51854. }
  51855. },
  51856. back: {
  51857. height: math.unit(5 + 11/12, "feet"),
  51858. name: "Back",
  51859. image: {
  51860. source: "./media/characters/carina/back.svg",
  51861. extra: 1493/1445,
  51862. bottom: 17/1510
  51863. }
  51864. },
  51865. paw: {
  51866. height: math.unit(0.92, "feet"),
  51867. name: "Paw",
  51868. image: {
  51869. source: "./media/characters/carina/paw.svg"
  51870. }
  51871. },
  51872. },
  51873. [
  51874. {
  51875. name: "Normal",
  51876. height: math.unit(5 + 11/12, "feet"),
  51877. default: true
  51878. },
  51879. ]
  51880. ))
  51881. characterMakers.push(() => makeCharacter(
  51882. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51883. {
  51884. front: {
  51885. height: math.unit(4.88, "meters"),
  51886. name: "Front",
  51887. image: {
  51888. source: "./media/characters/maya/front.svg",
  51889. extra: 1222/1145,
  51890. bottom: 57/1279
  51891. }
  51892. },
  51893. },
  51894. [
  51895. {
  51896. name: "Normal",
  51897. height: math.unit(4.88, "meters"),
  51898. default: true
  51899. },
  51900. {
  51901. name: "Macro",
  51902. height: math.unit(38.1, "meters")
  51903. },
  51904. {
  51905. name: "Macro+",
  51906. height: math.unit(152.4, "meters")
  51907. },
  51908. {
  51909. name: "Macro++",
  51910. height: math.unit(16.09, "km")
  51911. },
  51912. {
  51913. name: "Mega-macro",
  51914. height: math.unit(700, "megameters")
  51915. },
  51916. ]
  51917. ))
  51918. characterMakers.push(() => makeCharacter(
  51919. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51920. {
  51921. front: {
  51922. height: math.unit(6 + 2/12, "feet"),
  51923. weight: math.unit(500, "lb"),
  51924. preyCapacity: math.unit(4, "people"),
  51925. name: "Front",
  51926. image: {
  51927. source: "./media/characters/yepir/front.svg"
  51928. }
  51929. },
  51930. side: {
  51931. height: math.unit(6 + 2/12, "feet"),
  51932. weight: math.unit(500, "lb"),
  51933. preyCapacity: math.unit(4, "people"),
  51934. name: "Side",
  51935. image: {
  51936. source: "./media/characters/yepir/side.svg"
  51937. }
  51938. },
  51939. paw: {
  51940. height: math.unit(1.05, "feet"),
  51941. name: "Paw",
  51942. image: {
  51943. source: "./media/characters/yepir/paw.svg"
  51944. }
  51945. },
  51946. },
  51947. [
  51948. {
  51949. name: "Normal",
  51950. height: math.unit(6 + 2/12, "feet"),
  51951. default: true
  51952. },
  51953. ]
  51954. ))
  51955. characterMakers.push(() => makeCharacter(
  51956. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51957. {
  51958. front: {
  51959. height: math.unit(5 + 4/12, "feet"),
  51960. name: "Front",
  51961. image: {
  51962. source: "./media/characters/russec/front.svg",
  51963. extra: 1926/1626,
  51964. bottom: 72/1998
  51965. }
  51966. },
  51967. back: {
  51968. height: math.unit(5 + 4/12, "feet"),
  51969. name: "Back",
  51970. image: {
  51971. source: "./media/characters/russec/back.svg",
  51972. extra: 1910/1591,
  51973. bottom: 48/1958
  51974. }
  51975. },
  51976. },
  51977. [
  51978. {
  51979. name: "Small",
  51980. height: math.unit(5 + 4/12, "feet")
  51981. },
  51982. {
  51983. name: "Normal",
  51984. height: math.unit(72, "feet"),
  51985. default: true
  51986. },
  51987. ]
  51988. ))
  51989. characterMakers.push(() => makeCharacter(
  51990. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51991. {
  51992. side: {
  51993. height: math.unit(12, "feet"),
  51994. name: "Side",
  51995. image: {
  51996. source: "./media/characters/cianus/side.svg",
  51997. extra: 808/526,
  51998. bottom: 61/869
  51999. }
  52000. },
  52001. },
  52002. [
  52003. {
  52004. name: "Normal",
  52005. height: math.unit(12, "feet"),
  52006. default: true
  52007. },
  52008. ]
  52009. ))
  52010. characterMakers.push(() => makeCharacter(
  52011. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52012. {
  52013. front: {
  52014. height: math.unit(9 + 6/12, "feet"),
  52015. weight: math.unit(300, "lb"),
  52016. name: "Front",
  52017. image: {
  52018. source: "./media/characters/ahab/front.svg",
  52019. extra: 1897/1868,
  52020. bottom: 121/2018
  52021. }
  52022. },
  52023. frontNsfw: {
  52024. height: math.unit(9 + 6/12, "feet"),
  52025. weight: math.unit(300, "lb"),
  52026. name: "Front-nsfw",
  52027. image: {
  52028. source: "./media/characters/ahab/front-nsfw.svg",
  52029. extra: 1897/1868,
  52030. bottom: 121/2018
  52031. }
  52032. },
  52033. },
  52034. [
  52035. {
  52036. name: "Normal",
  52037. height: math.unit(9 + 6/12, "feet")
  52038. },
  52039. {
  52040. name: "Macro",
  52041. height: math.unit(657, "feet"),
  52042. default: true
  52043. },
  52044. ]
  52045. ))
  52046. characterMakers.push(() => makeCharacter(
  52047. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52048. {
  52049. front: {
  52050. height: math.unit(2.69, "meters"),
  52051. weight: math.unit(132, "kg"),
  52052. name: "Front",
  52053. image: {
  52054. source: "./media/characters/aarkus/front.svg",
  52055. extra: 1400/1231,
  52056. bottom: 34/1434
  52057. }
  52058. },
  52059. back: {
  52060. height: math.unit(2.69, "meters"),
  52061. weight: math.unit(132, "kg"),
  52062. name: "Back",
  52063. image: {
  52064. source: "./media/characters/aarkus/back.svg",
  52065. extra: 1381/1218,
  52066. bottom: 30/1411
  52067. }
  52068. },
  52069. frontNsfw: {
  52070. height: math.unit(2.69, "meters"),
  52071. weight: math.unit(132, "kg"),
  52072. name: "Front (NSFW)",
  52073. image: {
  52074. source: "./media/characters/aarkus/front-nsfw.svg",
  52075. extra: 1400/1231,
  52076. bottom: 34/1434
  52077. }
  52078. },
  52079. foot: {
  52080. height: math.unit(1.45, "feet"),
  52081. name: "Foot",
  52082. image: {
  52083. source: "./media/characters/aarkus/foot.svg"
  52084. }
  52085. },
  52086. head: {
  52087. height: math.unit(2.85, "feet"),
  52088. name: "Head",
  52089. image: {
  52090. source: "./media/characters/aarkus/head.svg"
  52091. }
  52092. },
  52093. headAlt: {
  52094. height: math.unit(3.07, "feet"),
  52095. name: "Head (Alt)",
  52096. image: {
  52097. source: "./media/characters/aarkus/head-alt.svg"
  52098. }
  52099. },
  52100. mouth: {
  52101. height: math.unit(1.25, "feet"),
  52102. name: "Mouth",
  52103. image: {
  52104. source: "./media/characters/aarkus/mouth.svg"
  52105. }
  52106. },
  52107. dick: {
  52108. height: math.unit(1.77, "feet"),
  52109. name: "Dick",
  52110. image: {
  52111. source: "./media/characters/aarkus/dick.svg"
  52112. }
  52113. },
  52114. },
  52115. [
  52116. {
  52117. name: "Normal",
  52118. height: math.unit(2.69, "meters"),
  52119. default: true
  52120. },
  52121. {
  52122. name: "Macro",
  52123. height: math.unit(269, "meters")
  52124. },
  52125. {
  52126. name: "Macro+",
  52127. height: math.unit(672.5, "meters")
  52128. },
  52129. {
  52130. name: "Megamacro",
  52131. height: math.unit(2.017, "km")
  52132. },
  52133. ]
  52134. ))
  52135. characterMakers.push(() => makeCharacter(
  52136. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52137. {
  52138. front: {
  52139. height: math.unit(23.47, "cm"),
  52140. weight: math.unit(600, "grams"),
  52141. name: "Front",
  52142. image: {
  52143. source: "./media/characters/diode/front.svg",
  52144. extra: 1778/1396,
  52145. bottom: 95/1873
  52146. }
  52147. },
  52148. side: {
  52149. height: math.unit(23.47, "cm"),
  52150. weight: math.unit(600, "grams"),
  52151. name: "Side",
  52152. image: {
  52153. source: "./media/characters/diode/side.svg",
  52154. extra: 1831/1404,
  52155. bottom: 86/1917
  52156. }
  52157. },
  52158. wings: {
  52159. height: math.unit(0.683, "feet"),
  52160. name: "Wings",
  52161. image: {
  52162. source: "./media/characters/diode/wings.svg"
  52163. }
  52164. },
  52165. },
  52166. [
  52167. {
  52168. name: "Normal",
  52169. height: math.unit(23.47, "cm"),
  52170. default: true
  52171. },
  52172. ]
  52173. ))
  52174. characterMakers.push(() => makeCharacter(
  52175. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52176. {
  52177. front: {
  52178. height: math.unit(6 + 3/12, "feet"),
  52179. weight: math.unit(250, "lb"),
  52180. name: "Front",
  52181. image: {
  52182. source: "./media/characters/reika/front.svg",
  52183. extra: 1120/1078,
  52184. bottom: 86/1206
  52185. }
  52186. },
  52187. },
  52188. [
  52189. {
  52190. name: "Normal",
  52191. height: math.unit(6 + 3/12, "feet"),
  52192. default: true
  52193. },
  52194. ]
  52195. ))
  52196. characterMakers.push(() => makeCharacter(
  52197. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52198. {
  52199. front: {
  52200. height: math.unit(16 + 8/12, "feet"),
  52201. weight: math.unit(9000, "lb"),
  52202. name: "Front",
  52203. image: {
  52204. source: "./media/characters/lokuto-takama/front.svg",
  52205. extra: 1774/1632,
  52206. bottom: 147/1921
  52207. },
  52208. extraAttributes: {
  52209. "bustWidth": {
  52210. name: "Bust Width",
  52211. power: 1,
  52212. type: "length",
  52213. base: math.unit(2.4, "meters")
  52214. },
  52215. "breastWeight": {
  52216. name: "Breast Weight",
  52217. power: 3,
  52218. type: "mass",
  52219. base: math.unit(1000, "kg")
  52220. },
  52221. }
  52222. },
  52223. },
  52224. [
  52225. {
  52226. name: "Normal",
  52227. height: math.unit(16 + 8/12, "feet"),
  52228. default: true
  52229. },
  52230. ]
  52231. ))
  52232. characterMakers.push(() => makeCharacter(
  52233. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52234. {
  52235. front: {
  52236. height: math.unit(10, "cm"),
  52237. weight: math.unit(850, "grams"),
  52238. name: "Front",
  52239. image: {
  52240. source: "./media/characters/owak-bone/front.svg",
  52241. extra: 1965/1801,
  52242. bottom: 31/1996
  52243. }
  52244. },
  52245. },
  52246. [
  52247. {
  52248. name: "Normal",
  52249. height: math.unit(10, "cm"),
  52250. default: true
  52251. },
  52252. ]
  52253. ))
  52254. characterMakers.push(() => makeCharacter(
  52255. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52256. {
  52257. front: {
  52258. height: math.unit(2 + 6/12, "feet"),
  52259. weight: math.unit(9, "lb"),
  52260. name: "Front",
  52261. image: {
  52262. source: "./media/characters/muffin/front.svg",
  52263. extra: 1220/1195,
  52264. bottom: 84/1304
  52265. }
  52266. },
  52267. },
  52268. [
  52269. {
  52270. name: "Normal",
  52271. height: math.unit(2 + 6/12, "feet"),
  52272. default: true
  52273. },
  52274. ]
  52275. ))
  52276. characterMakers.push(() => makeCharacter(
  52277. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52278. {
  52279. front: {
  52280. height: math.unit(7, "feet"),
  52281. name: "Front",
  52282. image: {
  52283. source: "./media/characters/chimera/front.svg",
  52284. extra: 1752/1614,
  52285. bottom: 68/1820
  52286. }
  52287. },
  52288. },
  52289. [
  52290. {
  52291. name: "Normal",
  52292. height: math.unit(7, "feet")
  52293. },
  52294. {
  52295. name: "Gigamacro",
  52296. height: math.unit(2.9, "gigameters"),
  52297. default: true
  52298. },
  52299. {
  52300. name: "Universal",
  52301. height: math.unit(1.56e26, "yottameters")
  52302. },
  52303. ]
  52304. ))
  52305. characterMakers.push(() => makeCharacter(
  52306. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52307. {
  52308. front: {
  52309. height: math.unit(3, "feet"),
  52310. weight: math.unit(20, "lb"),
  52311. name: "Front",
  52312. image: {
  52313. source: "./media/characters/kit-fennec-fox/front.svg",
  52314. extra: 1027/932,
  52315. bottom: 16/1043
  52316. }
  52317. },
  52318. back: {
  52319. height: math.unit(3, "feet"),
  52320. weight: math.unit(20, "lb"),
  52321. name: "Back",
  52322. image: {
  52323. source: "./media/characters/kit-fennec-fox/back.svg",
  52324. extra: 1027/932,
  52325. bottom: 16/1043
  52326. }
  52327. },
  52328. },
  52329. [
  52330. {
  52331. name: "Normal",
  52332. height: math.unit(3, "feet"),
  52333. default: true
  52334. },
  52335. ]
  52336. ))
  52337. characterMakers.push(() => makeCharacter(
  52338. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52339. {
  52340. front: {
  52341. height: math.unit(167, "cm"),
  52342. name: "Front",
  52343. image: {
  52344. source: "./media/characters/blue-otter/front.svg",
  52345. extra: 1951/1920,
  52346. bottom: 31/1982
  52347. }
  52348. },
  52349. },
  52350. [
  52351. {
  52352. name: "Otter-Sized",
  52353. height: math.unit(100, "cm")
  52354. },
  52355. {
  52356. name: "Normal",
  52357. height: math.unit(167, "cm"),
  52358. default: true
  52359. },
  52360. ]
  52361. ))
  52362. characterMakers.push(() => makeCharacter(
  52363. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52364. {
  52365. front: {
  52366. height: math.unit(4 + 4/12, "feet"),
  52367. name: "Front",
  52368. image: {
  52369. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52370. extra: 1072/1067,
  52371. bottom: 117/1189
  52372. }
  52373. },
  52374. back: {
  52375. height: math.unit(4 + 4/12, "feet"),
  52376. name: "Back",
  52377. image: {
  52378. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52379. extra: 1135/1129,
  52380. bottom: 57/1192
  52381. }
  52382. },
  52383. head: {
  52384. height: math.unit(1.77, "feet"),
  52385. name: "Head",
  52386. image: {
  52387. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52388. }
  52389. },
  52390. },
  52391. [
  52392. {
  52393. name: "Normal",
  52394. height: math.unit(4 + 4/12, "feet"),
  52395. default: true
  52396. },
  52397. ]
  52398. ))
  52399. characterMakers.push(() => makeCharacter(
  52400. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52401. {
  52402. front: {
  52403. height: math.unit(2, "inches"),
  52404. name: "Front",
  52405. image: {
  52406. source: "./media/characters/carley-hartford/front.svg",
  52407. extra: 1035/988,
  52408. bottom: 23/1058
  52409. }
  52410. },
  52411. back: {
  52412. height: math.unit(2, "inches"),
  52413. name: "Back",
  52414. image: {
  52415. source: "./media/characters/carley-hartford/back.svg",
  52416. extra: 1035/988,
  52417. bottom: 23/1058
  52418. }
  52419. },
  52420. dressed: {
  52421. height: math.unit(2, "inches"),
  52422. name: "Dressed",
  52423. image: {
  52424. source: "./media/characters/carley-hartford/dressed.svg",
  52425. extra: 651/620,
  52426. bottom: 0/651
  52427. }
  52428. },
  52429. },
  52430. [
  52431. {
  52432. name: "Micro",
  52433. height: math.unit(2, "inches"),
  52434. default: true
  52435. },
  52436. {
  52437. name: "Macro",
  52438. height: math.unit(6 + 3/12, "feet")
  52439. },
  52440. ]
  52441. ))
  52442. characterMakers.push(() => makeCharacter(
  52443. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52444. {
  52445. front: {
  52446. height: math.unit(2 + 3/12, "feet"),
  52447. weight: math.unit(15 + 7/16, "lb"),
  52448. name: "Front",
  52449. image: {
  52450. source: "./media/characters/duke/front.svg",
  52451. extra: 910/815,
  52452. bottom: 30/940
  52453. }
  52454. },
  52455. },
  52456. [
  52457. {
  52458. name: "Normal",
  52459. height: math.unit(2 + 3/12, "feet"),
  52460. default: true
  52461. },
  52462. ]
  52463. ))
  52464. characterMakers.push(() => makeCharacter(
  52465. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52466. {
  52467. front: {
  52468. height: math.unit(5 + 4/12, "feet"),
  52469. weight: math.unit(156, "lb"),
  52470. name: "Front",
  52471. image: {
  52472. source: "./media/characters/dein/front.svg",
  52473. extra: 855/815,
  52474. bottom: 48/903
  52475. }
  52476. },
  52477. side: {
  52478. height: math.unit(5 + 4/12, "feet"),
  52479. weight: math.unit(156, "lb"),
  52480. name: "side",
  52481. image: {
  52482. source: "./media/characters/dein/side.svg",
  52483. extra: 846/803,
  52484. bottom: 25/871
  52485. }
  52486. },
  52487. maw: {
  52488. height: math.unit(1.45, "feet"),
  52489. name: "Maw",
  52490. image: {
  52491. source: "./media/characters/dein/maw.svg"
  52492. }
  52493. },
  52494. },
  52495. [
  52496. {
  52497. name: "Ferret Sized",
  52498. height: math.unit(2 + 5/12, "feet")
  52499. },
  52500. {
  52501. name: "Normal",
  52502. height: math.unit(5 + 4/12, "feet"),
  52503. default: true
  52504. },
  52505. ]
  52506. ))
  52507. characterMakers.push(() => makeCharacter(
  52508. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52509. {
  52510. front: {
  52511. height: math.unit(84 + 8/12, "feet"),
  52512. weight: math.unit(942180, "lb"),
  52513. name: "Front",
  52514. image: {
  52515. source: "./media/characters/daurine-arima/front.svg",
  52516. extra: 1989/1782,
  52517. bottom: 37/2026
  52518. }
  52519. },
  52520. side: {
  52521. height: math.unit(84 + 8/12, "feet"),
  52522. weight: math.unit(942180, "lb"),
  52523. name: "Side",
  52524. image: {
  52525. source: "./media/characters/daurine-arima/side.svg",
  52526. extra: 1997/1790,
  52527. bottom: 21/2018
  52528. }
  52529. },
  52530. back: {
  52531. height: math.unit(84 + 8/12, "feet"),
  52532. weight: math.unit(942180, "lb"),
  52533. name: "Back",
  52534. image: {
  52535. source: "./media/characters/daurine-arima/back.svg",
  52536. extra: 1992/1800,
  52537. bottom: 12/2004
  52538. }
  52539. },
  52540. head: {
  52541. height: math.unit(15.5, "feet"),
  52542. name: "Head",
  52543. image: {
  52544. source: "./media/characters/daurine-arima/head.svg"
  52545. }
  52546. },
  52547. headAlt: {
  52548. height: math.unit(19.19, "feet"),
  52549. name: "Head (Alt)",
  52550. image: {
  52551. source: "./media/characters/daurine-arima/head-alt.svg"
  52552. }
  52553. },
  52554. },
  52555. [
  52556. {
  52557. name: "Minimum height",
  52558. height: math.unit(8 + 10/12, "feet")
  52559. },
  52560. {
  52561. name: "Comfort height",
  52562. height: math.unit(19 + 6 /12, "feet")
  52563. },
  52564. {
  52565. name: "\"Normal\" height",
  52566. height: math.unit(28 + 10/12, "feet")
  52567. },
  52568. {
  52569. name: "Base height",
  52570. height: math.unit(84 + 8/12, "feet"),
  52571. default: true
  52572. },
  52573. {
  52574. name: "Mini-macro",
  52575. height: math.unit(2360, "feet")
  52576. },
  52577. {
  52578. name: "Macro",
  52579. height: math.unit(10, "miles")
  52580. },
  52581. {
  52582. name: "Goddess",
  52583. height: math.unit(9.99e40, "yottameters")
  52584. },
  52585. ]
  52586. ))
  52587. characterMakers.push(() => makeCharacter(
  52588. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52589. {
  52590. front: {
  52591. height: math.unit(2.3, "meters"),
  52592. name: "Front",
  52593. image: {
  52594. source: "./media/characters/cilenomon/front.svg",
  52595. extra: 1963/1778,
  52596. bottom: 54/2017
  52597. }
  52598. },
  52599. },
  52600. [
  52601. {
  52602. name: "Normal",
  52603. height: math.unit(2.3, "meters"),
  52604. default: true
  52605. },
  52606. {
  52607. name: "Big",
  52608. height: math.unit(5, "meters")
  52609. },
  52610. {
  52611. name: "Macro",
  52612. height: math.unit(30, "meters")
  52613. },
  52614. {
  52615. name: "True",
  52616. height: math.unit(1, "universe")
  52617. },
  52618. ]
  52619. ))
  52620. characterMakers.push(() => makeCharacter(
  52621. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52622. {
  52623. front: {
  52624. height: math.unit(5, "feet"),
  52625. name: "Front",
  52626. image: {
  52627. source: "./media/characters/sen-mink/front.svg",
  52628. extra: 1727/1675,
  52629. bottom: 35/1762
  52630. }
  52631. },
  52632. },
  52633. [
  52634. {
  52635. name: "Normal",
  52636. height: math.unit(5, "feet"),
  52637. default: true
  52638. },
  52639. ]
  52640. ))
  52641. characterMakers.push(() => makeCharacter(
  52642. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52643. {
  52644. front: {
  52645. height: math.unit(5.42999, "feet"),
  52646. weight: math.unit(100, "lb"),
  52647. name: "Front",
  52648. image: {
  52649. source: "./media/characters/ophois/front.svg",
  52650. extra: 1429/1286,
  52651. bottom: 60/1489
  52652. }
  52653. },
  52654. },
  52655. [
  52656. {
  52657. name: "Normal",
  52658. height: math.unit(5.42999, "feet"),
  52659. default: true
  52660. },
  52661. ]
  52662. ))
  52663. characterMakers.push(() => makeCharacter(
  52664. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52665. {
  52666. front: {
  52667. height: math.unit(2, "meters"),
  52668. name: "Front",
  52669. image: {
  52670. source: "./media/characters/riley/front.svg",
  52671. extra: 1779/1754,
  52672. bottom: 139/1918
  52673. }
  52674. },
  52675. },
  52676. [
  52677. {
  52678. name: "Normal",
  52679. height: math.unit(2, "meters"),
  52680. default: true
  52681. },
  52682. ]
  52683. ))
  52684. characterMakers.push(() => makeCharacter(
  52685. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52686. {
  52687. front: {
  52688. height: math.unit(6 + 2/12, "feet"),
  52689. weight: math.unit(195, "lb"),
  52690. preyCapacity: math.unit(6, "people"),
  52691. name: "Front",
  52692. image: {
  52693. source: "./media/characters/shuken-flash/front.svg",
  52694. extra: 1905/1739,
  52695. bottom: 65/1970
  52696. }
  52697. },
  52698. back: {
  52699. height: math.unit(6 + 2/12, "feet"),
  52700. weight: math.unit(195, "lb"),
  52701. preyCapacity: math.unit(6, "people"),
  52702. name: "Back",
  52703. image: {
  52704. source: "./media/characters/shuken-flash/back.svg",
  52705. extra: 1912/1751,
  52706. bottom: 13/1925
  52707. }
  52708. },
  52709. },
  52710. [
  52711. {
  52712. name: "Normal",
  52713. height: math.unit(6 + 2/12, "feet"),
  52714. default: true
  52715. },
  52716. ]
  52717. ))
  52718. characterMakers.push(() => makeCharacter(
  52719. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52720. {
  52721. front: {
  52722. height: math.unit(5 + 9/12, "feet"),
  52723. weight: math.unit(150, "lb"),
  52724. name: "Front",
  52725. image: {
  52726. source: "./media/characters/plat/front.svg",
  52727. extra: 1816/1703,
  52728. bottom: 43/1859
  52729. }
  52730. },
  52731. side: {
  52732. height: math.unit(5 + 9/12, "feet"),
  52733. weight: math.unit(300, "lb"),
  52734. name: "Side",
  52735. image: {
  52736. source: "./media/characters/plat/side.svg",
  52737. extra: 1824/1699,
  52738. bottom: 18/1842
  52739. }
  52740. },
  52741. },
  52742. [
  52743. {
  52744. name: "Normal",
  52745. height: math.unit(5 + 9/12, "feet"),
  52746. default: true
  52747. },
  52748. ]
  52749. ))
  52750. characterMakers.push(() => makeCharacter(
  52751. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52752. {
  52753. front: {
  52754. height: math.unit(9, "feet"),
  52755. weight: math.unit(1800, "lb"),
  52756. name: "Front",
  52757. image: {
  52758. source: "./media/characters/elaine/front.svg",
  52759. extra: 1833/1354,
  52760. bottom: 25/1858
  52761. }
  52762. },
  52763. back: {
  52764. height: math.unit(8.8, "feet"),
  52765. weight: math.unit(1800, "lb"),
  52766. name: "Back",
  52767. image: {
  52768. source: "./media/characters/elaine/back.svg",
  52769. extra: 1641/1233,
  52770. bottom: 53/1694
  52771. }
  52772. },
  52773. },
  52774. [
  52775. {
  52776. name: "Normal",
  52777. height: math.unit(9, "feet"),
  52778. default: true
  52779. },
  52780. ]
  52781. ))
  52782. characterMakers.push(() => makeCharacter(
  52783. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52784. {
  52785. front: {
  52786. height: math.unit(17 + 9/12, "feet"),
  52787. weight: math.unit(8000, "lb"),
  52788. name: "Front",
  52789. image: {
  52790. source: "./media/characters/vera-raven/front.svg",
  52791. extra: 1457/1412,
  52792. bottom: 121/1578
  52793. }
  52794. },
  52795. side: {
  52796. height: math.unit(17 + 9/12, "feet"),
  52797. weight: math.unit(8000, "lb"),
  52798. name: "Side",
  52799. image: {
  52800. source: "./media/characters/vera-raven/side.svg",
  52801. extra: 1510/1464,
  52802. bottom: 54/1564
  52803. }
  52804. },
  52805. },
  52806. [
  52807. {
  52808. name: "Normal",
  52809. height: math.unit(17 + 9/12, "feet"),
  52810. default: true
  52811. },
  52812. ]
  52813. ))
  52814. characterMakers.push(() => makeCharacter(
  52815. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52816. {
  52817. dressed: {
  52818. height: math.unit(6 + 9/12, "feet"),
  52819. name: "Dressed",
  52820. image: {
  52821. source: "./media/characters/nakisha/dressed.svg",
  52822. extra: 1909/1757,
  52823. bottom: 48/1957
  52824. }
  52825. },
  52826. nude: {
  52827. height: math.unit(6 + 9/12, "feet"),
  52828. name: "Nude",
  52829. image: {
  52830. source: "./media/characters/nakisha/nude.svg",
  52831. extra: 1917/1765,
  52832. bottom: 34/1951
  52833. }
  52834. },
  52835. },
  52836. [
  52837. {
  52838. name: "Normal",
  52839. height: math.unit(6 + 9/12, "feet"),
  52840. default: true
  52841. },
  52842. ]
  52843. ))
  52844. characterMakers.push(() => makeCharacter(
  52845. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52846. {
  52847. front: {
  52848. height: math.unit(87, "meters"),
  52849. name: "Front",
  52850. image: {
  52851. source: "./media/characters/serafin/front.svg",
  52852. extra: 1919/1776,
  52853. bottom: 65/1984
  52854. }
  52855. },
  52856. },
  52857. [
  52858. {
  52859. name: "Normal",
  52860. height: math.unit(87, "meters"),
  52861. default: true
  52862. },
  52863. ]
  52864. ))
  52865. characterMakers.push(() => makeCharacter(
  52866. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52867. {
  52868. front: {
  52869. height: math.unit(6, "feet"),
  52870. weight: math.unit(200, "lb"),
  52871. name: "Front",
  52872. image: {
  52873. source: "./media/characters/poptart/front.svg",
  52874. extra: 615/583,
  52875. bottom: 23/638
  52876. }
  52877. },
  52878. back: {
  52879. height: math.unit(6, "feet"),
  52880. weight: math.unit(200, "lb"),
  52881. name: "Back",
  52882. image: {
  52883. source: "./media/characters/poptart/back.svg",
  52884. extra: 617/584,
  52885. bottom: 22/639
  52886. }
  52887. },
  52888. frontNsfw: {
  52889. height: math.unit(6, "feet"),
  52890. weight: math.unit(200, "lb"),
  52891. name: "Front (NSFW)",
  52892. image: {
  52893. source: "./media/characters/poptart/front-nsfw.svg",
  52894. extra: 615/583,
  52895. bottom: 23/638
  52896. }
  52897. },
  52898. backNsfw: {
  52899. height: math.unit(6, "feet"),
  52900. weight: math.unit(200, "lb"),
  52901. name: "Back (NSFW)",
  52902. image: {
  52903. source: "./media/characters/poptart/back-nsfw.svg",
  52904. extra: 617/584,
  52905. bottom: 22/639
  52906. }
  52907. },
  52908. hand: {
  52909. height: math.unit(1.14, "feet"),
  52910. name: "Hand",
  52911. image: {
  52912. source: "./media/characters/poptart/hand.svg"
  52913. }
  52914. },
  52915. foot: {
  52916. height: math.unit(1.5, "feet"),
  52917. name: "Foot",
  52918. image: {
  52919. source: "./media/characters/poptart/foot.svg"
  52920. }
  52921. },
  52922. },
  52923. [
  52924. {
  52925. name: "Normal",
  52926. height: math.unit(6, "feet"),
  52927. default: true
  52928. },
  52929. {
  52930. name: "Grande",
  52931. height: math.unit(350, "feet")
  52932. },
  52933. {
  52934. name: "Massif",
  52935. height: math.unit(967, "feet")
  52936. },
  52937. ]
  52938. ))
  52939. characterMakers.push(() => makeCharacter(
  52940. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  52941. {
  52942. hyenaSide: {
  52943. height: math.unit(120, "cm"),
  52944. weight: math.unit(120, "lb"),
  52945. name: "Side",
  52946. image: {
  52947. source: "./media/characters/trance/hyena-side.svg",
  52948. extra: 998/904,
  52949. bottom: 76/1074
  52950. }
  52951. },
  52952. },
  52953. [
  52954. {
  52955. name: "Normal",
  52956. height: math.unit(120, "cm"),
  52957. default: true
  52958. },
  52959. {
  52960. name: "Dire",
  52961. height: math.unit(230, "cm")
  52962. },
  52963. {
  52964. name: "Macro",
  52965. height: math.unit(37, "feet")
  52966. },
  52967. ]
  52968. ))
  52969. characterMakers.push(() => makeCharacter(
  52970. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  52971. {
  52972. front: {
  52973. height: math.unit(6 + 3/12, "feet"),
  52974. name: "Front",
  52975. image: {
  52976. source: "./media/characters/michael-berretta/front.svg",
  52977. extra: 515/494,
  52978. bottom: 20/535
  52979. }
  52980. },
  52981. back: {
  52982. height: math.unit(6 + 3/12, "feet"),
  52983. name: "Back",
  52984. image: {
  52985. source: "./media/characters/michael-berretta/back.svg",
  52986. extra: 520/497,
  52987. bottom: 21/541
  52988. }
  52989. },
  52990. frontNsfw: {
  52991. height: math.unit(6 + 3/12, "feet"),
  52992. name: "Front (NSFW)",
  52993. image: {
  52994. source: "./media/characters/michael-berretta/front-nsfw.svg",
  52995. extra: 515/494,
  52996. bottom: 20/535
  52997. }
  52998. },
  52999. dick: {
  53000. height: math.unit(1, "feet"),
  53001. name: "Dick",
  53002. image: {
  53003. source: "./media/characters/michael-berretta/dick.svg"
  53004. }
  53005. },
  53006. },
  53007. [
  53008. {
  53009. name: "Normal",
  53010. height: math.unit(6 + 3/12, "feet"),
  53011. default: true
  53012. },
  53013. {
  53014. name: "Big",
  53015. height: math.unit(12, "feet")
  53016. },
  53017. {
  53018. name: "Macro",
  53019. height: math.unit(187.5, "feet")
  53020. },
  53021. ]
  53022. ))
  53023. characterMakers.push(() => makeCharacter(
  53024. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53025. {
  53026. front: {
  53027. height: math.unit(9 + 9/12, "feet"),
  53028. weight: math.unit(1244, "lb"),
  53029. name: "Front",
  53030. image: {
  53031. source: "./media/characters/stella-edgecomb/front.svg",
  53032. extra: 1835/1706,
  53033. bottom: 49/1884
  53034. }
  53035. },
  53036. pen: {
  53037. height: math.unit(0.95, "feet"),
  53038. name: "Pen",
  53039. image: {
  53040. source: "./media/characters/stella-edgecomb/pen.svg"
  53041. }
  53042. },
  53043. },
  53044. [
  53045. {
  53046. name: "Cozy Bear",
  53047. height: math.unit(0.5, "inches")
  53048. },
  53049. {
  53050. name: "Normal",
  53051. height: math.unit(9 + 9/12, "feet"),
  53052. default: true
  53053. },
  53054. {
  53055. name: "Giga Bear",
  53056. height: math.unit(1, "mile")
  53057. },
  53058. {
  53059. name: "Great Bear",
  53060. height: math.unit(53, "miles")
  53061. },
  53062. {
  53063. name: "Goddess Bear",
  53064. height: math.unit(40000, "miles")
  53065. },
  53066. {
  53067. name: "Sun Bear",
  53068. height: math.unit(900000, "miles")
  53069. },
  53070. ]
  53071. ))
  53072. characterMakers.push(() => makeCharacter(
  53073. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53074. {
  53075. anthroFront: {
  53076. height: math.unit(556, "cm"),
  53077. weight: math.unit(2650, "kg"),
  53078. preyCapacity: math.unit(3, "people"),
  53079. name: "Front",
  53080. image: {
  53081. source: "./media/characters/ash´iika/front.svg",
  53082. extra: 710/673,
  53083. bottom: 15/725
  53084. },
  53085. form: "anthro",
  53086. default: true
  53087. },
  53088. anthroSide: {
  53089. height: math.unit(556, "cm"),
  53090. weight: math.unit(2650, "kg"),
  53091. preyCapacity: math.unit(3, "people"),
  53092. name: "Side",
  53093. image: {
  53094. source: "./media/characters/ash´iika/side.svg",
  53095. extra: 696/676,
  53096. bottom: 13/709
  53097. },
  53098. form: "anthro"
  53099. },
  53100. anthroDressed: {
  53101. height: math.unit(556, "cm"),
  53102. weight: math.unit(2650, "kg"),
  53103. preyCapacity: math.unit(3, "people"),
  53104. name: "Dressed",
  53105. image: {
  53106. source: "./media/characters/ash´iika/dressed.svg",
  53107. extra: 710/673,
  53108. bottom: 15/725
  53109. },
  53110. form: "anthro"
  53111. },
  53112. anthroHead: {
  53113. height: math.unit(3.5, "feet"),
  53114. name: "Head",
  53115. image: {
  53116. source: "./media/characters/ash´iika/head.svg",
  53117. extra: 348/291,
  53118. bottom: 45/393
  53119. },
  53120. form: "anthro"
  53121. },
  53122. feralSide: {
  53123. height: math.unit(870, "cm"),
  53124. weight: math.unit(17500, "kg"),
  53125. preyCapacity: math.unit(15, "people"),
  53126. name: "Side",
  53127. image: {
  53128. source: "./media/characters/ash´iika/feral.svg",
  53129. extra: 595/199,
  53130. bottom: 7/602
  53131. },
  53132. form: "feral",
  53133. default: true,
  53134. },
  53135. },
  53136. [
  53137. {
  53138. name: "Normal",
  53139. height: math.unit(556, "cm"),
  53140. default: true,
  53141. form: "anthro"
  53142. },
  53143. {
  53144. name: "Macro",
  53145. height: math.unit(88, "meters"),
  53146. form: "anthro"
  53147. },
  53148. {
  53149. name: "Normal",
  53150. height: math.unit(870, "cm"),
  53151. default: true,
  53152. form: "feral"
  53153. },
  53154. {
  53155. name: "Large",
  53156. height: math.unit(25, "meters"),
  53157. form: "feral"
  53158. },
  53159. ],
  53160. {
  53161. "anthro": {
  53162. name: "Anthro",
  53163. default: true
  53164. },
  53165. "feral": {
  53166. name: "Feral",
  53167. },
  53168. }
  53169. ))
  53170. characterMakers.push(() => makeCharacter(
  53171. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53172. {
  53173. front: {
  53174. height: math.unit(10, "feet"),
  53175. weight: math.unit(800, "lb"),
  53176. name: "Front",
  53177. image: {
  53178. source: "./media/characters/yen/front.svg",
  53179. extra: 443/411,
  53180. bottom: 6/449
  53181. }
  53182. },
  53183. sleeping: {
  53184. height: math.unit(10, "feet"),
  53185. weight: math.unit(800, "lb"),
  53186. name: "Sleeping",
  53187. image: {
  53188. source: "./media/characters/yen/sleeping.svg",
  53189. extra: 470/422,
  53190. bottom: 0/470
  53191. }
  53192. },
  53193. head: {
  53194. height: math.unit(2.2, "feet"),
  53195. name: "Head",
  53196. image: {
  53197. source: "./media/characters/yen/head.svg"
  53198. }
  53199. },
  53200. headAlt: {
  53201. height: math.unit(2.1, "feet"),
  53202. name: "Head (Alt)",
  53203. image: {
  53204. source: "./media/characters/yen/head-alt.svg"
  53205. }
  53206. },
  53207. },
  53208. [
  53209. {
  53210. name: "Normal",
  53211. height: math.unit(10, "feet"),
  53212. default: true
  53213. },
  53214. ]
  53215. ))
  53216. characterMakers.push(() => makeCharacter(
  53217. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53218. {
  53219. front: {
  53220. height: math.unit(12, "feet"),
  53221. name: "Front",
  53222. image: {
  53223. source: "./media/characters/citra/front.svg",
  53224. extra: 1950/1710,
  53225. bottom: 47/1997
  53226. }
  53227. },
  53228. },
  53229. [
  53230. {
  53231. name: "Normal",
  53232. height: math.unit(12, "feet"),
  53233. default: true
  53234. },
  53235. ]
  53236. ))
  53237. characterMakers.push(() => makeCharacter(
  53238. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53239. {
  53240. side: {
  53241. height: math.unit(7 + 10/12, "feet"),
  53242. name: "Side",
  53243. image: {
  53244. source: "./media/characters/sholstim/side.svg",
  53245. extra: 786/682,
  53246. bottom: 40/826
  53247. }
  53248. },
  53249. },
  53250. [
  53251. {
  53252. name: "Normal",
  53253. height: math.unit(7 + 10/12, "feet"),
  53254. default: true
  53255. },
  53256. ]
  53257. ))
  53258. characterMakers.push(() => makeCharacter(
  53259. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53260. {
  53261. front: {
  53262. height: math.unit(3.10, "meters"),
  53263. name: "Front",
  53264. image: {
  53265. source: "./media/characters/aggyn/front.svg",
  53266. extra: 1188/963,
  53267. bottom: 24/1212
  53268. }
  53269. },
  53270. },
  53271. [
  53272. {
  53273. name: "Normal",
  53274. height: math.unit(3.10, "meters"),
  53275. default: true
  53276. },
  53277. ]
  53278. ))
  53279. characterMakers.push(() => makeCharacter(
  53280. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53281. {
  53282. front: {
  53283. height: math.unit(7 + 5/12, "feet"),
  53284. weight: math.unit(687, "lb"),
  53285. name: "Front",
  53286. image: {
  53287. source: "./media/characters/alsandair-hergenroether/front.svg",
  53288. extra: 1251/1186,
  53289. bottom: 75/1326
  53290. }
  53291. },
  53292. back: {
  53293. height: math.unit(7 + 5/12, "feet"),
  53294. weight: math.unit(687, "lb"),
  53295. name: "Back",
  53296. image: {
  53297. source: "./media/characters/alsandair-hergenroether/back.svg",
  53298. extra: 1290/1229,
  53299. bottom: 17/1307
  53300. }
  53301. },
  53302. },
  53303. [
  53304. {
  53305. name: "Max Compression",
  53306. height: math.unit(7 + 5/12, "feet"),
  53307. default: true
  53308. },
  53309. {
  53310. name: "\"Normal\"",
  53311. height: math.unit(2, "universes")
  53312. },
  53313. ]
  53314. ))
  53315. characterMakers.push(() => makeCharacter(
  53316. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53317. {
  53318. front: {
  53319. height: math.unit(4 + 1/12, "feet"),
  53320. weight: math.unit(92, "lb"),
  53321. name: "Front",
  53322. image: {
  53323. source: "./media/characters/ie/front.svg",
  53324. extra: 1585/1352,
  53325. bottom: 91/1676
  53326. }
  53327. },
  53328. },
  53329. [
  53330. {
  53331. name: "Normal",
  53332. height: math.unit(4 + 1/12, "feet"),
  53333. default: true
  53334. },
  53335. ]
  53336. ))
  53337. characterMakers.push(() => makeCharacter(
  53338. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53339. {
  53340. anthro: {
  53341. height: math.unit(6, "feet"),
  53342. weight: math.unit(150, "lb"),
  53343. name: "Front",
  53344. image: {
  53345. source: "./media/characters/willow/anthro.svg",
  53346. extra: 1073/986,
  53347. bottom: 34/1107
  53348. },
  53349. form: "anthro",
  53350. default: true
  53351. },
  53352. taur: {
  53353. height: math.unit(6, "feet"),
  53354. weight: math.unit(150, "lb"),
  53355. name: "Side",
  53356. image: {
  53357. source: "./media/characters/willow/taur.svg",
  53358. extra: 647/512,
  53359. bottom: 136/783
  53360. },
  53361. form: "taur",
  53362. default: true
  53363. },
  53364. },
  53365. [
  53366. {
  53367. name: "Humanoid",
  53368. height: math.unit(2.7, "meters"),
  53369. form: "anthro"
  53370. },
  53371. {
  53372. name: "Normal",
  53373. height: math.unit(9, "meters"),
  53374. form: "anthro",
  53375. default: true
  53376. },
  53377. {
  53378. name: "Humanoid",
  53379. height: math.unit(2.1, "meters"),
  53380. form: "taur"
  53381. },
  53382. {
  53383. name: "Normal",
  53384. height: math.unit(7, "meters"),
  53385. form: "taur",
  53386. default: true
  53387. },
  53388. ],
  53389. {
  53390. "anthro": {
  53391. name: "Anthro",
  53392. default: true
  53393. },
  53394. "taur": {
  53395. name: "Taur",
  53396. },
  53397. }
  53398. ))
  53399. characterMakers.push(() => makeCharacter(
  53400. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53401. {
  53402. front: {
  53403. height: math.unit(2 + 5/12, "feet"),
  53404. name: "Front",
  53405. image: {
  53406. source: "./media/characters/kyan/front.svg",
  53407. extra: 460/334,
  53408. bottom: 23/483
  53409. },
  53410. extraAttributes: {
  53411. "toeLength": {
  53412. name: "Toe Length",
  53413. power: 1,
  53414. type: "length",
  53415. base: math.unit(7, "cm")
  53416. },
  53417. "toeclawLength": {
  53418. name: "Toeclaw Length",
  53419. power: 1,
  53420. type: "length",
  53421. base: math.unit(4.7, "cm")
  53422. },
  53423. "earHeight": {
  53424. name: "Ear Height",
  53425. power: 1,
  53426. type: "length",
  53427. base: math.unit(14.1, "cm")
  53428. },
  53429. }
  53430. },
  53431. paws: {
  53432. height: math.unit(0.45, "feet"),
  53433. name: "Paws",
  53434. image: {
  53435. source: "./media/characters/kyan/paws.svg",
  53436. extra: 581/581,
  53437. bottom: 114/695
  53438. }
  53439. },
  53440. },
  53441. [
  53442. {
  53443. name: "Normal",
  53444. height: math.unit(2 + 5/12, "feet"),
  53445. default: true
  53446. },
  53447. ]
  53448. ))
  53449. characterMakers.push(() => makeCharacter(
  53450. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53451. {
  53452. front: {
  53453. height: math.unit(2 + 2/3, "feet"),
  53454. name: "Front",
  53455. image: {
  53456. source: "./media/characters/xazzon/front.svg",
  53457. extra: 1109/984,
  53458. bottom: 42/1151
  53459. }
  53460. },
  53461. back: {
  53462. height: math.unit(2 + 2/3, "feet"),
  53463. name: "Back",
  53464. image: {
  53465. source: "./media/characters/xazzon/back.svg",
  53466. extra: 1095/971,
  53467. bottom: 23/1118
  53468. }
  53469. },
  53470. },
  53471. [
  53472. {
  53473. name: "Normal",
  53474. height: math.unit(2 + 2/3, "feet"),
  53475. default: true
  53476. },
  53477. ]
  53478. ))
  53479. characterMakers.push(() => makeCharacter(
  53480. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53481. {
  53482. dressed: {
  53483. height: math.unit(5 + 7/12, "feet"),
  53484. weight: math.unit(173, "lb"),
  53485. name: "Dressed",
  53486. image: {
  53487. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53488. extra: 3262/2862,
  53489. bottom: 188/3450
  53490. }
  53491. },
  53492. undressed: {
  53493. height: math.unit(5 + 7/12, "feet"),
  53494. weight: math.unit(173, "lb"),
  53495. name: "Undressed",
  53496. image: {
  53497. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53498. extra: 3262/2862,
  53499. bottom: 188/3450
  53500. }
  53501. },
  53502. },
  53503. [
  53504. {
  53505. name: "The void",
  53506. height: math.unit(7.29193e-34, "angstroms")
  53507. },
  53508. {
  53509. name: "Uh-Oh.",
  53510. height: math.unit(5.734e-7, "angstroms")
  53511. },
  53512. {
  53513. name: "Pico",
  53514. height: math.unit(0.876, "angstroms")
  53515. },
  53516. {
  53517. name: "Nano",
  53518. height: math.unit(0.000134200, "mm")
  53519. },
  53520. {
  53521. name: "Micro",
  53522. height: math.unit(0.0673020, "mm")
  53523. },
  53524. {
  53525. name: "Tiny",
  53526. height: math.unit(2.4, "mm")
  53527. },
  53528. {
  53529. name: "Actual Normal",
  53530. height: math.unit(3, "inches"),
  53531. default: true
  53532. },
  53533. {
  53534. name: "Normal",
  53535. height: math.unit(5 + 8/12, "feet")
  53536. },
  53537. {
  53538. name: "Giant",
  53539. height: math.unit(12, "feet")
  53540. },
  53541. {
  53542. name: "City Ruler",
  53543. height: math.unit(270, "meters")
  53544. },
  53545. {
  53546. name: "Giga",
  53547. height: math.unit(1117.6, "km")
  53548. },
  53549. {
  53550. name: "All-Powerful Queen",
  53551. height: math.unit(70.8, "gigameters")
  53552. },
  53553. {
  53554. name: "'Goddess'",
  53555. height: math.unit(600, "yottameters")
  53556. },
  53557. {
  53558. name: "Biggest!",
  53559. height: math.unit(4.23e5, "yottameters")
  53560. },
  53561. ]
  53562. ))
  53563. characterMakers.push(() => makeCharacter(
  53564. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53565. {
  53566. front: {
  53567. height: math.unit(8, "feet"),
  53568. weight: math.unit(300, "lb"),
  53569. name: "Front",
  53570. image: {
  53571. source: "./media/characters/khyla-shadowsong/front.svg",
  53572. extra: 861/798,
  53573. bottom: 32/893
  53574. }
  53575. },
  53576. side: {
  53577. height: math.unit(8, "feet"),
  53578. weight: math.unit(300, "lb"),
  53579. name: "Side",
  53580. image: {
  53581. source: "./media/characters/khyla-shadowsong/side.svg",
  53582. extra: 790/750,
  53583. bottom: 87/877
  53584. }
  53585. },
  53586. back: {
  53587. height: math.unit(8, "feet"),
  53588. weight: math.unit(300, "lb"),
  53589. name: "Back",
  53590. image: {
  53591. source: "./media/characters/khyla-shadowsong/back.svg",
  53592. extra: 855/808,
  53593. bottom: 14/869
  53594. }
  53595. },
  53596. head: {
  53597. height: math.unit(2.7, "feet"),
  53598. name: "Head",
  53599. image: {
  53600. source: "./media/characters/khyla-shadowsong/head.svg"
  53601. }
  53602. },
  53603. },
  53604. [
  53605. {
  53606. name: "Micro",
  53607. height: math.unit(6, "inches")
  53608. },
  53609. {
  53610. name: "Normal",
  53611. height: math.unit(8, "feet"),
  53612. default: true
  53613. },
  53614. ]
  53615. ))
  53616. characterMakers.push(() => makeCharacter(
  53617. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53618. {
  53619. hyperFront: {
  53620. height: math.unit(9 + 4/12, "feet"),
  53621. weight: math.unit(2000, "lb"),
  53622. name: "Front",
  53623. image: {
  53624. source: "./media/characters/tiden/hyper-front.svg",
  53625. extra: 400/382,
  53626. bottom: 6/406
  53627. },
  53628. form: "hyper",
  53629. },
  53630. regularFront: {
  53631. height: math.unit(7 + 10/12, "feet"),
  53632. weight: math.unit(470, "lb"),
  53633. name: "Front",
  53634. image: {
  53635. source: "./media/characters/tiden/regular-front.svg",
  53636. extra: 468/442,
  53637. bottom: 6/474
  53638. },
  53639. form: "regular",
  53640. },
  53641. },
  53642. [
  53643. {
  53644. name: "Normal",
  53645. height: math.unit(9 + 4/12, "feet"),
  53646. default: true,
  53647. form: "hyper"
  53648. },
  53649. {
  53650. name: "Normal",
  53651. height: math.unit(7 + 10/12, "feet"),
  53652. default: true,
  53653. form: "regular"
  53654. },
  53655. ],
  53656. {
  53657. "hyper": {
  53658. name: "Hyper",
  53659. default: true
  53660. },
  53661. "regular": {
  53662. name: "Regular",
  53663. },
  53664. }
  53665. ))
  53666. characterMakers.push(() => makeCharacter(
  53667. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53668. {
  53669. side: {
  53670. height: math.unit(6, "feet"),
  53671. weight: math.unit(150, "lb"),
  53672. name: "Side",
  53673. image: {
  53674. source: "./media/characters/jason-crowe/side.svg",
  53675. extra: 1771/766,
  53676. bottom: 219/1990
  53677. }
  53678. },
  53679. },
  53680. [
  53681. {
  53682. name: "Pocket Gryphon",
  53683. height: math.unit(6, "cm")
  53684. },
  53685. {
  53686. name: "Raven",
  53687. height: math.unit(60, "cm")
  53688. },
  53689. {
  53690. name: "Normal",
  53691. height: math.unit(1, "meter"),
  53692. default: true
  53693. },
  53694. ]
  53695. ))
  53696. characterMakers.push(() => makeCharacter(
  53697. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  53698. {
  53699. front: {
  53700. height: math.unit(9 + 6/12, "feet"),
  53701. weight: math.unit(1100, "lb"),
  53702. name: "Front",
  53703. image: {
  53704. source: "./media/characters/django/front.svg",
  53705. extra: 1231/1136,
  53706. bottom: 34/1265
  53707. }
  53708. },
  53709. side: {
  53710. height: math.unit(9 + 6/12, "feet"),
  53711. weight: math.unit(1100, "lb"),
  53712. name: "Side",
  53713. image: {
  53714. source: "./media/characters/django/side.svg",
  53715. extra: 1267/1174,
  53716. bottom: 9/1276
  53717. }
  53718. },
  53719. },
  53720. [
  53721. {
  53722. name: "Normal",
  53723. height: math.unit(9 + 6/12, "feet"),
  53724. default: true
  53725. },
  53726. {
  53727. name: "Macro 1",
  53728. height: math.unit(50, "feet")
  53729. },
  53730. {
  53731. name: "Macro 2",
  53732. height: math.unit(500, "feet")
  53733. },
  53734. {
  53735. name: "Mega Macro",
  53736. height: math.unit(5300, "feet")
  53737. },
  53738. ]
  53739. ))
  53740. characterMakers.push(() => makeCharacter(
  53741. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  53742. {
  53743. frontSfw: {
  53744. height: math.unit(120, "cm"),
  53745. weight: math.unit(15, "kg"),
  53746. name: "Front (SFW)",
  53747. image: {
  53748. source: "./media/characters/eri/front-sfw.svg",
  53749. extra: 1014/939,
  53750. bottom: 37/1051
  53751. },
  53752. form: "moth",
  53753. },
  53754. frontNsfw: {
  53755. height: math.unit(120, "cm"),
  53756. weight: math.unit(15, "kg"),
  53757. name: "Front (NSFW)",
  53758. image: {
  53759. source: "./media/characters/eri/front-nsfw.svg",
  53760. extra: 1014/939,
  53761. bottom: 37/1051
  53762. },
  53763. form: "moth",
  53764. default: true
  53765. },
  53766. egg: {
  53767. height: math.unit(10, "cm"),
  53768. name: "Egg",
  53769. image: {
  53770. source: "./media/characters/eri/egg.svg"
  53771. },
  53772. form: "egg",
  53773. default: true
  53774. },
  53775. },
  53776. [
  53777. {
  53778. name: "Normal",
  53779. height: math.unit(120, "cm"),
  53780. default: true,
  53781. form: "moth"
  53782. },
  53783. {
  53784. name: "Normal",
  53785. height: math.unit(10, "cm"),
  53786. default: true,
  53787. form: "egg"
  53788. },
  53789. ],
  53790. {
  53791. "moth": {
  53792. name: "Moth",
  53793. default: true
  53794. },
  53795. "egg": {
  53796. name: "Egg",
  53797. },
  53798. }
  53799. ))
  53800. //characters
  53801. function makeCharacters() {
  53802. const results = [];
  53803. characterMakers.forEach(character => {
  53804. results.push(character());
  53805. });
  53806. return results;
  53807. }