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

55428 строки
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. "coelacanth": {
  2087. name: "Coelacanth",
  2088. parents: ["fish"]
  2089. },
  2090. }
  2091. //species
  2092. function getSpeciesInfo(speciesList) {
  2093. let result = new Set();
  2094. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2095. result.add(entry)
  2096. });
  2097. return Array.from(result);
  2098. };
  2099. function getSpeciesInfoHelper(species) {
  2100. if (!speciesData[species]) {
  2101. console.warn(species + " doesn't exist");
  2102. return [];
  2103. }
  2104. if (speciesData[species].parents) {
  2105. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2106. } else {
  2107. return [species];
  2108. }
  2109. }
  2110. characterMakers.push(() => makeCharacter(
  2111. {
  2112. name: "Fen",
  2113. species: ["crux"],
  2114. description: {
  2115. title: "Bio",
  2116. text: "Very furry. Sheds on everything."
  2117. },
  2118. tags: [
  2119. "anthro",
  2120. "goo"
  2121. ]
  2122. },
  2123. {
  2124. front: {
  2125. height: math.unit(12, "feet"),
  2126. weight: math.unit(2400, "lb"),
  2127. preyCapacity: math.unit(1, "people"),
  2128. name: "Front",
  2129. image: {
  2130. source: "./media/characters/fen/front.svg",
  2131. extra: 1804/1562,
  2132. bottom: 205/2009
  2133. },
  2134. extraAttributes: {
  2135. pawSize: {
  2136. name: "Paw Size",
  2137. power: 2,
  2138. type: "area",
  2139. base: math.unit(0.35, "m^2")
  2140. }
  2141. }
  2142. },
  2143. diving: {
  2144. height: math.unit(4.9, "meters"),
  2145. weight: math.unit(2400, "lb"),
  2146. name: "Diving",
  2147. image: {
  2148. source: "./media/characters/fen/diving.svg"
  2149. }
  2150. },
  2151. sleeby: {
  2152. height: math.unit(3.45, "meters"),
  2153. weight: math.unit(2400, "lb"),
  2154. name: "Sleeby",
  2155. image: {
  2156. source: "./media/characters/fen/sleeby.svg"
  2157. }
  2158. },
  2159. goo: {
  2160. height: math.unit(12, "feet"),
  2161. weight: math.unit(3600, "lb"),
  2162. volume: math.unit(1000, "liters"),
  2163. preyCapacity: math.unit(6, "people"),
  2164. name: "Goo",
  2165. image: {
  2166. source: "./media/characters/fen/goo.svg",
  2167. extra: 1307/1071,
  2168. bottom: 134/1441
  2169. }
  2170. },
  2171. gooNsfw: {
  2172. height: math.unit(12, "feet"),
  2173. weight: math.unit(3750, "lb"),
  2174. volume: math.unit(1000, "liters"),
  2175. preyCapacity: math.unit(6, "people"),
  2176. name: "Goo (NSFW)",
  2177. image: {
  2178. source: "./media/characters/fen/goo-nsfw.svg",
  2179. extra: 1875/1734,
  2180. bottom: 122/1997
  2181. }
  2182. },
  2183. maw: {
  2184. height: math.unit(5.03, "feet"),
  2185. name: "Maw",
  2186. image: {
  2187. source: "./media/characters/fen/maw.svg"
  2188. }
  2189. },
  2190. gooCeiling: {
  2191. height: math.unit(6.6, "feet"),
  2192. weight: math.unit(3000, "lb"),
  2193. volume: math.unit(1000, "liters"),
  2194. preyCapacity: math.unit(6, "people"),
  2195. name: "Goo (Ceiling)",
  2196. image: {
  2197. source: "./media/characters/fen/goo-ceiling.svg"
  2198. }
  2199. },
  2200. paw: {
  2201. height: math.unit(3.77, "feet"),
  2202. name: "Paw",
  2203. image: {
  2204. source: "./media/characters/fen/paw.svg"
  2205. },
  2206. extraAttributes: {
  2207. "toeSize": {
  2208. name: "Toe Size",
  2209. power: 2,
  2210. type: "area",
  2211. base: math.unit(0.02875, "m^2")
  2212. },
  2213. "pawSize": {
  2214. name: "Paw Size",
  2215. power: 2,
  2216. type: "area",
  2217. base: math.unit(0.378, "m^2")
  2218. },
  2219. }
  2220. },
  2221. tail: {
  2222. height: math.unit(12.1, "feet"),
  2223. name: "Tail",
  2224. image: {
  2225. source: "./media/characters/fen/tail.svg"
  2226. }
  2227. },
  2228. tailFull: {
  2229. height: math.unit(12.1, "feet"),
  2230. name: "Full Tail",
  2231. image: {
  2232. source: "./media/characters/fen/tail-full.svg"
  2233. }
  2234. },
  2235. back: {
  2236. height: math.unit(12, "feet"),
  2237. weight: math.unit(2400, "lb"),
  2238. name: "Back",
  2239. image: {
  2240. source: "./media/characters/fen/back.svg",
  2241. },
  2242. info: {
  2243. description: {
  2244. mode: "append",
  2245. text: "\n\nHe is not currently looking at you."
  2246. }
  2247. }
  2248. },
  2249. full: {
  2250. height: math.unit(1.85, "meter"),
  2251. weight: math.unit(3200, "lb"),
  2252. name: "Full",
  2253. image: {
  2254. source: "./media/characters/fen/full.svg",
  2255. extra: 1133/859,
  2256. bottom: 145/1278
  2257. },
  2258. info: {
  2259. description: {
  2260. mode: "append",
  2261. text: "\n\nMunch."
  2262. }
  2263. }
  2264. },
  2265. gooLounging: {
  2266. height: math.unit(4.53, "feet"),
  2267. weight: math.unit(3000, "lb"),
  2268. preyCapacity: math.unit(6, "people"),
  2269. name: "Goo (Lounging)",
  2270. image: {
  2271. source: "./media/characters/fen/goo-lounging.svg",
  2272. bottom: 116 / 613
  2273. }
  2274. },
  2275. lounging: {
  2276. height: math.unit(10.52, "feet"),
  2277. weight: math.unit(2400, "lb"),
  2278. name: "Lounging",
  2279. image: {
  2280. source: "./media/characters/fen/lounging.svg"
  2281. }
  2282. },
  2283. },
  2284. [
  2285. {
  2286. name: "Small",
  2287. height: math.unit(2.2428, "meter")
  2288. },
  2289. {
  2290. name: "Normal",
  2291. height: math.unit(12, "feet"),
  2292. default: true,
  2293. },
  2294. {
  2295. name: "Big",
  2296. height: math.unit(20, "feet")
  2297. },
  2298. {
  2299. name: "Minimacro",
  2300. height: math.unit(40, "feet"),
  2301. info: {
  2302. description: {
  2303. mode: "append",
  2304. text: "\n\nTOO DAMN BIG"
  2305. }
  2306. }
  2307. },
  2308. {
  2309. name: "Macro",
  2310. height: math.unit(100, "feet"),
  2311. info: {
  2312. description: {
  2313. mode: "append",
  2314. text: "\n\nTOO DAMN BIG"
  2315. }
  2316. }
  2317. },
  2318. {
  2319. name: "Megamacro",
  2320. height: math.unit(2, "miles")
  2321. },
  2322. {
  2323. name: "Gigamacro",
  2324. height: math.unit(10, "earths")
  2325. },
  2326. ]
  2327. ))
  2328. characterMakers.push(() => makeCharacter(
  2329. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2330. {
  2331. front: {
  2332. height: math.unit(183, "cm"),
  2333. weight: math.unit(80, "kg"),
  2334. name: "Front",
  2335. image: {
  2336. source: "./media/characters/sofia-fluttertail/front.svg",
  2337. bottom: 0.01,
  2338. extra: 2154 / 2081
  2339. }
  2340. },
  2341. frontAlt: {
  2342. height: math.unit(183, "cm"),
  2343. weight: math.unit(80, "kg"),
  2344. name: "Front (alt)",
  2345. image: {
  2346. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2347. }
  2348. },
  2349. back: {
  2350. height: math.unit(183, "cm"),
  2351. weight: math.unit(80, "kg"),
  2352. name: "Back",
  2353. image: {
  2354. source: "./media/characters/sofia-fluttertail/back.svg"
  2355. }
  2356. },
  2357. kneeling: {
  2358. height: math.unit(125, "cm"),
  2359. weight: math.unit(80, "kg"),
  2360. name: "Kneeling",
  2361. image: {
  2362. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2363. extra: 1033 / 977,
  2364. bottom: 23.7 / 1057
  2365. }
  2366. },
  2367. maw: {
  2368. height: math.unit(183 / 5, "cm"),
  2369. name: "Maw",
  2370. image: {
  2371. source: "./media/characters/sofia-fluttertail/maw.svg"
  2372. }
  2373. },
  2374. mawcloseup: {
  2375. height: math.unit(183 / 5 * 0.41, "cm"),
  2376. name: "Maw (Closeup)",
  2377. image: {
  2378. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2379. }
  2380. },
  2381. paws: {
  2382. height: math.unit(1.17, "feet"),
  2383. name: "Paws",
  2384. image: {
  2385. source: "./media/characters/sofia-fluttertail/paws.svg",
  2386. extra: 851 / 851,
  2387. bottom: 17 / 868
  2388. }
  2389. },
  2390. },
  2391. [
  2392. {
  2393. name: "Normal",
  2394. height: math.unit(1.83, "meter")
  2395. },
  2396. {
  2397. name: "Size Thief",
  2398. height: math.unit(18, "feet")
  2399. },
  2400. {
  2401. name: "50 Foot Collie",
  2402. height: math.unit(50, "feet")
  2403. },
  2404. {
  2405. name: "Macro",
  2406. height: math.unit(96, "feet"),
  2407. default: true
  2408. },
  2409. {
  2410. name: "Megamerger",
  2411. height: math.unit(650, "feet")
  2412. },
  2413. ]
  2414. ))
  2415. characterMakers.push(() => makeCharacter(
  2416. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2417. {
  2418. front: {
  2419. height: math.unit(7, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Front",
  2422. image: {
  2423. source: "./media/characters/march/front.svg",
  2424. extra: 1992/1851,
  2425. bottom: 39/2031
  2426. }
  2427. },
  2428. foot: {
  2429. height: math.unit(0.9, "feet"),
  2430. name: "Foot",
  2431. image: {
  2432. source: "./media/characters/march/foot.svg"
  2433. }
  2434. },
  2435. },
  2436. [
  2437. {
  2438. name: "Normal",
  2439. height: math.unit(7.9, "feet")
  2440. },
  2441. {
  2442. name: "Macro",
  2443. height: math.unit(220, "meters")
  2444. },
  2445. {
  2446. name: "Megamacro",
  2447. height: math.unit(2.98, "km"),
  2448. default: true
  2449. },
  2450. {
  2451. name: "Gigamacro",
  2452. height: math.unit(15963, "km")
  2453. },
  2454. {
  2455. name: "Teramacro",
  2456. height: math.unit(2980000000, "km")
  2457. },
  2458. {
  2459. name: "Examacro",
  2460. height: math.unit(250, "parsecs")
  2461. },
  2462. ]
  2463. ))
  2464. characterMakers.push(() => makeCharacter(
  2465. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2466. {
  2467. front: {
  2468. height: math.unit(6, "feet"),
  2469. weight: math.unit(60, "kg"),
  2470. name: "Front",
  2471. image: {
  2472. source: "./media/characters/noir/front.svg",
  2473. extra: 1,
  2474. bottom: 0.032
  2475. }
  2476. },
  2477. },
  2478. [
  2479. {
  2480. name: "Normal",
  2481. height: math.unit(6.6, "feet")
  2482. },
  2483. {
  2484. name: "Macro",
  2485. height: math.unit(500, "feet")
  2486. },
  2487. {
  2488. name: "Megamacro",
  2489. height: math.unit(2.5, "km"),
  2490. default: true
  2491. },
  2492. {
  2493. name: "Gigamacro",
  2494. height: math.unit(22500, "km")
  2495. },
  2496. {
  2497. name: "Teramacro",
  2498. height: math.unit(2500000000, "km")
  2499. },
  2500. {
  2501. name: "Examacro",
  2502. height: math.unit(200, "parsecs")
  2503. },
  2504. ]
  2505. ))
  2506. characterMakers.push(() => makeCharacter(
  2507. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2508. {
  2509. front: {
  2510. height: math.unit(7, "feet"),
  2511. weight: math.unit(100, "kg"),
  2512. name: "Front",
  2513. image: {
  2514. source: "./media/characters/okuri/front.svg",
  2515. extra: 739/665,
  2516. bottom: 39/778
  2517. }
  2518. },
  2519. back: {
  2520. height: math.unit(7, "feet"),
  2521. weight: math.unit(100, "kg"),
  2522. name: "Back",
  2523. image: {
  2524. source: "./media/characters/okuri/back.svg",
  2525. extra: 734/653,
  2526. bottom: 13/747
  2527. }
  2528. },
  2529. sitting: {
  2530. height: math.unit(2.95, "feet"),
  2531. weight: math.unit(100, "kg"),
  2532. name: "Sitting",
  2533. image: {
  2534. source: "./media/characters/okuri/sitting.svg",
  2535. extra: 370/318,
  2536. bottom: 99/469
  2537. }
  2538. },
  2539. },
  2540. [
  2541. {
  2542. name: "Smallest",
  2543. height: math.unit(5 + 2/12, "feet")
  2544. },
  2545. {
  2546. name: "Smaller",
  2547. height: math.unit(300, "feet")
  2548. },
  2549. {
  2550. name: "Small",
  2551. height: math.unit(1000, "feet")
  2552. },
  2553. {
  2554. name: "Macro",
  2555. height: math.unit(1, "mile")
  2556. },
  2557. {
  2558. name: "Mega Macro (Small)",
  2559. height: math.unit(20, "km")
  2560. },
  2561. {
  2562. name: "Mega Macro (Large)",
  2563. height: math.unit(600, "km")
  2564. },
  2565. {
  2566. name: "Giga Macro",
  2567. height: math.unit(10000, "km")
  2568. },
  2569. {
  2570. name: "Normal",
  2571. height: math.unit(577560, "km"),
  2572. default: true
  2573. },
  2574. {
  2575. name: "Large",
  2576. height: math.unit(4, "galaxies")
  2577. },
  2578. {
  2579. name: "Largest",
  2580. height: math.unit(15, "multiverses")
  2581. },
  2582. ]
  2583. ))
  2584. characterMakers.push(() => makeCharacter(
  2585. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2586. {
  2587. front: {
  2588. height: math.unit(7, "feet"),
  2589. weight: math.unit(100, "kg"),
  2590. name: "Front",
  2591. image: {
  2592. source: "./media/characters/manny/front.svg",
  2593. extra: 1,
  2594. bottom: 0.06
  2595. }
  2596. },
  2597. back: {
  2598. height: math.unit(7, "feet"),
  2599. weight: math.unit(100, "kg"),
  2600. name: "Back",
  2601. image: {
  2602. source: "./media/characters/manny/back.svg",
  2603. extra: 1,
  2604. bottom: 0.014
  2605. }
  2606. },
  2607. },
  2608. [
  2609. {
  2610. name: "Normal",
  2611. height: math.unit(7, "feet"),
  2612. },
  2613. {
  2614. name: "Macro",
  2615. height: math.unit(78, "feet"),
  2616. default: true
  2617. },
  2618. {
  2619. name: "Macro+",
  2620. height: math.unit(300, "meters")
  2621. },
  2622. {
  2623. name: "Macro++",
  2624. height: math.unit(2400, "meters")
  2625. },
  2626. {
  2627. name: "Megamacro",
  2628. height: math.unit(5167, "meters")
  2629. },
  2630. {
  2631. name: "Gigamacro",
  2632. height: math.unit(41769, "miles")
  2633. },
  2634. ]
  2635. ))
  2636. characterMakers.push(() => makeCharacter(
  2637. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2638. {
  2639. front: {
  2640. height: math.unit(7, "feet"),
  2641. weight: math.unit(100, "kg"),
  2642. name: "Front",
  2643. image: {
  2644. source: "./media/characters/adake/front-1.svg"
  2645. }
  2646. },
  2647. frontAlt: {
  2648. height: math.unit(7, "feet"),
  2649. weight: math.unit(100, "kg"),
  2650. name: "Front (Alt)",
  2651. image: {
  2652. source: "./media/characters/adake/front-2.svg",
  2653. extra: 1,
  2654. bottom: 0.01
  2655. }
  2656. },
  2657. back: {
  2658. height: math.unit(7, "feet"),
  2659. weight: math.unit(100, "kg"),
  2660. name: "Back",
  2661. image: {
  2662. source: "./media/characters/adake/back.svg",
  2663. }
  2664. },
  2665. kneel: {
  2666. height: math.unit(5.385, "feet"),
  2667. weight: math.unit(100, "kg"),
  2668. name: "Kneeling",
  2669. image: {
  2670. source: "./media/characters/adake/kneel.svg",
  2671. bottom: 0.052
  2672. }
  2673. },
  2674. },
  2675. [
  2676. {
  2677. name: "Normal",
  2678. height: math.unit(7, "feet"),
  2679. },
  2680. {
  2681. name: "Macro",
  2682. height: math.unit(78, "feet"),
  2683. default: true
  2684. },
  2685. {
  2686. name: "Macro+",
  2687. height: math.unit(300, "meters")
  2688. },
  2689. {
  2690. name: "Macro++",
  2691. height: math.unit(2400, "meters")
  2692. },
  2693. {
  2694. name: "Megamacro",
  2695. height: math.unit(5167, "meters")
  2696. },
  2697. {
  2698. name: "Gigamacro",
  2699. height: math.unit(41769, "miles")
  2700. },
  2701. ]
  2702. ))
  2703. characterMakers.push(() => makeCharacter(
  2704. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2705. {
  2706. front: {
  2707. height: math.unit(1.65, "meters"),
  2708. weight: math.unit(50, "kg"),
  2709. name: "Front",
  2710. image: {
  2711. source: "./media/characters/elijah/front.svg",
  2712. extra: 858 / 830,
  2713. bottom: 95.5 / 953.8559
  2714. }
  2715. },
  2716. back: {
  2717. height: math.unit(1.65, "meters"),
  2718. weight: math.unit(50, "kg"),
  2719. name: "Back",
  2720. image: {
  2721. source: "./media/characters/elijah/back.svg",
  2722. extra: 895 / 850,
  2723. bottom: 5.3 / 897.956
  2724. }
  2725. },
  2726. frontNsfw: {
  2727. height: math.unit(1.65, "meters"),
  2728. weight: math.unit(50, "kg"),
  2729. name: "Front (NSFW)",
  2730. image: {
  2731. source: "./media/characters/elijah/front-nsfw.svg",
  2732. extra: 858 / 830,
  2733. bottom: 95.5 / 953.8559
  2734. }
  2735. },
  2736. backNsfw: {
  2737. height: math.unit(1.65, "meters"),
  2738. weight: math.unit(50, "kg"),
  2739. name: "Back (NSFW)",
  2740. image: {
  2741. source: "./media/characters/elijah/back-nsfw.svg",
  2742. extra: 895 / 850,
  2743. bottom: 5.3 / 897.956
  2744. }
  2745. },
  2746. dick: {
  2747. height: math.unit(1, "feet"),
  2748. name: "Dick",
  2749. image: {
  2750. source: "./media/characters/elijah/dick.svg"
  2751. }
  2752. },
  2753. beakOpen: {
  2754. height: math.unit(1.25, "feet"),
  2755. name: "Beak (Open)",
  2756. image: {
  2757. source: "./media/characters/elijah/beak-open.svg"
  2758. }
  2759. },
  2760. beakShut: {
  2761. height: math.unit(1.25, "feet"),
  2762. name: "Beak (Shut)",
  2763. image: {
  2764. source: "./media/characters/elijah/beak-shut.svg"
  2765. }
  2766. },
  2767. footFlexing: {
  2768. height: math.unit(1.61, "feet"),
  2769. name: "Foot (Flexing)",
  2770. image: {
  2771. source: "./media/characters/elijah/foot-flexing.svg"
  2772. }
  2773. },
  2774. footStepping: {
  2775. height: math.unit(1.44, "feet"),
  2776. name: "Foot (Stepping)",
  2777. image: {
  2778. source: "./media/characters/elijah/foot-stepping.svg"
  2779. }
  2780. },
  2781. plantigradeLeg: {
  2782. height: math.unit(2.34, "feet"),
  2783. name: "Plantigrade Leg",
  2784. image: {
  2785. source: "./media/characters/elijah/plantigrade-leg.svg"
  2786. }
  2787. },
  2788. plantigradeFootLeft: {
  2789. height: math.unit(0.9, "feet"),
  2790. name: "Plantigrade Foot (Left)",
  2791. image: {
  2792. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2793. }
  2794. },
  2795. plantigradeFootRight: {
  2796. height: math.unit(0.9, "feet"),
  2797. name: "Plantigrade Foot (Right)",
  2798. image: {
  2799. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2800. }
  2801. },
  2802. },
  2803. [
  2804. {
  2805. name: "Normal",
  2806. height: math.unit(1.65, "meters")
  2807. },
  2808. {
  2809. name: "Macro",
  2810. height: math.unit(55, "meters"),
  2811. default: true
  2812. },
  2813. {
  2814. name: "Macro+",
  2815. height: math.unit(105, "meters")
  2816. },
  2817. ]
  2818. ))
  2819. characterMakers.push(() => makeCharacter(
  2820. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2821. {
  2822. front: {
  2823. height: math.unit(7 + 2/12, "feet"),
  2824. weight: math.unit(320, "kg"),
  2825. preyCapacity: math.unit(0.276549935, "people"),
  2826. name: "Front",
  2827. image: {
  2828. source: "./media/characters/rai/front.svg",
  2829. extra: 1802/1696,
  2830. bottom: 68/1870
  2831. },
  2832. form: "anthro",
  2833. default: true
  2834. },
  2835. frontDressed: {
  2836. height: math.unit(7 + 2/12, "feet"),
  2837. weight: math.unit(320, "kg"),
  2838. preyCapacity: math.unit(0.276549935, "people"),
  2839. name: "Front (Dressed)",
  2840. image: {
  2841. source: "./media/characters/rai/front-dressed.svg",
  2842. extra: 1802/1696,
  2843. bottom: 68/1870
  2844. },
  2845. form: "anthro"
  2846. },
  2847. side: {
  2848. height: math.unit(7 + 2/12, "feet"),
  2849. weight: math.unit(320, "kg"),
  2850. preyCapacity: math.unit(0.276549935, "people"),
  2851. name: "Side",
  2852. image: {
  2853. source: "./media/characters/rai/side.svg",
  2854. extra: 1789/1710,
  2855. bottom: 115/1904
  2856. },
  2857. form: "anthro"
  2858. },
  2859. back: {
  2860. height: math.unit(7 + 2/12, "feet"),
  2861. weight: math.unit(320, "kg"),
  2862. preyCapacity: math.unit(0.276549935, "people"),
  2863. name: "Back",
  2864. image: {
  2865. source: "./media/characters/rai/back.svg",
  2866. extra: 1770/1707,
  2867. bottom: 28/1798
  2868. },
  2869. form: "anthro"
  2870. },
  2871. feral: {
  2872. height: math.unit(9.5, "feet"),
  2873. weight: math.unit(640, "kg"),
  2874. preyCapacity: math.unit(4, "people"),
  2875. name: "Feral",
  2876. image: {
  2877. source: "./media/characters/rai/feral.svg",
  2878. extra: 945/553,
  2879. bottom: 176/1121
  2880. },
  2881. form: "feral",
  2882. default: true
  2883. },
  2884. dragon: {
  2885. height: math.unit(23, "feet"),
  2886. weight: math.unit(50000, "lb"),
  2887. name: "Dragon",
  2888. image: {
  2889. source: "./media/characters/rai/dragon.svg",
  2890. extra: 2498 / 2030,
  2891. bottom: 85.2 / 2584
  2892. },
  2893. form: "dragon",
  2894. default: true
  2895. },
  2896. maw: {
  2897. height: math.unit(1.69, "feet"),
  2898. name: "Maw",
  2899. image: {
  2900. source: "./media/characters/rai/maw.svg"
  2901. },
  2902. form: "anthro"
  2903. },
  2904. },
  2905. [
  2906. {
  2907. name: "Normal",
  2908. height: math.unit(7 + 2/12, "feet"),
  2909. form: "anthro"
  2910. },
  2911. {
  2912. name: "Big",
  2913. height: math.unit(11, "feet"),
  2914. form: "anthro"
  2915. },
  2916. {
  2917. name: "Minimacro",
  2918. height: math.unit(77, "feet"),
  2919. form: "anthro"
  2920. },
  2921. {
  2922. name: "Macro",
  2923. height: math.unit(302, "feet"),
  2924. default: true,
  2925. form: "anthro"
  2926. },
  2927. {
  2928. name: "Normal",
  2929. height: math.unit(9.5, "feet"),
  2930. form: "feral",
  2931. default: true
  2932. },
  2933. {
  2934. name: "Normal",
  2935. height: math.unit(23, "feet"),
  2936. form: "dragon",
  2937. default: true
  2938. }
  2939. ],
  2940. {
  2941. "anthro": {
  2942. name: "Anthro",
  2943. default: true
  2944. },
  2945. "feral": {
  2946. name: "Feral",
  2947. },
  2948. "dragon": {
  2949. name: "Dragon",
  2950. },
  2951. }
  2952. ))
  2953. characterMakers.push(() => makeCharacter(
  2954. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2955. {
  2956. frontDressed: {
  2957. height: math.unit(216, "feet"),
  2958. weight: math.unit(7000000, "lb"),
  2959. preyCapacity: math.unit(1321, "people"),
  2960. name: "Front (Dressed)",
  2961. image: {
  2962. source: "./media/characters/jazzy/front-dressed.svg",
  2963. extra: 2738 / 2651,
  2964. bottom: 41.8 / 2786
  2965. }
  2966. },
  2967. backDressed: {
  2968. height: math.unit(216, "feet"),
  2969. weight: math.unit(7000000, "lb"),
  2970. preyCapacity: math.unit(1321, "people"),
  2971. name: "Back (Dressed)",
  2972. image: {
  2973. source: "./media/characters/jazzy/back-dressed.svg",
  2974. extra: 2775 / 2673,
  2975. bottom: 36.8 / 2817
  2976. }
  2977. },
  2978. front: {
  2979. height: math.unit(216, "feet"),
  2980. weight: math.unit(7000000, "lb"),
  2981. preyCapacity: math.unit(1321, "people"),
  2982. name: "Front",
  2983. image: {
  2984. source: "./media/characters/jazzy/front.svg",
  2985. extra: 2738 / 2651,
  2986. bottom: 41.8 / 2786
  2987. }
  2988. },
  2989. back: {
  2990. height: math.unit(216, "feet"),
  2991. weight: math.unit(7000000, "lb"),
  2992. preyCapacity: math.unit(1321, "people"),
  2993. name: "Back",
  2994. image: {
  2995. source: "./media/characters/jazzy/back.svg",
  2996. extra: 2775 / 2673,
  2997. bottom: 36.8 / 2817
  2998. }
  2999. },
  3000. maw: {
  3001. height: math.unit(20, "feet"),
  3002. name: "Maw",
  3003. image: {
  3004. source: "./media/characters/jazzy/maw.svg"
  3005. }
  3006. },
  3007. paws: {
  3008. height: math.unit(27.5, "feet"),
  3009. name: "Paws",
  3010. image: {
  3011. source: "./media/characters/jazzy/paws.svg"
  3012. }
  3013. },
  3014. eye: {
  3015. height: math.unit(4.4, "feet"),
  3016. name: "Eye",
  3017. image: {
  3018. source: "./media/characters/jazzy/eye.svg"
  3019. }
  3020. },
  3021. droneOffense: {
  3022. height: math.unit(9.5, "inches"),
  3023. name: "Drone (Offense)",
  3024. image: {
  3025. source: "./media/characters/jazzy/drone-offense.svg"
  3026. }
  3027. },
  3028. droneRecon: {
  3029. height: math.unit(9.5, "inches"),
  3030. name: "Drone (Recon)",
  3031. image: {
  3032. source: "./media/characters/jazzy/drone-recon.svg"
  3033. }
  3034. },
  3035. droneDefense: {
  3036. height: math.unit(9.5, "inches"),
  3037. name: "Drone (Defense)",
  3038. image: {
  3039. source: "./media/characters/jazzy/drone-defense.svg"
  3040. }
  3041. },
  3042. },
  3043. [
  3044. {
  3045. name: "Macro",
  3046. height: math.unit(216, "feet"),
  3047. default: true
  3048. },
  3049. ]
  3050. ))
  3051. characterMakers.push(() => makeCharacter(
  3052. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3053. {
  3054. front: {
  3055. height: math.unit(9 + 6/12, "feet"),
  3056. weight: math.unit(700, "lb"),
  3057. name: "Front",
  3058. image: {
  3059. source: "./media/characters/flamm/front.svg",
  3060. extra: 1751/1632,
  3061. bottom: 46/1797
  3062. }
  3063. },
  3064. buff: {
  3065. height: math.unit(9 + 6/12, "feet"),
  3066. weight: math.unit(950, "lb"),
  3067. name: "Buff",
  3068. image: {
  3069. source: "./media/characters/flamm/buff.svg",
  3070. extra: 3018/2874,
  3071. bottom: 221/3239
  3072. }
  3073. },
  3074. },
  3075. [
  3076. {
  3077. name: "Normal",
  3078. height: math.unit(9.5, "feet")
  3079. },
  3080. {
  3081. name: "Macro",
  3082. height: math.unit(200, "feet"),
  3083. default: true
  3084. },
  3085. ]
  3086. ))
  3087. characterMakers.push(() => makeCharacter(
  3088. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3089. {
  3090. front: {
  3091. height: math.unit(5 + 3/12, "feet"),
  3092. weight: math.unit(60, "kg"),
  3093. name: "Front",
  3094. image: {
  3095. source: "./media/characters/zephiro/front.svg",
  3096. extra: 1873/1761,
  3097. bottom: 147/2020
  3098. }
  3099. },
  3100. side: {
  3101. height: math.unit(5 + 3/12, "feet"),
  3102. weight: math.unit(60, "kg"),
  3103. name: "Side",
  3104. image: {
  3105. source: "./media/characters/zephiro/side.svg",
  3106. extra: 1929/1827,
  3107. bottom: 65/1994
  3108. }
  3109. },
  3110. back: {
  3111. height: math.unit(5 + 3/12, "feet"),
  3112. weight: math.unit(60, "kg"),
  3113. name: "Back",
  3114. image: {
  3115. source: "./media/characters/zephiro/back.svg",
  3116. extra: 1926/1816,
  3117. bottom: 41/1967
  3118. }
  3119. },
  3120. hand: {
  3121. height: math.unit(0.68, "feet"),
  3122. name: "Hand",
  3123. image: {
  3124. source: "./media/characters/zephiro/hand.svg"
  3125. }
  3126. },
  3127. paw: {
  3128. height: math.unit(1, "feet"),
  3129. name: "Paw",
  3130. image: {
  3131. source: "./media/characters/zephiro/paw.svg"
  3132. }
  3133. },
  3134. beans: {
  3135. height: math.unit(0.93, "feet"),
  3136. name: "Beans",
  3137. image: {
  3138. source: "./media/characters/zephiro/beans.svg"
  3139. }
  3140. },
  3141. },
  3142. [
  3143. {
  3144. name: "Micro",
  3145. height: math.unit(3, "inches")
  3146. },
  3147. {
  3148. name: "Normal",
  3149. height: math.unit(5 + 3 / 12, "feet"),
  3150. default: true
  3151. },
  3152. {
  3153. name: "Macro",
  3154. height: math.unit(118, "feet")
  3155. },
  3156. ]
  3157. ))
  3158. characterMakers.push(() => makeCharacter(
  3159. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3160. {
  3161. front: {
  3162. height: math.unit(5, "feet"),
  3163. weight: math.unit(90, "kg"),
  3164. name: "Front",
  3165. image: {
  3166. source: "./media/characters/fory/front.svg",
  3167. extra: 2862 / 2674,
  3168. bottom: 180 / 3043.8
  3169. }
  3170. },
  3171. back: {
  3172. height: math.unit(5, "feet"),
  3173. weight: math.unit(90, "kg"),
  3174. name: "Back",
  3175. image: {
  3176. source: "./media/characters/fory/back.svg",
  3177. extra: 2962 / 2791,
  3178. bottom: 106 / 3071.8
  3179. }
  3180. },
  3181. foot: {
  3182. height: math.unit(2.14, "feet"),
  3183. name: "Foot",
  3184. image: {
  3185. source: "./media/characters/fory/foot.svg"
  3186. }
  3187. },
  3188. },
  3189. [
  3190. {
  3191. name: "Normal",
  3192. height: math.unit(5, "feet")
  3193. },
  3194. {
  3195. name: "Macro",
  3196. height: math.unit(50, "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Megamacro",
  3201. height: math.unit(10, "miles")
  3202. },
  3203. {
  3204. name: "Gigamacro",
  3205. height: math.unit(5, "earths")
  3206. },
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(7, "feet"),
  3214. weight: math.unit(90, "kg"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/kurrikage/front.svg",
  3218. extra: 1845/1733,
  3219. bottom: 119/1964
  3220. }
  3221. },
  3222. back: {
  3223. height: math.unit(7, "feet"),
  3224. weight: math.unit(90, "kg"),
  3225. name: "Back",
  3226. image: {
  3227. source: "./media/characters/kurrikage/back.svg",
  3228. extra: 1790/1677,
  3229. bottom: 61/1851
  3230. }
  3231. },
  3232. dressed: {
  3233. height: math.unit(7, "feet"),
  3234. weight: math.unit(90, "kg"),
  3235. name: "Dressed",
  3236. image: {
  3237. source: "./media/characters/kurrikage/dressed.svg",
  3238. extra: 1845/1733,
  3239. bottom: 119/1964
  3240. }
  3241. },
  3242. foot: {
  3243. height: math.unit(1.5, "feet"),
  3244. name: "Foot",
  3245. image: {
  3246. source: "./media/characters/kurrikage/foot.svg"
  3247. }
  3248. },
  3249. staff: {
  3250. height: math.unit(6.7, "feet"),
  3251. name: "Staff",
  3252. image: {
  3253. source: "./media/characters/kurrikage/staff.svg"
  3254. }
  3255. },
  3256. peek: {
  3257. height: math.unit(1.05, "feet"),
  3258. name: "Peeking",
  3259. image: {
  3260. source: "./media/characters/kurrikage/peek.svg",
  3261. bottom: 0.08
  3262. }
  3263. },
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(12, "feet"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Big",
  3273. height: math.unit(20, "feet")
  3274. },
  3275. {
  3276. name: "Macro",
  3277. height: math.unit(500, "feet")
  3278. },
  3279. {
  3280. name: "Megamacro",
  3281. height: math.unit(20, "miles")
  3282. },
  3283. ]
  3284. ))
  3285. characterMakers.push(() => makeCharacter(
  3286. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3287. {
  3288. front: {
  3289. height: math.unit(6, "feet"),
  3290. weight: math.unit(75, "kg"),
  3291. name: "Front",
  3292. image: {
  3293. source: "./media/characters/shingo/front.svg",
  3294. extra: 1900/1825,
  3295. bottom: 82/1982
  3296. }
  3297. },
  3298. side: {
  3299. height: math.unit(6, "feet"),
  3300. weight: math.unit(75, "kg"),
  3301. name: "Side",
  3302. image: {
  3303. source: "./media/characters/shingo/side.svg",
  3304. extra: 1930/1865,
  3305. bottom: 16/1946
  3306. }
  3307. },
  3308. back: {
  3309. height: math.unit(6, "feet"),
  3310. weight: math.unit(75, "kg"),
  3311. name: "Back",
  3312. image: {
  3313. source: "./media/characters/shingo/back.svg",
  3314. extra: 1922/1852,
  3315. bottom: 16/1938
  3316. }
  3317. },
  3318. frontDressed: {
  3319. height: math.unit(6, "feet"),
  3320. weight: math.unit(150, "lb"),
  3321. name: "Front-dressed",
  3322. image: {
  3323. source: "./media/characters/shingo/front-dressed.svg",
  3324. extra: 1900/1825,
  3325. bottom: 82/1982
  3326. }
  3327. },
  3328. paw: {
  3329. height: math.unit(1.29, "feet"),
  3330. name: "Paw",
  3331. image: {
  3332. source: "./media/characters/shingo/paw.svg"
  3333. }
  3334. },
  3335. hand: {
  3336. height: math.unit(1.07, "feet"),
  3337. name: "Hand",
  3338. image: {
  3339. source: "./media/characters/shingo/hand.svg"
  3340. }
  3341. },
  3342. frontAlt: {
  3343. height: math.unit(6, "feet"),
  3344. weight: math.unit(75, "kg"),
  3345. name: "Front (Alt)",
  3346. image: {
  3347. source: "./media/characters/shingo/front-alt.svg",
  3348. extra: 3511 / 3338,
  3349. bottom: 0.005
  3350. }
  3351. },
  3352. frontAlt2: {
  3353. height: math.unit(6, "feet"),
  3354. weight: math.unit(75, "kg"),
  3355. name: "Front (Alt 2)",
  3356. image: {
  3357. source: "./media/characters/shingo/front-alt-2.svg",
  3358. extra: 706/681,
  3359. bottom: 11/717
  3360. }
  3361. },
  3362. pawAlt: {
  3363. height: math.unit(1, "feet"),
  3364. name: "Paw (Alt)",
  3365. image: {
  3366. source: "./media/characters/shingo/paw-alt.svg"
  3367. }
  3368. },
  3369. },
  3370. [
  3371. {
  3372. name: "Micro",
  3373. height: math.unit(4, "inches")
  3374. },
  3375. {
  3376. name: "Normal",
  3377. height: math.unit(6, "feet"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Macro",
  3382. height: math.unit(108, "feet")
  3383. },
  3384. {
  3385. name: "Macro+",
  3386. height: math.unit(1500, "feet")
  3387. },
  3388. ]
  3389. ))
  3390. characterMakers.push(() => makeCharacter(
  3391. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3392. {
  3393. side: {
  3394. height: math.unit(6, "feet"),
  3395. weight: math.unit(75, "kg"),
  3396. name: "Side",
  3397. image: {
  3398. source: "./media/characters/aigey/side.svg"
  3399. }
  3400. },
  3401. },
  3402. [
  3403. {
  3404. name: "Macro",
  3405. height: math.unit(200, "feet"),
  3406. default: true
  3407. },
  3408. {
  3409. name: "Megamacro",
  3410. height: math.unit(100, "miles")
  3411. },
  3412. ]
  3413. )
  3414. )
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3417. {
  3418. front: {
  3419. height: math.unit(5 + 5 / 12, "feet"),
  3420. weight: math.unit(75, "kg"),
  3421. name: "Front",
  3422. image: {
  3423. source: "./media/characters/natasha/front.svg",
  3424. extra: 859 / 824,
  3425. bottom: 23 / 879.6
  3426. }
  3427. },
  3428. frontNsfw: {
  3429. height: math.unit(5 + 5 / 12, "feet"),
  3430. weight: math.unit(75, "kg"),
  3431. name: "Front (NSFW)",
  3432. image: {
  3433. source: "./media/characters/natasha/front-nsfw.svg",
  3434. extra: 859 / 824,
  3435. bottom: 23 / 879.6
  3436. }
  3437. },
  3438. frontErect: {
  3439. height: math.unit(5 + 5 / 12, "feet"),
  3440. weight: math.unit(75, "kg"),
  3441. name: "Front (Erect)",
  3442. image: {
  3443. source: "./media/characters/natasha/front-erect.svg",
  3444. extra: 859 / 824,
  3445. bottom: 23 / 879.6
  3446. }
  3447. },
  3448. back: {
  3449. height: math.unit(5 + 5 / 12, "feet"),
  3450. weight: math.unit(75, "kg"),
  3451. name: "Back",
  3452. image: {
  3453. source: "./media/characters/natasha/back.svg",
  3454. extra: 887.9 / 852.6,
  3455. bottom: 9.7 / 896.4
  3456. }
  3457. },
  3458. backAlt: {
  3459. height: math.unit(5 + 5 / 12, "feet"),
  3460. weight: math.unit(75, "kg"),
  3461. name: "Back (Alt)",
  3462. image: {
  3463. source: "./media/characters/natasha/back-alt.svg",
  3464. extra: 1236.7 / 1192,
  3465. bottom: 22.3 / 1258.2
  3466. }
  3467. },
  3468. dick: {
  3469. height: math.unit(1.772, "feet"),
  3470. name: "Dick",
  3471. image: {
  3472. source: "./media/characters/natasha/dick.svg"
  3473. }
  3474. },
  3475. paw: {
  3476. height: math.unit(0.250, "meters"),
  3477. name: "Paw",
  3478. image: {
  3479. source: "./media/characters/natasha/paw.svg"
  3480. },
  3481. extraAttributes: {
  3482. "toeSize": {
  3483. name: "Toe Size",
  3484. power: 2,
  3485. type: "area",
  3486. base: math.unit(0.0024, "m^2")
  3487. },
  3488. "padSize": {
  3489. name: "Pad Size",
  3490. power: 2,
  3491. type: "area",
  3492. base: math.unit(0.00889, "m^2")
  3493. },
  3494. "pawSize": {
  3495. name: "Paw Size",
  3496. power: 2,
  3497. type: "area",
  3498. base: math.unit(0.023667, "m^2")
  3499. },
  3500. }
  3501. },
  3502. },
  3503. [
  3504. {
  3505. name: "Shortstack",
  3506. height: math.unit(3, "feet"),
  3507. default: true
  3508. },
  3509. {
  3510. name: "Normal",
  3511. height: math.unit(5 + 5 / 12, "feet")
  3512. },
  3513. {
  3514. name: "Large",
  3515. height: math.unit(12, "feet")
  3516. },
  3517. {
  3518. name: "Macro",
  3519. height: math.unit(100, "feet")
  3520. },
  3521. {
  3522. name: "Macro+",
  3523. height: math.unit(260, "feet")
  3524. },
  3525. {
  3526. name: "Macro++",
  3527. height: math.unit(1, "mile")
  3528. },
  3529. ]
  3530. ))
  3531. characterMakers.push(() => makeCharacter(
  3532. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3533. {
  3534. front: {
  3535. height: math.unit(6, "feet"),
  3536. weight: math.unit(75, "kg"),
  3537. name: "Front",
  3538. image: {
  3539. source: "./media/characters/malik/front.svg",
  3540. extra: 1750/1561,
  3541. bottom: 80/1830
  3542. },
  3543. extraAttributes: {
  3544. "toeSize": {
  3545. name: "Toe Size",
  3546. power: 2,
  3547. type: "area",
  3548. base: math.unit(0.0159, "m^2")
  3549. },
  3550. "pawSize": {
  3551. name: "Paw Size",
  3552. power: 2,
  3553. type: "area",
  3554. base: math.unit(0.09834, "m^2")
  3555. },
  3556. }
  3557. },
  3558. side: {
  3559. height: math.unit(6, "feet"),
  3560. weight: math.unit(75, "kg"),
  3561. name: "Side",
  3562. image: {
  3563. source: "./media/characters/malik/side.svg",
  3564. extra: 1802/1685,
  3565. bottom: 42/1844
  3566. },
  3567. extraAttributes: {
  3568. "toeSize": {
  3569. name: "Toe Size",
  3570. power: 2,
  3571. type: "area",
  3572. base: math.unit(0.0159, "m^2")
  3573. },
  3574. "pawSize": {
  3575. name: "Paw Size",
  3576. power: 2,
  3577. type: "area",
  3578. base: math.unit(0.09834, "m^2")
  3579. },
  3580. }
  3581. },
  3582. back: {
  3583. height: math.unit(6, "feet"),
  3584. weight: math.unit(75, "kg"),
  3585. name: "Back",
  3586. image: {
  3587. source: "./media/characters/malik/back.svg",
  3588. extra: 1803/1607,
  3589. bottom: 33/1836
  3590. },
  3591. extraAttributes: {
  3592. "toeSize": {
  3593. name: "Toe Size",
  3594. power: 2,
  3595. type: "area",
  3596. base: math.unit(0.0159, "m^2")
  3597. },
  3598. "pawSize": {
  3599. name: "Paw Size",
  3600. power: 2,
  3601. type: "area",
  3602. base: math.unit(0.09834, "m^2")
  3603. },
  3604. }
  3605. },
  3606. },
  3607. [
  3608. {
  3609. name: "Macro",
  3610. height: math.unit(156, "feet"),
  3611. default: true
  3612. },
  3613. {
  3614. name: "Macro+",
  3615. height: math.unit(1188, "feet")
  3616. },
  3617. ]
  3618. ))
  3619. characterMakers.push(() => makeCharacter(
  3620. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3621. {
  3622. front: {
  3623. height: math.unit(6, "feet"),
  3624. weight: math.unit(75, "kg"),
  3625. name: "Front",
  3626. image: {
  3627. source: "./media/characters/sefer/front.svg",
  3628. extra: 848 / 659,
  3629. bottom: 28.3 / 876.442
  3630. }
  3631. },
  3632. back: {
  3633. height: math.unit(6, "feet"),
  3634. weight: math.unit(75, "kg"),
  3635. name: "Back",
  3636. image: {
  3637. source: "./media/characters/sefer/back.svg",
  3638. extra: 864 / 695,
  3639. bottom: 10 / 871
  3640. }
  3641. },
  3642. frontDressed: {
  3643. height: math.unit(6, "feet"),
  3644. weight: math.unit(75, "kg"),
  3645. name: "Dressed",
  3646. image: {
  3647. source: "./media/characters/sefer/dressed.svg",
  3648. extra: 839 / 653,
  3649. bottom: 37.6 / 878
  3650. }
  3651. },
  3652. },
  3653. [
  3654. {
  3655. name: "Normal",
  3656. height: math.unit(6, "feet"),
  3657. default: true
  3658. },
  3659. {
  3660. name: "Big",
  3661. height: math.unit(8, "meters")
  3662. },
  3663. ]
  3664. ))
  3665. characterMakers.push(() => makeCharacter(
  3666. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3667. {
  3668. body: {
  3669. height: math.unit(2.2428, "meter"),
  3670. weight: math.unit(124.738, "kg"),
  3671. name: "Body",
  3672. image: {
  3673. extra: 1225 / 1050,
  3674. source: "./media/characters/north/front.svg"
  3675. }
  3676. }
  3677. },
  3678. [
  3679. {
  3680. name: "Micro",
  3681. height: math.unit(4, "inches")
  3682. },
  3683. {
  3684. name: "Macro",
  3685. height: math.unit(63, "meters")
  3686. },
  3687. {
  3688. name: "Megamacro",
  3689. height: math.unit(101, "miles"),
  3690. default: true
  3691. }
  3692. ]
  3693. ))
  3694. characterMakers.push(() => makeCharacter(
  3695. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3696. {
  3697. angled: {
  3698. height: math.unit(4, "meter"),
  3699. weight: math.unit(150, "kg"),
  3700. name: "Angled",
  3701. image: {
  3702. source: "./media/characters/talan/angled-sfw.svg",
  3703. bottom: 29 / 3734
  3704. }
  3705. },
  3706. angledNsfw: {
  3707. height: math.unit(4, "meter"),
  3708. weight: math.unit(150, "kg"),
  3709. name: "Angled (NSFW)",
  3710. image: {
  3711. source: "./media/characters/talan/angled-nsfw.svg",
  3712. bottom: 29 / 3734
  3713. }
  3714. },
  3715. frontNsfw: {
  3716. height: math.unit(4, "meter"),
  3717. weight: math.unit(150, "kg"),
  3718. name: "Front (NSFW)",
  3719. image: {
  3720. source: "./media/characters/talan/front-nsfw.svg",
  3721. bottom: 29 / 3734
  3722. }
  3723. },
  3724. sideNsfw: {
  3725. height: math.unit(4, "meter"),
  3726. weight: math.unit(150, "kg"),
  3727. name: "Side (NSFW)",
  3728. image: {
  3729. source: "./media/characters/talan/side-nsfw.svg",
  3730. bottom: 29 / 3734
  3731. }
  3732. },
  3733. back: {
  3734. height: math.unit(4, "meter"),
  3735. weight: math.unit(150, "kg"),
  3736. name: "Back",
  3737. image: {
  3738. source: "./media/characters/talan/back.svg"
  3739. }
  3740. },
  3741. dickBottom: {
  3742. height: math.unit(0.621, "meter"),
  3743. name: "Dick (Bottom)",
  3744. image: {
  3745. source: "./media/characters/talan/dick-bottom.svg"
  3746. }
  3747. },
  3748. dickTop: {
  3749. height: math.unit(0.621, "meter"),
  3750. name: "Dick (Top)",
  3751. image: {
  3752. source: "./media/characters/talan/dick-top.svg"
  3753. }
  3754. },
  3755. dickSide: {
  3756. height: math.unit(0.305, "meter"),
  3757. name: "Dick (Side)",
  3758. image: {
  3759. source: "./media/characters/talan/dick-side.svg"
  3760. }
  3761. },
  3762. dickFront: {
  3763. height: math.unit(0.305, "meter"),
  3764. name: "Dick (Front)",
  3765. image: {
  3766. source: "./media/characters/talan/dick-front.svg"
  3767. }
  3768. },
  3769. },
  3770. [
  3771. {
  3772. name: "Normal",
  3773. height: math.unit(4, "meters")
  3774. },
  3775. {
  3776. name: "Macro",
  3777. height: math.unit(100, "meters")
  3778. },
  3779. {
  3780. name: "Megamacro",
  3781. height: math.unit(2, "miles"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Gigamacro",
  3786. height: math.unit(5000, "miles")
  3787. },
  3788. {
  3789. name: "Teramacro",
  3790. height: math.unit(100, "parsecs")
  3791. }
  3792. ]
  3793. ))
  3794. characterMakers.push(() => makeCharacter(
  3795. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3796. {
  3797. front: {
  3798. height: math.unit(2, "meter"),
  3799. weight: math.unit(90, "kg"),
  3800. name: "Front",
  3801. image: {
  3802. source: "./media/characters/gael'rathus/front.svg"
  3803. }
  3804. },
  3805. frontAlt: {
  3806. height: math.unit(2, "meter"),
  3807. weight: math.unit(90, "kg"),
  3808. name: "Front (alt)",
  3809. image: {
  3810. source: "./media/characters/gael'rathus/front-alt.svg"
  3811. }
  3812. },
  3813. frontAlt2: {
  3814. height: math.unit(2, "meter"),
  3815. weight: math.unit(90, "kg"),
  3816. name: "Front (alt 2)",
  3817. image: {
  3818. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3819. }
  3820. }
  3821. },
  3822. [
  3823. {
  3824. name: "Normal",
  3825. height: math.unit(9, "feet"),
  3826. default: true
  3827. },
  3828. {
  3829. name: "Large",
  3830. height: math.unit(25, "feet")
  3831. },
  3832. {
  3833. name: "Macro",
  3834. height: math.unit(0.25, "miles")
  3835. },
  3836. {
  3837. name: "Megamacro",
  3838. height: math.unit(10, "miles")
  3839. }
  3840. ]
  3841. ))
  3842. characterMakers.push(() => makeCharacter(
  3843. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3844. {
  3845. side: {
  3846. height: math.unit(2, "meter"),
  3847. weight: math.unit(140, "kg"),
  3848. name: "Side",
  3849. image: {
  3850. source: "./media/characters/sosha/side.svg",
  3851. extra: 1170/1006,
  3852. bottom: 94/1264
  3853. }
  3854. },
  3855. maw: {
  3856. height: math.unit(2.87, "feet"),
  3857. name: "Maw",
  3858. image: {
  3859. source: "./media/characters/sosha/maw.svg",
  3860. extra: 966/865,
  3861. bottom: 0/966
  3862. }
  3863. },
  3864. cooch: {
  3865. height: math.unit(5.6, "feet"),
  3866. name: "Cooch",
  3867. image: {
  3868. source: "./media/characters/sosha/cooch.svg"
  3869. }
  3870. },
  3871. },
  3872. [
  3873. {
  3874. name: "Normal",
  3875. height: math.unit(12, "feet"),
  3876. default: true
  3877. }
  3878. ]
  3879. ))
  3880. characterMakers.push(() => makeCharacter(
  3881. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3882. {
  3883. side: {
  3884. height: math.unit(5 + 5 / 12, "feet"),
  3885. weight: math.unit(170, "kg"),
  3886. name: "Side",
  3887. image: {
  3888. source: "./media/characters/runnola/side.svg",
  3889. extra: 741 / 448,
  3890. bottom: 0.05
  3891. }
  3892. },
  3893. },
  3894. [
  3895. {
  3896. name: "Small",
  3897. height: math.unit(3, "feet")
  3898. },
  3899. {
  3900. name: "Normal",
  3901. height: math.unit(5 + 5 / 12, "feet"),
  3902. default: true
  3903. },
  3904. {
  3905. name: "Big",
  3906. height: math.unit(10, "feet")
  3907. },
  3908. ]
  3909. ))
  3910. characterMakers.push(() => makeCharacter(
  3911. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3912. {
  3913. front: {
  3914. height: math.unit(2, "meter"),
  3915. weight: math.unit(50, "kg"),
  3916. name: "Front",
  3917. image: {
  3918. source: "./media/characters/kurribird/front.svg",
  3919. bottom: 0.015
  3920. }
  3921. },
  3922. frontAlt: {
  3923. height: math.unit(1.5, "meter"),
  3924. weight: math.unit(50, "kg"),
  3925. name: "Front (Alt)",
  3926. image: {
  3927. source: "./media/characters/kurribird/front-alt.svg",
  3928. extra: 1.45
  3929. }
  3930. },
  3931. },
  3932. [
  3933. {
  3934. name: "Normal",
  3935. height: math.unit(7, "feet")
  3936. },
  3937. {
  3938. name: "Big",
  3939. height: math.unit(12, "feet"),
  3940. default: true
  3941. },
  3942. {
  3943. name: "Macro",
  3944. height: math.unit(1500, "feet")
  3945. },
  3946. {
  3947. name: "Megamacro",
  3948. height: math.unit(2, "miles")
  3949. }
  3950. ]
  3951. ))
  3952. characterMakers.push(() => makeCharacter(
  3953. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3954. {
  3955. front: {
  3956. height: math.unit(2, "meter"),
  3957. weight: math.unit(80, "kg"),
  3958. name: "Front",
  3959. image: {
  3960. source: "./media/characters/elbial/front.svg",
  3961. extra: 1643 / 1556,
  3962. bottom: 60.2 / 1696
  3963. }
  3964. },
  3965. side: {
  3966. height: math.unit(2, "meter"),
  3967. weight: math.unit(80, "kg"),
  3968. name: "Side",
  3969. image: {
  3970. source: "./media/characters/elbial/side.svg",
  3971. extra: 1601/1528,
  3972. bottom: 97/1698
  3973. }
  3974. },
  3975. back: {
  3976. height: math.unit(2, "meter"),
  3977. weight: math.unit(80, "kg"),
  3978. name: "Back",
  3979. image: {
  3980. source: "./media/characters/elbial/back.svg",
  3981. extra: 1653/1569,
  3982. bottom: 20/1673
  3983. }
  3984. },
  3985. frontDressed: {
  3986. height: math.unit(2, "meter"),
  3987. weight: math.unit(80, "kg"),
  3988. name: "Front (Dressed)",
  3989. image: {
  3990. source: "./media/characters/elbial/front-dressed.svg",
  3991. extra: 1638/1569,
  3992. bottom: 70/1708
  3993. }
  3994. },
  3995. genitals: {
  3996. height: math.unit(2 / 3.367, "meter"),
  3997. name: "Genitals",
  3998. image: {
  3999. source: "./media/characters/elbial/genitals.svg"
  4000. }
  4001. },
  4002. },
  4003. [
  4004. {
  4005. name: "Large",
  4006. height: math.unit(100, "feet")
  4007. },
  4008. {
  4009. name: "Macro",
  4010. height: math.unit(500, "feet"),
  4011. default: true
  4012. },
  4013. {
  4014. name: "Megamacro",
  4015. height: math.unit(10, "miles")
  4016. },
  4017. {
  4018. name: "Gigamacro",
  4019. height: math.unit(25000, "miles")
  4020. },
  4021. {
  4022. name: "Full-Size",
  4023. height: math.unit(8000000, "gigaparsecs")
  4024. }
  4025. ]
  4026. ))
  4027. characterMakers.push(() => makeCharacter(
  4028. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4029. {
  4030. front: {
  4031. height: math.unit(2, "meter"),
  4032. weight: math.unit(60, "kg"),
  4033. name: "Front",
  4034. image: {
  4035. source: "./media/characters/noah/front.svg"
  4036. }
  4037. },
  4038. talons: {
  4039. height: math.unit(0.315, "meter"),
  4040. name: "Talons",
  4041. image: {
  4042. source: "./media/characters/noah/talons.svg"
  4043. }
  4044. }
  4045. },
  4046. [
  4047. {
  4048. name: "Large",
  4049. height: math.unit(50, "feet")
  4050. },
  4051. {
  4052. name: "Macro",
  4053. height: math.unit(750, "feet"),
  4054. default: true
  4055. },
  4056. {
  4057. name: "Megamacro",
  4058. height: math.unit(50, "miles")
  4059. },
  4060. {
  4061. name: "Gigamacro",
  4062. height: math.unit(100000, "miles")
  4063. },
  4064. {
  4065. name: "Full-Size",
  4066. height: math.unit(3000000000, "miles")
  4067. }
  4068. ]
  4069. ))
  4070. characterMakers.push(() => makeCharacter(
  4071. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4072. {
  4073. front: {
  4074. height: math.unit(2, "meter"),
  4075. weight: math.unit(80, "kg"),
  4076. name: "Front",
  4077. image: {
  4078. source: "./media/characters/natalya/front.svg"
  4079. }
  4080. },
  4081. back: {
  4082. height: math.unit(2, "meter"),
  4083. weight: math.unit(80, "kg"),
  4084. name: "Back",
  4085. image: {
  4086. source: "./media/characters/natalya/back.svg"
  4087. }
  4088. }
  4089. },
  4090. [
  4091. {
  4092. name: "Normal",
  4093. height: math.unit(150, "feet"),
  4094. default: true
  4095. },
  4096. {
  4097. name: "Megamacro",
  4098. height: math.unit(5, "miles")
  4099. },
  4100. {
  4101. name: "Full-Size",
  4102. height: math.unit(600, "kiloparsecs")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(2, "meter"),
  4111. weight: math.unit(50, "kg"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/erestrebah/front.svg",
  4115. extra: 1262/1162,
  4116. bottom: 96/1358
  4117. }
  4118. },
  4119. back: {
  4120. height: math.unit(2, "meter"),
  4121. weight: math.unit(50, "kg"),
  4122. name: "Back",
  4123. image: {
  4124. source: "./media/characters/erestrebah/back.svg",
  4125. extra: 1257/1139,
  4126. bottom: 13/1270
  4127. }
  4128. },
  4129. wing: {
  4130. height: math.unit(2, "meter"),
  4131. weight: math.unit(50, "kg"),
  4132. name: "Wing",
  4133. image: {
  4134. source: "./media/characters/erestrebah/wing.svg",
  4135. extra: 1262/1162,
  4136. bottom: 96/1358
  4137. }
  4138. },
  4139. mouth: {
  4140. height: math.unit(0.39, "feet"),
  4141. name: "Mouth",
  4142. image: {
  4143. source: "./media/characters/erestrebah/mouth.svg"
  4144. }
  4145. }
  4146. },
  4147. [
  4148. {
  4149. name: "Normal",
  4150. height: math.unit(10, "feet")
  4151. },
  4152. {
  4153. name: "Large",
  4154. height: math.unit(50, "feet"),
  4155. default: true
  4156. },
  4157. {
  4158. name: "Macro",
  4159. height: math.unit(300, "feet")
  4160. },
  4161. {
  4162. name: "Macro+",
  4163. height: math.unit(750, "feet")
  4164. },
  4165. {
  4166. name: "Megamacro",
  4167. height: math.unit(3, "miles")
  4168. }
  4169. ]
  4170. ))
  4171. characterMakers.push(() => makeCharacter(
  4172. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4173. {
  4174. front: {
  4175. height: math.unit(2, "meter"),
  4176. weight: math.unit(80, "kg"),
  4177. name: "Front",
  4178. image: {
  4179. source: "./media/characters/jennifer/front.svg",
  4180. bottom: 0.11,
  4181. extra: 1.16
  4182. }
  4183. },
  4184. frontAlt: {
  4185. height: math.unit(2, "meter"),
  4186. weight: math.unit(80, "kg"),
  4187. name: "Front (Alt)",
  4188. image: {
  4189. source: "./media/characters/jennifer/front-alt.svg"
  4190. }
  4191. }
  4192. },
  4193. [
  4194. {
  4195. name: "Canon Height",
  4196. height: math.unit(120, "feet"),
  4197. default: true
  4198. },
  4199. {
  4200. name: "Macro+",
  4201. height: math.unit(300, "feet")
  4202. },
  4203. {
  4204. name: "Megamacro",
  4205. height: math.unit(20000, "feet")
  4206. }
  4207. ]
  4208. ))
  4209. characterMakers.push(() => makeCharacter(
  4210. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4211. {
  4212. front: {
  4213. height: math.unit(2, "meter"),
  4214. weight: math.unit(50, "kg"),
  4215. name: "Front",
  4216. image: {
  4217. source: "./media/characters/kalista/front.svg",
  4218. extra: 1314/1145,
  4219. bottom: 101/1415
  4220. }
  4221. },
  4222. back: {
  4223. height: math.unit(2, "meter"),
  4224. weight: math.unit(50, "kg"),
  4225. name: "Back",
  4226. image: {
  4227. source: "./media/characters/kalista/back.svg",
  4228. extra: 1366 / 1156,
  4229. bottom: 33.9 / 1362.78
  4230. }
  4231. }
  4232. },
  4233. [
  4234. {
  4235. name: "Uncomfortably Small",
  4236. height: math.unit(10, "feet")
  4237. },
  4238. {
  4239. name: "Small",
  4240. height: math.unit(30, "feet")
  4241. },
  4242. {
  4243. name: "Macro",
  4244. height: math.unit(100, "feet"),
  4245. default: true
  4246. },
  4247. {
  4248. name: "Macro+",
  4249. height: math.unit(2000, "feet")
  4250. },
  4251. {
  4252. name: "True Form",
  4253. height: math.unit(8924, "miles")
  4254. }
  4255. ]
  4256. ))
  4257. characterMakers.push(() => makeCharacter(
  4258. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4259. {
  4260. front: {
  4261. height: math.unit(2, "meter"),
  4262. weight: math.unit(120, "kg"),
  4263. name: "Front",
  4264. image: {
  4265. source: "./media/characters/ggv/front.svg"
  4266. }
  4267. },
  4268. side: {
  4269. height: math.unit(2, "meter"),
  4270. weight: math.unit(120, "kg"),
  4271. name: "Side",
  4272. image: {
  4273. source: "./media/characters/ggv/side.svg"
  4274. }
  4275. }
  4276. },
  4277. [
  4278. {
  4279. name: "Extremely Puny",
  4280. height: math.unit(9 + 5 / 12, "feet")
  4281. },
  4282. {
  4283. name: "Horribly Small",
  4284. height: math.unit(47.7, "miles"),
  4285. default: true
  4286. },
  4287. {
  4288. name: "Reasonably Sized",
  4289. height: math.unit(25000, "parsecs")
  4290. },
  4291. {
  4292. name: "Slightly Uncompressed",
  4293. height: math.unit(7.77e31, "parsecs")
  4294. },
  4295. {
  4296. name: "Omniversal",
  4297. height: math.unit(1e300, "meters")
  4298. },
  4299. ]
  4300. ))
  4301. characterMakers.push(() => makeCharacter(
  4302. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4303. {
  4304. front: {
  4305. height: math.unit(2, "meter"),
  4306. weight: math.unit(75, "lb"),
  4307. name: "Front",
  4308. image: {
  4309. source: "./media/characters/napalm/front.svg"
  4310. }
  4311. },
  4312. back: {
  4313. height: math.unit(2, "meter"),
  4314. weight: math.unit(75, "lb"),
  4315. name: "Back",
  4316. image: {
  4317. source: "./media/characters/napalm/back.svg"
  4318. }
  4319. }
  4320. },
  4321. [
  4322. {
  4323. name: "Standard",
  4324. height: math.unit(55, "feet"),
  4325. default: true
  4326. }
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4331. {
  4332. front: {
  4333. height: math.unit(7 + 5 / 6, "feet"),
  4334. weight: math.unit(325, "lb"),
  4335. name: "Front",
  4336. image: {
  4337. source: "./media/characters/asana/front.svg",
  4338. extra: 1133 / 1060,
  4339. bottom: 15.2 / 1148.6
  4340. }
  4341. },
  4342. back: {
  4343. height: math.unit(7 + 5 / 6, "feet"),
  4344. weight: math.unit(325, "lb"),
  4345. name: "Back",
  4346. image: {
  4347. source: "./media/characters/asana/back.svg",
  4348. extra: 1114 / 1043,
  4349. bottom: 5 / 1120
  4350. }
  4351. },
  4352. dressedDark: {
  4353. height: math.unit(7 + 5 / 6, "feet"),
  4354. weight: math.unit(325, "lb"),
  4355. name: "Dressed (Dark)",
  4356. image: {
  4357. source: "./media/characters/asana/dressed-dark.svg",
  4358. extra: 1133 / 1060,
  4359. bottom: 15.2 / 1148.6
  4360. }
  4361. },
  4362. dressedLight: {
  4363. height: math.unit(7 + 5 / 6, "feet"),
  4364. weight: math.unit(325, "lb"),
  4365. name: "Dressed (Light)",
  4366. image: {
  4367. source: "./media/characters/asana/dressed-light.svg",
  4368. extra: 1133 / 1060,
  4369. bottom: 15.2 / 1148.6
  4370. }
  4371. },
  4372. },
  4373. [
  4374. {
  4375. name: "Standard",
  4376. height: math.unit(7 + 5 / 6, "feet"),
  4377. default: true
  4378. },
  4379. {
  4380. name: "Large",
  4381. height: math.unit(10, "meters")
  4382. },
  4383. {
  4384. name: "Macro",
  4385. height: math.unit(2500, "meters")
  4386. },
  4387. {
  4388. name: "Megamacro",
  4389. height: math.unit(5e6, "meters")
  4390. },
  4391. {
  4392. name: "Examacro",
  4393. height: math.unit(5e12, "lightyears")
  4394. },
  4395. {
  4396. name: "Max Size",
  4397. height: math.unit(1e31, "lightyears")
  4398. }
  4399. ]
  4400. ))
  4401. characterMakers.push(() => makeCharacter(
  4402. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4403. {
  4404. front: {
  4405. height: math.unit(2, "meter"),
  4406. weight: math.unit(60, "kg"),
  4407. name: "Front",
  4408. image: {
  4409. source: "./media/characters/ebony/front.svg",
  4410. bottom: 0.03,
  4411. extra: 1045 / 810 + 0.03
  4412. }
  4413. },
  4414. side: {
  4415. height: math.unit(2, "meter"),
  4416. weight: math.unit(60, "kg"),
  4417. name: "Side",
  4418. image: {
  4419. source: "./media/characters/ebony/side.svg",
  4420. bottom: 0.03,
  4421. extra: 1045 / 810 + 0.03
  4422. }
  4423. },
  4424. back: {
  4425. height: math.unit(2, "meter"),
  4426. weight: math.unit(60, "kg"),
  4427. name: "Back",
  4428. image: {
  4429. source: "./media/characters/ebony/back.svg",
  4430. bottom: 0.01,
  4431. extra: 1045 / 810 + 0.01
  4432. }
  4433. },
  4434. },
  4435. [
  4436. // TODO check why I did this lol
  4437. {
  4438. name: "Standard",
  4439. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4440. default: true
  4441. },
  4442. {
  4443. name: "Macro",
  4444. height: math.unit(200, "feet")
  4445. },
  4446. {
  4447. name: "Gigamacro",
  4448. height: math.unit(13000, "km")
  4449. }
  4450. ]
  4451. ))
  4452. characterMakers.push(() => makeCharacter(
  4453. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4454. {
  4455. front: {
  4456. height: math.unit(6, "feet"),
  4457. weight: math.unit(175, "lb"),
  4458. name: "Front",
  4459. image: {
  4460. source: "./media/characters/mountain/front.svg",
  4461. extra: 972 / 955,
  4462. bottom: 64 / 1036.6
  4463. }
  4464. },
  4465. back: {
  4466. height: math.unit(6, "feet"),
  4467. weight: math.unit(175, "lb"),
  4468. name: "Back",
  4469. image: {
  4470. source: "./media/characters/mountain/back.svg",
  4471. extra: 970 / 950,
  4472. bottom: 28.25 / 999
  4473. }
  4474. },
  4475. },
  4476. [
  4477. {
  4478. name: "Large",
  4479. height: math.unit(20, "meters")
  4480. },
  4481. {
  4482. name: "Macro",
  4483. height: math.unit(300, "meters")
  4484. },
  4485. {
  4486. name: "Gigamacro",
  4487. height: math.unit(10000, "km"),
  4488. default: true
  4489. },
  4490. {
  4491. name: "Examacro",
  4492. height: math.unit(10e9, "lightyears")
  4493. }
  4494. ]
  4495. ))
  4496. characterMakers.push(() => makeCharacter(
  4497. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4498. {
  4499. front: {
  4500. height: math.unit(8, "feet"),
  4501. weight: math.unit(500, "lb"),
  4502. name: "Front",
  4503. image: {
  4504. source: "./media/characters/rick/front.svg"
  4505. }
  4506. }
  4507. },
  4508. [
  4509. {
  4510. name: "Normal",
  4511. height: math.unit(8, "feet"),
  4512. default: true
  4513. },
  4514. {
  4515. name: "Macro",
  4516. height: math.unit(5, "km")
  4517. }
  4518. ]
  4519. ))
  4520. characterMakers.push(() => makeCharacter(
  4521. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4522. {
  4523. front: {
  4524. height: math.unit(8, "feet"),
  4525. weight: math.unit(120, "lb"),
  4526. name: "Front",
  4527. image: {
  4528. source: "./media/characters/ona/front.svg"
  4529. }
  4530. },
  4531. frontAlt: {
  4532. height: math.unit(8, "feet"),
  4533. weight: math.unit(120, "lb"),
  4534. name: "Front (Alt)",
  4535. image: {
  4536. source: "./media/characters/ona/front-alt.svg"
  4537. }
  4538. },
  4539. back: {
  4540. height: math.unit(8, "feet"),
  4541. weight: math.unit(120, "lb"),
  4542. name: "Back",
  4543. image: {
  4544. source: "./media/characters/ona/back.svg"
  4545. }
  4546. },
  4547. foot: {
  4548. height: math.unit(1.1, "feet"),
  4549. name: "Foot",
  4550. image: {
  4551. source: "./media/characters/ona/foot.svg"
  4552. }
  4553. }
  4554. },
  4555. [
  4556. {
  4557. name: "Megamacro",
  4558. height: math.unit(70, "km"),
  4559. default: true
  4560. },
  4561. {
  4562. name: "Gigamacro",
  4563. height: math.unit(681818, "miles")
  4564. },
  4565. {
  4566. name: "Examacro",
  4567. height: math.unit(3800000, "lightyears")
  4568. },
  4569. ]
  4570. ))
  4571. characterMakers.push(() => makeCharacter(
  4572. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4573. {
  4574. front: {
  4575. height: math.unit(12, "feet"),
  4576. weight: math.unit(3000, "lb"),
  4577. name: "Front",
  4578. image: {
  4579. source: "./media/characters/mech/front.svg",
  4580. extra: 2900 / 2770,
  4581. bottom: 110 / 3010
  4582. }
  4583. },
  4584. back: {
  4585. height: math.unit(12, "feet"),
  4586. weight: math.unit(3000, "lb"),
  4587. name: "Back",
  4588. image: {
  4589. source: "./media/characters/mech/back.svg",
  4590. extra: 3011 / 2890,
  4591. bottom: 94 / 3105
  4592. }
  4593. },
  4594. maw: {
  4595. height: math.unit(3.07, "feet"),
  4596. name: "Maw",
  4597. image: {
  4598. source: "./media/characters/mech/maw.svg"
  4599. }
  4600. },
  4601. head: {
  4602. height: math.unit(3.07, "feet"),
  4603. name: "Head",
  4604. image: {
  4605. source: "./media/characters/mech/head.svg"
  4606. }
  4607. },
  4608. dick: {
  4609. height: math.unit(1.43, "feet"),
  4610. name: "Dick",
  4611. image: {
  4612. source: "./media/characters/mech/dick.svg"
  4613. }
  4614. },
  4615. },
  4616. [
  4617. {
  4618. name: "Normal",
  4619. height: math.unit(12, "feet")
  4620. },
  4621. {
  4622. name: "Macro",
  4623. height: math.unit(300, "feet"),
  4624. default: true
  4625. },
  4626. {
  4627. name: "Macro+",
  4628. height: math.unit(1500, "feet")
  4629. },
  4630. ]
  4631. ))
  4632. characterMakers.push(() => makeCharacter(
  4633. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4634. {
  4635. front: {
  4636. height: math.unit(1.3, "meter"),
  4637. weight: math.unit(30, "kg"),
  4638. name: "Front",
  4639. image: {
  4640. source: "./media/characters/gregory/front.svg",
  4641. }
  4642. }
  4643. },
  4644. [
  4645. {
  4646. name: "Normal",
  4647. height: math.unit(1.3, "meter"),
  4648. default: true
  4649. },
  4650. {
  4651. name: "Macro",
  4652. height: math.unit(20, "meter")
  4653. }
  4654. ]
  4655. ))
  4656. characterMakers.push(() => makeCharacter(
  4657. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4658. {
  4659. front: {
  4660. height: math.unit(2.8, "meter"),
  4661. weight: math.unit(200, "kg"),
  4662. name: "Front",
  4663. image: {
  4664. source: "./media/characters/elory/front.svg",
  4665. }
  4666. }
  4667. },
  4668. [
  4669. {
  4670. name: "Normal",
  4671. height: math.unit(2.8, "meter"),
  4672. default: true
  4673. },
  4674. {
  4675. name: "Macro",
  4676. height: math.unit(38, "meter")
  4677. }
  4678. ]
  4679. ))
  4680. characterMakers.push(() => makeCharacter(
  4681. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4682. {
  4683. front: {
  4684. height: math.unit(470, "feet"),
  4685. weight: math.unit(924, "tons"),
  4686. name: "Front",
  4687. image: {
  4688. source: "./media/characters/angelpatamon/front.svg",
  4689. }
  4690. }
  4691. },
  4692. [
  4693. {
  4694. name: "Normal",
  4695. height: math.unit(470, "feet"),
  4696. default: true
  4697. },
  4698. {
  4699. name: "Deity Size I",
  4700. height: math.unit(28651.2, "km")
  4701. },
  4702. {
  4703. name: "Deity Size II",
  4704. height: math.unit(171907.2, "km")
  4705. }
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4710. {
  4711. side: {
  4712. height: math.unit(7.2, "meter"),
  4713. weight: math.unit(8.2, "tons"),
  4714. name: "Side",
  4715. image: {
  4716. source: "./media/characters/cryae/side.svg",
  4717. extra: 3500 / 1500
  4718. }
  4719. }
  4720. },
  4721. [
  4722. {
  4723. name: "Normal",
  4724. height: math.unit(7.2, "meter"),
  4725. default: true
  4726. }
  4727. ]
  4728. ))
  4729. characterMakers.push(() => makeCharacter(
  4730. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4731. {
  4732. front: {
  4733. height: math.unit(6, "feet"),
  4734. weight: math.unit(175, "lb"),
  4735. name: "Front",
  4736. image: {
  4737. source: "./media/characters/xera/front.svg",
  4738. extra: 2377 / 1972,
  4739. bottom: 75.5 / 2452
  4740. }
  4741. },
  4742. side: {
  4743. height: math.unit(6, "feet"),
  4744. weight: math.unit(175, "lb"),
  4745. name: "Side",
  4746. image: {
  4747. source: "./media/characters/xera/side.svg",
  4748. extra: 2345 / 2019,
  4749. bottom: 39.7 / 2384
  4750. }
  4751. },
  4752. back: {
  4753. height: math.unit(6, "feet"),
  4754. weight: math.unit(175, "lb"),
  4755. name: "Back",
  4756. image: {
  4757. source: "./media/characters/xera/back.svg",
  4758. extra: 2095 / 1984,
  4759. bottom: 67 / 2166
  4760. }
  4761. },
  4762. },
  4763. [
  4764. {
  4765. name: "Small",
  4766. height: math.unit(10, "feet")
  4767. },
  4768. {
  4769. name: "Macro",
  4770. height: math.unit(500, "meters"),
  4771. default: true
  4772. },
  4773. {
  4774. name: "Macro+",
  4775. height: math.unit(10, "km")
  4776. },
  4777. {
  4778. name: "Gigamacro",
  4779. height: math.unit(25000, "km")
  4780. },
  4781. {
  4782. name: "Teramacro",
  4783. height: math.unit(3e6, "km")
  4784. }
  4785. ]
  4786. ))
  4787. characterMakers.push(() => makeCharacter(
  4788. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4789. {
  4790. front: {
  4791. height: math.unit(6, "feet"),
  4792. weight: math.unit(175, "lb"),
  4793. name: "Front",
  4794. image: {
  4795. source: "./media/characters/nebula/front.svg",
  4796. extra: 2566 / 2362,
  4797. bottom: 81 / 2644
  4798. }
  4799. }
  4800. },
  4801. [
  4802. {
  4803. name: "Small",
  4804. height: math.unit(4.5, "meters")
  4805. },
  4806. {
  4807. name: "Macro",
  4808. height: math.unit(1500, "meters"),
  4809. default: true
  4810. },
  4811. {
  4812. name: "Megamacro",
  4813. height: math.unit(150, "km")
  4814. },
  4815. {
  4816. name: "Gigamacro",
  4817. height: math.unit(27000, "km")
  4818. }
  4819. ]
  4820. ))
  4821. characterMakers.push(() => makeCharacter(
  4822. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4823. {
  4824. front: {
  4825. height: math.unit(6, "feet"),
  4826. weight: math.unit(225, "lb"),
  4827. name: "Front",
  4828. image: {
  4829. source: "./media/characters/abysgar/front.svg",
  4830. extra: 1739/1614,
  4831. bottom: 71/1810
  4832. }
  4833. },
  4834. frontNsfw: {
  4835. height: math.unit(6, "feet"),
  4836. weight: math.unit(225, "lb"),
  4837. name: "Front (NSFW)",
  4838. image: {
  4839. source: "./media/characters/abysgar/front-nsfw.svg",
  4840. extra: 1739/1614,
  4841. bottom: 71/1810
  4842. }
  4843. },
  4844. back: {
  4845. height: math.unit(4.6, "feet"),
  4846. weight: math.unit(225, "lb"),
  4847. name: "Back",
  4848. image: {
  4849. source: "./media/characters/abysgar/back.svg",
  4850. extra: 1384/1327,
  4851. bottom: 0/1384
  4852. }
  4853. },
  4854. head: {
  4855. height: math.unit(1.25, "feet"),
  4856. name: "Head",
  4857. image: {
  4858. source: "./media/characters/abysgar/head.svg",
  4859. extra: 669/569,
  4860. bottom: 0/669
  4861. }
  4862. },
  4863. },
  4864. [
  4865. {
  4866. name: "Small",
  4867. height: math.unit(4.5, "meters")
  4868. },
  4869. {
  4870. name: "Macro",
  4871. height: math.unit(1250, "meters"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Megamacro",
  4876. height: math.unit(125, "km")
  4877. },
  4878. {
  4879. name: "Gigamacro",
  4880. height: math.unit(26000, "km")
  4881. }
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4886. {
  4887. front: {
  4888. height: math.unit(6, "feet"),
  4889. weight: math.unit(180, "lb"),
  4890. name: "Front",
  4891. image: {
  4892. source: "./media/characters/yakuz/front.svg"
  4893. }
  4894. }
  4895. },
  4896. [
  4897. {
  4898. name: "Small",
  4899. height: math.unit(5, "meters")
  4900. },
  4901. {
  4902. name: "Macro",
  4903. height: math.unit(1500, "meters"),
  4904. default: true
  4905. },
  4906. {
  4907. name: "Megamacro",
  4908. height: math.unit(200, "km")
  4909. },
  4910. {
  4911. name: "Gigamacro",
  4912. height: math.unit(100000, "km")
  4913. }
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4918. {
  4919. front: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(175, "lb"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/mirova/front.svg",
  4925. extra: 3334 / 3071,
  4926. bottom: 42 / 3375.6
  4927. }
  4928. }
  4929. },
  4930. [
  4931. {
  4932. name: "Small",
  4933. height: math.unit(5, "meters")
  4934. },
  4935. {
  4936. name: "Macro",
  4937. height: math.unit(900, "meters"),
  4938. default: true
  4939. },
  4940. {
  4941. name: "Megamacro",
  4942. height: math.unit(135, "km")
  4943. },
  4944. {
  4945. name: "Gigamacro",
  4946. height: math.unit(20000, "km")
  4947. }
  4948. ]
  4949. ))
  4950. characterMakers.push(() => makeCharacter(
  4951. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4952. {
  4953. side: {
  4954. height: math.unit(28.35, "feet"),
  4955. weight: math.unit(99.75, "tons"),
  4956. name: "Side",
  4957. image: {
  4958. source: "./media/characters/asana-mech/side.svg",
  4959. extra: 923 / 699,
  4960. bottom: 50 / 975
  4961. }
  4962. },
  4963. chaingun: {
  4964. height: math.unit(7, "feet"),
  4965. weight: math.unit(2400, "lb"),
  4966. name: "Chaingun",
  4967. image: {
  4968. source: "./media/characters/asana-mech/chaingun.svg"
  4969. }
  4970. },
  4971. laser: {
  4972. height: math.unit(7.12, "feet"),
  4973. weight: math.unit(2000, "lb"),
  4974. name: "Laser",
  4975. image: {
  4976. source: "./media/characters/asana-mech/laser.svg"
  4977. }
  4978. },
  4979. },
  4980. [
  4981. {
  4982. name: "Normal",
  4983. height: math.unit(28.35, "feet"),
  4984. default: true
  4985. },
  4986. {
  4987. name: "Macro",
  4988. height: math.unit(2500, "feet")
  4989. },
  4990. {
  4991. name: "Megamacro",
  4992. height: math.unit(25, "miles")
  4993. },
  4994. {
  4995. name: "Examacro",
  4996. height: math.unit(6e8, "lightyears")
  4997. },
  4998. ]
  4999. ))
  5000. characterMakers.push(() => makeCharacter(
  5001. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5002. {
  5003. front: {
  5004. height: math.unit(5, "meters"),
  5005. weight: math.unit(1000, "kg"),
  5006. name: "Front",
  5007. image: {
  5008. source: "./media/characters/asche/front.svg",
  5009. extra: 1258 / 1190,
  5010. bottom: 47 / 1305
  5011. }
  5012. },
  5013. frontUnderwear: {
  5014. height: math.unit(5, "meters"),
  5015. weight: math.unit(1000, "kg"),
  5016. name: "Front (Underwear)",
  5017. image: {
  5018. source: "./media/characters/asche/front-underwear.svg",
  5019. extra: 1258 / 1190,
  5020. bottom: 47 / 1305
  5021. }
  5022. },
  5023. frontDressed: {
  5024. height: math.unit(5, "meters"),
  5025. weight: math.unit(1000, "kg"),
  5026. name: "Front (Dressed)",
  5027. image: {
  5028. source: "./media/characters/asche/front-dressed.svg",
  5029. extra: 1258 / 1190,
  5030. bottom: 47 / 1305
  5031. }
  5032. },
  5033. frontArmor: {
  5034. height: math.unit(5, "meters"),
  5035. weight: math.unit(1000, "kg"),
  5036. name: "Front (Armored)",
  5037. image: {
  5038. source: "./media/characters/asche/front-armored.svg",
  5039. extra: 1374 / 1308,
  5040. bottom: 23 / 1397
  5041. }
  5042. },
  5043. mp724: {
  5044. height: math.unit(0.96, "meters"),
  5045. weight: math.unit(38, "kg"),
  5046. name: "H&K MP724",
  5047. image: {
  5048. source: "./media/characters/asche/h&k-mp724.svg"
  5049. }
  5050. },
  5051. side: {
  5052. height: math.unit(5, "meters"),
  5053. weight: math.unit(1000, "kg"),
  5054. name: "Side",
  5055. image: {
  5056. source: "./media/characters/asche/side.svg",
  5057. extra: 1717 / 1609,
  5058. bottom: 0.005
  5059. }
  5060. },
  5061. back: {
  5062. height: math.unit(5, "meters"),
  5063. weight: math.unit(1000, "kg"),
  5064. name: "Back",
  5065. image: {
  5066. source: "./media/characters/asche/back.svg",
  5067. extra: 1570 / 1501
  5068. }
  5069. },
  5070. },
  5071. [
  5072. {
  5073. name: "DEFCON 5",
  5074. height: math.unit(5, "meters")
  5075. },
  5076. {
  5077. name: "DEFCON 4",
  5078. height: math.unit(500, "meters"),
  5079. default: true
  5080. },
  5081. {
  5082. name: "DEFCON 3",
  5083. height: math.unit(5, "km")
  5084. },
  5085. {
  5086. name: "DEFCON 2",
  5087. height: math.unit(500, "km")
  5088. },
  5089. {
  5090. name: "DEFCON 1",
  5091. height: math.unit(500000, "km")
  5092. },
  5093. {
  5094. name: "DEFCON 0",
  5095. height: math.unit(3, "gigaparsecs")
  5096. },
  5097. ]
  5098. ))
  5099. characterMakers.push(() => makeCharacter(
  5100. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5101. {
  5102. front: {
  5103. height: math.unit(2, "meters"),
  5104. weight: math.unit(76, "kg"),
  5105. name: "Front",
  5106. image: {
  5107. source: "./media/characters/gale/front.svg"
  5108. }
  5109. },
  5110. frontAlt1: {
  5111. height: math.unit(2, "meters"),
  5112. weight: math.unit(76, "kg"),
  5113. name: "Front (Alt 1)",
  5114. image: {
  5115. source: "./media/characters/gale/front-alt-1.svg"
  5116. }
  5117. },
  5118. frontAlt2: {
  5119. height: math.unit(2, "meters"),
  5120. weight: math.unit(76, "kg"),
  5121. name: "Front (Alt 2)",
  5122. image: {
  5123. source: "./media/characters/gale/front-alt-2.svg"
  5124. }
  5125. },
  5126. },
  5127. [
  5128. {
  5129. name: "Normal",
  5130. height: math.unit(7, "feet")
  5131. },
  5132. {
  5133. name: "Macro",
  5134. height: math.unit(150, "feet"),
  5135. default: true
  5136. },
  5137. {
  5138. name: "Macro+",
  5139. height: math.unit(300, "feet")
  5140. },
  5141. ]
  5142. ))
  5143. characterMakers.push(() => makeCharacter(
  5144. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5145. {
  5146. front: {
  5147. height: math.unit(5 + 10/12, "feet"),
  5148. weight: math.unit(67, "kg"),
  5149. name: "Front",
  5150. image: {
  5151. source: "./media/characters/draylen/front.svg",
  5152. extra: 832/777,
  5153. bottom: 85/917
  5154. }
  5155. }
  5156. },
  5157. [
  5158. {
  5159. name: "Normal",
  5160. height: math.unit(5 + 10/12, "feet")
  5161. },
  5162. {
  5163. name: "Macro",
  5164. height: math.unit(150, "feet"),
  5165. default: true
  5166. }
  5167. ]
  5168. ))
  5169. characterMakers.push(() => makeCharacter(
  5170. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5171. {
  5172. front: {
  5173. height: math.unit(7 + 9 / 12, "feet"),
  5174. weight: math.unit(379, "lbs"),
  5175. name: "Front",
  5176. image: {
  5177. source: "./media/characters/chez/front.svg"
  5178. }
  5179. },
  5180. side: {
  5181. height: math.unit(7 + 9 / 12, "feet"),
  5182. weight: math.unit(379, "lbs"),
  5183. name: "Side",
  5184. image: {
  5185. source: "./media/characters/chez/side.svg"
  5186. }
  5187. }
  5188. },
  5189. [
  5190. {
  5191. name: "Normal",
  5192. height: math.unit(7 + 9 / 12, "feet"),
  5193. default: true
  5194. },
  5195. {
  5196. name: "God King",
  5197. height: math.unit(9750000, "meters")
  5198. }
  5199. ]
  5200. ))
  5201. characterMakers.push(() => makeCharacter(
  5202. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5203. {
  5204. front: {
  5205. height: math.unit(6, "feet"),
  5206. weight: math.unit(275, "lbs"),
  5207. name: "Front",
  5208. image: {
  5209. source: "./media/characters/kaylum/front.svg",
  5210. bottom: 0.01,
  5211. extra: 1166 / 1031
  5212. }
  5213. },
  5214. frontWingless: {
  5215. height: math.unit(6, "feet"),
  5216. weight: math.unit(275, "lbs"),
  5217. name: "Front (Wingless)",
  5218. image: {
  5219. source: "./media/characters/kaylum/front-wingless.svg",
  5220. bottom: 0.01,
  5221. extra: 1117 / 1031
  5222. }
  5223. }
  5224. },
  5225. [
  5226. {
  5227. name: "Normal",
  5228. height: math.unit(3.05, "meters")
  5229. },
  5230. {
  5231. name: "Master",
  5232. height: math.unit(5.5, "meters")
  5233. },
  5234. {
  5235. name: "Rampage",
  5236. height: math.unit(19, "meters")
  5237. },
  5238. {
  5239. name: "Macro Lite",
  5240. height: math.unit(37, "meters")
  5241. },
  5242. {
  5243. name: "Hyper Predator",
  5244. height: math.unit(61, "meters")
  5245. },
  5246. {
  5247. name: "Macro",
  5248. height: math.unit(138, "meters"),
  5249. default: true
  5250. }
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5255. {
  5256. front: {
  5257. height: math.unit(5 + 5 / 12, "feet"),
  5258. weight: math.unit(120, "lbs"),
  5259. name: "Front",
  5260. image: {
  5261. source: "./media/characters/geta/front.svg",
  5262. extra: 1003/933,
  5263. bottom: 21/1024
  5264. }
  5265. },
  5266. paw: {
  5267. height: math.unit(0.35, "feet"),
  5268. name: "Paw",
  5269. image: {
  5270. source: "./media/characters/geta/paw.svg"
  5271. }
  5272. },
  5273. },
  5274. [
  5275. {
  5276. name: "Micro",
  5277. height: math.unit(3, "inches"),
  5278. default: true
  5279. },
  5280. {
  5281. name: "Normal",
  5282. height: math.unit(5 + 5 / 12, "feet")
  5283. }
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(300, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/tyrnn/front.svg"
  5295. }
  5296. }
  5297. },
  5298. [
  5299. {
  5300. name: "Main Height",
  5301. height: math.unit(355, "feet"),
  5302. default: true
  5303. },
  5304. {
  5305. name: "Fave. Height",
  5306. height: math.unit(2400, "feet")
  5307. }
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5312. {
  5313. front: {
  5314. height: math.unit(6, "feet"),
  5315. weight: math.unit(300, "lbs"),
  5316. name: "Front",
  5317. image: {
  5318. source: "./media/characters/appledectomy/front.svg"
  5319. }
  5320. }
  5321. },
  5322. [
  5323. {
  5324. name: "Macro",
  5325. height: math.unit(2500, "feet")
  5326. },
  5327. {
  5328. name: "Megamacro",
  5329. height: math.unit(50, "miles"),
  5330. default: true
  5331. },
  5332. {
  5333. name: "Gigamacro",
  5334. height: math.unit(5000, "miles")
  5335. },
  5336. {
  5337. name: "Teramacro",
  5338. height: math.unit(250000, "miles")
  5339. },
  5340. ]
  5341. ))
  5342. characterMakers.push(() => makeCharacter(
  5343. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5344. {
  5345. front: {
  5346. height: math.unit(6, "feet"),
  5347. weight: math.unit(200, "lbs"),
  5348. name: "Front",
  5349. image: {
  5350. source: "./media/characters/vulpes/front.svg",
  5351. extra: 573 / 543,
  5352. bottom: 0.033
  5353. }
  5354. },
  5355. side: {
  5356. height: math.unit(6, "feet"),
  5357. weight: math.unit(200, "lbs"),
  5358. name: "Side",
  5359. image: {
  5360. source: "./media/characters/vulpes/side.svg",
  5361. extra: 577 / 549,
  5362. bottom: 11 / 588
  5363. }
  5364. },
  5365. back: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(200, "lbs"),
  5368. name: "Back",
  5369. image: {
  5370. source: "./media/characters/vulpes/back.svg",
  5371. extra: 573 / 549,
  5372. bottom: 20 / 593
  5373. }
  5374. },
  5375. feet: {
  5376. height: math.unit(1.276, "feet"),
  5377. name: "Feet",
  5378. image: {
  5379. source: "./media/characters/vulpes/feet.svg"
  5380. }
  5381. },
  5382. maw: {
  5383. height: math.unit(1.18, "feet"),
  5384. name: "Maw",
  5385. image: {
  5386. source: "./media/characters/vulpes/maw.svg"
  5387. }
  5388. },
  5389. },
  5390. [
  5391. {
  5392. name: "Micro",
  5393. height: math.unit(2, "inches")
  5394. },
  5395. {
  5396. name: "Normal",
  5397. height: math.unit(6.3, "feet")
  5398. },
  5399. {
  5400. name: "Macro",
  5401. height: math.unit(850, "feet")
  5402. },
  5403. {
  5404. name: "Megamacro",
  5405. height: math.unit(7500, "feet"),
  5406. default: true
  5407. },
  5408. {
  5409. name: "Gigamacro",
  5410. height: math.unit(570000, "miles")
  5411. }
  5412. ]
  5413. ))
  5414. characterMakers.push(() => makeCharacter(
  5415. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5416. {
  5417. front: {
  5418. height: math.unit(6, "feet"),
  5419. weight: math.unit(210, "lbs"),
  5420. name: "Front",
  5421. image: {
  5422. source: "./media/characters/rain-fallen/front.svg"
  5423. }
  5424. },
  5425. side: {
  5426. height: math.unit(6, "feet"),
  5427. weight: math.unit(210, "lbs"),
  5428. name: "Side",
  5429. image: {
  5430. source: "./media/characters/rain-fallen/side.svg"
  5431. }
  5432. },
  5433. back: {
  5434. height: math.unit(6, "feet"),
  5435. weight: math.unit(210, "lbs"),
  5436. name: "Back",
  5437. image: {
  5438. source: "./media/characters/rain-fallen/back.svg"
  5439. }
  5440. },
  5441. feral: {
  5442. height: math.unit(9, "feet"),
  5443. weight: math.unit(700, "lbs"),
  5444. name: "Feral",
  5445. image: {
  5446. source: "./media/characters/rain-fallen/feral.svg"
  5447. }
  5448. },
  5449. },
  5450. [
  5451. {
  5452. name: "Meddling with Mortals",
  5453. height: math.unit(8 + 8/12, "feet")
  5454. },
  5455. {
  5456. name: "Normal",
  5457. height: math.unit(5, "meter")
  5458. },
  5459. {
  5460. name: "Macro",
  5461. height: math.unit(150, "meter"),
  5462. default: true
  5463. },
  5464. {
  5465. name: "Megamacro",
  5466. height: math.unit(278e6, "meter")
  5467. },
  5468. {
  5469. name: "Gigamacro",
  5470. height: math.unit(2e9, "meter")
  5471. },
  5472. {
  5473. name: "Teramacro",
  5474. height: math.unit(8e12, "meter")
  5475. },
  5476. {
  5477. name: "Devourer",
  5478. height: math.unit(14, "zettameters")
  5479. },
  5480. {
  5481. name: "Scarlet King",
  5482. height: math.unit(18, "yottameters")
  5483. },
  5484. {
  5485. name: "Void",
  5486. height: math.unit(1e88, "yottameters")
  5487. }
  5488. ]
  5489. ))
  5490. characterMakers.push(() => makeCharacter(
  5491. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5492. {
  5493. standing: {
  5494. height: math.unit(6, "feet"),
  5495. weight: math.unit(180, "lbs"),
  5496. name: "Standing",
  5497. image: {
  5498. source: "./media/characters/zaakira/standing.svg",
  5499. extra: 1599/1504,
  5500. bottom: 39/1638
  5501. }
  5502. },
  5503. laying: {
  5504. height: math.unit(3.3, "feet"),
  5505. weight: math.unit(180, "lbs"),
  5506. name: "Laying",
  5507. image: {
  5508. source: "./media/characters/zaakira/laying.svg"
  5509. }
  5510. },
  5511. },
  5512. [
  5513. {
  5514. name: "Normal",
  5515. height: math.unit(12, "feet")
  5516. },
  5517. {
  5518. name: "Macro",
  5519. height: math.unit(279, "feet"),
  5520. default: true
  5521. }
  5522. ]
  5523. ))
  5524. characterMakers.push(() => makeCharacter(
  5525. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5526. {
  5527. femSfw: {
  5528. height: math.unit(8, "feet"),
  5529. weight: math.unit(350, "lb"),
  5530. name: "Fem",
  5531. image: {
  5532. source: "./media/characters/sigvald/fem-sfw.svg",
  5533. extra: 182 / 164,
  5534. bottom: 8.7 / 190.5
  5535. }
  5536. },
  5537. femNsfw: {
  5538. height: math.unit(8, "feet"),
  5539. weight: math.unit(350, "lb"),
  5540. name: "Fem (NSFW)",
  5541. image: {
  5542. source: "./media/characters/sigvald/fem-nsfw.svg",
  5543. extra: 182 / 164,
  5544. bottom: 8.7 / 190.5
  5545. }
  5546. },
  5547. maleNsfw: {
  5548. height: math.unit(8, "feet"),
  5549. weight: math.unit(350, "lb"),
  5550. name: "Male (NSFW)",
  5551. image: {
  5552. source: "./media/characters/sigvald/male-nsfw.svg",
  5553. extra: 182 / 164,
  5554. bottom: 8.7 / 190.5
  5555. }
  5556. },
  5557. hermNsfw: {
  5558. height: math.unit(8, "feet"),
  5559. weight: math.unit(350, "lb"),
  5560. name: "Herm (NSFW)",
  5561. image: {
  5562. source: "./media/characters/sigvald/herm-nsfw.svg",
  5563. extra: 182 / 164,
  5564. bottom: 8.7 / 190.5
  5565. }
  5566. },
  5567. dick: {
  5568. height: math.unit(2.36, "feet"),
  5569. name: "Dick",
  5570. image: {
  5571. source: "./media/characters/sigvald/dick.svg"
  5572. }
  5573. },
  5574. eye: {
  5575. height: math.unit(0.31, "feet"),
  5576. name: "Eye",
  5577. image: {
  5578. source: "./media/characters/sigvald/eye.svg"
  5579. }
  5580. },
  5581. mouth: {
  5582. height: math.unit(0.92, "feet"),
  5583. name: "Mouth",
  5584. image: {
  5585. source: "./media/characters/sigvald/mouth.svg"
  5586. }
  5587. },
  5588. paws: {
  5589. height: math.unit(2.2, "feet"),
  5590. name: "Paws",
  5591. image: {
  5592. source: "./media/characters/sigvald/paws.svg"
  5593. }
  5594. }
  5595. },
  5596. [
  5597. {
  5598. name: "Normal",
  5599. height: math.unit(8, "feet")
  5600. },
  5601. {
  5602. name: "Large",
  5603. height: math.unit(12, "feet")
  5604. },
  5605. {
  5606. name: "Larger",
  5607. height: math.unit(20, "feet")
  5608. },
  5609. {
  5610. name: "Macro",
  5611. height: math.unit(150, "feet")
  5612. },
  5613. {
  5614. name: "Macro+",
  5615. height: math.unit(200, "feet"),
  5616. default: true
  5617. },
  5618. ]
  5619. ))
  5620. characterMakers.push(() => makeCharacter(
  5621. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5622. {
  5623. side: {
  5624. height: math.unit(12, "feet"),
  5625. weight: math.unit(2000, "kg"),
  5626. name: "Side",
  5627. image: {
  5628. source: "./media/characters/scott/side.svg",
  5629. extra: 754 / 724,
  5630. bottom: 0.069
  5631. }
  5632. },
  5633. upright: {
  5634. height: math.unit(12, "feet"),
  5635. weight: math.unit(2000, "kg"),
  5636. name: "Upright",
  5637. image: {
  5638. source: "./media/characters/scott/upright.svg",
  5639. extra: 3881 / 3722,
  5640. bottom: 0.05
  5641. }
  5642. },
  5643. },
  5644. [
  5645. {
  5646. name: "Normal",
  5647. height: math.unit(12, "feet"),
  5648. default: true
  5649. },
  5650. ]
  5651. ))
  5652. characterMakers.push(() => makeCharacter(
  5653. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5654. {
  5655. side: {
  5656. height: math.unit(8, "meters"),
  5657. weight: math.unit(84755, "lbs"),
  5658. name: "Side",
  5659. image: {
  5660. source: "./media/characters/tobias/side.svg",
  5661. extra: 1474 / 1096,
  5662. bottom: 38.9 / 1513.1235
  5663. }
  5664. },
  5665. },
  5666. [
  5667. {
  5668. name: "Normal",
  5669. height: math.unit(8, "meters"),
  5670. default: true
  5671. },
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5676. {
  5677. front: {
  5678. height: math.unit(5.5, "feet"),
  5679. weight: math.unit(400, "lbs"),
  5680. name: "Front",
  5681. image: {
  5682. source: "./media/characters/kieran/front.svg",
  5683. extra: 2694 / 2364,
  5684. bottom: 217 / 2908
  5685. }
  5686. },
  5687. side: {
  5688. height: math.unit(5.5, "feet"),
  5689. weight: math.unit(400, "lbs"),
  5690. name: "Side",
  5691. image: {
  5692. source: "./media/characters/kieran/side.svg",
  5693. extra: 875 / 777,
  5694. bottom: 84.6 / 959
  5695. }
  5696. },
  5697. },
  5698. [
  5699. {
  5700. name: "Normal",
  5701. height: math.unit(5.5, "feet"),
  5702. default: true
  5703. },
  5704. ]
  5705. ))
  5706. characterMakers.push(() => makeCharacter(
  5707. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5708. {
  5709. side: {
  5710. height: math.unit(2, "meters"),
  5711. weight: math.unit(70, "kg"),
  5712. name: "Side",
  5713. image: {
  5714. source: "./media/characters/sanya/side.svg",
  5715. bottom: 0.02,
  5716. extra: 1.02
  5717. }
  5718. },
  5719. },
  5720. [
  5721. {
  5722. name: "Small",
  5723. height: math.unit(2, "meters")
  5724. },
  5725. {
  5726. name: "Normal",
  5727. height: math.unit(3, "meters")
  5728. },
  5729. {
  5730. name: "Macro",
  5731. height: math.unit(16, "meters"),
  5732. default: true
  5733. },
  5734. ]
  5735. ))
  5736. characterMakers.push(() => makeCharacter(
  5737. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5738. {
  5739. front: {
  5740. height: math.unit(2, "meters"),
  5741. weight: math.unit(120, "kg"),
  5742. name: "Front",
  5743. image: {
  5744. source: "./media/characters/miranda/front.svg",
  5745. extra: 195 / 185,
  5746. bottom: 10.9 / 206.5
  5747. }
  5748. },
  5749. back: {
  5750. height: math.unit(2, "meters"),
  5751. weight: math.unit(120, "kg"),
  5752. name: "Back",
  5753. image: {
  5754. source: "./media/characters/miranda/back.svg",
  5755. extra: 201 / 193,
  5756. bottom: 2.3 / 203.7
  5757. }
  5758. },
  5759. },
  5760. [
  5761. {
  5762. name: "Normal",
  5763. height: math.unit(10, "feet"),
  5764. default: true
  5765. }
  5766. ]
  5767. ))
  5768. characterMakers.push(() => makeCharacter(
  5769. { name: "James", species: ["deer"], tags: ["anthro"] },
  5770. {
  5771. side: {
  5772. height: math.unit(2, "meters"),
  5773. weight: math.unit(100, "kg"),
  5774. name: "Front",
  5775. image: {
  5776. source: "./media/characters/james/front.svg",
  5777. extra: 10 / 8.5
  5778. }
  5779. },
  5780. },
  5781. [
  5782. {
  5783. name: "Normal",
  5784. height: math.unit(8.5, "feet"),
  5785. default: true
  5786. }
  5787. ]
  5788. ))
  5789. characterMakers.push(() => makeCharacter(
  5790. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5791. {
  5792. side: {
  5793. height: math.unit(9.5, "feet"),
  5794. weight: math.unit(2500, "lbs"),
  5795. name: "Side",
  5796. image: {
  5797. source: "./media/characters/heather/side.svg"
  5798. }
  5799. },
  5800. },
  5801. [
  5802. {
  5803. name: "Normal",
  5804. height: math.unit(9.5, "feet"),
  5805. default: true
  5806. }
  5807. ]
  5808. ))
  5809. characterMakers.push(() => makeCharacter(
  5810. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5811. {
  5812. side: {
  5813. height: math.unit(6.5, "feet"),
  5814. weight: math.unit(400, "lbs"),
  5815. name: "Side",
  5816. image: {
  5817. source: "./media/characters/lukas/side.svg",
  5818. extra: 7.25 / 6.5
  5819. }
  5820. },
  5821. },
  5822. [
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(6.5, "feet"),
  5826. default: true
  5827. }
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5832. {
  5833. side: {
  5834. height: math.unit(5, "feet"),
  5835. weight: math.unit(3000, "lbs"),
  5836. name: "Side",
  5837. image: {
  5838. source: "./media/characters/louise/side.svg"
  5839. }
  5840. },
  5841. },
  5842. [
  5843. {
  5844. name: "Normal",
  5845. height: math.unit(5, "feet"),
  5846. default: true
  5847. }
  5848. ]
  5849. ))
  5850. characterMakers.push(() => makeCharacter(
  5851. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5852. {
  5853. side: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(150, "lbs"),
  5856. name: "Side",
  5857. image: {
  5858. source: "./media/characters/ramona/side.svg",
  5859. extra: 871/854,
  5860. bottom: 41/912
  5861. }
  5862. },
  5863. },
  5864. [
  5865. {
  5866. name: "Normal",
  5867. height: math.unit(6 + 4/12, "feet")
  5868. },
  5869. {
  5870. name: "Minimacro",
  5871. height: math.unit(5.3, "meters"),
  5872. default: true
  5873. },
  5874. {
  5875. name: "Macro",
  5876. height: math.unit(20, "stories")
  5877. },
  5878. {
  5879. name: "Macro+",
  5880. height: math.unit(50, "stories")
  5881. },
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5886. {
  5887. standing: {
  5888. height: math.unit(5.75, "feet"),
  5889. weight: math.unit(160, "lbs"),
  5890. name: "Standing",
  5891. image: {
  5892. source: "./media/characters/deerpuff/standing.svg",
  5893. extra: 682 / 624
  5894. }
  5895. },
  5896. sitting: {
  5897. height: math.unit(5.75 / 1.79, "feet"),
  5898. weight: math.unit(160, "lbs"),
  5899. name: "Sitting",
  5900. image: {
  5901. source: "./media/characters/deerpuff/sitting.svg",
  5902. bottom: 44 / 400,
  5903. extra: 1
  5904. }
  5905. },
  5906. taurLaying: {
  5907. height: math.unit(6, "feet"),
  5908. weight: math.unit(400, "lbs"),
  5909. name: "Taur (Laying)",
  5910. image: {
  5911. source: "./media/characters/deerpuff/taur-laying.svg"
  5912. }
  5913. },
  5914. },
  5915. [
  5916. {
  5917. name: "Puffball",
  5918. height: math.unit(6, "inches")
  5919. },
  5920. {
  5921. name: "Normalpuff",
  5922. height: math.unit(5.75, "feet")
  5923. },
  5924. {
  5925. name: "Macropuff",
  5926. height: math.unit(1500, "feet"),
  5927. default: true
  5928. },
  5929. {
  5930. name: "Megapuff",
  5931. height: math.unit(500, "miles")
  5932. },
  5933. {
  5934. name: "Gigapuff",
  5935. height: math.unit(250000, "miles")
  5936. },
  5937. {
  5938. name: "Omegapuff",
  5939. height: math.unit(1000, "lightyears")
  5940. },
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5945. {
  5946. stomping: {
  5947. height: math.unit(6, "feet"),
  5948. weight: math.unit(170, "lbs"),
  5949. name: "Stomping",
  5950. image: {
  5951. source: "./media/characters/vivian/stomping.svg"
  5952. }
  5953. },
  5954. sitting: {
  5955. height: math.unit(6 / 1.75, "feet"),
  5956. weight: math.unit(170, "lbs"),
  5957. name: "Sitting",
  5958. image: {
  5959. source: "./media/characters/vivian/sitting.svg",
  5960. bottom: 1 / 6.4,
  5961. extra: 1,
  5962. }
  5963. },
  5964. },
  5965. [
  5966. {
  5967. name: "Normal",
  5968. height: math.unit(7, "feet"),
  5969. default: true
  5970. },
  5971. {
  5972. name: "Macro",
  5973. height: math.unit(10, "stories")
  5974. },
  5975. {
  5976. name: "Macro+",
  5977. height: math.unit(30, "stories")
  5978. },
  5979. {
  5980. name: "Megamacro",
  5981. height: math.unit(10, "miles")
  5982. },
  5983. {
  5984. name: "Megamacro+",
  5985. height: math.unit(2750000, "meters")
  5986. },
  5987. ]
  5988. ))
  5989. characterMakers.push(() => makeCharacter(
  5990. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5991. {
  5992. front: {
  5993. height: math.unit(6, "feet"),
  5994. weight: math.unit(160, "lbs"),
  5995. name: "Front",
  5996. image: {
  5997. source: "./media/characters/prince/front.svg",
  5998. extra: 3400 / 3000
  5999. }
  6000. },
  6001. jumping: {
  6002. height: math.unit(6, "feet"),
  6003. weight: math.unit(160, "lbs"),
  6004. name: "Jumping",
  6005. image: {
  6006. source: "./media/characters/prince/jump.svg",
  6007. extra: 2555 / 2134
  6008. }
  6009. },
  6010. },
  6011. [
  6012. {
  6013. name: "Normal",
  6014. height: math.unit(7.75, "feet"),
  6015. default: true
  6016. },
  6017. {
  6018. name: "Not cute",
  6019. height: math.unit(17, "feet")
  6020. },
  6021. {
  6022. name: "I said NOT",
  6023. height: math.unit(91, "feet")
  6024. },
  6025. {
  6026. name: "Please stop",
  6027. height: math.unit(560, "feet")
  6028. },
  6029. {
  6030. name: "What have you done",
  6031. height: math.unit(2200, "feet")
  6032. },
  6033. {
  6034. name: "Deer God",
  6035. height: math.unit(3.6, "miles")
  6036. },
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6041. {
  6042. standing: {
  6043. height: math.unit(6, "feet"),
  6044. weight: math.unit(300, "lbs"),
  6045. name: "Standing",
  6046. image: {
  6047. source: "./media/characters/psymon/standing.svg",
  6048. extra: 1888 / 1810,
  6049. bottom: 0.05
  6050. }
  6051. },
  6052. slithering: {
  6053. height: math.unit(6, "feet"),
  6054. weight: math.unit(300, "lbs"),
  6055. name: "Slithering",
  6056. image: {
  6057. source: "./media/characters/psymon/slithering.svg",
  6058. extra: 1330 / 1224
  6059. }
  6060. },
  6061. slitheringAlt: {
  6062. height: math.unit(6, "feet"),
  6063. weight: math.unit(300, "lbs"),
  6064. name: "Slithering (Alt)",
  6065. image: {
  6066. source: "./media/characters/psymon/slithering-alt.svg",
  6067. extra: 1330 / 1224
  6068. }
  6069. },
  6070. },
  6071. [
  6072. {
  6073. name: "Normal",
  6074. height: math.unit(11.25, "feet"),
  6075. default: true
  6076. },
  6077. {
  6078. name: "Large",
  6079. height: math.unit(27, "feet")
  6080. },
  6081. {
  6082. name: "Giant",
  6083. height: math.unit(87, "feet")
  6084. },
  6085. {
  6086. name: "Macro",
  6087. height: math.unit(365, "feet")
  6088. },
  6089. {
  6090. name: "Megamacro",
  6091. height: math.unit(3, "miles")
  6092. },
  6093. {
  6094. name: "World Serpent",
  6095. height: math.unit(8000, "miles")
  6096. },
  6097. ]
  6098. ))
  6099. characterMakers.push(() => makeCharacter(
  6100. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6101. {
  6102. front: {
  6103. height: math.unit(6, "feet"),
  6104. weight: math.unit(180, "lbs"),
  6105. name: "Front",
  6106. image: {
  6107. source: "./media/characters/daimos/front.svg",
  6108. extra: 4160 / 3897,
  6109. bottom: 0.021
  6110. }
  6111. }
  6112. },
  6113. [
  6114. {
  6115. name: "Normal",
  6116. height: math.unit(8, "feet"),
  6117. default: true
  6118. },
  6119. {
  6120. name: "Big Dog",
  6121. height: math.unit(22, "feet")
  6122. },
  6123. {
  6124. name: "Macro",
  6125. height: math.unit(127, "feet")
  6126. },
  6127. {
  6128. name: "Megamacro",
  6129. height: math.unit(3600, "feet")
  6130. },
  6131. ]
  6132. ))
  6133. characterMakers.push(() => makeCharacter(
  6134. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6135. {
  6136. side: {
  6137. height: math.unit(6, "feet"),
  6138. weight: math.unit(180, "lbs"),
  6139. name: "Side",
  6140. image: {
  6141. source: "./media/characters/blake/side.svg",
  6142. extra: 1212 / 1120,
  6143. bottom: 0.05
  6144. }
  6145. },
  6146. crouched: {
  6147. height: math.unit(6 * 0.57, "feet"),
  6148. weight: math.unit(180, "lbs"),
  6149. name: "Crouched",
  6150. image: {
  6151. source: "./media/characters/blake/crouched.svg",
  6152. extra: 840 / 587,
  6153. bottom: 0.04
  6154. }
  6155. },
  6156. bent: {
  6157. height: math.unit(6 * 0.75, "feet"),
  6158. weight: math.unit(180, "lbs"),
  6159. name: "Bent",
  6160. image: {
  6161. source: "./media/characters/blake/bent.svg",
  6162. extra: 592 / 544,
  6163. bottom: 0.035
  6164. }
  6165. },
  6166. },
  6167. [
  6168. {
  6169. name: "Normal",
  6170. height: math.unit(8 + 1 / 6, "feet"),
  6171. default: true
  6172. },
  6173. {
  6174. name: "Big Backside",
  6175. height: math.unit(37, "feet")
  6176. },
  6177. {
  6178. name: "Subway Shredder",
  6179. height: math.unit(72, "feet")
  6180. },
  6181. {
  6182. name: "City Carver",
  6183. height: math.unit(1675, "feet")
  6184. },
  6185. {
  6186. name: "Tectonic Tweaker",
  6187. height: math.unit(2300, "miles")
  6188. },
  6189. ]
  6190. ))
  6191. characterMakers.push(() => makeCharacter(
  6192. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6193. {
  6194. front: {
  6195. height: math.unit(6, "feet"),
  6196. weight: math.unit(180, "lbs"),
  6197. name: "Front",
  6198. image: {
  6199. source: "./media/characters/guisetto/front.svg",
  6200. extra: 856 / 817,
  6201. bottom: 0.06
  6202. }
  6203. },
  6204. airborne: {
  6205. height: math.unit(6, "feet"),
  6206. weight: math.unit(180, "lbs"),
  6207. name: "Airborne",
  6208. image: {
  6209. source: "./media/characters/guisetto/airborne.svg",
  6210. extra: 584 / 525
  6211. }
  6212. },
  6213. },
  6214. [
  6215. {
  6216. name: "Normal",
  6217. height: math.unit(10 + 11 / 12, "feet"),
  6218. default: true
  6219. },
  6220. {
  6221. name: "Large",
  6222. height: math.unit(35, "feet")
  6223. },
  6224. {
  6225. name: "Macro",
  6226. height: math.unit(475, "feet")
  6227. },
  6228. ]
  6229. ))
  6230. characterMakers.push(() => makeCharacter(
  6231. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6232. {
  6233. front: {
  6234. height: math.unit(6, "feet"),
  6235. weight: math.unit(180, "lbs"),
  6236. name: "Front",
  6237. image: {
  6238. source: "./media/characters/luxor/front.svg",
  6239. extra: 2940 / 2152
  6240. }
  6241. },
  6242. back: {
  6243. height: math.unit(6, "feet"),
  6244. weight: math.unit(180, "lbs"),
  6245. name: "Back",
  6246. image: {
  6247. source: "./media/characters/luxor/back.svg",
  6248. extra: 1083 / 960
  6249. }
  6250. },
  6251. },
  6252. [
  6253. {
  6254. name: "Normal",
  6255. height: math.unit(5 + 5 / 6, "feet"),
  6256. default: true
  6257. },
  6258. {
  6259. name: "Lamp",
  6260. height: math.unit(50, "feet")
  6261. },
  6262. {
  6263. name: "Lämp",
  6264. height: math.unit(300, "feet")
  6265. },
  6266. {
  6267. name: "The sun is a lamp",
  6268. height: math.unit(250000, "miles")
  6269. },
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6274. {
  6275. front: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(50, "lbs"),
  6278. name: "Front",
  6279. image: {
  6280. source: "./media/characters/huoyan/front.svg"
  6281. }
  6282. },
  6283. side: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(180, "lbs"),
  6286. name: "Side",
  6287. image: {
  6288. source: "./media/characters/huoyan/side.svg"
  6289. }
  6290. },
  6291. },
  6292. [
  6293. {
  6294. name: "Chef",
  6295. height: math.unit(9, "feet")
  6296. },
  6297. {
  6298. name: "Normal",
  6299. height: math.unit(65, "feet"),
  6300. default: true
  6301. },
  6302. {
  6303. name: "Macro",
  6304. height: math.unit(780, "feet")
  6305. },
  6306. {
  6307. name: "Flaming Mountain",
  6308. height: math.unit(4.8, "miles")
  6309. },
  6310. {
  6311. name: "Celestial",
  6312. height: math.unit(765000, "miles")
  6313. },
  6314. ]
  6315. ))
  6316. characterMakers.push(() => makeCharacter(
  6317. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6318. {
  6319. front: {
  6320. height: math.unit(5 + 3 / 4, "feet"),
  6321. weight: math.unit(120, "lbs"),
  6322. name: "Front",
  6323. image: {
  6324. source: "./media/characters/tails/front.svg"
  6325. }
  6326. }
  6327. },
  6328. [
  6329. {
  6330. name: "Normal",
  6331. height: math.unit(5 + 3 / 4, "feet"),
  6332. default: true
  6333. }
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6338. {
  6339. front: {
  6340. height: math.unit(4, "feet"),
  6341. weight: math.unit(50, "lbs"),
  6342. name: "Front",
  6343. image: {
  6344. source: "./media/characters/rainy/front.svg"
  6345. }
  6346. }
  6347. },
  6348. [
  6349. {
  6350. name: "Macro",
  6351. height: math.unit(800, "feet"),
  6352. default: true
  6353. }
  6354. ]
  6355. ))
  6356. characterMakers.push(() => makeCharacter(
  6357. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6358. {
  6359. front: {
  6360. height: math.unit(6, "feet"),
  6361. weight: math.unit(150, "lbs"),
  6362. name: "Front",
  6363. image: {
  6364. source: "./media/characters/rainier/front.svg"
  6365. }
  6366. }
  6367. },
  6368. [
  6369. {
  6370. name: "Micro",
  6371. height: math.unit(2, "mm"),
  6372. default: true
  6373. }
  6374. ]
  6375. ))
  6376. characterMakers.push(() => makeCharacter(
  6377. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6378. {
  6379. front: {
  6380. height: math.unit(8 + 4/12, "feet"),
  6381. weight: math.unit(450, "kilograms"),
  6382. volume: math.unit(5, "cups"),
  6383. name: "Front",
  6384. image: {
  6385. source: "./media/characters/andy-renard/front.svg",
  6386. extra: 1839/1726,
  6387. bottom: 134/1973
  6388. }
  6389. },
  6390. back: {
  6391. height: math.unit(8 + 4/12, "feet"),
  6392. weight: math.unit(450, "kilograms"),
  6393. volume: math.unit(5, "cups"),
  6394. name: "Back",
  6395. image: {
  6396. source: "./media/characters/andy-renard/back.svg",
  6397. extra: 1838/1710,
  6398. bottom: 105/1943
  6399. }
  6400. },
  6401. },
  6402. [
  6403. {
  6404. name: "Tall",
  6405. height: math.unit(8 + 4/12, "feet")
  6406. },
  6407. {
  6408. name: "Mini Macro",
  6409. height: math.unit(15, "feet"),
  6410. default: true
  6411. },
  6412. {
  6413. name: "Macro",
  6414. height: math.unit(100, "feet")
  6415. },
  6416. {
  6417. name: "Mega Macro",
  6418. height: math.unit(1000, "feet")
  6419. },
  6420. {
  6421. name: "Giga Macro",
  6422. height: math.unit(10, "miles")
  6423. },
  6424. {
  6425. name: "God Macro",
  6426. height: math.unit(1, "multiverse")
  6427. },
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6432. {
  6433. front: {
  6434. height: math.unit(6, "feet"),
  6435. weight: math.unit(210, "lbs"),
  6436. name: "Front",
  6437. image: {
  6438. source: "./media/characters/cimmaron/front-sfw.svg",
  6439. extra: 701 / 676,
  6440. bottom: 0.046
  6441. }
  6442. },
  6443. back: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(210, "lbs"),
  6446. name: "Back",
  6447. image: {
  6448. source: "./media/characters/cimmaron/back-sfw.svg",
  6449. extra: 701 / 676,
  6450. bottom: 0.046
  6451. }
  6452. },
  6453. frontNsfw: {
  6454. height: math.unit(6, "feet"),
  6455. weight: math.unit(210, "lbs"),
  6456. name: "Front (NSFW)",
  6457. image: {
  6458. source: "./media/characters/cimmaron/front-nsfw.svg",
  6459. extra: 701 / 676,
  6460. bottom: 0.046
  6461. }
  6462. },
  6463. backNsfw: {
  6464. height: math.unit(6, "feet"),
  6465. weight: math.unit(210, "lbs"),
  6466. name: "Back (NSFW)",
  6467. image: {
  6468. source: "./media/characters/cimmaron/back-nsfw.svg",
  6469. extra: 701 / 676,
  6470. bottom: 0.046
  6471. }
  6472. },
  6473. dick: {
  6474. height: math.unit(1.714, "feet"),
  6475. name: "Dick",
  6476. image: {
  6477. source: "./media/characters/cimmaron/dick.svg"
  6478. }
  6479. },
  6480. },
  6481. [
  6482. {
  6483. name: "Normal",
  6484. height: math.unit(6, "feet"),
  6485. default: true
  6486. },
  6487. {
  6488. name: "Macro Mayor",
  6489. height: math.unit(350, "meters")
  6490. },
  6491. ]
  6492. ))
  6493. characterMakers.push(() => makeCharacter(
  6494. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6495. {
  6496. front: {
  6497. height: math.unit(6, "feet"),
  6498. weight: math.unit(200, "lbs"),
  6499. name: "Front",
  6500. image: {
  6501. source: "./media/characters/akari/front.svg",
  6502. extra: 962 / 901,
  6503. bottom: 0.04
  6504. }
  6505. }
  6506. },
  6507. [
  6508. {
  6509. name: "Micro",
  6510. height: math.unit(5, "inches"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Normal",
  6515. height: math.unit(7, "feet")
  6516. },
  6517. ]
  6518. ))
  6519. characterMakers.push(() => makeCharacter(
  6520. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6521. {
  6522. front: {
  6523. height: math.unit(6, "feet"),
  6524. weight: math.unit(140, "lbs"),
  6525. name: "Front",
  6526. image: {
  6527. source: "./media/characters/cynosura/front.svg",
  6528. extra: 437/410,
  6529. bottom: 9/446
  6530. }
  6531. },
  6532. back: {
  6533. height: math.unit(6, "feet"),
  6534. weight: math.unit(140, "lbs"),
  6535. name: "Back",
  6536. image: {
  6537. source: "./media/characters/cynosura/back.svg",
  6538. extra: 1304/1160,
  6539. bottom: 71/1375
  6540. }
  6541. },
  6542. },
  6543. [
  6544. {
  6545. name: "Micro",
  6546. height: math.unit(4, "inches")
  6547. },
  6548. {
  6549. name: "Normal",
  6550. height: math.unit(5.75, "feet"),
  6551. default: true
  6552. },
  6553. {
  6554. name: "Tall",
  6555. height: math.unit(10, "feet")
  6556. },
  6557. {
  6558. name: "Big",
  6559. height: math.unit(20, "feet")
  6560. },
  6561. {
  6562. name: "Macro",
  6563. height: math.unit(50, "feet")
  6564. },
  6565. ]
  6566. ))
  6567. characterMakers.push(() => makeCharacter(
  6568. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6569. {
  6570. front: {
  6571. height: math.unit(13 + 2/12, "feet"),
  6572. weight: math.unit(800, "kg"),
  6573. name: "Front",
  6574. image: {
  6575. source: "./media/characters/gin/front.svg",
  6576. extra: 1312/1191,
  6577. bottom: 45/1357
  6578. }
  6579. },
  6580. mouth: {
  6581. height: math.unit(2.39 * 1.8, "feet"),
  6582. name: "Mouth",
  6583. image: {
  6584. source: "./media/characters/gin/mouth.svg"
  6585. }
  6586. },
  6587. hand: {
  6588. height: math.unit(1.57 * 2.19, "feet"),
  6589. name: "Hand",
  6590. image: {
  6591. source: "./media/characters/gin/hand.svg"
  6592. }
  6593. },
  6594. foot: {
  6595. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6596. name: "Foot",
  6597. image: {
  6598. source: "./media/characters/gin/foot.svg"
  6599. }
  6600. },
  6601. sole: {
  6602. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6603. name: "Sole",
  6604. image: {
  6605. source: "./media/characters/gin/sole.svg"
  6606. }
  6607. },
  6608. },
  6609. [
  6610. {
  6611. name: "Very Small",
  6612. height: math.unit(13 + 2 / 12, "feet")
  6613. },
  6614. {
  6615. name: "Micro",
  6616. height: math.unit(600, "miles")
  6617. },
  6618. {
  6619. name: "Regular",
  6620. height: math.unit(20, "earths"),
  6621. default: true
  6622. },
  6623. {
  6624. name: "Macro",
  6625. height: math.unit(2.2, "solarradii")
  6626. },
  6627. {
  6628. name: "Teramacro",
  6629. height: math.unit(1.2, "galaxies")
  6630. },
  6631. {
  6632. name: "Omegamacro",
  6633. height: math.unit(200, "universes")
  6634. },
  6635. ]
  6636. ))
  6637. characterMakers.push(() => makeCharacter(
  6638. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6639. {
  6640. front: {
  6641. height: math.unit(6 + 1 / 6, "feet"),
  6642. weight: math.unit(178, "lbs"),
  6643. name: "Front",
  6644. image: {
  6645. source: "./media/characters/guy/front.svg"
  6646. }
  6647. }
  6648. },
  6649. [
  6650. {
  6651. name: "Normal",
  6652. height: math.unit(6 + 1 / 6, "feet"),
  6653. default: true
  6654. },
  6655. {
  6656. name: "Large",
  6657. height: math.unit(25 + 7 / 12, "feet")
  6658. },
  6659. {
  6660. name: "Macro",
  6661. height: math.unit(60 + 9 / 12, "feet")
  6662. },
  6663. {
  6664. name: "Macro+",
  6665. height: math.unit(246, "feet")
  6666. },
  6667. {
  6668. name: "Macro++",
  6669. height: math.unit(878, "feet")
  6670. }
  6671. ]
  6672. ))
  6673. characterMakers.push(() => makeCharacter(
  6674. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6675. {
  6676. front: {
  6677. height: math.unit(9, "feet"),
  6678. weight: math.unit(800, "lbs"),
  6679. name: "Front",
  6680. image: {
  6681. source: "./media/characters/tiberius/front.svg",
  6682. extra: 2295 / 2071
  6683. }
  6684. },
  6685. back: {
  6686. height: math.unit(9, "feet"),
  6687. weight: math.unit(800, "lbs"),
  6688. name: "Back",
  6689. image: {
  6690. source: "./media/characters/tiberius/back.svg",
  6691. extra: 2373 / 2160
  6692. }
  6693. },
  6694. },
  6695. [
  6696. {
  6697. name: "Normal",
  6698. height: math.unit(9, "feet"),
  6699. default: true
  6700. }
  6701. ]
  6702. ))
  6703. characterMakers.push(() => makeCharacter(
  6704. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6705. {
  6706. front: {
  6707. height: math.unit(6, "feet"),
  6708. weight: math.unit(600, "lbs"),
  6709. name: "Front",
  6710. image: {
  6711. source: "./media/characters/surgo/front.svg",
  6712. extra: 3591 / 2227
  6713. }
  6714. },
  6715. back: {
  6716. height: math.unit(6, "feet"),
  6717. weight: math.unit(600, "lbs"),
  6718. name: "Back",
  6719. image: {
  6720. source: "./media/characters/surgo/back.svg",
  6721. extra: 3557 / 2228
  6722. }
  6723. },
  6724. laying: {
  6725. height: math.unit(6 * 0.85, "feet"),
  6726. weight: math.unit(600, "lbs"),
  6727. name: "Laying",
  6728. image: {
  6729. source: "./media/characters/surgo/laying.svg"
  6730. }
  6731. },
  6732. },
  6733. [
  6734. {
  6735. name: "Normal",
  6736. height: math.unit(6, "feet"),
  6737. default: true
  6738. }
  6739. ]
  6740. ))
  6741. characterMakers.push(() => makeCharacter(
  6742. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6743. {
  6744. side: {
  6745. height: math.unit(6, "feet"),
  6746. weight: math.unit(150, "lbs"),
  6747. name: "Side",
  6748. image: {
  6749. source: "./media/characters/cibus/side.svg",
  6750. extra: 800 / 400
  6751. }
  6752. },
  6753. },
  6754. [
  6755. {
  6756. name: "Normal",
  6757. height: math.unit(6, "feet"),
  6758. default: true
  6759. }
  6760. ]
  6761. ))
  6762. characterMakers.push(() => makeCharacter(
  6763. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6764. {
  6765. front: {
  6766. height: math.unit(6, "feet"),
  6767. weight: math.unit(240, "lbs"),
  6768. name: "Front",
  6769. image: {
  6770. source: "./media/characters/nibbles/front.svg"
  6771. }
  6772. },
  6773. side: {
  6774. height: math.unit(6, "feet"),
  6775. weight: math.unit(240, "lbs"),
  6776. name: "Side",
  6777. image: {
  6778. source: "./media/characters/nibbles/side.svg"
  6779. }
  6780. },
  6781. },
  6782. [
  6783. {
  6784. name: "Normal",
  6785. height: math.unit(9, "feet"),
  6786. default: true
  6787. }
  6788. ]
  6789. ))
  6790. characterMakers.push(() => makeCharacter(
  6791. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6792. {
  6793. side: {
  6794. height: math.unit(5 + 1 / 6, "feet"),
  6795. weight: math.unit(130, "lbs"),
  6796. name: "Side",
  6797. image: {
  6798. source: "./media/characters/rikky/side.svg",
  6799. extra: 851 / 801
  6800. }
  6801. },
  6802. },
  6803. [
  6804. {
  6805. name: "Normal",
  6806. height: math.unit(5 + 1 / 6, "feet")
  6807. },
  6808. {
  6809. name: "Macro",
  6810. height: math.unit(152, "feet"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Megamacro",
  6815. height: math.unit(7, "miles")
  6816. }
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6821. {
  6822. side: {
  6823. height: math.unit(370, "cm"),
  6824. weight: math.unit(350, "lbs"),
  6825. name: "Side",
  6826. image: {
  6827. source: "./media/characters/malfressa/side.svg"
  6828. }
  6829. },
  6830. walking: {
  6831. height: math.unit(370, "cm"),
  6832. weight: math.unit(350, "lbs"),
  6833. name: "Walking",
  6834. image: {
  6835. source: "./media/characters/malfressa/walking.svg"
  6836. }
  6837. },
  6838. feral: {
  6839. height: math.unit(2500, "cm"),
  6840. weight: math.unit(100000, "lbs"),
  6841. name: "Feral",
  6842. image: {
  6843. source: "./media/characters/malfressa/feral.svg",
  6844. extra: 2108 / 837,
  6845. bottom: 0.02
  6846. }
  6847. },
  6848. },
  6849. [
  6850. {
  6851. name: "Normal",
  6852. height: math.unit(370, "cm")
  6853. },
  6854. {
  6855. name: "Macro",
  6856. height: math.unit(300, "meters"),
  6857. default: true
  6858. }
  6859. ]
  6860. ))
  6861. characterMakers.push(() => makeCharacter(
  6862. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6863. {
  6864. front: {
  6865. height: math.unit(6, "feet"),
  6866. weight: math.unit(60, "kg"),
  6867. name: "Front",
  6868. image: {
  6869. source: "./media/characters/jaro/front.svg",
  6870. extra: 845/817,
  6871. bottom: 45/890
  6872. }
  6873. },
  6874. back: {
  6875. height: math.unit(6, "feet"),
  6876. weight: math.unit(60, "kg"),
  6877. name: "Back",
  6878. image: {
  6879. source: "./media/characters/jaro/back.svg",
  6880. extra: 847/817,
  6881. bottom: 34/881
  6882. }
  6883. },
  6884. },
  6885. [
  6886. {
  6887. name: "Micro",
  6888. height: math.unit(7, "inches")
  6889. },
  6890. {
  6891. name: "Normal",
  6892. height: math.unit(5.5, "feet"),
  6893. default: true
  6894. },
  6895. {
  6896. name: "Minimacro",
  6897. height: math.unit(20, "feet")
  6898. },
  6899. {
  6900. name: "Macro",
  6901. height: math.unit(200, "meters")
  6902. }
  6903. ]
  6904. ))
  6905. characterMakers.push(() => makeCharacter(
  6906. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6907. {
  6908. front: {
  6909. height: math.unit(6, "feet"),
  6910. weight: math.unit(195, "lb"),
  6911. name: "Front",
  6912. image: {
  6913. source: "./media/characters/rogue/front.svg"
  6914. }
  6915. },
  6916. },
  6917. [
  6918. {
  6919. name: "Macro",
  6920. height: math.unit(90, "feet"),
  6921. default: true
  6922. },
  6923. ]
  6924. ))
  6925. characterMakers.push(() => makeCharacter(
  6926. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6927. {
  6928. standing: {
  6929. height: math.unit(5 + 8 / 12, "feet"),
  6930. weight: math.unit(140, "lb"),
  6931. name: "Standing",
  6932. image: {
  6933. source: "./media/characters/piper/standing.svg",
  6934. extra: 1440/1284,
  6935. bottom: 66/1506
  6936. }
  6937. },
  6938. running: {
  6939. height: math.unit(5 + 8 / 12, "feet"),
  6940. weight: math.unit(140, "lb"),
  6941. name: "Running",
  6942. image: {
  6943. source: "./media/characters/piper/running.svg",
  6944. extra: 3948/3655,
  6945. bottom: 0/3948
  6946. }
  6947. },
  6948. sole: {
  6949. height: math.unit(0.81, "feet"),
  6950. weight: math.unit(2, "kg"),
  6951. name: "Sole",
  6952. image: {
  6953. source: "./media/characters/piper/sole.svg"
  6954. }
  6955. },
  6956. nipple: {
  6957. height: math.unit(0.25, "feet"),
  6958. weight: math.unit(1.5, "lb"),
  6959. name: "Nipple",
  6960. image: {
  6961. source: "./media/characters/piper/nipple.svg"
  6962. }
  6963. },
  6964. head: {
  6965. height: math.unit(1.1, "feet"),
  6966. name: "Head",
  6967. image: {
  6968. source: "./media/characters/piper/head.svg"
  6969. }
  6970. },
  6971. },
  6972. [
  6973. {
  6974. name: "Micro",
  6975. height: math.unit(2, "inches")
  6976. },
  6977. {
  6978. name: "Normal",
  6979. height: math.unit(5 + 8 / 12, "feet")
  6980. },
  6981. {
  6982. name: "Macro",
  6983. height: math.unit(250, "feet"),
  6984. default: true
  6985. },
  6986. {
  6987. name: "Megamacro",
  6988. height: math.unit(7, "miles")
  6989. },
  6990. ]
  6991. ))
  6992. characterMakers.push(() => makeCharacter(
  6993. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6994. {
  6995. front: {
  6996. height: math.unit(6, "feet"),
  6997. weight: math.unit(220, "lb"),
  6998. name: "Front",
  6999. image: {
  7000. source: "./media/characters/gemini/front.svg"
  7001. }
  7002. },
  7003. back: {
  7004. height: math.unit(6, "feet"),
  7005. weight: math.unit(220, "lb"),
  7006. name: "Back",
  7007. image: {
  7008. source: "./media/characters/gemini/back.svg"
  7009. }
  7010. },
  7011. kneeling: {
  7012. height: math.unit(6 / 1.5, "feet"),
  7013. weight: math.unit(220, "lb"),
  7014. name: "Kneeling",
  7015. image: {
  7016. source: "./media/characters/gemini/kneeling.svg",
  7017. bottom: 0.02
  7018. }
  7019. },
  7020. },
  7021. [
  7022. {
  7023. name: "Macro",
  7024. height: math.unit(300, "meters"),
  7025. default: true
  7026. },
  7027. {
  7028. name: "Megamacro",
  7029. height: math.unit(6900, "meters")
  7030. },
  7031. ]
  7032. ))
  7033. characterMakers.push(() => makeCharacter(
  7034. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7035. {
  7036. anthro: {
  7037. height: math.unit(2.35, "meters"),
  7038. weight: math.unit(73, "kg"),
  7039. name: "Anthro",
  7040. image: {
  7041. source: "./media/characters/alicia/anthro.svg",
  7042. extra: 2571 / 2385,
  7043. bottom: 75 / 2648
  7044. }
  7045. },
  7046. paw: {
  7047. height: math.unit(1.32, "feet"),
  7048. name: "Paw",
  7049. image: {
  7050. source: "./media/characters/alicia/paw.svg"
  7051. }
  7052. },
  7053. feral: {
  7054. height: math.unit(1.69, "meters"),
  7055. weight: math.unit(73, "kg"),
  7056. name: "Feral",
  7057. image: {
  7058. source: "./media/characters/alicia/feral.svg",
  7059. extra: 2123 / 1715,
  7060. bottom: 222 / 2349
  7061. }
  7062. },
  7063. },
  7064. [
  7065. {
  7066. name: "Normal",
  7067. height: math.unit(2.35, "meters")
  7068. },
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(60, "meters"),
  7072. default: true
  7073. },
  7074. {
  7075. name: "Megamacro",
  7076. height: math.unit(10000, "kilometers")
  7077. },
  7078. ]
  7079. ))
  7080. characterMakers.push(() => makeCharacter(
  7081. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7082. {
  7083. front: {
  7084. height: math.unit(7, "feet"),
  7085. weight: math.unit(250, "lbs"),
  7086. name: "Front",
  7087. image: {
  7088. source: "./media/characters/archy/front.svg"
  7089. }
  7090. }
  7091. },
  7092. [
  7093. {
  7094. name: "Micro",
  7095. height: math.unit(1, "inch")
  7096. },
  7097. {
  7098. name: "Shorty",
  7099. height: math.unit(5, "feet")
  7100. },
  7101. {
  7102. name: "Normal",
  7103. height: math.unit(7, "feet")
  7104. },
  7105. {
  7106. name: "Macro",
  7107. height: math.unit(600, "meters"),
  7108. default: true
  7109. },
  7110. {
  7111. name: "Megamacro",
  7112. height: math.unit(1, "mile")
  7113. },
  7114. ]
  7115. ))
  7116. characterMakers.push(() => makeCharacter(
  7117. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7118. {
  7119. front: {
  7120. height: math.unit(1.65, "meters"),
  7121. weight: math.unit(74, "kg"),
  7122. name: "Front",
  7123. image: {
  7124. source: "./media/characters/berri/front.svg",
  7125. extra: 857 / 837,
  7126. bottom: 18 / 877
  7127. }
  7128. },
  7129. bum: {
  7130. height: math.unit(1.46, "feet"),
  7131. name: "Bum",
  7132. image: {
  7133. source: "./media/characters/berri/bum.svg"
  7134. }
  7135. },
  7136. mouth: {
  7137. height: math.unit(0.44, "feet"),
  7138. name: "Mouth",
  7139. image: {
  7140. source: "./media/characters/berri/mouth.svg"
  7141. }
  7142. },
  7143. paw: {
  7144. height: math.unit(0.826, "feet"),
  7145. name: "Paw",
  7146. image: {
  7147. source: "./media/characters/berri/paw.svg"
  7148. }
  7149. },
  7150. },
  7151. [
  7152. {
  7153. name: "Normal",
  7154. height: math.unit(1.65, "meters")
  7155. },
  7156. {
  7157. name: "Macro",
  7158. height: math.unit(60, "m"),
  7159. default: true
  7160. },
  7161. {
  7162. name: "Megamacro",
  7163. height: math.unit(9.213, "km")
  7164. },
  7165. {
  7166. name: "Planet Eater",
  7167. height: math.unit(489, "megameters")
  7168. },
  7169. {
  7170. name: "Teramacro",
  7171. height: math.unit(2471635000000, "meters")
  7172. },
  7173. {
  7174. name: "Examacro",
  7175. height: math.unit(8.0624e+26, "meters")
  7176. }
  7177. ]
  7178. ))
  7179. characterMakers.push(() => makeCharacter(
  7180. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7181. {
  7182. front: {
  7183. height: math.unit(1.72, "meters"),
  7184. weight: math.unit(68, "kg"),
  7185. name: "Front",
  7186. image: {
  7187. source: "./media/characters/lexi/front.svg"
  7188. }
  7189. }
  7190. },
  7191. [
  7192. {
  7193. name: "Very Smol",
  7194. height: math.unit(10, "mm")
  7195. },
  7196. {
  7197. name: "Micro",
  7198. height: math.unit(6.8, "cm"),
  7199. default: true
  7200. },
  7201. {
  7202. name: "Normal",
  7203. height: math.unit(1.72, "m")
  7204. }
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(1.69, "meters"),
  7212. weight: math.unit(68, "kg"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/martin/front.svg",
  7216. extra: 596 / 581
  7217. }
  7218. }
  7219. },
  7220. [
  7221. {
  7222. name: "Micro",
  7223. height: math.unit(6.85, "cm"),
  7224. default: true
  7225. },
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(1.69, "m")
  7229. }
  7230. ]
  7231. ))
  7232. characterMakers.push(() => makeCharacter(
  7233. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7234. {
  7235. front: {
  7236. height: math.unit(1.69, "meters"),
  7237. weight: math.unit(68, "kg"),
  7238. name: "Front",
  7239. image: {
  7240. source: "./media/characters/juno/front.svg"
  7241. }
  7242. }
  7243. },
  7244. [
  7245. {
  7246. name: "Micro",
  7247. height: math.unit(7, "cm")
  7248. },
  7249. {
  7250. name: "Normal",
  7251. height: math.unit(1.89, "m")
  7252. },
  7253. {
  7254. name: "Macro",
  7255. height: math.unit(353, "meters"),
  7256. default: true
  7257. }
  7258. ]
  7259. ))
  7260. characterMakers.push(() => makeCharacter(
  7261. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7262. {
  7263. front: {
  7264. height: math.unit(1.93, "meters"),
  7265. weight: math.unit(83, "kg"),
  7266. name: "Front",
  7267. image: {
  7268. source: "./media/characters/samantha/front.svg"
  7269. }
  7270. },
  7271. frontClothed: {
  7272. height: math.unit(1.93, "meters"),
  7273. weight: math.unit(83, "kg"),
  7274. name: "Front (Clothed)",
  7275. image: {
  7276. source: "./media/characters/samantha/front-clothed.svg"
  7277. }
  7278. },
  7279. back: {
  7280. height: math.unit(1.93, "meters"),
  7281. weight: math.unit(83, "kg"),
  7282. name: "Back",
  7283. image: {
  7284. source: "./media/characters/samantha/back.svg"
  7285. }
  7286. },
  7287. },
  7288. [
  7289. {
  7290. name: "Normal",
  7291. height: math.unit(1.93, "m")
  7292. },
  7293. {
  7294. name: "Macro",
  7295. height: math.unit(74, "meters"),
  7296. default: true
  7297. },
  7298. {
  7299. name: "Macro+",
  7300. height: math.unit(223, "meters"),
  7301. },
  7302. {
  7303. name: "Megamacro",
  7304. height: math.unit(8381, "meters"),
  7305. },
  7306. {
  7307. name: "Megamacro+",
  7308. height: math.unit(12000, "kilometers")
  7309. },
  7310. ]
  7311. ))
  7312. characterMakers.push(() => makeCharacter(
  7313. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7314. {
  7315. front: {
  7316. height: math.unit(1.92, "meters"),
  7317. weight: math.unit(80, "kg"),
  7318. name: "Front",
  7319. image: {
  7320. source: "./media/characters/dr-clay/front.svg"
  7321. }
  7322. },
  7323. frontClothed: {
  7324. height: math.unit(1.92, "meters"),
  7325. weight: math.unit(80, "kg"),
  7326. name: "Front (Clothed)",
  7327. image: {
  7328. source: "./media/characters/dr-clay/front-clothed.svg"
  7329. }
  7330. }
  7331. },
  7332. [
  7333. {
  7334. name: "Normal",
  7335. height: math.unit(1.92, "m")
  7336. },
  7337. {
  7338. name: "Macro",
  7339. height: math.unit(214, "meters"),
  7340. default: true
  7341. },
  7342. {
  7343. name: "Macro+",
  7344. height: math.unit(12.237, "meters"),
  7345. },
  7346. {
  7347. name: "Megamacro",
  7348. height: math.unit(557, "megameters"),
  7349. },
  7350. {
  7351. name: "Unimaginable",
  7352. height: math.unit(120e9, "lightyears")
  7353. },
  7354. ]
  7355. ))
  7356. characterMakers.push(() => makeCharacter(
  7357. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7358. {
  7359. front: {
  7360. height: math.unit(2, "meters"),
  7361. weight: math.unit(80, "kg"),
  7362. name: "Front",
  7363. image: {
  7364. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7365. }
  7366. }
  7367. },
  7368. [
  7369. {
  7370. name: "Teramacro",
  7371. height: math.unit(500000, "lightyears"),
  7372. default: true
  7373. },
  7374. ]
  7375. ))
  7376. characterMakers.push(() => makeCharacter(
  7377. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7378. {
  7379. crux: {
  7380. height: math.unit(2, "meters"),
  7381. weight: math.unit(150, "kg"),
  7382. name: "Crux",
  7383. image: {
  7384. source: "./media/characters/vemus/crux.svg",
  7385. extra: 1074/936,
  7386. bottom: 23/1097
  7387. }
  7388. },
  7389. skunkTanuki: {
  7390. height: math.unit(2, "meters"),
  7391. weight: math.unit(150, "kg"),
  7392. name: "Skunk-Tanuki",
  7393. image: {
  7394. source: "./media/characters/vemus/skunk-tanuki.svg",
  7395. extra: 926/893,
  7396. bottom: 20/946
  7397. }
  7398. },
  7399. },
  7400. [
  7401. {
  7402. name: "Normal",
  7403. height: math.unit(4, "meters"),
  7404. default: true
  7405. },
  7406. {
  7407. name: "Big",
  7408. height: math.unit(8, "meters")
  7409. },
  7410. {
  7411. name: "Macro",
  7412. height: math.unit(100, "meters")
  7413. },
  7414. {
  7415. name: "Macro+",
  7416. height: math.unit(1500, "meters")
  7417. },
  7418. {
  7419. name: "Stellar",
  7420. height: math.unit(14e8, "meters")
  7421. },
  7422. ]
  7423. ))
  7424. characterMakers.push(() => makeCharacter(
  7425. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7426. {
  7427. front: {
  7428. height: math.unit(2, "meters"),
  7429. weight: math.unit(70, "kg"),
  7430. name: "Front",
  7431. image: {
  7432. source: "./media/characters/beherit/front.svg",
  7433. extra: 1234/1109,
  7434. bottom: 55/1289
  7435. }
  7436. }
  7437. },
  7438. [
  7439. {
  7440. name: "Normal",
  7441. height: math.unit(6, "feet")
  7442. },
  7443. {
  7444. name: "Lorg",
  7445. height: math.unit(25, "feet"),
  7446. default: true
  7447. },
  7448. {
  7449. name: "Lorger",
  7450. height: math.unit(75, "feet")
  7451. },
  7452. {
  7453. name: "Macro",
  7454. height: math.unit(200, "meters")
  7455. },
  7456. ]
  7457. ))
  7458. characterMakers.push(() => makeCharacter(
  7459. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7460. {
  7461. front: {
  7462. height: math.unit(2, "meters"),
  7463. weight: math.unit(150, "kg"),
  7464. name: "Front",
  7465. image: {
  7466. source: "./media/characters/everett/front.svg",
  7467. extra: 1017/866,
  7468. bottom: 86/1103
  7469. }
  7470. },
  7471. paw: {
  7472. height: math.unit(2 / 3.6, "meters"),
  7473. name: "Paw",
  7474. image: {
  7475. source: "./media/characters/everett/paw.svg"
  7476. }
  7477. },
  7478. },
  7479. [
  7480. {
  7481. name: "Normal",
  7482. height: math.unit(15, "feet"),
  7483. default: true
  7484. },
  7485. {
  7486. name: "Lorg",
  7487. height: math.unit(70, "feet"),
  7488. default: true
  7489. },
  7490. {
  7491. name: "Lorger",
  7492. height: math.unit(250, "feet")
  7493. },
  7494. {
  7495. name: "Macro",
  7496. height: math.unit(500, "meters")
  7497. },
  7498. ]
  7499. ))
  7500. characterMakers.push(() => makeCharacter(
  7501. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7502. {
  7503. front: {
  7504. height: math.unit(2, "meters"),
  7505. weight: math.unit(86, "kg"),
  7506. name: "Front",
  7507. image: {
  7508. source: "./media/characters/rose/front.svg",
  7509. extra: 1785/1636,
  7510. bottom: 30/1815
  7511. },
  7512. form: "liom",
  7513. default: true
  7514. },
  7515. frontSporty: {
  7516. height: math.unit(2, "meters"),
  7517. weight: math.unit(86, "kg"),
  7518. name: "Front (Sporty)",
  7519. image: {
  7520. source: "./media/characters/rose/front-sporty.svg",
  7521. extra: 350/335,
  7522. bottom: 10/360
  7523. },
  7524. form: "liom"
  7525. },
  7526. frontAlt: {
  7527. height: math.unit(1.6, "meters"),
  7528. weight: math.unit(86, "kg"),
  7529. name: "Front (Alt)",
  7530. image: {
  7531. source: "./media/characters/rose/front-alt.svg",
  7532. extra: 299/283,
  7533. bottom: 3/302
  7534. },
  7535. form: "liom"
  7536. },
  7537. plush: {
  7538. height: math.unit(2, "meters"),
  7539. weight: math.unit(86/3, "kg"),
  7540. name: "Plush",
  7541. image: {
  7542. source: "./media/characters/rose/plush.svg",
  7543. extra: 361/337,
  7544. bottom: 11/372
  7545. },
  7546. form: "plush",
  7547. default: true
  7548. },
  7549. faeStanding: {
  7550. height: math.unit(10, "cm"),
  7551. weight: math.unit(10, "grams"),
  7552. name: "Standing",
  7553. image: {
  7554. source: "./media/characters/rose/fae-standing.svg",
  7555. extra: 1189/1060,
  7556. bottom: 27/1216
  7557. },
  7558. form: "fae",
  7559. default: true
  7560. },
  7561. faeSitting: {
  7562. height: math.unit(5, "cm"),
  7563. weight: math.unit(10, "grams"),
  7564. name: "Sitting",
  7565. image: {
  7566. source: "./media/characters/rose/fae-sitting.svg",
  7567. extra: 737/577,
  7568. bottom: 356/1093
  7569. },
  7570. form: "fae"
  7571. },
  7572. faePaw: {
  7573. height: math.unit(1.35, "cm"),
  7574. name: "Paw",
  7575. image: {
  7576. source: "./media/characters/rose/fae-paw.svg"
  7577. },
  7578. form: "fae"
  7579. },
  7580. },
  7581. [
  7582. {
  7583. name: "True Micro",
  7584. height: math.unit(9, "cm"),
  7585. form: "liom"
  7586. },
  7587. {
  7588. name: "Micro",
  7589. height: math.unit(16, "cm"),
  7590. form: "liom"
  7591. },
  7592. {
  7593. name: "Normal",
  7594. height: math.unit(1.85, "meters"),
  7595. default: true,
  7596. form: "liom"
  7597. },
  7598. {
  7599. name: "Mini-Macro",
  7600. height: math.unit(5, "meters"),
  7601. form: "liom"
  7602. },
  7603. {
  7604. name: "Macro",
  7605. height: math.unit(15, "meters"),
  7606. form: "liom"
  7607. },
  7608. {
  7609. name: "True Macro",
  7610. height: math.unit(40, "meters"),
  7611. form: "liom"
  7612. },
  7613. {
  7614. name: "City Scale",
  7615. height: math.unit(1, "km"),
  7616. form: "liom"
  7617. },
  7618. {
  7619. name: "Plushie",
  7620. height: math.unit(9, "cm"),
  7621. form: "plush",
  7622. default: true
  7623. },
  7624. {
  7625. name: "Fae",
  7626. height: math.unit(10, "cm"),
  7627. form: "fae",
  7628. default: true
  7629. },
  7630. ],
  7631. {
  7632. "liom": {
  7633. name: "Liom"
  7634. },
  7635. "plush": {
  7636. name: "Plush"
  7637. },
  7638. "fae": {
  7639. name: "Fae Fox",
  7640. default: true
  7641. }
  7642. }
  7643. ))
  7644. characterMakers.push(() => makeCharacter(
  7645. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7646. {
  7647. front: {
  7648. height: math.unit(2, "meters"),
  7649. weight: math.unit(350, "lbs"),
  7650. name: "Front",
  7651. image: {
  7652. source: "./media/characters/regal/front.svg"
  7653. }
  7654. },
  7655. back: {
  7656. height: math.unit(2, "meters"),
  7657. weight: math.unit(350, "lbs"),
  7658. name: "Back",
  7659. image: {
  7660. source: "./media/characters/regal/back.svg"
  7661. }
  7662. },
  7663. },
  7664. [
  7665. {
  7666. name: "Macro",
  7667. height: math.unit(350, "feet"),
  7668. default: true
  7669. }
  7670. ]
  7671. ))
  7672. characterMakers.push(() => makeCharacter(
  7673. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7674. {
  7675. front: {
  7676. height: math.unit(4 + 11 / 12, "feet"),
  7677. weight: math.unit(100, "lbs"),
  7678. name: "Front",
  7679. image: {
  7680. source: "./media/characters/opal/front.svg"
  7681. }
  7682. },
  7683. frontAlt: {
  7684. height: math.unit(4 + 11 / 12, "feet"),
  7685. weight: math.unit(100, "lbs"),
  7686. name: "Front (Alt)",
  7687. image: {
  7688. source: "./media/characters/opal/front-alt.svg"
  7689. }
  7690. },
  7691. },
  7692. [
  7693. {
  7694. name: "Small",
  7695. height: math.unit(4 + 11 / 12, "feet")
  7696. },
  7697. {
  7698. name: "Normal",
  7699. height: math.unit(20, "feet"),
  7700. default: true
  7701. },
  7702. {
  7703. name: "Macro",
  7704. height: math.unit(120, "feet")
  7705. },
  7706. {
  7707. name: "Megamacro",
  7708. height: math.unit(80, "miles")
  7709. },
  7710. {
  7711. name: "True Size",
  7712. height: math.unit(100000, "lightyears")
  7713. },
  7714. ]
  7715. ))
  7716. characterMakers.push(() => makeCharacter(
  7717. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7718. {
  7719. front: {
  7720. height: math.unit(6, "feet"),
  7721. weight: math.unit(200, "lbs"),
  7722. name: "Front",
  7723. image: {
  7724. source: "./media/characters/vector-wuff/front.svg"
  7725. }
  7726. }
  7727. },
  7728. [
  7729. {
  7730. name: "Normal",
  7731. height: math.unit(2.8, "meters")
  7732. },
  7733. {
  7734. name: "Macro",
  7735. height: math.unit(450, "meters"),
  7736. default: true
  7737. },
  7738. {
  7739. name: "Megamacro",
  7740. height: math.unit(15, "kilometers")
  7741. }
  7742. ]
  7743. ))
  7744. characterMakers.push(() => makeCharacter(
  7745. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7746. {
  7747. front: {
  7748. height: math.unit(6, "feet"),
  7749. weight: math.unit(256, "lbs"),
  7750. name: "Front",
  7751. image: {
  7752. source: "./media/characters/dannik/front.svg"
  7753. }
  7754. }
  7755. },
  7756. [
  7757. {
  7758. name: "Macro",
  7759. height: math.unit(69.57, "meters"),
  7760. default: true
  7761. },
  7762. ]
  7763. ))
  7764. characterMakers.push(() => makeCharacter(
  7765. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7766. {
  7767. front: {
  7768. height: math.unit(6, "feet"),
  7769. weight: math.unit(120, "lbs"),
  7770. name: "Front",
  7771. image: {
  7772. source: "./media/characters/azura-saharah/front.svg"
  7773. }
  7774. },
  7775. back: {
  7776. height: math.unit(6, "feet"),
  7777. weight: math.unit(120, "lbs"),
  7778. name: "Back",
  7779. image: {
  7780. source: "./media/characters/azura-saharah/back.svg"
  7781. }
  7782. },
  7783. },
  7784. [
  7785. {
  7786. name: "Macro",
  7787. height: math.unit(100, "feet"),
  7788. default: true
  7789. },
  7790. ]
  7791. ))
  7792. characterMakers.push(() => makeCharacter(
  7793. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7794. {
  7795. side: {
  7796. height: math.unit(5 + 4 / 12, "feet"),
  7797. weight: math.unit(163, "lbs"),
  7798. name: "Side",
  7799. image: {
  7800. source: "./media/characters/kennedy/side.svg"
  7801. }
  7802. }
  7803. },
  7804. [
  7805. {
  7806. name: "Standard Doggo",
  7807. height: math.unit(5 + 4 / 12, "feet")
  7808. },
  7809. {
  7810. name: "Big Doggo",
  7811. height: math.unit(25 + 3 / 12, "feet"),
  7812. default: true
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(5 + 5/12, "feet"),
  7821. weight: math.unit(100, "lbs"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/odios-de-lunar/front.svg",
  7825. extra: 1468/1323,
  7826. bottom: 22/1490
  7827. }
  7828. }
  7829. },
  7830. [
  7831. {
  7832. name: "Micro",
  7833. height: math.unit(3, "inches")
  7834. },
  7835. {
  7836. name: "Normal",
  7837. height: math.unit(5.5, "feet"),
  7838. default: true
  7839. },
  7840. {
  7841. name: "Macro",
  7842. height: math.unit(100, "feet")
  7843. },
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7848. {
  7849. back: {
  7850. height: math.unit(6, "feet"),
  7851. weight: math.unit(220, "lbs"),
  7852. name: "Back",
  7853. image: {
  7854. source: "./media/characters/mandake/back.svg"
  7855. }
  7856. }
  7857. },
  7858. [
  7859. {
  7860. name: "Normal",
  7861. height: math.unit(7, "feet"),
  7862. default: true
  7863. },
  7864. {
  7865. name: "Macro",
  7866. height: math.unit(78, "feet")
  7867. },
  7868. {
  7869. name: "Macro+",
  7870. height: math.unit(300, "meters")
  7871. },
  7872. {
  7873. name: "Macro++",
  7874. height: math.unit(2400, "feet")
  7875. },
  7876. {
  7877. name: "Megamacro",
  7878. height: math.unit(5167, "meters")
  7879. },
  7880. {
  7881. name: "Gigamacro",
  7882. height: math.unit(41769, "miles")
  7883. },
  7884. ]
  7885. ))
  7886. characterMakers.push(() => makeCharacter(
  7887. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7888. {
  7889. front: {
  7890. height: math.unit(6, "feet"),
  7891. weight: math.unit(120, "lbs"),
  7892. name: "Front",
  7893. image: {
  7894. source: "./media/characters/yozey/front.svg"
  7895. }
  7896. },
  7897. frontAlt: {
  7898. height: math.unit(6, "feet"),
  7899. weight: math.unit(120, "lbs"),
  7900. name: "Front (Alt)",
  7901. image: {
  7902. source: "./media/characters/yozey/front-alt.svg"
  7903. }
  7904. },
  7905. side: {
  7906. height: math.unit(6, "feet"),
  7907. weight: math.unit(120, "lbs"),
  7908. name: "Side",
  7909. image: {
  7910. source: "./media/characters/yozey/side.svg"
  7911. }
  7912. },
  7913. },
  7914. [
  7915. {
  7916. name: "Micro",
  7917. height: math.unit(3, "inches"),
  7918. default: true
  7919. },
  7920. {
  7921. name: "Normal",
  7922. height: math.unit(6, "feet")
  7923. }
  7924. ]
  7925. ))
  7926. characterMakers.push(() => makeCharacter(
  7927. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7928. {
  7929. front: {
  7930. height: math.unit(6, "feet"),
  7931. weight: math.unit(103, "lbs"),
  7932. name: "Front",
  7933. image: {
  7934. source: "./media/characters/valeska-voss/front.svg"
  7935. }
  7936. }
  7937. },
  7938. [
  7939. {
  7940. name: "Mini-Sized Sub",
  7941. height: math.unit(3.1, "inches")
  7942. },
  7943. {
  7944. name: "Mid-Sized Sub",
  7945. height: math.unit(6.2, "inches")
  7946. },
  7947. {
  7948. name: "Full-Sized Sub",
  7949. height: math.unit(9.3, "inches")
  7950. },
  7951. {
  7952. name: "Normal",
  7953. height: math.unit(5 + 2 / 12, "foot"),
  7954. default: true
  7955. },
  7956. ]
  7957. ))
  7958. characterMakers.push(() => makeCharacter(
  7959. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7960. {
  7961. front: {
  7962. height: math.unit(6, "feet"),
  7963. weight: math.unit(160, "lbs"),
  7964. name: "Front",
  7965. image: {
  7966. source: "./media/characters/gene-zeta/front.svg",
  7967. extra: 3006 / 2826,
  7968. bottom: 182 / 3188
  7969. }
  7970. }
  7971. },
  7972. [
  7973. {
  7974. name: "Micro",
  7975. height: math.unit(6, "inches")
  7976. },
  7977. {
  7978. name: "Normal",
  7979. height: math.unit(5 + 11 / 12, "foot"),
  7980. default: true
  7981. },
  7982. {
  7983. name: "Macro",
  7984. height: math.unit(140, "feet")
  7985. },
  7986. {
  7987. name: "Supercharged",
  7988. height: math.unit(2500, "feet")
  7989. },
  7990. ]
  7991. ))
  7992. characterMakers.push(() => makeCharacter(
  7993. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7994. {
  7995. front: {
  7996. height: math.unit(6, "feet"),
  7997. weight: math.unit(350, "lbs"),
  7998. name: "Front",
  7999. image: {
  8000. source: "./media/characters/razinox/front.svg",
  8001. extra: 1686 / 1548,
  8002. bottom: 28.2 / 1868
  8003. }
  8004. },
  8005. back: {
  8006. height: math.unit(6, "feet"),
  8007. weight: math.unit(350, "lbs"),
  8008. name: "Back",
  8009. image: {
  8010. source: "./media/characters/razinox/back.svg",
  8011. extra: 1660 / 1590,
  8012. bottom: 15 / 1665
  8013. }
  8014. },
  8015. },
  8016. [
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(10 + 8 / 12, "foot")
  8020. },
  8021. {
  8022. name: "Minimacro",
  8023. height: math.unit(15, "foot")
  8024. },
  8025. {
  8026. name: "Macro",
  8027. height: math.unit(60, "foot"),
  8028. default: true
  8029. },
  8030. {
  8031. name: "Megamacro",
  8032. height: math.unit(5, "miles")
  8033. },
  8034. {
  8035. name: "Gigamacro",
  8036. height: math.unit(6000, "miles")
  8037. },
  8038. ]
  8039. ))
  8040. characterMakers.push(() => makeCharacter(
  8041. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8042. {
  8043. front: {
  8044. height: math.unit(6, "feet"),
  8045. weight: math.unit(150, "lbs"),
  8046. name: "Front",
  8047. image: {
  8048. source: "./media/characters/cobalt/front.svg"
  8049. }
  8050. }
  8051. },
  8052. [
  8053. {
  8054. name: "Normal",
  8055. height: math.unit(8 + 1 / 12, "foot")
  8056. },
  8057. {
  8058. name: "Macro",
  8059. height: math.unit(111, "foot"),
  8060. default: true
  8061. },
  8062. {
  8063. name: "Supracosmic",
  8064. height: math.unit(1e42, "feet")
  8065. },
  8066. ]
  8067. ))
  8068. characterMakers.push(() => makeCharacter(
  8069. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8070. {
  8071. front: {
  8072. height: math.unit(5, "inches"),
  8073. name: "Front",
  8074. image: {
  8075. source: "./media/characters/amanda/front.svg",
  8076. extra: 926/791,
  8077. bottom: 38/964
  8078. }
  8079. },
  8080. back: {
  8081. height: math.unit(5, "inches"),
  8082. name: "Back",
  8083. image: {
  8084. source: "./media/characters/amanda/back.svg",
  8085. extra: 909/805,
  8086. bottom: 43/952
  8087. }
  8088. },
  8089. },
  8090. [
  8091. {
  8092. name: "Micro",
  8093. height: math.unit(5, "inches"),
  8094. default: true
  8095. },
  8096. ]
  8097. ))
  8098. characterMakers.push(() => makeCharacter(
  8099. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8100. {
  8101. front: {
  8102. height: math.unit(2.75, "meters"),
  8103. weight: math.unit(1200, "lb"),
  8104. name: "Front",
  8105. image: {
  8106. source: "./media/characters/teal/front.svg",
  8107. extra: 2463 / 2320,
  8108. bottom: 166 / 2629
  8109. }
  8110. },
  8111. back: {
  8112. height: math.unit(2.75, "meters"),
  8113. weight: math.unit(1200, "lb"),
  8114. name: "Back",
  8115. image: {
  8116. source: "./media/characters/teal/back.svg",
  8117. extra: 2580 / 2489,
  8118. bottom: 151 / 2731
  8119. }
  8120. },
  8121. sitting: {
  8122. height: math.unit(1.9, "meters"),
  8123. weight: math.unit(1200, "lb"),
  8124. name: "Sitting",
  8125. image: {
  8126. source: "./media/characters/teal/sitting.svg",
  8127. extra: 623 / 590,
  8128. bottom: 121 / 744
  8129. }
  8130. },
  8131. standing: {
  8132. height: math.unit(2.75, "meters"),
  8133. weight: math.unit(1200, "lb"),
  8134. name: "Standing",
  8135. image: {
  8136. source: "./media/characters/teal/standing.svg",
  8137. extra: 923 / 893,
  8138. bottom: 60 / 983
  8139. }
  8140. },
  8141. stretching: {
  8142. height: math.unit(3.65, "meters"),
  8143. weight: math.unit(1200, "lb"),
  8144. name: "Stretching",
  8145. image: {
  8146. source: "./media/characters/teal/stretching.svg",
  8147. extra: 1276 / 1244,
  8148. bottom: 0 / 1276
  8149. }
  8150. },
  8151. legged: {
  8152. height: math.unit(1.3, "meters"),
  8153. weight: math.unit(100, "lb"),
  8154. name: "Legged",
  8155. image: {
  8156. source: "./media/characters/teal/legged.svg",
  8157. extra: 462 / 437,
  8158. bottom: 24 / 486
  8159. }
  8160. },
  8161. naga: {
  8162. height: math.unit(5.4, "meters"),
  8163. weight: math.unit(4000, "lb"),
  8164. name: "Naga",
  8165. image: {
  8166. source: "./media/characters/teal/naga.svg",
  8167. extra: 1902 / 1858,
  8168. bottom: 0 / 1902
  8169. }
  8170. },
  8171. hand: {
  8172. height: math.unit(0.52, "meters"),
  8173. name: "Hand",
  8174. image: {
  8175. source: "./media/characters/teal/hand.svg"
  8176. }
  8177. },
  8178. maw: {
  8179. height: math.unit(0.43, "meters"),
  8180. name: "Maw",
  8181. image: {
  8182. source: "./media/characters/teal/maw.svg"
  8183. }
  8184. },
  8185. slit: {
  8186. height: math.unit(0.25, "meters"),
  8187. name: "Slit",
  8188. image: {
  8189. source: "./media/characters/teal/slit.svg"
  8190. }
  8191. },
  8192. },
  8193. [
  8194. {
  8195. name: "Normal",
  8196. height: math.unit(2.75, "meters"),
  8197. default: true
  8198. },
  8199. {
  8200. name: "Macro",
  8201. height: math.unit(300, "feet")
  8202. },
  8203. {
  8204. name: "Macro+",
  8205. height: math.unit(2000, "feet")
  8206. },
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8211. {
  8212. frontCat: {
  8213. height: math.unit(6, "feet"),
  8214. weight: math.unit(180, "lbs"),
  8215. name: "Front (Cat)",
  8216. image: {
  8217. source: "./media/characters/ravin-amulet/front-cat.svg"
  8218. }
  8219. },
  8220. frontCatAlt: {
  8221. height: math.unit(6, "feet"),
  8222. weight: math.unit(180, "lbs"),
  8223. name: "Front (Alt, Cat)",
  8224. image: {
  8225. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8226. }
  8227. },
  8228. frontWerewolf: {
  8229. height: math.unit(6 * 1.2, "feet"),
  8230. weight: math.unit(225, "lbs"),
  8231. name: "Front (Werewolf)",
  8232. image: {
  8233. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8234. }
  8235. },
  8236. backWerewolf: {
  8237. height: math.unit(6 * 1.2, "feet"),
  8238. weight: math.unit(225, "lbs"),
  8239. name: "Back (Werewolf)",
  8240. image: {
  8241. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8242. }
  8243. },
  8244. },
  8245. [
  8246. {
  8247. name: "Nano",
  8248. height: math.unit(1, "micrometer")
  8249. },
  8250. {
  8251. name: "Micro",
  8252. height: math.unit(1, "inch")
  8253. },
  8254. {
  8255. name: "Normal",
  8256. height: math.unit(6, "feet"),
  8257. default: true
  8258. },
  8259. {
  8260. name: "Macro",
  8261. height: math.unit(60, "feet")
  8262. }
  8263. ]
  8264. ))
  8265. characterMakers.push(() => makeCharacter(
  8266. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8267. {
  8268. front: {
  8269. height: math.unit(6, "feet"),
  8270. weight: math.unit(165, "lbs"),
  8271. name: "Front",
  8272. image: {
  8273. source: "./media/characters/fluoresce/front.svg"
  8274. }
  8275. }
  8276. },
  8277. [
  8278. {
  8279. name: "Micro",
  8280. height: math.unit(6, "cm")
  8281. },
  8282. {
  8283. name: "Normal",
  8284. height: math.unit(5 + 7 / 12, "feet"),
  8285. default: true
  8286. },
  8287. {
  8288. name: "Macro",
  8289. height: math.unit(56, "feet")
  8290. },
  8291. {
  8292. name: "Megamacro",
  8293. height: math.unit(1.9, "miles")
  8294. },
  8295. ]
  8296. ))
  8297. characterMakers.push(() => makeCharacter(
  8298. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8299. {
  8300. front: {
  8301. height: math.unit(9 + 6 / 12, "feet"),
  8302. weight: math.unit(523, "lbs"),
  8303. name: "Side",
  8304. image: {
  8305. source: "./media/characters/aurora/side.svg"
  8306. }
  8307. }
  8308. },
  8309. [
  8310. {
  8311. name: "Normal",
  8312. height: math.unit(9 + 6 / 12, "feet")
  8313. },
  8314. {
  8315. name: "Macro",
  8316. height: math.unit(96, "feet"),
  8317. default: true
  8318. },
  8319. {
  8320. name: "Macro+",
  8321. height: math.unit(243, "feet")
  8322. },
  8323. ]
  8324. ))
  8325. characterMakers.push(() => makeCharacter(
  8326. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8327. {
  8328. front: {
  8329. height: math.unit(194, "cm"),
  8330. weight: math.unit(90, "kg"),
  8331. name: "Front",
  8332. image: {
  8333. source: "./media/characters/ranek/front.svg",
  8334. extra: 1862/1791,
  8335. bottom: 80/1942
  8336. }
  8337. },
  8338. back: {
  8339. height: math.unit(194, "cm"),
  8340. weight: math.unit(90, "kg"),
  8341. name: "Back",
  8342. image: {
  8343. source: "./media/characters/ranek/back.svg",
  8344. extra: 1853/1787,
  8345. bottom: 74/1927
  8346. }
  8347. },
  8348. feral: {
  8349. height: math.unit(30, "cm"),
  8350. weight: math.unit(1.6, "lbs"),
  8351. name: "Feral",
  8352. image: {
  8353. source: "./media/characters/ranek/feral.svg",
  8354. extra: 990/631,
  8355. bottom: 29/1019
  8356. }
  8357. },
  8358. },
  8359. [
  8360. {
  8361. name: "Normal",
  8362. height: math.unit(194, "cm"),
  8363. default: true
  8364. },
  8365. {
  8366. name: "Macro",
  8367. height: math.unit(100, "meters")
  8368. },
  8369. ]
  8370. ))
  8371. characterMakers.push(() => makeCharacter(
  8372. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8373. {
  8374. front: {
  8375. height: math.unit(5 + 6 / 12, "feet"),
  8376. weight: math.unit(153, "lbs"),
  8377. name: "Front",
  8378. image: {
  8379. source: "./media/characters/andrew-cooper/front.svg"
  8380. }
  8381. },
  8382. },
  8383. [
  8384. {
  8385. name: "Nano",
  8386. height: math.unit(1, "mm")
  8387. },
  8388. {
  8389. name: "Micro",
  8390. height: math.unit(2, "inches")
  8391. },
  8392. {
  8393. name: "Normal",
  8394. height: math.unit(5 + 6 / 12, "feet"),
  8395. default: true
  8396. }
  8397. ]
  8398. ))
  8399. characterMakers.push(() => makeCharacter(
  8400. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8401. {
  8402. front: {
  8403. height: math.unit(6, "feet"),
  8404. weight: math.unit(180, "lbs"),
  8405. name: "Front",
  8406. image: {
  8407. source: "./media/characters/akane-sato/front.svg",
  8408. extra: 1219 / 1140
  8409. }
  8410. },
  8411. back: {
  8412. height: math.unit(6, "feet"),
  8413. weight: math.unit(180, "lbs"),
  8414. name: "Back",
  8415. image: {
  8416. source: "./media/characters/akane-sato/back.svg",
  8417. extra: 1219 / 1170
  8418. }
  8419. },
  8420. },
  8421. [
  8422. {
  8423. name: "Normal",
  8424. height: math.unit(2.5, "meters")
  8425. },
  8426. {
  8427. name: "Macro",
  8428. height: math.unit(250, "meters"),
  8429. default: true
  8430. },
  8431. {
  8432. name: "Megamacro",
  8433. height: math.unit(25, "km")
  8434. },
  8435. ]
  8436. ))
  8437. characterMakers.push(() => makeCharacter(
  8438. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8439. {
  8440. front: {
  8441. height: math.unit(6, "feet"),
  8442. weight: math.unit(65, "kg"),
  8443. name: "Front",
  8444. image: {
  8445. source: "./media/characters/rook/front.svg",
  8446. extra: 960 / 950
  8447. }
  8448. }
  8449. },
  8450. [
  8451. {
  8452. name: "Normal",
  8453. height: math.unit(8.8, "feet")
  8454. },
  8455. {
  8456. name: "Macro",
  8457. height: math.unit(88, "feet"),
  8458. default: true
  8459. },
  8460. {
  8461. name: "Megamacro",
  8462. height: math.unit(8, "miles")
  8463. },
  8464. ]
  8465. ))
  8466. characterMakers.push(() => makeCharacter(
  8467. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8468. {
  8469. front: {
  8470. height: math.unit(12 + 2 / 12, "feet"),
  8471. weight: math.unit(808, "lbs"),
  8472. name: "Front",
  8473. image: {
  8474. source: "./media/characters/prodigy/front.svg"
  8475. }
  8476. }
  8477. },
  8478. [
  8479. {
  8480. name: "Normal",
  8481. height: math.unit(12 + 2 / 12, "feet"),
  8482. default: true
  8483. },
  8484. {
  8485. name: "Macro",
  8486. height: math.unit(143, "feet")
  8487. },
  8488. {
  8489. name: "Macro+",
  8490. height: math.unit(400, "feet")
  8491. },
  8492. ]
  8493. ))
  8494. characterMakers.push(() => makeCharacter(
  8495. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8496. {
  8497. front: {
  8498. height: math.unit(6, "feet"),
  8499. weight: math.unit(225, "lbs"),
  8500. name: "Front",
  8501. image: {
  8502. source: "./media/characters/daniel/front.svg"
  8503. }
  8504. },
  8505. leaning: {
  8506. height: math.unit(6, "feet"),
  8507. weight: math.unit(225, "lbs"),
  8508. name: "Leaning",
  8509. image: {
  8510. source: "./media/characters/daniel/leaning.svg"
  8511. }
  8512. },
  8513. },
  8514. [
  8515. {
  8516. name: "Macro",
  8517. height: math.unit(1000, "feet"),
  8518. default: true
  8519. },
  8520. ]
  8521. ))
  8522. characterMakers.push(() => makeCharacter(
  8523. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8524. {
  8525. front: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(88, "lbs"),
  8528. name: "Front",
  8529. image: {
  8530. source: "./media/characters/chiros/front.svg",
  8531. extra: 306 / 226
  8532. }
  8533. },
  8534. side: {
  8535. height: math.unit(6, "feet"),
  8536. weight: math.unit(88, "lbs"),
  8537. name: "Side",
  8538. image: {
  8539. source: "./media/characters/chiros/side.svg",
  8540. extra: 306 / 226
  8541. }
  8542. },
  8543. },
  8544. [
  8545. {
  8546. name: "Normal",
  8547. height: math.unit(6, "cm"),
  8548. default: true
  8549. },
  8550. ]
  8551. ))
  8552. characterMakers.push(() => makeCharacter(
  8553. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8554. {
  8555. front: {
  8556. height: math.unit(6, "feet"),
  8557. weight: math.unit(100, "lbs"),
  8558. name: "Front",
  8559. image: {
  8560. source: "./media/characters/selka/front.svg",
  8561. extra: 947 / 887
  8562. }
  8563. }
  8564. },
  8565. [
  8566. {
  8567. name: "Normal",
  8568. height: math.unit(5, "cm"),
  8569. default: true
  8570. },
  8571. ]
  8572. ))
  8573. characterMakers.push(() => makeCharacter(
  8574. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8575. {
  8576. front: {
  8577. height: math.unit(8 + 3 / 12, "feet"),
  8578. weight: math.unit(424, "lbs"),
  8579. name: "Front",
  8580. image: {
  8581. source: "./media/characters/verin/front.svg",
  8582. extra: 1845 / 1550
  8583. }
  8584. },
  8585. frontArmored: {
  8586. height: math.unit(8 + 3 / 12, "feet"),
  8587. weight: math.unit(424, "lbs"),
  8588. name: "Front (Armored)",
  8589. image: {
  8590. source: "./media/characters/verin/front-armor.svg",
  8591. extra: 1845 / 1550,
  8592. bottom: 0.01
  8593. }
  8594. },
  8595. back: {
  8596. height: math.unit(8 + 3 / 12, "feet"),
  8597. weight: math.unit(424, "lbs"),
  8598. name: "Back",
  8599. image: {
  8600. source: "./media/characters/verin/back.svg",
  8601. bottom: 0.1,
  8602. extra: 1
  8603. }
  8604. },
  8605. foot: {
  8606. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8607. name: "Foot",
  8608. image: {
  8609. source: "./media/characters/verin/foot.svg"
  8610. }
  8611. },
  8612. },
  8613. [
  8614. {
  8615. name: "Normal",
  8616. height: math.unit(8 + 3 / 12, "feet")
  8617. },
  8618. {
  8619. name: "Minimacro",
  8620. height: math.unit(21, "feet"),
  8621. default: true
  8622. },
  8623. {
  8624. name: "Macro",
  8625. height: math.unit(626, "feet")
  8626. },
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(2.718, "meters"),
  8634. weight: math.unit(150, "lbs"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/sovrim-terraquian/front.svg",
  8638. extra: 1752/1689,
  8639. bottom: 36/1788
  8640. }
  8641. },
  8642. back: {
  8643. height: math.unit(2.718, "meters"),
  8644. weight: math.unit(150, "lbs"),
  8645. name: "Back",
  8646. image: {
  8647. source: "./media/characters/sovrim-terraquian/back.svg",
  8648. extra: 1698/1657,
  8649. bottom: 58/1756
  8650. }
  8651. },
  8652. tongue: {
  8653. height: math.unit(2.865, "feet"),
  8654. name: "Tongue",
  8655. image: {
  8656. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8657. }
  8658. },
  8659. hand: {
  8660. height: math.unit(1.61, "feet"),
  8661. name: "Hand",
  8662. image: {
  8663. source: "./media/characters/sovrim-terraquian/hand.svg"
  8664. }
  8665. },
  8666. foot: {
  8667. height: math.unit(1.05, "feet"),
  8668. name: "Foot",
  8669. image: {
  8670. source: "./media/characters/sovrim-terraquian/foot.svg"
  8671. }
  8672. },
  8673. footAlt: {
  8674. height: math.unit(0.88, "feet"),
  8675. name: "Foot (Alt)",
  8676. image: {
  8677. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8678. }
  8679. },
  8680. },
  8681. [
  8682. {
  8683. name: "Micro",
  8684. height: math.unit(2, "inches")
  8685. },
  8686. {
  8687. name: "Small",
  8688. height: math.unit(1, "meter")
  8689. },
  8690. {
  8691. name: "Normal",
  8692. height: math.unit(Math.E, "meters"),
  8693. default: true
  8694. },
  8695. {
  8696. name: "Macro",
  8697. height: math.unit(20, "meters")
  8698. },
  8699. {
  8700. name: "Macro+",
  8701. height: math.unit(400, "meters")
  8702. },
  8703. ]
  8704. ))
  8705. characterMakers.push(() => makeCharacter(
  8706. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8707. {
  8708. front: {
  8709. height: math.unit(7, "feet"),
  8710. weight: math.unit(489, "lbs"),
  8711. name: "Front",
  8712. image: {
  8713. source: "./media/characters/reece-silvermane/front.svg",
  8714. bottom: 0.02,
  8715. extra: 1
  8716. }
  8717. },
  8718. },
  8719. [
  8720. {
  8721. name: "Macro",
  8722. height: math.unit(1.5, "miles"),
  8723. default: true
  8724. },
  8725. ]
  8726. ))
  8727. characterMakers.push(() => makeCharacter(
  8728. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8729. {
  8730. front: {
  8731. height: math.unit(6, "feet"),
  8732. weight: math.unit(78, "kg"),
  8733. name: "Front",
  8734. image: {
  8735. source: "./media/characters/kane/front.svg",
  8736. extra: 978 / 899
  8737. }
  8738. },
  8739. },
  8740. [
  8741. {
  8742. name: "Normal",
  8743. height: math.unit(2.1, "m"),
  8744. },
  8745. {
  8746. name: "Macro",
  8747. height: math.unit(1, "km"),
  8748. default: true
  8749. },
  8750. ]
  8751. ))
  8752. characterMakers.push(() => makeCharacter(
  8753. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8754. {
  8755. front: {
  8756. height: math.unit(6, "feet"),
  8757. weight: math.unit(200, "kg"),
  8758. name: "Front",
  8759. image: {
  8760. source: "./media/characters/tegon/front.svg",
  8761. bottom: 0.01,
  8762. extra: 1
  8763. }
  8764. },
  8765. },
  8766. [
  8767. {
  8768. name: "Micro",
  8769. height: math.unit(1, "inch")
  8770. },
  8771. {
  8772. name: "Normal",
  8773. height: math.unit(6 + 3 / 12, "feet"),
  8774. default: true
  8775. },
  8776. {
  8777. name: "Macro",
  8778. height: math.unit(300, "feet")
  8779. },
  8780. {
  8781. name: "Megamacro",
  8782. height: math.unit(69, "miles")
  8783. },
  8784. ]
  8785. ))
  8786. characterMakers.push(() => makeCharacter(
  8787. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8788. {
  8789. side: {
  8790. height: math.unit(6, "feet"),
  8791. weight: math.unit(2304, "lbs"),
  8792. name: "Side",
  8793. image: {
  8794. source: "./media/characters/arcturax/side.svg",
  8795. extra: 790 / 376,
  8796. bottom: 0.01
  8797. }
  8798. },
  8799. },
  8800. [
  8801. {
  8802. name: "Micro",
  8803. height: math.unit(2, "inch")
  8804. },
  8805. {
  8806. name: "Normal",
  8807. height: math.unit(6, "feet")
  8808. },
  8809. {
  8810. name: "Macro",
  8811. height: math.unit(39, "feet"),
  8812. default: true
  8813. },
  8814. {
  8815. name: "Megamacro",
  8816. height: math.unit(7, "miles")
  8817. },
  8818. ]
  8819. ))
  8820. characterMakers.push(() => makeCharacter(
  8821. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8822. {
  8823. front: {
  8824. height: math.unit(6, "feet"),
  8825. weight: math.unit(50, "lbs"),
  8826. name: "Front",
  8827. image: {
  8828. source: "./media/characters/sentri/front.svg",
  8829. extra: 1750 / 1570,
  8830. bottom: 0.025
  8831. }
  8832. },
  8833. frontAlt: {
  8834. height: math.unit(6, "feet"),
  8835. weight: math.unit(50, "lbs"),
  8836. name: "Front (Alt)",
  8837. image: {
  8838. source: "./media/characters/sentri/front-alt.svg",
  8839. extra: 1750 / 1570,
  8840. bottom: 0.025
  8841. }
  8842. },
  8843. },
  8844. [
  8845. {
  8846. name: "Normal",
  8847. height: math.unit(15, "feet"),
  8848. default: true
  8849. },
  8850. {
  8851. name: "Macro",
  8852. height: math.unit(2500, "feet")
  8853. }
  8854. ]
  8855. ))
  8856. characterMakers.push(() => makeCharacter(
  8857. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8858. {
  8859. front: {
  8860. height: math.unit(5 + 8 / 12, "feet"),
  8861. weight: math.unit(130, "lbs"),
  8862. name: "Front",
  8863. image: {
  8864. source: "./media/characters/corvin/front.svg",
  8865. extra: 1803 / 1629
  8866. }
  8867. },
  8868. frontShirt: {
  8869. height: math.unit(5 + 8 / 12, "feet"),
  8870. weight: math.unit(130, "lbs"),
  8871. name: "Front (Shirt)",
  8872. image: {
  8873. source: "./media/characters/corvin/front-shirt.svg",
  8874. extra: 1803 / 1629
  8875. }
  8876. },
  8877. frontPoncho: {
  8878. height: math.unit(5 + 8 / 12, "feet"),
  8879. weight: math.unit(130, "lbs"),
  8880. name: "Front (Poncho)",
  8881. image: {
  8882. source: "./media/characters/corvin/front-poncho.svg",
  8883. extra: 1803 / 1629
  8884. }
  8885. },
  8886. side: {
  8887. height: math.unit(5 + 8 / 12, "feet"),
  8888. weight: math.unit(130, "lbs"),
  8889. name: "Side",
  8890. image: {
  8891. source: "./media/characters/corvin/side.svg",
  8892. extra: 1012 / 945
  8893. }
  8894. },
  8895. back: {
  8896. height: math.unit(5 + 8 / 12, "feet"),
  8897. weight: math.unit(130, "lbs"),
  8898. name: "Back",
  8899. image: {
  8900. source: "./media/characters/corvin/back.svg",
  8901. extra: 1803 / 1629
  8902. }
  8903. },
  8904. },
  8905. [
  8906. {
  8907. name: "Micro",
  8908. height: math.unit(3, "inches")
  8909. },
  8910. {
  8911. name: "Normal",
  8912. height: math.unit(5 + 8 / 12, "feet")
  8913. },
  8914. {
  8915. name: "Macro",
  8916. height: math.unit(300, "feet"),
  8917. default: true
  8918. },
  8919. {
  8920. name: "Megamacro",
  8921. height: math.unit(500, "miles")
  8922. }
  8923. ]
  8924. ))
  8925. characterMakers.push(() => makeCharacter(
  8926. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8927. {
  8928. front: {
  8929. height: math.unit(6, "feet"),
  8930. weight: math.unit(135, "lbs"),
  8931. name: "Front",
  8932. image: {
  8933. source: "./media/characters/q/front.svg",
  8934. extra: 854 / 752,
  8935. bottom: 0.005
  8936. }
  8937. },
  8938. back: {
  8939. height: math.unit(6, "feet"),
  8940. weight: math.unit(130, "lbs"),
  8941. name: "Back",
  8942. image: {
  8943. source: "./media/characters/q/back.svg",
  8944. extra: 854 / 752
  8945. }
  8946. },
  8947. },
  8948. [
  8949. {
  8950. name: "Macro",
  8951. height: math.unit(90, "feet"),
  8952. default: true
  8953. },
  8954. {
  8955. name: "Extra Macro",
  8956. height: math.unit(300, "feet"),
  8957. },
  8958. {
  8959. name: "BIG WALF",
  8960. height: math.unit(750, "feet"),
  8961. },
  8962. ]
  8963. ))
  8964. characterMakers.push(() => makeCharacter(
  8965. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8966. {
  8967. front: {
  8968. height: math.unit(3, "feet"),
  8969. weight: math.unit(28, "lbs"),
  8970. name: "Front",
  8971. image: {
  8972. source: "./media/characters/citrine/front.svg"
  8973. }
  8974. }
  8975. },
  8976. [
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(3, "feet"),
  8980. default: true
  8981. }
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8986. {
  8987. front: {
  8988. height: math.unit(14, "feet"),
  8989. weight: math.unit(1450, "kg"),
  8990. preyCapacity: math.unit(15, "people"),
  8991. name: "Front",
  8992. image: {
  8993. source: "./media/characters/aura-starwind/front.svg",
  8994. extra: 1440/1327,
  8995. bottom: 11/1451
  8996. }
  8997. },
  8998. side: {
  8999. height: math.unit(14, "feet"),
  9000. weight: math.unit(1450, "kg"),
  9001. preyCapacity: math.unit(15, "people"),
  9002. name: "Side",
  9003. image: {
  9004. source: "./media/characters/aura-starwind/side.svg",
  9005. extra: 1654 / 1497
  9006. }
  9007. },
  9008. taur: {
  9009. height: math.unit(18, "feet"),
  9010. weight: math.unit(5500, "kg"),
  9011. preyCapacity: math.unit(50, "people"),
  9012. name: "Taur",
  9013. image: {
  9014. source: "./media/characters/aura-starwind/taur.svg",
  9015. extra: 1760 / 1650
  9016. }
  9017. },
  9018. feral: {
  9019. height: math.unit(46, "feet"),
  9020. weight: math.unit(25000, "kg"),
  9021. preyCapacity: math.unit(120, "people"),
  9022. name: "Feral",
  9023. image: {
  9024. source: "./media/characters/aura-starwind/feral.svg"
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Normal",
  9031. height: math.unit(14, "feet"),
  9032. default: true
  9033. },
  9034. {
  9035. name: "Macro",
  9036. height: math.unit(50, "meters")
  9037. },
  9038. {
  9039. name: "Megamacro",
  9040. height: math.unit(5000, "meters")
  9041. },
  9042. {
  9043. name: "Gigamacro",
  9044. height: math.unit(100000, "kilometers")
  9045. },
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(2 + 7 / 12, "feet"),
  9053. weight: math.unit(32, "lbs"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/rivet/front.svg",
  9057. extra: 1716 / 1658,
  9058. bottom: 0.03
  9059. }
  9060. },
  9061. foot: {
  9062. height: math.unit(0.551, "feet"),
  9063. name: "Rivet's Foot",
  9064. image: {
  9065. source: "./media/characters/rivet/foot.svg"
  9066. },
  9067. rename: true
  9068. }
  9069. },
  9070. [
  9071. {
  9072. name: "Micro",
  9073. height: math.unit(1.5, "inches"),
  9074. },
  9075. {
  9076. name: "Normal",
  9077. height: math.unit(2 + 7 / 12, "feet"),
  9078. default: true
  9079. },
  9080. {
  9081. name: "Macro",
  9082. height: math.unit(85, "feet")
  9083. },
  9084. {
  9085. name: "Megamacro",
  9086. height: math.unit(2.2, "km")
  9087. }
  9088. ]
  9089. ))
  9090. characterMakers.push(() => makeCharacter(
  9091. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9092. {
  9093. front: {
  9094. height: math.unit(5 + 9 / 12, "feet"),
  9095. weight: math.unit(150, "lbs"),
  9096. name: "Front",
  9097. image: {
  9098. source: "./media/characters/coffee/front.svg",
  9099. extra: 946/880,
  9100. bottom: 66/1012
  9101. }
  9102. },
  9103. foot: {
  9104. height: math.unit(1.29, "feet"),
  9105. name: "Foot",
  9106. image: {
  9107. source: "./media/characters/coffee/foot.svg"
  9108. }
  9109. },
  9110. },
  9111. [
  9112. {
  9113. name: "Micro",
  9114. height: math.unit(2, "inches"),
  9115. },
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(5 + 9 / 12, "feet"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(800, "feet")
  9124. },
  9125. {
  9126. name: "Megamacro",
  9127. height: math.unit(25, "miles")
  9128. }
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9133. {
  9134. front: {
  9135. height: math.unit(6, "feet"),
  9136. weight: math.unit(200, "lbs"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/chari-gal/front.svg",
  9140. extra: 1568 / 1385,
  9141. bottom: 0.047
  9142. }
  9143. },
  9144. gigantamax: {
  9145. height: math.unit(6 * 16, "feet"),
  9146. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9147. name: "Gigantamax",
  9148. image: {
  9149. source: "./media/characters/chari-gal/gigantamax.svg",
  9150. extra: 1124 / 888,
  9151. bottom: 0.03
  9152. }
  9153. },
  9154. },
  9155. [
  9156. {
  9157. name: "Normal",
  9158. height: math.unit(5 + 7 / 12, "feet")
  9159. },
  9160. {
  9161. name: "Macro",
  9162. height: math.unit(200, "feet"),
  9163. default: true
  9164. }
  9165. ]
  9166. ))
  9167. characterMakers.push(() => makeCharacter(
  9168. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9169. {
  9170. front: {
  9171. height: math.unit(6, "feet"),
  9172. weight: math.unit(150, "lbs"),
  9173. name: "Front",
  9174. image: {
  9175. source: "./media/characters/nova/front.svg",
  9176. extra: 5000 / 4722,
  9177. bottom: 0.02
  9178. }
  9179. }
  9180. },
  9181. [
  9182. {
  9183. name: "Micro-",
  9184. height: math.unit(0.8, "inches")
  9185. },
  9186. {
  9187. name: "Micro",
  9188. height: math.unit(2, "inches"),
  9189. default: true
  9190. },
  9191. ]
  9192. ))
  9193. characterMakers.push(() => makeCharacter(
  9194. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9195. {
  9196. koboldFront: {
  9197. height: math.unit(3 + 1 / 12, "feet"),
  9198. weight: math.unit(21.7, "lbs"),
  9199. name: "Front",
  9200. image: {
  9201. source: "./media/characters/argent/kobold-front.svg",
  9202. extra: 1471 / 1331,
  9203. bottom: 100.8 / 1575.5
  9204. },
  9205. form: "kobold",
  9206. default: true
  9207. },
  9208. dragonFront: {
  9209. height: math.unit(75, "inches"),
  9210. name: "Front",
  9211. image: {
  9212. source: "./media/characters/argent/dragon-front.svg",
  9213. extra: 1389/1248,
  9214. bottom: 54/1443
  9215. },
  9216. form: "dragon",
  9217. },
  9218. dragonBack: {
  9219. height: math.unit(75, "inches"),
  9220. name: "Back",
  9221. image: {
  9222. source: "./media/characters/argent/dragon-back.svg",
  9223. extra: 1399/1271,
  9224. bottom: 23/1422
  9225. },
  9226. form: "dragon",
  9227. },
  9228. dragonDressed: {
  9229. height: math.unit(75, "inches"),
  9230. name: "Dressed",
  9231. image: {
  9232. source: "./media/characters/argent/dragon-dressed.svg",
  9233. extra: 1350/1215,
  9234. bottom: 26/1376
  9235. },
  9236. form: "dragon"
  9237. },
  9238. dragonHead: {
  9239. height: math.unit(23.5, "inches"),
  9240. name: "Head",
  9241. image: {
  9242. source: "./media/characters/argent/dragon-head.svg"
  9243. },
  9244. form: "dragon",
  9245. },
  9246. },
  9247. [
  9248. {
  9249. name: "Micro",
  9250. height: math.unit(2, "inches"),
  9251. form: "kobold",
  9252. },
  9253. {
  9254. name: "Normal",
  9255. height: math.unit(3 + 1 / 12, "feet"),
  9256. form: "kobold",
  9257. default: true
  9258. },
  9259. {
  9260. name: "Macro",
  9261. height: math.unit(120, "feet"),
  9262. form: "kobold",
  9263. },
  9264. {
  9265. name: "Speck",
  9266. height: math.unit(1, "mm"),
  9267. form: "dragon",
  9268. },
  9269. {
  9270. name: "Tiny",
  9271. height: math.unit(1, "cm"),
  9272. form: "dragon",
  9273. },
  9274. {
  9275. name: "Micro",
  9276. height: math.unit(5, "cm"),
  9277. form: "dragon",
  9278. },
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(75, "inches"),
  9282. form: "dragon",
  9283. default: true
  9284. },
  9285. {
  9286. name: "Extra Tall",
  9287. height: math.unit(9, "feet"),
  9288. form: "dragon",
  9289. },
  9290. {
  9291. name: "Inconvenient",
  9292. height: math.unit(5, "meters"),
  9293. form: "dragon",
  9294. },
  9295. {
  9296. name: "Macro",
  9297. height: math.unit(70, "meters"),
  9298. form: "dragon",
  9299. },
  9300. {
  9301. name: "Macro+",
  9302. height: math.unit(250, "meters"),
  9303. form: "dragon",
  9304. },
  9305. {
  9306. name: "Megamacro",
  9307. height: math.unit(20, "km"),
  9308. form: "dragon",
  9309. },
  9310. {
  9311. name: "Mountainous",
  9312. height: math.unit(100, "km"),
  9313. form: "dragon",
  9314. },
  9315. {
  9316. name: "Continental",
  9317. height: math.unit(2, "megameters"),
  9318. form: "dragon",
  9319. },
  9320. {
  9321. name: "Too Big",
  9322. height: math.unit(900, "megameters"),
  9323. form: "dragon",
  9324. },
  9325. ],
  9326. {
  9327. "kobold": {
  9328. name: "Kobold",
  9329. default: true
  9330. },
  9331. "dragon": {
  9332. name: "Dragon",
  9333. },
  9334. }
  9335. ))
  9336. characterMakers.push(() => makeCharacter(
  9337. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9338. {
  9339. lamp: {
  9340. height: math.unit(7 * 1559 / 989, "feet"),
  9341. name: "Magic Lamp",
  9342. image: {
  9343. source: "./media/characters/mira-al-cul/lamp.svg",
  9344. extra: 1617 / 1559
  9345. }
  9346. },
  9347. front: {
  9348. height: math.unit(7, "feet"),
  9349. name: "Front",
  9350. image: {
  9351. source: "./media/characters/mira-al-cul/front.svg",
  9352. extra: 1044 / 990
  9353. }
  9354. },
  9355. },
  9356. [
  9357. {
  9358. name: "Heavily Restricted",
  9359. height: math.unit(7 * 1559 / 989, "feet")
  9360. },
  9361. {
  9362. name: "Freshly Freed",
  9363. height: math.unit(50 * 1559 / 989, "feet")
  9364. },
  9365. {
  9366. name: "World Encompassing",
  9367. height: math.unit(10000 * 1559 / 989, "miles")
  9368. },
  9369. {
  9370. name: "Galactic",
  9371. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9372. },
  9373. {
  9374. name: "Palmed Universe",
  9375. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9376. default: true
  9377. },
  9378. {
  9379. name: "Multiversal Matriarch",
  9380. height: math.unit(8.87e10, "yottameters")
  9381. },
  9382. {
  9383. name: "Void Mother",
  9384. height: math.unit(3.14e110, "yottaparsecs")
  9385. },
  9386. {
  9387. name: "Toying with Transcendence",
  9388. height: math.unit(1e307, "meters")
  9389. },
  9390. ]
  9391. ))
  9392. characterMakers.push(() => makeCharacter(
  9393. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9394. {
  9395. front: {
  9396. height: math.unit(17 + 1 / 12, "feet"),
  9397. weight: math.unit(476.2 * 5, "lbs"),
  9398. name: "Front",
  9399. image: {
  9400. source: "./media/characters/kuro-shi-uchū/front.svg",
  9401. extra: 2329 / 1835,
  9402. bottom: 0.02
  9403. }
  9404. },
  9405. },
  9406. [
  9407. {
  9408. name: "Micro",
  9409. height: math.unit(2, "inches")
  9410. },
  9411. {
  9412. name: "Normal",
  9413. height: math.unit(12, "meters")
  9414. },
  9415. {
  9416. name: "Planetary",
  9417. height: math.unit(0.00929, "AU"),
  9418. default: true
  9419. },
  9420. {
  9421. name: "Universal",
  9422. height: math.unit(20, "gigaparsecs")
  9423. },
  9424. ]
  9425. ))
  9426. characterMakers.push(() => makeCharacter(
  9427. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9428. {
  9429. front: {
  9430. height: math.unit(5 + 2 / 12, "feet"),
  9431. weight: math.unit(120, "lbs"),
  9432. name: "Front",
  9433. image: {
  9434. source: "./media/characters/katherine/front.svg",
  9435. extra: 2075 / 1969
  9436. }
  9437. },
  9438. dress: {
  9439. height: math.unit(5 + 2 / 12, "feet"),
  9440. weight: math.unit(120, "lbs"),
  9441. name: "Dress",
  9442. image: {
  9443. source: "./media/characters/katherine/dress.svg",
  9444. extra: 2258 / 2064
  9445. }
  9446. },
  9447. },
  9448. [
  9449. {
  9450. name: "Micro",
  9451. height: math.unit(1, "inches"),
  9452. default: true
  9453. },
  9454. {
  9455. name: "Normal",
  9456. height: math.unit(5 + 2 / 12, "feet")
  9457. },
  9458. {
  9459. name: "Macro",
  9460. height: math.unit(100, "meters")
  9461. },
  9462. {
  9463. name: "Megamacro",
  9464. height: math.unit(80, "miles")
  9465. },
  9466. ]
  9467. ))
  9468. characterMakers.push(() => makeCharacter(
  9469. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9470. {
  9471. front: {
  9472. height: math.unit(7 + 8 / 12, "feet"),
  9473. weight: math.unit(250, "lbs"),
  9474. name: "Front",
  9475. image: {
  9476. source: "./media/characters/yevis/front.svg",
  9477. extra: 1938 / 1755
  9478. }
  9479. }
  9480. },
  9481. [
  9482. {
  9483. name: "Mortal",
  9484. height: math.unit(7 + 8 / 12, "feet")
  9485. },
  9486. {
  9487. name: "Battle",
  9488. height: math.unit(25 + 11 / 12, "feet")
  9489. },
  9490. {
  9491. name: "Wrath",
  9492. height: math.unit(1654 + 11 / 12, "feet")
  9493. },
  9494. {
  9495. name: "Planet Destroyer",
  9496. height: math.unit(12000, "miles")
  9497. },
  9498. {
  9499. name: "Galaxy Conqueror",
  9500. height: math.unit(1.45, "zettameters"),
  9501. default: true
  9502. },
  9503. {
  9504. name: "Universal War",
  9505. height: math.unit(184, "gigaparsecs")
  9506. },
  9507. {
  9508. name: "Eternity War",
  9509. height: math.unit(1.98e55, "yottaparsecs")
  9510. },
  9511. ]
  9512. ))
  9513. characterMakers.push(() => makeCharacter(
  9514. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9515. {
  9516. front: {
  9517. height: math.unit(5 + 8 / 12, "feet"),
  9518. weight: math.unit(63, "kg"),
  9519. name: "Front",
  9520. image: {
  9521. source: "./media/characters/xavier/front.svg",
  9522. extra: 944 / 883
  9523. }
  9524. },
  9525. frontStretch: {
  9526. height: math.unit(5 + 8 / 12, "feet"),
  9527. weight: math.unit(63, "kg"),
  9528. name: "Stretching",
  9529. image: {
  9530. source: "./media/characters/xavier/front-stretch.svg",
  9531. extra: 962 / 820
  9532. }
  9533. },
  9534. },
  9535. [
  9536. {
  9537. name: "Normal",
  9538. height: math.unit(5 + 8 / 12, "feet")
  9539. },
  9540. {
  9541. name: "Macro",
  9542. height: math.unit(100, "meters"),
  9543. default: true
  9544. },
  9545. {
  9546. name: "McLargeHuge",
  9547. height: math.unit(10, "miles")
  9548. },
  9549. ]
  9550. ))
  9551. characterMakers.push(() => makeCharacter(
  9552. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9553. {
  9554. front: {
  9555. height: math.unit(5 + 5 / 12, "feet"),
  9556. weight: math.unit(150, "lb"),
  9557. name: "Front",
  9558. image: {
  9559. source: "./media/characters/joshii/front.svg",
  9560. extra: 765 / 653,
  9561. bottom: 51 / 816
  9562. }
  9563. },
  9564. foot: {
  9565. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9566. name: "Foot",
  9567. image: {
  9568. source: "./media/characters/joshii/foot.svg"
  9569. }
  9570. },
  9571. },
  9572. [
  9573. {
  9574. name: "Micro",
  9575. height: math.unit(2, "inches")
  9576. },
  9577. {
  9578. name: "Normal",
  9579. height: math.unit(5 + 5 / 12, "feet")
  9580. },
  9581. {
  9582. name: "Macro",
  9583. height: math.unit(785, "feet"),
  9584. default: true
  9585. },
  9586. {
  9587. name: "Megamacro",
  9588. height: math.unit(24.5, "miles")
  9589. },
  9590. ]
  9591. ))
  9592. characterMakers.push(() => makeCharacter(
  9593. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9594. {
  9595. front: {
  9596. height: math.unit(6, "feet"),
  9597. weight: math.unit(150, "lb"),
  9598. name: "Front",
  9599. image: {
  9600. source: "./media/characters/goddess-elizabeth/front.svg",
  9601. extra: 1800 / 1525,
  9602. bottom: 0.005
  9603. }
  9604. },
  9605. foot: {
  9606. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9607. name: "Foot",
  9608. image: {
  9609. source: "./media/characters/goddess-elizabeth/foot.svg"
  9610. }
  9611. },
  9612. mouth: {
  9613. height: math.unit(6, "feet"),
  9614. name: "Mouth",
  9615. image: {
  9616. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9617. }
  9618. },
  9619. },
  9620. [
  9621. {
  9622. name: "Micro",
  9623. height: math.unit(12, "feet")
  9624. },
  9625. {
  9626. name: "Normal",
  9627. height: math.unit(80, "miles"),
  9628. default: true
  9629. },
  9630. {
  9631. name: "Macro",
  9632. height: math.unit(15000, "parsecs")
  9633. },
  9634. ]
  9635. ))
  9636. characterMakers.push(() => makeCharacter(
  9637. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9638. {
  9639. front: {
  9640. height: math.unit(5 + 9 / 12, "feet"),
  9641. weight: math.unit(144, "lb"),
  9642. name: "Front",
  9643. image: {
  9644. source: "./media/characters/kara/front.svg"
  9645. }
  9646. },
  9647. feet: {
  9648. height: math.unit(6 / 6.765, "feet"),
  9649. name: "Kara's Feet",
  9650. rename: true,
  9651. image: {
  9652. source: "./media/characters/kara/feet.svg"
  9653. }
  9654. },
  9655. },
  9656. [
  9657. {
  9658. name: "Normal",
  9659. height: math.unit(5 + 9 / 12, "feet")
  9660. },
  9661. {
  9662. name: "Macro",
  9663. height: math.unit(174, "feet"),
  9664. default: true
  9665. },
  9666. ]
  9667. ))
  9668. characterMakers.push(() => makeCharacter(
  9669. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9670. {
  9671. front: {
  9672. height: math.unit(18, "feet"),
  9673. weight: math.unit(4050, "lb"),
  9674. name: "Front",
  9675. image: {
  9676. source: "./media/characters/tyrone/front.svg",
  9677. extra: 2405 / 2270,
  9678. bottom: 182 / 2587
  9679. }
  9680. },
  9681. },
  9682. [
  9683. {
  9684. name: "Normal",
  9685. height: math.unit(18, "feet"),
  9686. default: true
  9687. },
  9688. {
  9689. name: "Macro",
  9690. height: math.unit(300, "feet")
  9691. },
  9692. {
  9693. name: "Megamacro",
  9694. height: math.unit(15, "km")
  9695. },
  9696. {
  9697. name: "Gigamacro",
  9698. height: math.unit(500, "km")
  9699. },
  9700. {
  9701. name: "Teramacro",
  9702. height: math.unit(0.5, "gigameters")
  9703. },
  9704. {
  9705. name: "Omnimacro",
  9706. height: math.unit(1e252, "yottauniverse")
  9707. },
  9708. ]
  9709. ))
  9710. characterMakers.push(() => makeCharacter(
  9711. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9712. {
  9713. front: {
  9714. height: math.unit(7 + 8 / 12, "feet"),
  9715. weight: math.unit(120, "lb"),
  9716. name: "Front",
  9717. image: {
  9718. source: "./media/characters/danny/front.svg",
  9719. extra: 1490 / 1350
  9720. }
  9721. },
  9722. back: {
  9723. height: math.unit(7 + 8 / 12, "feet"),
  9724. weight: math.unit(120, "lb"),
  9725. name: "Back",
  9726. image: {
  9727. source: "./media/characters/danny/back.svg",
  9728. extra: 1490 / 1350
  9729. }
  9730. },
  9731. },
  9732. [
  9733. {
  9734. name: "Normal",
  9735. height: math.unit(7 + 8 / 12, "feet"),
  9736. default: true
  9737. },
  9738. ]
  9739. ))
  9740. characterMakers.push(() => makeCharacter(
  9741. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9742. {
  9743. front: {
  9744. height: math.unit(3.5, "inches"),
  9745. weight: math.unit(19, "grams"),
  9746. name: "Front",
  9747. image: {
  9748. source: "./media/characters/mallow/front.svg",
  9749. extra: 471 / 431
  9750. }
  9751. },
  9752. back: {
  9753. height: math.unit(3.5, "inches"),
  9754. weight: math.unit(19, "grams"),
  9755. name: "Back",
  9756. image: {
  9757. source: "./media/characters/mallow/back.svg",
  9758. extra: 471 / 431
  9759. }
  9760. },
  9761. },
  9762. [
  9763. {
  9764. name: "Normal",
  9765. height: math.unit(3.5, "inches"),
  9766. default: true
  9767. },
  9768. ]
  9769. ))
  9770. characterMakers.push(() => makeCharacter(
  9771. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9772. {
  9773. front: {
  9774. height: math.unit(9, "feet"),
  9775. weight: math.unit(230, "kg"),
  9776. name: "Front",
  9777. image: {
  9778. source: "./media/characters/starry-aqua/front.svg"
  9779. }
  9780. },
  9781. back: {
  9782. height: math.unit(9, "feet"),
  9783. weight: math.unit(230, "kg"),
  9784. name: "Back",
  9785. image: {
  9786. source: "./media/characters/starry-aqua/back.svg"
  9787. }
  9788. },
  9789. hand: {
  9790. height: math.unit(9 * 0.1168, "feet"),
  9791. name: "Hand",
  9792. image: {
  9793. source: "./media/characters/starry-aqua/hand.svg"
  9794. }
  9795. },
  9796. foot: {
  9797. height: math.unit(9 * 0.18, "feet"),
  9798. name: "Foot",
  9799. image: {
  9800. source: "./media/characters/starry-aqua/foot.svg"
  9801. }
  9802. }
  9803. },
  9804. [
  9805. {
  9806. name: "Micro",
  9807. height: math.unit(3, "inches")
  9808. },
  9809. {
  9810. name: "Normal",
  9811. height: math.unit(9, "feet")
  9812. },
  9813. {
  9814. name: "Macro",
  9815. height: math.unit(300, "feet"),
  9816. default: true
  9817. },
  9818. {
  9819. name: "Megamacro",
  9820. height: math.unit(3200, "feet")
  9821. }
  9822. ]
  9823. ))
  9824. characterMakers.push(() => makeCharacter(
  9825. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9826. {
  9827. front: {
  9828. height: math.unit(15, "feet"),
  9829. weight: math.unit(5026, "lb"),
  9830. name: "Front",
  9831. image: {
  9832. source: "./media/characters/luka-towers/front.svg",
  9833. extra: 1269/1133,
  9834. bottom: 51/1320
  9835. }
  9836. },
  9837. },
  9838. [
  9839. {
  9840. name: "Normal",
  9841. height: math.unit(15, "feet"),
  9842. default: true
  9843. },
  9844. {
  9845. name: "Minimacro",
  9846. height: math.unit(25, "feet")
  9847. },
  9848. {
  9849. name: "Macro",
  9850. height: math.unit(320, "feet")
  9851. },
  9852. {
  9853. name: "Megamacro",
  9854. height: math.unit(35000, "feet")
  9855. },
  9856. {
  9857. name: "Gigamacro",
  9858. height: math.unit(4000, "miles")
  9859. },
  9860. {
  9861. name: "Teramacro",
  9862. height: math.unit(15000, "miles")
  9863. },
  9864. ]
  9865. ))
  9866. characterMakers.push(() => makeCharacter(
  9867. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9868. {
  9869. front: {
  9870. height: math.unit(6, "feet"),
  9871. weight: math.unit(150, "lb"),
  9872. name: "Front",
  9873. image: {
  9874. source: "./media/characters/natalie-nightring/front.svg",
  9875. extra: 1,
  9876. bottom: 0.06
  9877. }
  9878. },
  9879. },
  9880. [
  9881. {
  9882. name: "Uh Oh",
  9883. height: math.unit(0.1, "mm")
  9884. },
  9885. {
  9886. name: "Small",
  9887. height: math.unit(3, "inches")
  9888. },
  9889. {
  9890. name: "Human Scale",
  9891. height: math.unit(6, "feet")
  9892. },
  9893. {
  9894. name: "Librarian",
  9895. height: math.unit(50, "feet"),
  9896. default: true
  9897. },
  9898. {
  9899. name: "Immense",
  9900. height: math.unit(200, "miles")
  9901. },
  9902. ]
  9903. ))
  9904. characterMakers.push(() => makeCharacter(
  9905. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9906. {
  9907. front: {
  9908. height: math.unit(6, "feet"),
  9909. weight: math.unit(180, "lbs"),
  9910. name: "Front",
  9911. image: {
  9912. source: "./media/characters/danni-rosie/front.svg",
  9913. extra: 1260 / 1128,
  9914. bottom: 0.022
  9915. }
  9916. },
  9917. },
  9918. [
  9919. {
  9920. name: "Micro",
  9921. height: math.unit(2, "inches"),
  9922. default: true
  9923. },
  9924. ]
  9925. ))
  9926. characterMakers.push(() => makeCharacter(
  9927. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9928. {
  9929. front: {
  9930. height: math.unit(5 + 9 / 12, "feet"),
  9931. weight: math.unit(220, "lb"),
  9932. name: "Front",
  9933. image: {
  9934. source: "./media/characters/samantha-kruse/front.svg",
  9935. extra: (985 / 935),
  9936. bottom: 0.03
  9937. }
  9938. },
  9939. frontUndressed: {
  9940. height: math.unit(5 + 9 / 12, "feet"),
  9941. weight: math.unit(220, "lb"),
  9942. name: "Front (Undressed)",
  9943. image: {
  9944. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9945. extra: (973 / 923),
  9946. bottom: 0.025
  9947. }
  9948. },
  9949. fat: {
  9950. height: math.unit(5 + 9 / 12, "feet"),
  9951. weight: math.unit(900, "lb"),
  9952. name: "Front (Fat)",
  9953. image: {
  9954. source: "./media/characters/samantha-kruse/fat.svg",
  9955. extra: 2688 / 2561
  9956. }
  9957. },
  9958. },
  9959. [
  9960. {
  9961. name: "Normal",
  9962. height: math.unit(5 + 9 / 12, "feet"),
  9963. default: true
  9964. }
  9965. ]
  9966. ))
  9967. characterMakers.push(() => makeCharacter(
  9968. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9969. {
  9970. back: {
  9971. height: math.unit(5 + 4 / 12, "feet"),
  9972. weight: math.unit(4963, "lb"),
  9973. name: "Back",
  9974. image: {
  9975. source: "./media/characters/amelia-rosie/back.svg",
  9976. extra: 1113 / 963,
  9977. bottom: 0.01
  9978. }
  9979. },
  9980. },
  9981. [
  9982. {
  9983. name: "Level 0",
  9984. height: math.unit(5 + 4 / 12, "feet")
  9985. },
  9986. {
  9987. name: "Level 1",
  9988. height: math.unit(164597, "feet"),
  9989. default: true
  9990. },
  9991. {
  9992. name: "Level 2",
  9993. height: math.unit(956243, "miles")
  9994. },
  9995. {
  9996. name: "Level 3",
  9997. height: math.unit(29421709423, "miles")
  9998. },
  9999. {
  10000. name: "Level 4",
  10001. height: math.unit(154, "lightyears")
  10002. },
  10003. {
  10004. name: "Level 5",
  10005. height: math.unit(4738272, "lightyears")
  10006. },
  10007. {
  10008. name: "Level 6",
  10009. height: math.unit(145787152896, "lightyears")
  10010. },
  10011. ]
  10012. ))
  10013. characterMakers.push(() => makeCharacter(
  10014. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10015. {
  10016. front: {
  10017. height: math.unit(5 + 11 / 12, "feet"),
  10018. weight: math.unit(65, "kg"),
  10019. name: "Front",
  10020. image: {
  10021. source: "./media/characters/rook-kitara/front.svg",
  10022. extra: 1347 / 1274,
  10023. bottom: 0.005
  10024. }
  10025. },
  10026. },
  10027. [
  10028. {
  10029. name: "Totally Unfair",
  10030. height: math.unit(1.8, "mm")
  10031. },
  10032. {
  10033. name: "Lap Rookie",
  10034. height: math.unit(1.4, "feet")
  10035. },
  10036. {
  10037. name: "Normal",
  10038. height: math.unit(5 + 11 / 12, "feet"),
  10039. default: true
  10040. },
  10041. {
  10042. name: "How Did This Happen",
  10043. height: math.unit(80, "miles")
  10044. }
  10045. ]
  10046. ))
  10047. characterMakers.push(() => makeCharacter(
  10048. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10049. {
  10050. front: {
  10051. height: math.unit(7, "feet"),
  10052. weight: math.unit(300, "lb"),
  10053. name: "Front",
  10054. image: {
  10055. source: "./media/characters/pisces/front.svg",
  10056. extra: 2255 / 2115,
  10057. bottom: 0.03
  10058. }
  10059. },
  10060. back: {
  10061. height: math.unit(7, "feet"),
  10062. weight: math.unit(300, "lb"),
  10063. name: "Back",
  10064. image: {
  10065. source: "./media/characters/pisces/back.svg",
  10066. extra: 2146 / 2055,
  10067. bottom: 0.04
  10068. }
  10069. },
  10070. },
  10071. [
  10072. {
  10073. name: "Normal",
  10074. height: math.unit(7, "feet"),
  10075. default: true
  10076. },
  10077. {
  10078. name: "Swimming Pool",
  10079. height: math.unit(12.2, "meters")
  10080. },
  10081. {
  10082. name: "Olympic Swimming Pool",
  10083. height: math.unit(56.3, "meters")
  10084. },
  10085. {
  10086. name: "Lake Superior",
  10087. height: math.unit(93900, "meters")
  10088. },
  10089. {
  10090. name: "Mediterranean Sea",
  10091. height: math.unit(644457, "meters")
  10092. },
  10093. {
  10094. name: "World's Oceans",
  10095. height: math.unit(4567491, "meters")
  10096. },
  10097. ]
  10098. ))
  10099. characterMakers.push(() => makeCharacter(
  10100. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10101. {
  10102. front: {
  10103. height: math.unit(2.3, "meters"),
  10104. weight: math.unit(120, "kg"),
  10105. name: "Front",
  10106. image: {
  10107. source: "./media/characters/zelas/front.svg"
  10108. }
  10109. },
  10110. side: {
  10111. height: math.unit(2.3, "meters"),
  10112. weight: math.unit(120, "kg"),
  10113. name: "Side",
  10114. image: {
  10115. source: "./media/characters/zelas/side.svg"
  10116. }
  10117. },
  10118. back: {
  10119. height: math.unit(2.3, "meters"),
  10120. weight: math.unit(120, "kg"),
  10121. name: "Back",
  10122. image: {
  10123. source: "./media/characters/zelas/back.svg"
  10124. }
  10125. },
  10126. foot: {
  10127. height: math.unit(1.116, "feet"),
  10128. name: "Foot",
  10129. image: {
  10130. source: "./media/characters/zelas/foot.svg"
  10131. }
  10132. },
  10133. },
  10134. [
  10135. {
  10136. name: "Normal",
  10137. height: math.unit(2.3, "meters")
  10138. },
  10139. {
  10140. name: "Macro",
  10141. height: math.unit(30, "meters"),
  10142. default: true
  10143. },
  10144. ]
  10145. ))
  10146. characterMakers.push(() => makeCharacter(
  10147. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10148. {
  10149. front: {
  10150. height: math.unit(1, "inch"),
  10151. weight: math.unit(0.21, "grams"),
  10152. name: "Front",
  10153. image: {
  10154. source: "./media/characters/talbot/front.svg",
  10155. extra: 594 / 544
  10156. }
  10157. },
  10158. },
  10159. [
  10160. {
  10161. name: "Micro",
  10162. height: math.unit(1, "inch"),
  10163. default: true
  10164. },
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10169. {
  10170. front: {
  10171. height: math.unit(3 + 3 / 12, "feet"),
  10172. weight: math.unit(51.8, "lb"),
  10173. name: "Front",
  10174. image: {
  10175. source: "./media/characters/fliss/front.svg",
  10176. extra: 840 / 640
  10177. }
  10178. },
  10179. },
  10180. [
  10181. {
  10182. name: "Teeny Tiny",
  10183. height: math.unit(1, "mm")
  10184. },
  10185. {
  10186. name: "Small",
  10187. height: math.unit(1, "inch"),
  10188. default: true
  10189. },
  10190. {
  10191. name: "Standard Sylveon",
  10192. height: math.unit(3 + 3 / 12, "feet")
  10193. },
  10194. {
  10195. name: "Large Nuisance",
  10196. height: math.unit(33, "feet")
  10197. },
  10198. {
  10199. name: "City Filler",
  10200. height: math.unit(3000, "feet")
  10201. },
  10202. {
  10203. name: "New Horizon",
  10204. height: math.unit(6000, "miles")
  10205. },
  10206. ]
  10207. ))
  10208. characterMakers.push(() => makeCharacter(
  10209. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10210. {
  10211. front: {
  10212. height: math.unit(5, "cm"),
  10213. weight: math.unit(1.94, "g"),
  10214. name: "Front",
  10215. image: {
  10216. source: "./media/characters/fleta/front.svg",
  10217. extra: 835 / 803
  10218. }
  10219. },
  10220. back: {
  10221. height: math.unit(5, "cm"),
  10222. weight: math.unit(1.94, "g"),
  10223. name: "Back",
  10224. image: {
  10225. source: "./media/characters/fleta/back.svg",
  10226. extra: 835 / 803
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Micro",
  10233. height: math.unit(5, "cm"),
  10234. default: true
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(6, "feet"),
  10243. weight: math.unit(225, "lb"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/dominic/front.svg",
  10247. extra: 1770 / 1620,
  10248. bottom: 0.025
  10249. }
  10250. },
  10251. back: {
  10252. height: math.unit(6, "feet"),
  10253. weight: math.unit(225, "lb"),
  10254. name: "Back",
  10255. image: {
  10256. source: "./media/characters/dominic/back.svg",
  10257. extra: 1745 / 1620,
  10258. bottom: 0.065
  10259. }
  10260. },
  10261. },
  10262. [
  10263. {
  10264. name: "Nano",
  10265. height: math.unit(0.1, "mm")
  10266. },
  10267. {
  10268. name: "Micro-",
  10269. height: math.unit(1, "mm")
  10270. },
  10271. {
  10272. name: "Micro",
  10273. height: math.unit(4, "inches")
  10274. },
  10275. {
  10276. name: "Normal",
  10277. height: math.unit(6 + 4 / 12, "feet"),
  10278. default: true
  10279. },
  10280. {
  10281. name: "Macro",
  10282. height: math.unit(115, "feet")
  10283. },
  10284. {
  10285. name: "Macro+",
  10286. height: math.unit(955, "feet")
  10287. },
  10288. {
  10289. name: "Megamacro",
  10290. height: math.unit(8990, "feet")
  10291. },
  10292. {
  10293. name: "Gigmacro",
  10294. height: math.unit(9310, "miles")
  10295. },
  10296. {
  10297. name: "Teramacro",
  10298. height: math.unit(1567005010, "miles")
  10299. },
  10300. {
  10301. name: "Examacro",
  10302. height: math.unit(1425, "parsecs")
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10308. {
  10309. front: {
  10310. height: math.unit(400, "feet"),
  10311. weight: math.unit(44444444, "lb"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/major-colonel/front.svg"
  10315. }
  10316. },
  10317. back: {
  10318. height: math.unit(400, "feet"),
  10319. weight: math.unit(44444444, "lb"),
  10320. name: "Back",
  10321. image: {
  10322. source: "./media/characters/major-colonel/back.svg"
  10323. }
  10324. },
  10325. },
  10326. [
  10327. {
  10328. name: "Macro",
  10329. height: math.unit(400, "feet"),
  10330. default: true
  10331. },
  10332. ]
  10333. ))
  10334. characterMakers.push(() => makeCharacter(
  10335. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10336. {
  10337. catFront: {
  10338. height: math.unit(6, "feet"),
  10339. weight: math.unit(120, "lb"),
  10340. name: "Front (Cat Side)",
  10341. image: {
  10342. source: "./media/characters/axel-lycan/cat-front.svg",
  10343. extra: 430 / 402,
  10344. bottom: 43 / 472.35
  10345. }
  10346. },
  10347. catBack: {
  10348. height: math.unit(6, "feet"),
  10349. weight: math.unit(120, "lb"),
  10350. name: "Back (Cat Side)",
  10351. image: {
  10352. source: "./media/characters/axel-lycan/cat-back.svg",
  10353. extra: 447 / 419,
  10354. bottom: 23.3 / 469
  10355. }
  10356. },
  10357. wolfFront: {
  10358. height: math.unit(6, "feet"),
  10359. weight: math.unit(120, "lb"),
  10360. name: "Front (Wolf Side)",
  10361. image: {
  10362. source: "./media/characters/axel-lycan/wolf-front.svg",
  10363. extra: 485 / 456,
  10364. bottom: 19 / 504
  10365. }
  10366. },
  10367. wolfBack: {
  10368. height: math.unit(6, "feet"),
  10369. weight: math.unit(120, "lb"),
  10370. name: "Back (Wolf Side)",
  10371. image: {
  10372. source: "./media/characters/axel-lycan/wolf-back.svg",
  10373. extra: 475 / 438,
  10374. bottom: 39.2 / 514
  10375. }
  10376. },
  10377. },
  10378. [
  10379. {
  10380. name: "Macro",
  10381. height: math.unit(1, "km"),
  10382. default: true
  10383. },
  10384. ]
  10385. ))
  10386. characterMakers.push(() => makeCharacter(
  10387. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10388. {
  10389. front: {
  10390. height: math.unit(5 + 9 / 12, "feet"),
  10391. weight: math.unit(175, "lb"),
  10392. name: "Front",
  10393. image: {
  10394. source: "./media/characters/vanrel-hyena/front.svg",
  10395. extra: 1086 / 1010,
  10396. bottom: 0.04
  10397. }
  10398. },
  10399. },
  10400. [
  10401. {
  10402. name: "Normal",
  10403. height: math.unit(5 + 9 / 12, "feet"),
  10404. default: true
  10405. },
  10406. ]
  10407. ))
  10408. characterMakers.push(() => makeCharacter(
  10409. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10410. {
  10411. front: {
  10412. height: math.unit(6, "feet"),
  10413. weight: math.unit(103, "lb"),
  10414. name: "Front",
  10415. image: {
  10416. source: "./media/characters/abbott-absol/front.svg",
  10417. extra: 2010 / 1842
  10418. }
  10419. },
  10420. },
  10421. [
  10422. {
  10423. name: "Megamicro",
  10424. height: math.unit(0.1, "mm")
  10425. },
  10426. {
  10427. name: "Micro",
  10428. height: math.unit(1, "inch")
  10429. },
  10430. {
  10431. name: "Normal",
  10432. height: math.unit(6, "feet"),
  10433. default: true
  10434. },
  10435. ]
  10436. ))
  10437. characterMakers.push(() => makeCharacter(
  10438. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10439. {
  10440. front: {
  10441. height: math.unit(6, "feet"),
  10442. weight: math.unit(264, "lb"),
  10443. name: "Front",
  10444. image: {
  10445. source: "./media/characters/hector/front.svg",
  10446. extra: 2280 / 2130,
  10447. bottom: 0.07
  10448. }
  10449. },
  10450. },
  10451. [
  10452. {
  10453. name: "Normal",
  10454. height: math.unit(12.25, "foot"),
  10455. default: true
  10456. },
  10457. {
  10458. name: "Macro",
  10459. height: math.unit(160, "feet")
  10460. },
  10461. ]
  10462. ))
  10463. characterMakers.push(() => makeCharacter(
  10464. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10465. {
  10466. front: {
  10467. height: math.unit(6, "feet"),
  10468. weight: math.unit(150, "lb"),
  10469. name: "Front",
  10470. image: {
  10471. source: "./media/characters/sal/front.svg",
  10472. extra: 1846 / 1699,
  10473. bottom: 0.04
  10474. }
  10475. },
  10476. },
  10477. [
  10478. {
  10479. name: "Megamacro",
  10480. height: math.unit(10, "miles"),
  10481. default: true
  10482. },
  10483. ]
  10484. ))
  10485. characterMakers.push(() => makeCharacter(
  10486. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10487. {
  10488. front: {
  10489. height: math.unit(3, "meters"),
  10490. weight: math.unit(450, "kg"),
  10491. name: "front",
  10492. image: {
  10493. source: "./media/characters/ranger/front.svg",
  10494. extra: 2401 / 2243,
  10495. bottom: 0.05
  10496. }
  10497. },
  10498. },
  10499. [
  10500. {
  10501. name: "Normal",
  10502. height: math.unit(3, "meters"),
  10503. default: true
  10504. },
  10505. ]
  10506. ))
  10507. characterMakers.push(() => makeCharacter(
  10508. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10509. {
  10510. front: {
  10511. height: math.unit(14, "feet"),
  10512. weight: math.unit(800, "kg"),
  10513. name: "Front",
  10514. image: {
  10515. source: "./media/characters/theresa/front.svg",
  10516. extra: 3575 / 3346,
  10517. bottom: 0.03
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Normal",
  10524. height: math.unit(14, "feet"),
  10525. default: true
  10526. },
  10527. ]
  10528. ))
  10529. characterMakers.push(() => makeCharacter(
  10530. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10531. {
  10532. front: {
  10533. height: math.unit(6, "feet"),
  10534. weight: math.unit(3, "kg"),
  10535. name: "Front",
  10536. image: {
  10537. source: "./media/characters/ine/front.svg",
  10538. extra: 678 / 539,
  10539. bottom: 0.023
  10540. }
  10541. },
  10542. },
  10543. [
  10544. {
  10545. name: "Normal",
  10546. height: math.unit(2.265, "feet"),
  10547. default: true
  10548. },
  10549. ]
  10550. ))
  10551. characterMakers.push(() => makeCharacter(
  10552. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10553. {
  10554. front: {
  10555. height: math.unit(5, "feet"),
  10556. weight: math.unit(30, "kg"),
  10557. name: "Front",
  10558. image: {
  10559. source: "./media/characters/vial/front.svg",
  10560. extra: 1365 / 1277,
  10561. bottom: 0.04
  10562. }
  10563. },
  10564. },
  10565. [
  10566. {
  10567. name: "Normal",
  10568. height: math.unit(5, "feet"),
  10569. default: true
  10570. },
  10571. ]
  10572. ))
  10573. characterMakers.push(() => makeCharacter(
  10574. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10575. {
  10576. side: {
  10577. height: math.unit(3.4, "meters"),
  10578. weight: math.unit(1000, "lb"),
  10579. name: "Side",
  10580. image: {
  10581. source: "./media/characters/rovoska/side.svg",
  10582. extra: 4403 / 1515
  10583. }
  10584. },
  10585. },
  10586. [
  10587. {
  10588. name: "Normal",
  10589. height: math.unit(3.4, "meters"),
  10590. default: true
  10591. },
  10592. ]
  10593. ))
  10594. characterMakers.push(() => makeCharacter(
  10595. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10596. {
  10597. front: {
  10598. height: math.unit(8, "feet"),
  10599. weight: math.unit(315, "lb"),
  10600. name: "Front",
  10601. image: {
  10602. source: "./media/characters/gunner-rotthbauer/front.svg"
  10603. }
  10604. },
  10605. back: {
  10606. height: math.unit(8, "feet"),
  10607. weight: math.unit(315, "lb"),
  10608. name: "Back",
  10609. image: {
  10610. source: "./media/characters/gunner-rotthbauer/back.svg"
  10611. }
  10612. },
  10613. },
  10614. [
  10615. {
  10616. name: "Micro",
  10617. height: math.unit(3.5, "inches")
  10618. },
  10619. {
  10620. name: "Normal",
  10621. height: math.unit(8, "feet"),
  10622. default: true
  10623. },
  10624. {
  10625. name: "Macro",
  10626. height: math.unit(250, "feet")
  10627. },
  10628. {
  10629. name: "Megamacro",
  10630. height: math.unit(1, "AU")
  10631. },
  10632. ]
  10633. ))
  10634. characterMakers.push(() => makeCharacter(
  10635. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10636. {
  10637. front: {
  10638. height: math.unit(5 + 5 / 12, "feet"),
  10639. weight: math.unit(140, "lb"),
  10640. name: "Front",
  10641. image: {
  10642. source: "./media/characters/allatia/front.svg",
  10643. extra: 1227 / 1180,
  10644. bottom: 0.027
  10645. }
  10646. },
  10647. },
  10648. [
  10649. {
  10650. name: "Normal",
  10651. height: math.unit(5 + 5 / 12, "feet")
  10652. },
  10653. {
  10654. name: "Macro",
  10655. height: math.unit(250, "feet"),
  10656. default: true
  10657. },
  10658. {
  10659. name: "Megamacro",
  10660. height: math.unit(8, "miles")
  10661. }
  10662. ]
  10663. ))
  10664. characterMakers.push(() => makeCharacter(
  10665. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10666. {
  10667. front: {
  10668. height: math.unit(6, "feet"),
  10669. weight: math.unit(120, "lb"),
  10670. name: "Front",
  10671. image: {
  10672. source: "./media/characters/tene/front.svg",
  10673. extra: 814/750,
  10674. bottom: 36/850
  10675. }
  10676. },
  10677. stomping: {
  10678. height: math.unit(2.025, "meters"),
  10679. weight: math.unit(120, "lb"),
  10680. name: "Stomping",
  10681. image: {
  10682. source: "./media/characters/tene/stomping.svg",
  10683. extra: 885/821,
  10684. bottom: 15/900
  10685. }
  10686. },
  10687. sitting: {
  10688. height: math.unit(1, "meter"),
  10689. weight: math.unit(120, "lb"),
  10690. name: "Sitting",
  10691. image: {
  10692. source: "./media/characters/tene/sitting.svg",
  10693. extra: 396/366,
  10694. bottom: 79/475
  10695. }
  10696. },
  10697. smiling: {
  10698. height: math.unit(1.2, "feet"),
  10699. name: "Smiling",
  10700. image: {
  10701. source: "./media/characters/tene/smiling.svg",
  10702. extra: 1364/1071,
  10703. bottom: 0/1364
  10704. }
  10705. },
  10706. smug: {
  10707. height: math.unit(1.3, "feet"),
  10708. name: "Smug",
  10709. image: {
  10710. source: "./media/characters/tene/smug.svg",
  10711. extra: 1323/1082,
  10712. bottom: 0/1323
  10713. }
  10714. },
  10715. feral: {
  10716. height: math.unit(3.9, "feet"),
  10717. weight: math.unit(250, "lb"),
  10718. name: "Feral",
  10719. image: {
  10720. source: "./media/characters/tene/feral.svg",
  10721. extra: 717 / 458,
  10722. bottom: 0.179
  10723. }
  10724. },
  10725. },
  10726. [
  10727. {
  10728. name: "Normal",
  10729. height: math.unit(6, "feet")
  10730. },
  10731. {
  10732. name: "Macro",
  10733. height: math.unit(300, "feet"),
  10734. default: true
  10735. },
  10736. {
  10737. name: "Megamacro",
  10738. height: math.unit(5, "miles")
  10739. },
  10740. ]
  10741. ))
  10742. characterMakers.push(() => makeCharacter(
  10743. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10744. {
  10745. side: {
  10746. height: math.unit(6, "feet"),
  10747. name: "Side",
  10748. image: {
  10749. source: "./media/characters/evander/side.svg",
  10750. extra: 877 / 477
  10751. }
  10752. },
  10753. },
  10754. [
  10755. {
  10756. name: "Normal",
  10757. height: math.unit(0.83, "meters"),
  10758. default: true
  10759. },
  10760. ]
  10761. ))
  10762. characterMakers.push(() => makeCharacter(
  10763. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10764. {
  10765. front: {
  10766. height: math.unit(12, "feet"),
  10767. weight: math.unit(1000, "lb"),
  10768. name: "Front",
  10769. image: {
  10770. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10771. extra: 1762 / 1611
  10772. }
  10773. },
  10774. back: {
  10775. height: math.unit(12, "feet"),
  10776. weight: math.unit(1000, "lb"),
  10777. name: "Back",
  10778. image: {
  10779. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10780. extra: 1762 / 1611
  10781. }
  10782. },
  10783. },
  10784. [
  10785. {
  10786. name: "Normal",
  10787. height: math.unit(12, "feet"),
  10788. default: true
  10789. },
  10790. {
  10791. name: "Kaiju",
  10792. height: math.unit(150, "feet")
  10793. },
  10794. ]
  10795. ))
  10796. characterMakers.push(() => makeCharacter(
  10797. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10798. {
  10799. front: {
  10800. height: math.unit(6, "feet"),
  10801. weight: math.unit(150, "lb"),
  10802. name: "Front",
  10803. image: {
  10804. source: "./media/characters/zero-alurus/front.svg"
  10805. }
  10806. },
  10807. back: {
  10808. height: math.unit(6, "feet"),
  10809. weight: math.unit(150, "lb"),
  10810. name: "Back",
  10811. image: {
  10812. source: "./media/characters/zero-alurus/back.svg"
  10813. }
  10814. },
  10815. },
  10816. [
  10817. {
  10818. name: "Normal",
  10819. height: math.unit(5 + 10 / 12, "feet")
  10820. },
  10821. {
  10822. name: "Macro",
  10823. height: math.unit(60, "feet"),
  10824. default: true
  10825. },
  10826. {
  10827. name: "Macro+",
  10828. height: math.unit(450, "feet")
  10829. },
  10830. ]
  10831. ))
  10832. characterMakers.push(() => makeCharacter(
  10833. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10834. {
  10835. front: {
  10836. height: math.unit(6, "feet"),
  10837. weight: math.unit(200, "lb"),
  10838. name: "Front",
  10839. image: {
  10840. source: "./media/characters/mega-shi/front.svg",
  10841. extra: 1279 / 1250,
  10842. bottom: 0.02
  10843. }
  10844. },
  10845. back: {
  10846. height: math.unit(6, "feet"),
  10847. weight: math.unit(200, "lb"),
  10848. name: "Back",
  10849. image: {
  10850. source: "./media/characters/mega-shi/back.svg",
  10851. extra: 1279 / 1250,
  10852. bottom: 0.02
  10853. }
  10854. },
  10855. },
  10856. [
  10857. {
  10858. name: "Micro",
  10859. height: math.unit(16 + 6 / 12, "feet")
  10860. },
  10861. {
  10862. name: "Third Dimension",
  10863. height: math.unit(40, "meters")
  10864. },
  10865. {
  10866. name: "Normal",
  10867. height: math.unit(660, "feet"),
  10868. default: true
  10869. },
  10870. {
  10871. name: "Megamacro",
  10872. height: math.unit(10, "miles")
  10873. },
  10874. {
  10875. name: "Planetary Launch",
  10876. height: math.unit(500, "miles")
  10877. },
  10878. {
  10879. name: "Interstellar",
  10880. height: math.unit(1e9, "miles")
  10881. },
  10882. {
  10883. name: "Leaving the Universe",
  10884. height: math.unit(1, "gigaparsec")
  10885. },
  10886. {
  10887. name: "Travelling Universes",
  10888. height: math.unit(30e15, "parsecs")
  10889. },
  10890. ]
  10891. ))
  10892. characterMakers.push(() => makeCharacter(
  10893. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10894. {
  10895. front: {
  10896. height: math.unit(5 + 4/12, "feet"),
  10897. weight: math.unit(120, "lb"),
  10898. name: "Front",
  10899. image: {
  10900. source: "./media/characters/odyssey/front.svg",
  10901. extra: 1747/1571,
  10902. bottom: 47/1794
  10903. }
  10904. },
  10905. side: {
  10906. height: math.unit(5.1, "feet"),
  10907. weight: math.unit(120, "lb"),
  10908. name: "Side",
  10909. image: {
  10910. source: "./media/characters/odyssey/side.svg",
  10911. extra: 1847/1619,
  10912. bottom: 47/1894
  10913. }
  10914. },
  10915. lounging: {
  10916. height: math.unit(1.464, "feet"),
  10917. weight: math.unit(120, "lb"),
  10918. name: "Lounging",
  10919. image: {
  10920. source: "./media/characters/odyssey/lounging.svg",
  10921. extra: 1235/837,
  10922. bottom: 551/1786
  10923. }
  10924. },
  10925. },
  10926. [
  10927. {
  10928. name: "Normal",
  10929. height: math.unit(5 + 4 / 12, "feet")
  10930. },
  10931. {
  10932. name: "Macro",
  10933. height: math.unit(1, "km")
  10934. },
  10935. {
  10936. name: "Megamacro",
  10937. height: math.unit(3000, "km")
  10938. },
  10939. {
  10940. name: "Gigamacro",
  10941. height: math.unit(1, "AU"),
  10942. default: true
  10943. },
  10944. {
  10945. name: "Omniversal",
  10946. height: math.unit(100e14, "lightyears")
  10947. },
  10948. ]
  10949. ))
  10950. characterMakers.push(() => makeCharacter(
  10951. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10952. {
  10953. front: {
  10954. height: math.unit(6, "feet"),
  10955. weight: math.unit(300, "lb"),
  10956. name: "Front",
  10957. image: {
  10958. source: "./media/characters/mekuto/front.svg",
  10959. extra: 921 / 832,
  10960. bottom: 0.03
  10961. }
  10962. },
  10963. hand: {
  10964. height: math.unit(6 / 10.24, "feet"),
  10965. name: "Hand",
  10966. image: {
  10967. source: "./media/characters/mekuto/hand.svg"
  10968. }
  10969. },
  10970. foot: {
  10971. height: math.unit(6 / 5.05, "feet"),
  10972. name: "Foot",
  10973. image: {
  10974. source: "./media/characters/mekuto/foot.svg"
  10975. }
  10976. },
  10977. },
  10978. [
  10979. {
  10980. name: "Minimicro",
  10981. height: math.unit(0.2, "inches")
  10982. },
  10983. {
  10984. name: "Micro",
  10985. height: math.unit(1.5, "inches")
  10986. },
  10987. {
  10988. name: "Normal",
  10989. height: math.unit(5 + 11 / 12, "feet"),
  10990. default: true
  10991. },
  10992. {
  10993. name: "Minimacro",
  10994. height: math.unit(17 + 9 / 12, "feet")
  10995. },
  10996. {
  10997. name: "Macro",
  10998. height: math.unit(177.5, "feet")
  10999. },
  11000. {
  11001. name: "Megamacro",
  11002. height: math.unit(152, "miles")
  11003. },
  11004. ]
  11005. ))
  11006. characterMakers.push(() => makeCharacter(
  11007. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11008. {
  11009. front: {
  11010. height: math.unit(6.5, "inches"),
  11011. weight: math.unit(13, "oz"),
  11012. name: "Front",
  11013. image: {
  11014. source: "./media/characters/dafydd-tomos/front.svg",
  11015. extra: 2990 / 2603,
  11016. bottom: 0.03
  11017. }
  11018. },
  11019. },
  11020. [
  11021. {
  11022. name: "Micro",
  11023. height: math.unit(6.5, "inches"),
  11024. default: true
  11025. },
  11026. ]
  11027. ))
  11028. characterMakers.push(() => makeCharacter(
  11029. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11030. {
  11031. front: {
  11032. height: math.unit(6, "feet"),
  11033. weight: math.unit(150, "lb"),
  11034. name: "Front",
  11035. image: {
  11036. source: "./media/characters/splinter/front.svg",
  11037. extra: 2990 / 2882,
  11038. bottom: 0.04
  11039. }
  11040. },
  11041. back: {
  11042. height: math.unit(6, "feet"),
  11043. weight: math.unit(150, "lb"),
  11044. name: "Back",
  11045. image: {
  11046. source: "./media/characters/splinter/back.svg",
  11047. extra: 2990 / 2882,
  11048. bottom: 0.04
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Normal",
  11055. height: math.unit(6, "feet")
  11056. },
  11057. {
  11058. name: "Macro",
  11059. height: math.unit(230, "meters"),
  11060. default: true
  11061. },
  11062. ]
  11063. ))
  11064. characterMakers.push(() => makeCharacter(
  11065. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11066. {
  11067. front: {
  11068. height: math.unit(4 + 10 / 12, "feet"),
  11069. weight: math.unit(480, "lb"),
  11070. name: "Front",
  11071. image: {
  11072. source: "./media/characters/snow-gabumon/front.svg",
  11073. extra: 1140 / 963,
  11074. bottom: 0.058
  11075. }
  11076. },
  11077. back: {
  11078. height: math.unit(4 + 10 / 12, "feet"),
  11079. weight: math.unit(480, "lb"),
  11080. name: "Back",
  11081. image: {
  11082. source: "./media/characters/snow-gabumon/back.svg",
  11083. extra: 1115 / 962,
  11084. bottom: 0.041
  11085. }
  11086. },
  11087. frontUndresed: {
  11088. height: math.unit(4 + 10 / 12, "feet"),
  11089. weight: math.unit(480, "lb"),
  11090. name: "Front (Undressed)",
  11091. image: {
  11092. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11093. extra: 1061 / 960,
  11094. bottom: 0.045
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Micro",
  11101. height: math.unit(1, "inch")
  11102. },
  11103. {
  11104. name: "Normal",
  11105. height: math.unit(4 + 10 / 12, "feet"),
  11106. default: true
  11107. },
  11108. {
  11109. name: "Macro",
  11110. height: math.unit(200, "feet")
  11111. },
  11112. {
  11113. name: "Megamacro",
  11114. height: math.unit(120, "miles")
  11115. },
  11116. {
  11117. name: "Gigamacro",
  11118. height: math.unit(9800, "miles")
  11119. },
  11120. ]
  11121. ))
  11122. characterMakers.push(() => makeCharacter(
  11123. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11124. {
  11125. front: {
  11126. height: math.unit(1.7, "meters"),
  11127. weight: math.unit(140, "lb"),
  11128. name: "Front",
  11129. image: {
  11130. source: "./media/characters/moody/front.svg",
  11131. extra: 3226 / 3007,
  11132. bottom: 0.087
  11133. }
  11134. },
  11135. },
  11136. [
  11137. {
  11138. name: "Micro",
  11139. height: math.unit(1, "mm")
  11140. },
  11141. {
  11142. name: "Normal",
  11143. height: math.unit(1.7, "meters"),
  11144. default: true
  11145. },
  11146. {
  11147. name: "Macro",
  11148. height: math.unit(80, "meters")
  11149. },
  11150. {
  11151. name: "Macro+",
  11152. height: math.unit(500, "meters")
  11153. },
  11154. ]
  11155. ))
  11156. characterMakers.push(() => makeCharacter(
  11157. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11158. {
  11159. front: {
  11160. height: math.unit(6, "feet"),
  11161. weight: math.unit(150, "lb"),
  11162. name: "Front",
  11163. image: {
  11164. source: "./media/characters/zyas/front.svg",
  11165. extra: 1180 / 1120,
  11166. bottom: 0.045
  11167. }
  11168. },
  11169. },
  11170. [
  11171. {
  11172. name: "Normal",
  11173. height: math.unit(10, "feet"),
  11174. default: true
  11175. },
  11176. {
  11177. name: "Macro",
  11178. height: math.unit(500, "feet")
  11179. },
  11180. {
  11181. name: "Megamacro",
  11182. height: math.unit(5, "miles")
  11183. },
  11184. {
  11185. name: "Teramacro",
  11186. height: math.unit(150000, "miles")
  11187. },
  11188. ]
  11189. ))
  11190. characterMakers.push(() => makeCharacter(
  11191. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11192. {
  11193. front: {
  11194. height: math.unit(6, "feet"),
  11195. weight: math.unit(150, "lb"),
  11196. name: "Front",
  11197. image: {
  11198. source: "./media/characters/cuon/front.svg",
  11199. extra: 1390 / 1320,
  11200. bottom: 0.008
  11201. }
  11202. },
  11203. },
  11204. [
  11205. {
  11206. name: "Micro",
  11207. height: math.unit(3, "inches")
  11208. },
  11209. {
  11210. name: "Normal",
  11211. height: math.unit(18 + 9 / 12, "feet"),
  11212. default: true
  11213. },
  11214. {
  11215. name: "Macro",
  11216. height: math.unit(360, "feet")
  11217. },
  11218. {
  11219. name: "Megamacro",
  11220. height: math.unit(360, "miles")
  11221. },
  11222. ]
  11223. ))
  11224. characterMakers.push(() => makeCharacter(
  11225. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11226. {
  11227. front: {
  11228. height: math.unit(2.4, "meters"),
  11229. weight: math.unit(70, "kg"),
  11230. name: "Front",
  11231. image: {
  11232. source: "./media/characters/nyanuxk/front.svg",
  11233. extra: 1172 / 1084,
  11234. bottom: 0.065
  11235. }
  11236. },
  11237. side: {
  11238. height: math.unit(2.4, "meters"),
  11239. weight: math.unit(70, "kg"),
  11240. name: "Side",
  11241. image: {
  11242. source: "./media/characters/nyanuxk/side.svg",
  11243. extra: 1190 / 1132,
  11244. bottom: 0.007
  11245. }
  11246. },
  11247. back: {
  11248. height: math.unit(2.4, "meters"),
  11249. weight: math.unit(70, "kg"),
  11250. name: "Back",
  11251. image: {
  11252. source: "./media/characters/nyanuxk/back.svg",
  11253. extra: 1200 / 1141,
  11254. bottom: 0.015
  11255. }
  11256. },
  11257. foot: {
  11258. height: math.unit(0.52, "meters"),
  11259. name: "Foot",
  11260. image: {
  11261. source: "./media/characters/nyanuxk/foot.svg"
  11262. }
  11263. },
  11264. },
  11265. [
  11266. {
  11267. name: "Micro",
  11268. height: math.unit(2, "cm")
  11269. },
  11270. {
  11271. name: "Normal",
  11272. height: math.unit(2.4, "meters"),
  11273. default: true
  11274. },
  11275. {
  11276. name: "Smaller Macro",
  11277. height: math.unit(120, "meters")
  11278. },
  11279. {
  11280. name: "Bigger Macro",
  11281. height: math.unit(1.2, "km")
  11282. },
  11283. {
  11284. name: "Megamacro",
  11285. height: math.unit(15, "kilometers")
  11286. },
  11287. {
  11288. name: "Gigamacro",
  11289. height: math.unit(2000, "km")
  11290. },
  11291. {
  11292. name: "Teramacro",
  11293. height: math.unit(500000, "km")
  11294. },
  11295. ]
  11296. ))
  11297. characterMakers.push(() => makeCharacter(
  11298. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11299. {
  11300. side: {
  11301. height: math.unit(6, "feet"),
  11302. name: "Side",
  11303. image: {
  11304. source: "./media/characters/ailbhe/side.svg",
  11305. extra: 757 / 464,
  11306. bottom: 0.041
  11307. }
  11308. },
  11309. },
  11310. [
  11311. {
  11312. name: "Normal",
  11313. height: math.unit(1.07, "meters"),
  11314. default: true
  11315. },
  11316. ]
  11317. ))
  11318. characterMakers.push(() => makeCharacter(
  11319. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11320. {
  11321. front: {
  11322. height: math.unit(6, "feet"),
  11323. weight: math.unit(120, "kg"),
  11324. name: "Front",
  11325. image: {
  11326. source: "./media/characters/zevulfius/front.svg",
  11327. extra: 965 / 903
  11328. }
  11329. },
  11330. side: {
  11331. height: math.unit(6, "feet"),
  11332. weight: math.unit(120, "kg"),
  11333. name: "Side",
  11334. image: {
  11335. source: "./media/characters/zevulfius/side.svg",
  11336. extra: 939 / 900
  11337. }
  11338. },
  11339. back: {
  11340. height: math.unit(6, "feet"),
  11341. weight: math.unit(120, "kg"),
  11342. name: "Back",
  11343. image: {
  11344. source: "./media/characters/zevulfius/back.svg",
  11345. extra: 918 / 854,
  11346. bottom: 0.005
  11347. }
  11348. },
  11349. foot: {
  11350. height: math.unit(6 / 3.72, "feet"),
  11351. name: "Foot",
  11352. image: {
  11353. source: "./media/characters/zevulfius/foot.svg"
  11354. }
  11355. },
  11356. },
  11357. [
  11358. {
  11359. name: "Macro",
  11360. height: math.unit(750, "meters")
  11361. },
  11362. {
  11363. name: "Megamacro",
  11364. height: math.unit(20, "km"),
  11365. default: true
  11366. },
  11367. {
  11368. name: "Gigamacro",
  11369. height: math.unit(2000, "km")
  11370. },
  11371. {
  11372. name: "Teramacro",
  11373. height: math.unit(250000, "km")
  11374. },
  11375. ]
  11376. ))
  11377. characterMakers.push(() => makeCharacter(
  11378. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11379. {
  11380. front: {
  11381. height: math.unit(100, "feet"),
  11382. weight: math.unit(350, "kg"),
  11383. name: "Front",
  11384. image: {
  11385. source: "./media/characters/rikes/front.svg",
  11386. extra: 1565 / 1483,
  11387. bottom: 0.017
  11388. }
  11389. },
  11390. },
  11391. [
  11392. {
  11393. name: "Macro",
  11394. height: math.unit(100, "feet"),
  11395. default: true
  11396. },
  11397. ]
  11398. ))
  11399. characterMakers.push(() => makeCharacter(
  11400. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11401. {
  11402. front: {
  11403. height: math.unit(8, "feet"),
  11404. weight: math.unit(356, "lb"),
  11405. name: "Front",
  11406. image: {
  11407. source: "./media/characters/adam-silver-mane/front.svg",
  11408. extra: 1036/937,
  11409. bottom: 63/1099
  11410. }
  11411. },
  11412. side: {
  11413. height: math.unit(8, "feet"),
  11414. weight: math.unit(356, "lb"),
  11415. name: "Side",
  11416. image: {
  11417. source: "./media/characters/adam-silver-mane/side.svg",
  11418. extra: 997/901,
  11419. bottom: 59/1056
  11420. }
  11421. },
  11422. frontNsfw: {
  11423. height: math.unit(8, "feet"),
  11424. weight: math.unit(356, "lb"),
  11425. name: "Front (NSFW)",
  11426. image: {
  11427. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11428. extra: 1036/937,
  11429. bottom: 63/1099
  11430. }
  11431. },
  11432. sideNsfw: {
  11433. height: math.unit(8, "feet"),
  11434. weight: math.unit(356, "lb"),
  11435. name: "Side (NSFW)",
  11436. image: {
  11437. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11438. extra: 997/901,
  11439. bottom: 59/1056
  11440. }
  11441. },
  11442. dick: {
  11443. height: math.unit(2.1, "feet"),
  11444. name: "Dick",
  11445. image: {
  11446. source: "./media/characters/adam-silver-mane/dick.svg"
  11447. }
  11448. },
  11449. taur: {
  11450. height: math.unit(16, "feet"),
  11451. weight: math.unit(1500, "kg"),
  11452. name: "Taur",
  11453. image: {
  11454. source: "./media/characters/adam-silver-mane/taur.svg",
  11455. extra: 1713 / 1571,
  11456. bottom: 0.01
  11457. }
  11458. },
  11459. },
  11460. [
  11461. {
  11462. name: "Normal",
  11463. height: math.unit(8, "feet")
  11464. },
  11465. {
  11466. name: "Minimacro",
  11467. height: math.unit(80, "feet")
  11468. },
  11469. {
  11470. name: "MDA",
  11471. height: math.unit(80, "meters")
  11472. },
  11473. {
  11474. name: "Macro",
  11475. height: math.unit(800, "feet"),
  11476. default: true
  11477. },
  11478. {
  11479. name: "Megamacro",
  11480. height: math.unit(8000, "feet")
  11481. },
  11482. {
  11483. name: "Gigamacro",
  11484. height: math.unit(800, "miles")
  11485. },
  11486. {
  11487. name: "Teramacro",
  11488. height: math.unit(80000, "miles")
  11489. },
  11490. {
  11491. name: "Celestial",
  11492. height: math.unit(8e6, "miles")
  11493. },
  11494. {
  11495. name: "Star Dragon",
  11496. height: math.unit(800000, "parsecs")
  11497. },
  11498. {
  11499. name: "Godly",
  11500. height: math.unit(800, "teraparsecs")
  11501. },
  11502. ]
  11503. ))
  11504. characterMakers.push(() => makeCharacter(
  11505. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11506. {
  11507. front: {
  11508. height: math.unit(6, "feet"),
  11509. weight: math.unit(150, "lb"),
  11510. name: "Front",
  11511. image: {
  11512. source: "./media/characters/ky'owin/front.svg",
  11513. extra: 3888 / 3068,
  11514. bottom: 0.015
  11515. }
  11516. },
  11517. },
  11518. [
  11519. {
  11520. name: "Normal",
  11521. height: math.unit(6 + 8 / 12, "feet")
  11522. },
  11523. {
  11524. name: "Large",
  11525. height: math.unit(68, "feet")
  11526. },
  11527. {
  11528. name: "Macro",
  11529. height: math.unit(132, "feet")
  11530. },
  11531. {
  11532. name: "Macro+",
  11533. height: math.unit(340, "feet")
  11534. },
  11535. {
  11536. name: "Macro++",
  11537. height: math.unit(680, "feet"),
  11538. default: true
  11539. },
  11540. {
  11541. name: "Megamacro",
  11542. height: math.unit(1, "mile")
  11543. },
  11544. {
  11545. name: "Megamacro+",
  11546. height: math.unit(10, "miles")
  11547. },
  11548. ]
  11549. ))
  11550. characterMakers.push(() => makeCharacter(
  11551. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11552. {
  11553. front: {
  11554. height: math.unit(4, "feet"),
  11555. weight: math.unit(50, "lb"),
  11556. name: "Front",
  11557. image: {
  11558. source: "./media/characters/mal/front.svg",
  11559. extra: 785 / 724,
  11560. bottom: 0.07
  11561. }
  11562. },
  11563. },
  11564. [
  11565. {
  11566. name: "Micro",
  11567. height: math.unit(4, "inches")
  11568. },
  11569. {
  11570. name: "Normal",
  11571. height: math.unit(4, "feet"),
  11572. default: true
  11573. },
  11574. {
  11575. name: "Macro",
  11576. height: math.unit(200, "feet")
  11577. },
  11578. ]
  11579. ))
  11580. characterMakers.push(() => makeCharacter(
  11581. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11582. {
  11583. front: {
  11584. height: math.unit(6, "feet"),
  11585. weight: math.unit(150, "lb"),
  11586. name: "Front",
  11587. image: {
  11588. source: "./media/characters/jordan-deware/front.svg",
  11589. extra: 1191 / 1012
  11590. }
  11591. },
  11592. },
  11593. [
  11594. {
  11595. name: "Nano",
  11596. height: math.unit(0.01, "mm")
  11597. },
  11598. {
  11599. name: "Minimicro",
  11600. height: math.unit(1, "mm")
  11601. },
  11602. {
  11603. name: "Micro",
  11604. height: math.unit(0.5, "inches")
  11605. },
  11606. {
  11607. name: "Normal",
  11608. height: math.unit(4, "feet"),
  11609. default: true
  11610. },
  11611. {
  11612. name: "Minimacro",
  11613. height: math.unit(40, "meters")
  11614. },
  11615. {
  11616. name: "Small Macro",
  11617. height: math.unit(400, "meters")
  11618. },
  11619. {
  11620. name: "Macro",
  11621. height: math.unit(4, "miles")
  11622. },
  11623. {
  11624. name: "Megamacro",
  11625. height: math.unit(40, "miles")
  11626. },
  11627. {
  11628. name: "Megamacro+",
  11629. height: math.unit(400, "miles")
  11630. },
  11631. {
  11632. name: "Gigamacro",
  11633. height: math.unit(400000, "miles")
  11634. },
  11635. ]
  11636. ))
  11637. characterMakers.push(() => makeCharacter(
  11638. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11639. {
  11640. side: {
  11641. height: math.unit(6, "feet"),
  11642. weight: math.unit(150, "lb"),
  11643. name: "Side",
  11644. image: {
  11645. source: "./media/characters/kimiko/side.svg",
  11646. extra: 600 / 358
  11647. }
  11648. },
  11649. },
  11650. [
  11651. {
  11652. name: "Normal",
  11653. height: math.unit(15, "feet"),
  11654. default: true
  11655. },
  11656. {
  11657. name: "Macro",
  11658. height: math.unit(220, "feet")
  11659. },
  11660. {
  11661. name: "Macro+",
  11662. height: math.unit(1450, "feet")
  11663. },
  11664. {
  11665. name: "Megamacro",
  11666. height: math.unit(11500, "feet")
  11667. },
  11668. {
  11669. name: "Gigamacro",
  11670. height: math.unit(9500, "miles")
  11671. },
  11672. {
  11673. name: "Teramacro",
  11674. height: math.unit(2208005005, "miles")
  11675. },
  11676. {
  11677. name: "Examacro",
  11678. height: math.unit(2750, "parsecs")
  11679. },
  11680. {
  11681. name: "Zettamacro",
  11682. height: math.unit(101500, "parsecs")
  11683. },
  11684. ]
  11685. ))
  11686. characterMakers.push(() => makeCharacter(
  11687. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11688. {
  11689. front: {
  11690. height: math.unit(6, "feet"),
  11691. weight: math.unit(70, "kg"),
  11692. name: "Front",
  11693. image: {
  11694. source: "./media/characters/andrew-sleepy/front.svg"
  11695. }
  11696. },
  11697. side: {
  11698. height: math.unit(6, "feet"),
  11699. weight: math.unit(70, "kg"),
  11700. name: "Side",
  11701. image: {
  11702. source: "./media/characters/andrew-sleepy/side.svg"
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Micro",
  11709. height: math.unit(1, "mm"),
  11710. default: true
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(6, "feet"),
  11719. weight: math.unit(150, "lb"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/judio/front.svg",
  11723. extra: 1258 / 1110
  11724. }
  11725. },
  11726. },
  11727. [
  11728. {
  11729. name: "Normal",
  11730. height: math.unit(5 + 6 / 12, "feet")
  11731. },
  11732. {
  11733. name: "Macro",
  11734. height: math.unit(1000, "feet"),
  11735. default: true
  11736. },
  11737. {
  11738. name: "Megamacro",
  11739. height: math.unit(10, "miles")
  11740. },
  11741. ]
  11742. ))
  11743. characterMakers.push(() => makeCharacter(
  11744. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11745. {
  11746. frontDressed: {
  11747. height: math.unit(6, "feet"),
  11748. weight: math.unit(68, "kg"),
  11749. name: "Front (Dressed)",
  11750. image: {
  11751. source: "./media/characters/nomaxice/front-dressed.svg",
  11752. extra: 1137/824,
  11753. bottom: 74/1211
  11754. }
  11755. },
  11756. frontShorts: {
  11757. height: math.unit(6, "feet"),
  11758. weight: math.unit(68, "kg"),
  11759. name: "Front (Shorts)",
  11760. image: {
  11761. source: "./media/characters/nomaxice/front-shorts.svg",
  11762. extra: 1137/824,
  11763. bottom: 74/1211
  11764. }
  11765. },
  11766. back: {
  11767. height: math.unit(6, "feet"),
  11768. weight: math.unit(68, "kg"),
  11769. name: "Back",
  11770. image: {
  11771. source: "./media/characters/nomaxice/back.svg",
  11772. extra: 822/786,
  11773. bottom: 39/861
  11774. }
  11775. },
  11776. hand: {
  11777. height: math.unit(0.565, "feet"),
  11778. name: "Hand",
  11779. image: {
  11780. source: "./media/characters/nomaxice/hand.svg"
  11781. }
  11782. },
  11783. foot: {
  11784. height: math.unit(1, "feet"),
  11785. name: "Foot",
  11786. image: {
  11787. source: "./media/characters/nomaxice/foot.svg"
  11788. }
  11789. },
  11790. },
  11791. [
  11792. {
  11793. name: "Micro",
  11794. height: math.unit(8, "cm")
  11795. },
  11796. {
  11797. name: "Norm",
  11798. height: math.unit(1.82, "m")
  11799. },
  11800. {
  11801. name: "Norm+",
  11802. height: math.unit(8.8, "feet"),
  11803. default: true
  11804. },
  11805. {
  11806. name: "Big",
  11807. height: math.unit(8, "meters")
  11808. },
  11809. {
  11810. name: "Macro",
  11811. height: math.unit(18, "meters")
  11812. },
  11813. {
  11814. name: "Macro+",
  11815. height: math.unit(88, "meters")
  11816. },
  11817. ]
  11818. ))
  11819. characterMakers.push(() => makeCharacter(
  11820. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11821. {
  11822. front: {
  11823. height: math.unit(12, "feet"),
  11824. weight: math.unit(1.5, "tons"),
  11825. name: "Front",
  11826. image: {
  11827. source: "./media/characters/dydros/front.svg",
  11828. extra: 863 / 800,
  11829. bottom: 0.015
  11830. }
  11831. },
  11832. back: {
  11833. height: math.unit(12, "feet"),
  11834. weight: math.unit(1.5, "tons"),
  11835. name: "Back",
  11836. image: {
  11837. source: "./media/characters/dydros/back.svg",
  11838. extra: 900 / 843,
  11839. bottom: 0.005
  11840. }
  11841. },
  11842. },
  11843. [
  11844. {
  11845. name: "Normal",
  11846. height: math.unit(12, "feet"),
  11847. default: true
  11848. },
  11849. ]
  11850. ))
  11851. characterMakers.push(() => makeCharacter(
  11852. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11853. {
  11854. front: {
  11855. height: math.unit(6, "feet"),
  11856. weight: math.unit(100, "kg"),
  11857. name: "Front",
  11858. image: {
  11859. source: "./media/characters/riggi/front.svg",
  11860. extra: 5787 / 5303
  11861. }
  11862. },
  11863. hyper: {
  11864. height: math.unit(6 * 5 / 3, "feet"),
  11865. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11866. name: "Hyper",
  11867. image: {
  11868. source: "./media/characters/riggi/hyper.svg",
  11869. extra: 3595 / 3485
  11870. }
  11871. },
  11872. },
  11873. [
  11874. {
  11875. name: "Small Macro",
  11876. height: math.unit(50, "feet")
  11877. },
  11878. {
  11879. name: "Default",
  11880. height: math.unit(200, "feet"),
  11881. default: true
  11882. },
  11883. {
  11884. name: "Loom",
  11885. height: math.unit(10000, "feet")
  11886. },
  11887. {
  11888. name: "Cruising Altitude",
  11889. height: math.unit(30000, "feet")
  11890. },
  11891. {
  11892. name: "Megamacro",
  11893. height: math.unit(100, "miles")
  11894. },
  11895. {
  11896. name: "Continent Sized",
  11897. height: math.unit(2800, "miles")
  11898. },
  11899. {
  11900. name: "Earth Sized",
  11901. height: math.unit(8000, "miles")
  11902. },
  11903. ]
  11904. ))
  11905. characterMakers.push(() => makeCharacter(
  11906. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11907. {
  11908. front: {
  11909. height: math.unit(6, "feet"),
  11910. weight: math.unit(250, "lb"),
  11911. name: "Front",
  11912. image: {
  11913. source: "./media/characters/alexi/front.svg",
  11914. extra: 3483 / 3291,
  11915. bottom: 0.04
  11916. }
  11917. },
  11918. back: {
  11919. height: math.unit(6, "feet"),
  11920. weight: math.unit(250, "lb"),
  11921. name: "Back",
  11922. image: {
  11923. source: "./media/characters/alexi/back.svg",
  11924. extra: 3533 / 3356,
  11925. bottom: 0.021
  11926. }
  11927. },
  11928. frontTransforming: {
  11929. height: math.unit(8.58, "feet"),
  11930. weight: math.unit(1300, "lb"),
  11931. name: "Transforming",
  11932. image: {
  11933. source: "./media/characters/alexi/front-transforming.svg",
  11934. extra: 437 / 409,
  11935. bottom: 19 / 458.66
  11936. }
  11937. },
  11938. frontTransformed: {
  11939. height: math.unit(12.5, "feet"),
  11940. weight: math.unit(4000, "lb"),
  11941. name: "Transformed",
  11942. image: {
  11943. source: "./media/characters/alexi/front-transformed.svg",
  11944. extra: 639 / 614,
  11945. bottom: 30.55 / 671
  11946. }
  11947. },
  11948. },
  11949. [
  11950. {
  11951. name: "Normal",
  11952. height: math.unit(14, "feet"),
  11953. default: true
  11954. },
  11955. {
  11956. name: "Minimacro",
  11957. height: math.unit(30, "meters")
  11958. },
  11959. {
  11960. name: "Macro",
  11961. height: math.unit(500, "meters")
  11962. },
  11963. {
  11964. name: "Megamacro",
  11965. height: math.unit(9000, "km")
  11966. },
  11967. {
  11968. name: "Teramacro",
  11969. height: math.unit(384000, "km")
  11970. },
  11971. ]
  11972. ))
  11973. characterMakers.push(() => makeCharacter(
  11974. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11975. {
  11976. front: {
  11977. height: math.unit(6, "feet"),
  11978. weight: math.unit(150, "lb"),
  11979. name: "Front",
  11980. image: {
  11981. source: "./media/characters/kayroo/front.svg",
  11982. extra: 1153 / 1038,
  11983. bottom: 0.06
  11984. }
  11985. },
  11986. foot: {
  11987. height: math.unit(6, "feet"),
  11988. weight: math.unit(150, "lb"),
  11989. name: "Foot",
  11990. image: {
  11991. source: "./media/characters/kayroo/foot.svg"
  11992. }
  11993. },
  11994. },
  11995. [
  11996. {
  11997. name: "Normal",
  11998. height: math.unit(8, "feet"),
  11999. default: true
  12000. },
  12001. {
  12002. name: "Minimacro",
  12003. height: math.unit(250, "feet")
  12004. },
  12005. {
  12006. name: "Macro",
  12007. height: math.unit(2800, "feet")
  12008. },
  12009. {
  12010. name: "Megamacro",
  12011. height: math.unit(5200, "feet")
  12012. },
  12013. {
  12014. name: "Gigamacro",
  12015. height: math.unit(27000, "feet")
  12016. },
  12017. {
  12018. name: "Omega",
  12019. height: math.unit(45000, "feet")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(18, "feet"),
  12028. weight: math.unit(5800, "lb"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/rhys/front.svg",
  12032. extra: 3386 / 3090,
  12033. bottom: 0.07
  12034. }
  12035. },
  12036. },
  12037. [
  12038. {
  12039. name: "Normal",
  12040. height: math.unit(18, "feet"),
  12041. default: true
  12042. },
  12043. {
  12044. name: "Working Size",
  12045. height: math.unit(200, "feet")
  12046. },
  12047. {
  12048. name: "Demolition Size",
  12049. height: math.unit(2000, "feet")
  12050. },
  12051. {
  12052. name: "Maximum Licensed Size",
  12053. height: math.unit(5, "miles")
  12054. },
  12055. {
  12056. name: "Maximum Observed Size",
  12057. height: math.unit(10, "yottameters")
  12058. },
  12059. ]
  12060. ))
  12061. characterMakers.push(() => makeCharacter(
  12062. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12063. {
  12064. front: {
  12065. height: math.unit(6, "feet"),
  12066. weight: math.unit(250, "lb"),
  12067. name: "Front",
  12068. image: {
  12069. source: "./media/characters/toto/front.svg",
  12070. extra: 527 / 479,
  12071. bottom: 0.05
  12072. }
  12073. },
  12074. },
  12075. [
  12076. {
  12077. name: "Micro",
  12078. height: math.unit(3, "feet")
  12079. },
  12080. {
  12081. name: "Normal",
  12082. height: math.unit(10, "feet")
  12083. },
  12084. {
  12085. name: "Macro",
  12086. height: math.unit(150, "feet"),
  12087. default: true
  12088. },
  12089. {
  12090. name: "Megamacro",
  12091. height: math.unit(1200, "feet")
  12092. },
  12093. ]
  12094. ))
  12095. characterMakers.push(() => makeCharacter(
  12096. { name: "King", species: ["lion"], tags: ["anthro"] },
  12097. {
  12098. back: {
  12099. height: math.unit(6, "feet"),
  12100. weight: math.unit(150, "lb"),
  12101. name: "Back",
  12102. image: {
  12103. source: "./media/characters/king/back.svg"
  12104. }
  12105. },
  12106. },
  12107. [
  12108. {
  12109. name: "Micro",
  12110. height: math.unit(2, "inches")
  12111. },
  12112. {
  12113. name: "Normal",
  12114. height: math.unit(8, "feet")
  12115. },
  12116. {
  12117. name: "Macro",
  12118. height: math.unit(200, "feet"),
  12119. default: true
  12120. },
  12121. {
  12122. name: "Megamacro",
  12123. height: math.unit(50, "miles")
  12124. },
  12125. ]
  12126. ))
  12127. characterMakers.push(() => makeCharacter(
  12128. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12129. {
  12130. front: {
  12131. height: math.unit(11, "feet"),
  12132. weight: math.unit(1400, "lb"),
  12133. name: "Front",
  12134. image: {
  12135. source: "./media/characters/cordite/front.svg",
  12136. extra: 1919/1827,
  12137. bottom: 40/1959
  12138. }
  12139. },
  12140. side: {
  12141. height: math.unit(11, "feet"),
  12142. weight: math.unit(1400, "lb"),
  12143. name: "Side",
  12144. image: {
  12145. source: "./media/characters/cordite/side.svg",
  12146. extra: 1908/1793,
  12147. bottom: 38/1946
  12148. }
  12149. },
  12150. back: {
  12151. height: math.unit(11, "feet"),
  12152. weight: math.unit(1400, "lb"),
  12153. name: "Back",
  12154. image: {
  12155. source: "./media/characters/cordite/back.svg",
  12156. extra: 1938/1837,
  12157. bottom: 10/1948
  12158. }
  12159. },
  12160. feral: {
  12161. height: math.unit(2, "feet"),
  12162. weight: math.unit(90, "lb"),
  12163. name: "Feral",
  12164. image: {
  12165. source: "./media/characters/cordite/feral.svg",
  12166. extra: 1260 / 755,
  12167. bottom: 0.05
  12168. }
  12169. },
  12170. },
  12171. [
  12172. {
  12173. name: "Normal",
  12174. height: math.unit(11, "feet"),
  12175. default: true
  12176. },
  12177. ]
  12178. ))
  12179. characterMakers.push(() => makeCharacter(
  12180. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12181. {
  12182. front: {
  12183. height: math.unit(6, "feet"),
  12184. weight: math.unit(150, "lb"),
  12185. name: "Front",
  12186. image: {
  12187. source: "./media/characters/pianostrong/front.svg",
  12188. extra: 6577 / 6254,
  12189. bottom: 0.02
  12190. }
  12191. },
  12192. side: {
  12193. height: math.unit(6, "feet"),
  12194. weight: math.unit(150, "lb"),
  12195. name: "Side",
  12196. image: {
  12197. source: "./media/characters/pianostrong/side.svg",
  12198. extra: 6106 / 5730
  12199. }
  12200. },
  12201. back: {
  12202. height: math.unit(6, "feet"),
  12203. weight: math.unit(150, "lb"),
  12204. name: "Back",
  12205. image: {
  12206. source: "./media/characters/pianostrong/back.svg",
  12207. extra: 6085 / 5733,
  12208. bottom: 0.01
  12209. }
  12210. },
  12211. },
  12212. [
  12213. {
  12214. name: "Macro",
  12215. height: math.unit(100, "feet")
  12216. },
  12217. {
  12218. name: "Macro+",
  12219. height: math.unit(300, "feet"),
  12220. default: true
  12221. },
  12222. {
  12223. name: "Macro++",
  12224. height: math.unit(1000, "feet")
  12225. },
  12226. ]
  12227. ))
  12228. characterMakers.push(() => makeCharacter(
  12229. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12230. {
  12231. front: {
  12232. height: math.unit(6, "feet"),
  12233. weight: math.unit(150, "lb"),
  12234. name: "Front",
  12235. image: {
  12236. source: "./media/characters/kona/front.svg",
  12237. extra: 2960 / 2629,
  12238. bottom: 0.005
  12239. }
  12240. },
  12241. },
  12242. [
  12243. {
  12244. name: "Normal",
  12245. height: math.unit(11 + 8 / 12, "feet")
  12246. },
  12247. {
  12248. name: "Macro",
  12249. height: math.unit(850, "feet"),
  12250. default: true
  12251. },
  12252. {
  12253. name: "Macro+",
  12254. height: math.unit(1.5, "km"),
  12255. default: true
  12256. },
  12257. {
  12258. name: "Megamacro",
  12259. height: math.unit(80, "miles")
  12260. },
  12261. {
  12262. name: "Gigamacro",
  12263. height: math.unit(3500, "miles")
  12264. },
  12265. ]
  12266. ))
  12267. characterMakers.push(() => makeCharacter(
  12268. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12269. {
  12270. side: {
  12271. height: math.unit(1.9, "meters"),
  12272. weight: math.unit(326, "kg"),
  12273. name: "Side",
  12274. image: {
  12275. source: "./media/characters/levi/side.svg",
  12276. extra: 1704 / 1334,
  12277. bottom: 0.02
  12278. }
  12279. },
  12280. },
  12281. [
  12282. {
  12283. name: "Normal",
  12284. height: math.unit(1.9, "meters"),
  12285. default: true
  12286. },
  12287. {
  12288. name: "Macro",
  12289. height: math.unit(20, "meters")
  12290. },
  12291. {
  12292. name: "Macro+",
  12293. height: math.unit(200, "meters")
  12294. },
  12295. {
  12296. name: "Megamacro",
  12297. height: math.unit(2, "km")
  12298. },
  12299. {
  12300. name: "Megamacro+",
  12301. height: math.unit(20, "km")
  12302. },
  12303. {
  12304. name: "Gigamacro",
  12305. height: math.unit(2500, "km")
  12306. },
  12307. {
  12308. name: "Gigamacro+",
  12309. height: math.unit(120000, "km")
  12310. },
  12311. {
  12312. name: "Teramacro",
  12313. height: math.unit(7.77e6, "km")
  12314. },
  12315. ]
  12316. ))
  12317. characterMakers.push(() => makeCharacter(
  12318. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12319. {
  12320. front: {
  12321. height: math.unit(6 + 4/12, "feet"),
  12322. weight: math.unit(190, "lb"),
  12323. name: "Front",
  12324. image: {
  12325. source: "./media/characters/bmc/front.svg",
  12326. extra: 1626/1472,
  12327. bottom: 79/1705
  12328. }
  12329. },
  12330. back: {
  12331. height: math.unit(6 + 4/12, "feet"),
  12332. weight: math.unit(190, "lb"),
  12333. name: "Back",
  12334. image: {
  12335. source: "./media/characters/bmc/back.svg",
  12336. extra: 1640/1479,
  12337. bottom: 45/1685
  12338. }
  12339. },
  12340. frontArmor: {
  12341. height: math.unit(6 + 4/12, "feet"),
  12342. weight: math.unit(190, "lb"),
  12343. name: "Front-armor",
  12344. image: {
  12345. source: "./media/characters/bmc/front-armor.svg",
  12346. extra: 1538/1468,
  12347. bottom: 79/1617
  12348. }
  12349. },
  12350. },
  12351. [
  12352. {
  12353. name: "Human-sized",
  12354. height: math.unit(6 + 4 / 12, "feet")
  12355. },
  12356. {
  12357. name: "Interactive Size",
  12358. height: math.unit(25, "feet")
  12359. },
  12360. {
  12361. name: "Small",
  12362. height: math.unit(250, "feet")
  12363. },
  12364. {
  12365. name: "Normal",
  12366. height: math.unit(1250, "feet"),
  12367. default: true
  12368. },
  12369. {
  12370. name: "Good Day",
  12371. height: math.unit(88, "miles")
  12372. },
  12373. {
  12374. name: "Largest Measured Size",
  12375. height: math.unit(105.960, "galaxies")
  12376. },
  12377. ]
  12378. ))
  12379. characterMakers.push(() => makeCharacter(
  12380. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12381. {
  12382. front: {
  12383. height: math.unit(20, "feet"),
  12384. weight: math.unit(2016, "kg"),
  12385. name: "Front",
  12386. image: {
  12387. source: "./media/characters/sven-the-kaiju/front.svg",
  12388. extra: 1277/1250,
  12389. bottom: 35/1312
  12390. }
  12391. },
  12392. mouth: {
  12393. height: math.unit(1.85, "feet"),
  12394. name: "Mouth",
  12395. image: {
  12396. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Fairy",
  12403. height: math.unit(6, "inches")
  12404. },
  12405. {
  12406. name: "Normal",
  12407. height: math.unit(20, "feet"),
  12408. default: true
  12409. },
  12410. {
  12411. name: "Rampage",
  12412. height: math.unit(200, "feet")
  12413. },
  12414. {
  12415. name: "Archfey Forest Guardian",
  12416. height: math.unit(1, "mile")
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12422. {
  12423. front: {
  12424. height: math.unit(4, "meters"),
  12425. weight: math.unit(2, "tons"),
  12426. name: "Front",
  12427. image: {
  12428. source: "./media/characters/marik/front.svg",
  12429. extra: 1057 / 1003,
  12430. bottom: 0.08
  12431. }
  12432. },
  12433. },
  12434. [
  12435. {
  12436. name: "Normal",
  12437. height: math.unit(4, "meters"),
  12438. default: true
  12439. },
  12440. {
  12441. name: "Macro",
  12442. height: math.unit(20, "meters")
  12443. },
  12444. {
  12445. name: "Megamacro",
  12446. height: math.unit(50, "km")
  12447. },
  12448. {
  12449. name: "Gigamacro",
  12450. height: math.unit(100, "km")
  12451. },
  12452. {
  12453. name: "Alpha Macro",
  12454. height: math.unit(7.88e7, "yottameters")
  12455. },
  12456. ]
  12457. ))
  12458. characterMakers.push(() => makeCharacter(
  12459. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12460. {
  12461. front: {
  12462. height: math.unit(6, "feet"),
  12463. weight: math.unit(110, "lb"),
  12464. name: "Front",
  12465. image: {
  12466. source: "./media/characters/mel/front.svg",
  12467. extra: 736 / 617,
  12468. bottom: 0.017
  12469. }
  12470. },
  12471. },
  12472. [
  12473. {
  12474. name: "Pico",
  12475. height: math.unit(3, "pm")
  12476. },
  12477. {
  12478. name: "Nano",
  12479. height: math.unit(3, "nm")
  12480. },
  12481. {
  12482. name: "Micro",
  12483. height: math.unit(0.3, "mm"),
  12484. default: true
  12485. },
  12486. {
  12487. name: "Micro+",
  12488. height: math.unit(3, "mm")
  12489. },
  12490. {
  12491. name: "Normal",
  12492. height: math.unit(5 + 10.5 / 12, "feet")
  12493. },
  12494. ]
  12495. ))
  12496. characterMakers.push(() => makeCharacter(
  12497. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12498. {
  12499. kaiju: {
  12500. height: math.unit(1.75, "meters"),
  12501. weight: math.unit(55, "kg"),
  12502. name: "Kaiju",
  12503. image: {
  12504. source: "./media/characters/lykonous/kaiju.svg",
  12505. extra: 1055 / 946,
  12506. bottom: 0.135
  12507. }
  12508. },
  12509. },
  12510. [
  12511. {
  12512. name: "Normal",
  12513. height: math.unit(2.5, "meters"),
  12514. default: true
  12515. },
  12516. {
  12517. name: "Kaiju Dragon",
  12518. height: math.unit(60, "meters")
  12519. },
  12520. {
  12521. name: "Mega Kaiju",
  12522. height: math.unit(120, "km")
  12523. },
  12524. {
  12525. name: "Giga Kaiju",
  12526. height: math.unit(200, "megameters")
  12527. },
  12528. {
  12529. name: "Terra Kaiju",
  12530. height: math.unit(400, "gigameters")
  12531. },
  12532. {
  12533. name: "Kaiju Dragon God",
  12534. height: math.unit(13000, "exaparsecs")
  12535. },
  12536. ]
  12537. ))
  12538. characterMakers.push(() => makeCharacter(
  12539. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12540. {
  12541. front: {
  12542. height: math.unit(6, "feet"),
  12543. weight: math.unit(150, "lb"),
  12544. name: "Front",
  12545. image: {
  12546. source: "./media/characters/blü/front.svg",
  12547. extra: 1883 / 1564,
  12548. bottom: 0.031
  12549. }
  12550. },
  12551. },
  12552. [
  12553. {
  12554. name: "Normal",
  12555. height: math.unit(13, "feet"),
  12556. default: true
  12557. },
  12558. {
  12559. name: "Big Boi",
  12560. height: math.unit(150, "meters")
  12561. },
  12562. {
  12563. name: "Mini Stomper",
  12564. height: math.unit(300, "meters")
  12565. },
  12566. {
  12567. name: "Macro",
  12568. height: math.unit(1000, "meters")
  12569. },
  12570. {
  12571. name: "Megamacro",
  12572. height: math.unit(11000, "meters")
  12573. },
  12574. {
  12575. name: "Gigamacro",
  12576. height: math.unit(11000, "km")
  12577. },
  12578. {
  12579. name: "Teramacro",
  12580. height: math.unit(420000, "km")
  12581. },
  12582. {
  12583. name: "Examacro",
  12584. height: math.unit(120, "parsecs")
  12585. },
  12586. {
  12587. name: "God Tho",
  12588. height: math.unit(98000000000, "parsecs")
  12589. },
  12590. ]
  12591. ))
  12592. characterMakers.push(() => makeCharacter(
  12593. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12594. {
  12595. taurFront: {
  12596. height: math.unit(6, "feet"),
  12597. weight: math.unit(200, "lb"),
  12598. name: "Taur (Front)",
  12599. image: {
  12600. source: "./media/characters/scales/taur-front.svg",
  12601. extra: 1,
  12602. bottom: 0.05
  12603. }
  12604. },
  12605. taurBack: {
  12606. height: math.unit(6, "feet"),
  12607. weight: math.unit(200, "lb"),
  12608. name: "Taur (Back)",
  12609. image: {
  12610. source: "./media/characters/scales/taur-back.svg",
  12611. extra: 1,
  12612. bottom: 0.08
  12613. }
  12614. },
  12615. anthro: {
  12616. height: math.unit(6 * 7 / 12, "feet"),
  12617. weight: math.unit(100, "lb"),
  12618. name: "Anthro",
  12619. image: {
  12620. source: "./media/characters/scales/anthro.svg",
  12621. extra: 1,
  12622. bottom: 0.06
  12623. }
  12624. },
  12625. },
  12626. [
  12627. {
  12628. name: "Normal",
  12629. height: math.unit(12, "feet"),
  12630. default: true
  12631. },
  12632. ]
  12633. ))
  12634. characterMakers.push(() => makeCharacter(
  12635. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12636. {
  12637. front: {
  12638. height: math.unit(6, "feet"),
  12639. weight: math.unit(150, "lb"),
  12640. name: "Front",
  12641. image: {
  12642. source: "./media/characters/koragos/front.svg",
  12643. extra: 841 / 794,
  12644. bottom: 0.035
  12645. }
  12646. },
  12647. back: {
  12648. height: math.unit(6, "feet"),
  12649. weight: math.unit(150, "lb"),
  12650. name: "Back",
  12651. image: {
  12652. source: "./media/characters/koragos/back.svg",
  12653. extra: 841 / 810,
  12654. bottom: 0.022
  12655. }
  12656. },
  12657. },
  12658. [
  12659. {
  12660. name: "Normal",
  12661. height: math.unit(6 + 11 / 12, "feet"),
  12662. default: true
  12663. },
  12664. {
  12665. name: "Macro",
  12666. height: math.unit(490, "feet")
  12667. },
  12668. {
  12669. name: "Megamacro",
  12670. height: math.unit(10, "miles")
  12671. },
  12672. {
  12673. name: "Gigamacro",
  12674. height: math.unit(50, "miles")
  12675. },
  12676. ]
  12677. ))
  12678. characterMakers.push(() => makeCharacter(
  12679. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12680. {
  12681. front: {
  12682. height: math.unit(6, "feet"),
  12683. weight: math.unit(250, "lb"),
  12684. name: "Front",
  12685. image: {
  12686. source: "./media/characters/xylrem/front.svg",
  12687. extra: 3323 / 3050,
  12688. bottom: 0.065
  12689. }
  12690. },
  12691. },
  12692. [
  12693. {
  12694. name: "Micro",
  12695. height: math.unit(4, "feet")
  12696. },
  12697. {
  12698. name: "Normal",
  12699. height: math.unit(16, "feet"),
  12700. default: true
  12701. },
  12702. {
  12703. name: "Macro",
  12704. height: math.unit(2720, "feet")
  12705. },
  12706. {
  12707. name: "Megamacro",
  12708. height: math.unit(25000, "miles")
  12709. },
  12710. ]
  12711. ))
  12712. characterMakers.push(() => makeCharacter(
  12713. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12714. {
  12715. front: {
  12716. height: math.unit(8, "feet"),
  12717. weight: math.unit(250, "kg"),
  12718. name: "Front",
  12719. image: {
  12720. source: "./media/characters/ikideru/front.svg",
  12721. extra: 930 / 870,
  12722. bottom: 0.087
  12723. }
  12724. },
  12725. back: {
  12726. height: math.unit(8, "feet"),
  12727. weight: math.unit(250, "kg"),
  12728. name: "Back",
  12729. image: {
  12730. source: "./media/characters/ikideru/back.svg",
  12731. extra: 919 / 852,
  12732. bottom: 0.055
  12733. }
  12734. },
  12735. },
  12736. [
  12737. {
  12738. name: "Rare",
  12739. height: math.unit(8, "feet"),
  12740. default: true
  12741. },
  12742. {
  12743. name: "Playful Loom",
  12744. height: math.unit(80, "feet")
  12745. },
  12746. {
  12747. name: "City Leaner",
  12748. height: math.unit(230, "feet")
  12749. },
  12750. {
  12751. name: "Megamacro",
  12752. height: math.unit(2500, "feet")
  12753. },
  12754. {
  12755. name: "Gigamacro",
  12756. height: math.unit(26400, "feet")
  12757. },
  12758. {
  12759. name: "Tectonic Shifter",
  12760. height: math.unit(1.7, "megameters")
  12761. },
  12762. {
  12763. name: "Planet Carer",
  12764. height: math.unit(21, "megameters")
  12765. },
  12766. {
  12767. name: "God",
  12768. height: math.unit(11157.22, "parsecs")
  12769. },
  12770. ]
  12771. ))
  12772. characterMakers.push(() => makeCharacter(
  12773. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12774. {
  12775. front: {
  12776. height: math.unit(6, "feet"),
  12777. weight: math.unit(120, "lb"),
  12778. name: "Front",
  12779. image: {
  12780. source: "./media/characters/neo/front.svg"
  12781. }
  12782. },
  12783. },
  12784. [
  12785. {
  12786. name: "Micro",
  12787. height: math.unit(2, "inches"),
  12788. default: true
  12789. },
  12790. {
  12791. name: "Human Size",
  12792. height: math.unit(5 + 8 / 12, "feet")
  12793. },
  12794. ]
  12795. ))
  12796. characterMakers.push(() => makeCharacter(
  12797. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12798. {
  12799. front: {
  12800. height: math.unit(13 + 10 / 12, "feet"),
  12801. weight: math.unit(5320, "lb"),
  12802. name: "Front",
  12803. image: {
  12804. source: "./media/characters/chauncey-chantz/front.svg",
  12805. extra: 1587 / 1435,
  12806. bottom: 0.02
  12807. }
  12808. },
  12809. },
  12810. [
  12811. {
  12812. name: "Normal",
  12813. height: math.unit(13 + 10 / 12, "feet"),
  12814. default: true
  12815. },
  12816. {
  12817. name: "Macro",
  12818. height: math.unit(45, "feet")
  12819. },
  12820. {
  12821. name: "Megamacro",
  12822. height: math.unit(250, "miles")
  12823. },
  12824. {
  12825. name: "Planetary",
  12826. height: math.unit(10000, "miles")
  12827. },
  12828. {
  12829. name: "Galactic",
  12830. height: math.unit(40000, "parsecs")
  12831. },
  12832. {
  12833. name: "Universal",
  12834. height: math.unit(1, "yottameter")
  12835. },
  12836. ]
  12837. ))
  12838. characterMakers.push(() => makeCharacter(
  12839. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12840. {
  12841. front: {
  12842. height: math.unit(6, "feet"),
  12843. weight: math.unit(150, "lb"),
  12844. name: "Front",
  12845. image: {
  12846. source: "./media/characters/epifox/front.svg",
  12847. extra: 1,
  12848. bottom: 0.075
  12849. }
  12850. },
  12851. },
  12852. [
  12853. {
  12854. name: "Micro",
  12855. height: math.unit(6, "inches")
  12856. },
  12857. {
  12858. name: "Normal",
  12859. height: math.unit(12, "feet"),
  12860. default: true
  12861. },
  12862. {
  12863. name: "Macro",
  12864. height: math.unit(3810, "feet")
  12865. },
  12866. {
  12867. name: "Megamacro",
  12868. height: math.unit(500, "miles")
  12869. },
  12870. ]
  12871. ))
  12872. characterMakers.push(() => makeCharacter(
  12873. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12874. {
  12875. front: {
  12876. height: math.unit(1.8796, "m"),
  12877. weight: math.unit(230, "lb"),
  12878. name: "Front",
  12879. image: {
  12880. source: "./media/characters/colin-t/front.svg",
  12881. extra: 1272 / 1193,
  12882. bottom: 0.07
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Micro",
  12889. height: math.unit(0.571, "meters")
  12890. },
  12891. {
  12892. name: "Normal",
  12893. height: math.unit(1.8796, "meters"),
  12894. default: true
  12895. },
  12896. {
  12897. name: "Tall",
  12898. height: math.unit(4, "meters")
  12899. },
  12900. {
  12901. name: "Macro",
  12902. height: math.unit(67.241, "meters")
  12903. },
  12904. {
  12905. name: "Megamacro",
  12906. height: math.unit(371.856, "meters")
  12907. },
  12908. {
  12909. name: "Planetary",
  12910. height: math.unit(12631.5689, "km")
  12911. },
  12912. ]
  12913. ))
  12914. characterMakers.push(() => makeCharacter(
  12915. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12916. {
  12917. front: {
  12918. height: math.unit(1.85, "meters"),
  12919. weight: math.unit(80, "kg"),
  12920. name: "Front",
  12921. image: {
  12922. source: "./media/characters/matvei/front.svg",
  12923. extra: 614 / 594,
  12924. bottom: 0.01
  12925. }
  12926. },
  12927. },
  12928. [
  12929. {
  12930. name: "Normal",
  12931. height: math.unit(1.85, "meters"),
  12932. default: true
  12933. },
  12934. ]
  12935. ))
  12936. characterMakers.push(() => makeCharacter(
  12937. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12938. {
  12939. front: {
  12940. height: math.unit(5 + 9 / 12, "feet"),
  12941. weight: math.unit(70, "lb"),
  12942. name: "Front",
  12943. image: {
  12944. source: "./media/characters/quincy/front.svg",
  12945. extra: 3041 / 2751
  12946. }
  12947. },
  12948. back: {
  12949. height: math.unit(5 + 9 / 12, "feet"),
  12950. weight: math.unit(70, "lb"),
  12951. name: "Back",
  12952. image: {
  12953. source: "./media/characters/quincy/back.svg",
  12954. extra: 3041 / 2751
  12955. }
  12956. },
  12957. flying: {
  12958. height: math.unit(5 + 4 / 12, "feet"),
  12959. weight: math.unit(70, "lb"),
  12960. name: "Flying",
  12961. image: {
  12962. source: "./media/characters/quincy/flying.svg",
  12963. extra: 1044 / 930
  12964. }
  12965. },
  12966. },
  12967. [
  12968. {
  12969. name: "Micro",
  12970. height: math.unit(3, "cm")
  12971. },
  12972. {
  12973. name: "Normal",
  12974. height: math.unit(5 + 9 / 12, "feet")
  12975. },
  12976. {
  12977. name: "Macro",
  12978. height: math.unit(200, "meters"),
  12979. default: true
  12980. },
  12981. {
  12982. name: "Megamacro",
  12983. height: math.unit(1000, "meters")
  12984. },
  12985. ]
  12986. ))
  12987. characterMakers.push(() => makeCharacter(
  12988. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12989. {
  12990. front: {
  12991. height: math.unit(3 + 11/12, "feet"),
  12992. weight: math.unit(50, "lb"),
  12993. name: "Front",
  12994. image: {
  12995. source: "./media/characters/vanrel/front.svg",
  12996. extra: 1104/949,
  12997. bottom: 52/1156
  12998. }
  12999. },
  13000. back: {
  13001. height: math.unit(3 + 11/12, "feet"),
  13002. weight: math.unit(50, "lb"),
  13003. name: "Back",
  13004. image: {
  13005. source: "./media/characters/vanrel/back.svg",
  13006. extra: 1119/976,
  13007. bottom: 37/1156
  13008. }
  13009. },
  13010. tome: {
  13011. height: math.unit(1.35, "feet"),
  13012. weight: math.unit(10, "lb"),
  13013. name: "Vanrel's Tome",
  13014. rename: true,
  13015. image: {
  13016. source: "./media/characters/vanrel/tome.svg"
  13017. }
  13018. },
  13019. beans: {
  13020. height: math.unit(0.89, "feet"),
  13021. name: "Beans",
  13022. image: {
  13023. source: "./media/characters/vanrel/beans.svg"
  13024. }
  13025. },
  13026. },
  13027. [
  13028. {
  13029. name: "Normal",
  13030. height: math.unit(3 + 11/12, "feet"),
  13031. default: true
  13032. },
  13033. ]
  13034. ))
  13035. characterMakers.push(() => makeCharacter(
  13036. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13037. {
  13038. front: {
  13039. height: math.unit(7 + 5 / 12, "feet"),
  13040. name: "Front",
  13041. image: {
  13042. source: "./media/characters/kuiper-vanrel/front.svg",
  13043. extra: 1219/1169,
  13044. bottom: 69/1288
  13045. }
  13046. },
  13047. back: {
  13048. height: math.unit(7 + 5 / 12, "feet"),
  13049. name: "Back",
  13050. image: {
  13051. source: "./media/characters/kuiper-vanrel/back.svg",
  13052. extra: 1236/1193,
  13053. bottom: 27/1263
  13054. }
  13055. },
  13056. foot: {
  13057. height: math.unit(0.55, "meters"),
  13058. name: "Foot",
  13059. image: {
  13060. source: "./media/characters/kuiper-vanrel/foot.svg",
  13061. }
  13062. },
  13063. battle: {
  13064. height: math.unit(6.824, "feet"),
  13065. name: "Battle",
  13066. image: {
  13067. source: "./media/characters/kuiper-vanrel/battle.svg",
  13068. extra: 1466 / 1327,
  13069. bottom: 29 / 1492.5
  13070. }
  13071. },
  13072. meerkui: {
  13073. height: math.unit(18, "inches"),
  13074. name: "Meerkui",
  13075. image: {
  13076. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13077. extra: 1354/1289,
  13078. bottom: 69/1423
  13079. }
  13080. },
  13081. },
  13082. [
  13083. {
  13084. name: "Normal",
  13085. height: math.unit(7 + 5 / 12, "feet"),
  13086. default: true
  13087. },
  13088. ]
  13089. ))
  13090. characterMakers.push(() => makeCharacter(
  13091. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13092. {
  13093. front: {
  13094. height: math.unit(8 + 5 / 12, "feet"),
  13095. name: "Front",
  13096. image: {
  13097. source: "./media/characters/keset-vanrel/front.svg",
  13098. extra: 1231/1148,
  13099. bottom: 82/1313
  13100. }
  13101. },
  13102. back: {
  13103. height: math.unit(8 + 5 / 12, "feet"),
  13104. name: "Back",
  13105. image: {
  13106. source: "./media/characters/keset-vanrel/back.svg",
  13107. extra: 1240/1174,
  13108. bottom: 33/1273
  13109. }
  13110. },
  13111. hand: {
  13112. height: math.unit(0.6, "meters"),
  13113. name: "Hand",
  13114. image: {
  13115. source: "./media/characters/keset-vanrel/hand.svg"
  13116. }
  13117. },
  13118. foot: {
  13119. height: math.unit(0.94978, "meters"),
  13120. name: "Foot",
  13121. image: {
  13122. source: "./media/characters/keset-vanrel/foot.svg"
  13123. }
  13124. },
  13125. battle: {
  13126. height: math.unit(7.408, "feet"),
  13127. name: "Battle",
  13128. image: {
  13129. source: "./media/characters/keset-vanrel/battle.svg",
  13130. extra: 1890 / 1386,
  13131. bottom: 73.28 / 1970
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Normal",
  13138. height: math.unit(8 + 5 / 12, "feet"),
  13139. default: true
  13140. },
  13141. ]
  13142. ))
  13143. characterMakers.push(() => makeCharacter(
  13144. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13145. {
  13146. front: {
  13147. height: math.unit(6, "feet"),
  13148. weight: math.unit(150, "lb"),
  13149. name: "Front",
  13150. image: {
  13151. source: "./media/characters/neos/front.svg",
  13152. extra: 1696 / 992,
  13153. bottom: 0.14
  13154. }
  13155. },
  13156. },
  13157. [
  13158. {
  13159. name: "Normal",
  13160. height: math.unit(54, "cm"),
  13161. default: true
  13162. },
  13163. {
  13164. name: "Macro",
  13165. height: math.unit(100, "m")
  13166. },
  13167. {
  13168. name: "Megamacro",
  13169. height: math.unit(10, "km")
  13170. },
  13171. {
  13172. name: "Megamacro+",
  13173. height: math.unit(100, "km")
  13174. },
  13175. {
  13176. name: "Gigamacro",
  13177. height: math.unit(100, "Mm")
  13178. },
  13179. {
  13180. name: "Teramacro",
  13181. height: math.unit(100, "Gm")
  13182. },
  13183. {
  13184. name: "Examacro",
  13185. height: math.unit(100, "Em")
  13186. },
  13187. {
  13188. name: "Godly",
  13189. height: math.unit(10000, "Ym")
  13190. },
  13191. {
  13192. name: "Beyond Godly",
  13193. height: math.unit(25, "multiverses")
  13194. },
  13195. ]
  13196. ))
  13197. characterMakers.push(() => makeCharacter(
  13198. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13199. {
  13200. feminine: {
  13201. height: math.unit(5, "feet"),
  13202. weight: math.unit(100, "lb"),
  13203. name: "Feminine",
  13204. image: {
  13205. source: "./media/characters/sammy-mouse/feminine.svg",
  13206. extra: 2526 / 2425,
  13207. bottom: 0.123
  13208. }
  13209. },
  13210. masculine: {
  13211. height: math.unit(5, "feet"),
  13212. weight: math.unit(100, "lb"),
  13213. name: "Masculine",
  13214. image: {
  13215. source: "./media/characters/sammy-mouse/masculine.svg",
  13216. extra: 2526 / 2425,
  13217. bottom: 0.123
  13218. }
  13219. },
  13220. },
  13221. [
  13222. {
  13223. name: "Micro",
  13224. height: math.unit(5, "inches")
  13225. },
  13226. {
  13227. name: "Normal",
  13228. height: math.unit(5, "feet"),
  13229. default: true
  13230. },
  13231. {
  13232. name: "Macro",
  13233. height: math.unit(60, "feet")
  13234. },
  13235. ]
  13236. ))
  13237. characterMakers.push(() => makeCharacter(
  13238. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13239. {
  13240. front: {
  13241. height: math.unit(4, "feet"),
  13242. weight: math.unit(50, "lb"),
  13243. name: "Front",
  13244. image: {
  13245. source: "./media/characters/kole/front.svg",
  13246. extra: 1423 / 1303,
  13247. bottom: 0.025
  13248. }
  13249. },
  13250. back: {
  13251. height: math.unit(4, "feet"),
  13252. weight: math.unit(50, "lb"),
  13253. name: "Back",
  13254. image: {
  13255. source: "./media/characters/kole/back.svg",
  13256. extra: 1426 / 1280,
  13257. bottom: 0.02
  13258. }
  13259. },
  13260. },
  13261. [
  13262. {
  13263. name: "Normal",
  13264. height: math.unit(4, "feet"),
  13265. default: true
  13266. },
  13267. ]
  13268. ))
  13269. characterMakers.push(() => makeCharacter(
  13270. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13271. {
  13272. front: {
  13273. height: math.unit(2.5, "feet"),
  13274. weight: math.unit(32, "lb"),
  13275. name: "Front",
  13276. image: {
  13277. source: "./media/characters/rufran/front.svg",
  13278. extra: 1313/885,
  13279. bottom: 94/1407
  13280. }
  13281. },
  13282. side: {
  13283. height: math.unit(2.5, "feet"),
  13284. weight: math.unit(32, "lb"),
  13285. name: "Side",
  13286. image: {
  13287. source: "./media/characters/rufran/side.svg",
  13288. extra: 1109/852,
  13289. bottom: 118/1227
  13290. }
  13291. },
  13292. back: {
  13293. height: math.unit(2.5, "feet"),
  13294. weight: math.unit(32, "lb"),
  13295. name: "Back",
  13296. image: {
  13297. source: "./media/characters/rufran/back.svg",
  13298. extra: 1280/878,
  13299. bottom: 131/1411
  13300. }
  13301. },
  13302. mouth: {
  13303. height: math.unit(1.13, "feet"),
  13304. name: "Mouth",
  13305. image: {
  13306. source: "./media/characters/rufran/mouth.svg"
  13307. }
  13308. },
  13309. foot: {
  13310. height: math.unit(1.33, "feet"),
  13311. name: "Foot",
  13312. image: {
  13313. source: "./media/characters/rufran/foot.svg"
  13314. }
  13315. },
  13316. koboldFront: {
  13317. height: math.unit(2 + 6 / 12, "feet"),
  13318. weight: math.unit(20, "lb"),
  13319. name: "Front (Kobold)",
  13320. image: {
  13321. source: "./media/characters/rufran/kobold-front.svg",
  13322. extra: 2041 / 1839,
  13323. bottom: 0.055
  13324. }
  13325. },
  13326. koboldBack: {
  13327. height: math.unit(2 + 6 / 12, "feet"),
  13328. weight: math.unit(20, "lb"),
  13329. name: "Back (Kobold)",
  13330. image: {
  13331. source: "./media/characters/rufran/kobold-back.svg",
  13332. extra: 2054 / 1839,
  13333. bottom: 0.01
  13334. }
  13335. },
  13336. koboldHand: {
  13337. height: math.unit(0.2166, "meters"),
  13338. name: "Hand (Kobold)",
  13339. image: {
  13340. source: "./media/characters/rufran/kobold-hand.svg"
  13341. }
  13342. },
  13343. koboldFoot: {
  13344. height: math.unit(0.185, "meters"),
  13345. name: "Foot (Kobold)",
  13346. image: {
  13347. source: "./media/characters/rufran/kobold-foot.svg"
  13348. }
  13349. },
  13350. },
  13351. [
  13352. {
  13353. name: "Micro",
  13354. height: math.unit(1, "inch")
  13355. },
  13356. {
  13357. name: "Normal",
  13358. height: math.unit(2 + 6 / 12, "feet"),
  13359. default: true
  13360. },
  13361. {
  13362. name: "Big",
  13363. height: math.unit(60, "feet")
  13364. },
  13365. {
  13366. name: "Macro",
  13367. height: math.unit(325, "feet")
  13368. },
  13369. ]
  13370. ))
  13371. characterMakers.push(() => makeCharacter(
  13372. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13373. {
  13374. front: {
  13375. height: math.unit(0.3, "meters"),
  13376. weight: math.unit(3.5, "kg"),
  13377. name: "Front",
  13378. image: {
  13379. source: "./media/characters/chip/front.svg",
  13380. extra: 748 / 674
  13381. }
  13382. },
  13383. },
  13384. [
  13385. {
  13386. name: "Micro",
  13387. height: math.unit(1, "inch"),
  13388. default: true
  13389. },
  13390. ]
  13391. ))
  13392. characterMakers.push(() => makeCharacter(
  13393. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13394. {
  13395. side: {
  13396. height: math.unit(2.3, "meters"),
  13397. weight: math.unit(3500, "lb"),
  13398. name: "Side",
  13399. image: {
  13400. source: "./media/characters/torvid/side.svg",
  13401. extra: 1972 / 722,
  13402. bottom: 0.035
  13403. }
  13404. },
  13405. },
  13406. [
  13407. {
  13408. name: "Normal",
  13409. height: math.unit(2.3, "meters"),
  13410. default: true
  13411. },
  13412. ]
  13413. ))
  13414. characterMakers.push(() => makeCharacter(
  13415. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13416. {
  13417. front: {
  13418. height: math.unit(2, "meters"),
  13419. weight: math.unit(150.5, "kg"),
  13420. name: "Front",
  13421. image: {
  13422. source: "./media/characters/susan/front.svg",
  13423. extra: 693 / 635,
  13424. bottom: 0.05
  13425. }
  13426. },
  13427. },
  13428. [
  13429. {
  13430. name: "Megamacro",
  13431. height: math.unit(505, "miles"),
  13432. default: true
  13433. },
  13434. ]
  13435. ))
  13436. characterMakers.push(() => makeCharacter(
  13437. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13438. {
  13439. front: {
  13440. height: math.unit(6, "feet"),
  13441. weight: math.unit(150, "lb"),
  13442. name: "Front",
  13443. image: {
  13444. source: "./media/characters/raindrops/front.svg",
  13445. extra: 2655 / 2461,
  13446. bottom: 49 / 2705
  13447. }
  13448. },
  13449. back: {
  13450. height: math.unit(6, "feet"),
  13451. weight: math.unit(150, "lb"),
  13452. name: "Back",
  13453. image: {
  13454. source: "./media/characters/raindrops/back.svg",
  13455. extra: 2574 / 2400,
  13456. bottom: 65 / 2634
  13457. }
  13458. },
  13459. },
  13460. [
  13461. {
  13462. name: "Micro",
  13463. height: math.unit(6, "inches")
  13464. },
  13465. {
  13466. name: "Normal",
  13467. height: math.unit(6 + 2 / 12, "feet")
  13468. },
  13469. {
  13470. name: "Macro",
  13471. height: math.unit(131, "feet"),
  13472. default: true
  13473. },
  13474. {
  13475. name: "Megamacro",
  13476. height: math.unit(15, "miles")
  13477. },
  13478. {
  13479. name: "Gigamacro",
  13480. height: math.unit(4000, "miles")
  13481. },
  13482. {
  13483. name: "Teramacro",
  13484. height: math.unit(315000, "miles")
  13485. },
  13486. ]
  13487. ))
  13488. characterMakers.push(() => makeCharacter(
  13489. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13490. {
  13491. front: {
  13492. height: math.unit(2.794, "meters"),
  13493. weight: math.unit(325, "kg"),
  13494. name: "Front",
  13495. image: {
  13496. source: "./media/characters/tezwa/front.svg",
  13497. extra: 2083 / 1906,
  13498. bottom: 0.031
  13499. }
  13500. },
  13501. foot: {
  13502. height: math.unit(0.687, "meters"),
  13503. name: "Foot",
  13504. image: {
  13505. source: "./media/characters/tezwa/foot.svg"
  13506. }
  13507. },
  13508. },
  13509. [
  13510. {
  13511. name: "Normal",
  13512. height: math.unit(9 + 2 / 12, "feet"),
  13513. default: true
  13514. },
  13515. ]
  13516. ))
  13517. characterMakers.push(() => makeCharacter(
  13518. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13519. {
  13520. front: {
  13521. height: math.unit(58, "feet"),
  13522. weight: math.unit(89000, "lb"),
  13523. name: "Front",
  13524. image: {
  13525. source: "./media/characters/typhus/front.svg",
  13526. extra: 816 / 800,
  13527. bottom: 0.065
  13528. }
  13529. },
  13530. },
  13531. [
  13532. {
  13533. name: "Macro",
  13534. height: math.unit(58, "feet"),
  13535. default: true
  13536. },
  13537. ]
  13538. ))
  13539. characterMakers.push(() => makeCharacter(
  13540. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13541. {
  13542. front: {
  13543. height: math.unit(12, "feet"),
  13544. weight: math.unit(6, "tonnes"),
  13545. name: "Front",
  13546. image: {
  13547. source: "./media/characters/lyra-von-wulf/front.svg",
  13548. extra: 1,
  13549. bottom: 0.10
  13550. }
  13551. },
  13552. frontMecha: {
  13553. height: math.unit(12, "feet"),
  13554. weight: math.unit(12, "tonnes"),
  13555. name: "Front (Mecha)",
  13556. image: {
  13557. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13558. extra: 1,
  13559. bottom: 0.042
  13560. }
  13561. },
  13562. maw: {
  13563. height: math.unit(2.2, "feet"),
  13564. name: "Maw",
  13565. image: {
  13566. source: "./media/characters/lyra-von-wulf/maw.svg"
  13567. }
  13568. },
  13569. },
  13570. [
  13571. {
  13572. name: "Normal",
  13573. height: math.unit(12, "feet"),
  13574. default: true
  13575. },
  13576. {
  13577. name: "Classic",
  13578. height: math.unit(50, "feet")
  13579. },
  13580. {
  13581. name: "Macro",
  13582. height: math.unit(500, "feet")
  13583. },
  13584. {
  13585. name: "Megamacro",
  13586. height: math.unit(1, "mile")
  13587. },
  13588. {
  13589. name: "Gigamacro",
  13590. height: math.unit(400, "miles")
  13591. },
  13592. {
  13593. name: "Teramacro",
  13594. height: math.unit(22000, "miles")
  13595. },
  13596. {
  13597. name: "Solarmacro",
  13598. height: math.unit(8600000, "miles")
  13599. },
  13600. {
  13601. name: "Galactic",
  13602. height: math.unit(1057000, "lightyears")
  13603. },
  13604. ]
  13605. ))
  13606. characterMakers.push(() => makeCharacter(
  13607. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13608. {
  13609. front: {
  13610. height: math.unit(6 + 10 / 12, "feet"),
  13611. weight: math.unit(150, "lb"),
  13612. name: "Front",
  13613. image: {
  13614. source: "./media/characters/dixon/front.svg",
  13615. extra: 3361 / 3209,
  13616. bottom: 0.01
  13617. }
  13618. },
  13619. },
  13620. [
  13621. {
  13622. name: "Normal",
  13623. height: math.unit(6 + 10 / 12, "feet"),
  13624. default: true
  13625. },
  13626. {
  13627. name: "Big",
  13628. height: math.unit(12, "meters")
  13629. },
  13630. {
  13631. name: "Macro",
  13632. height: math.unit(500, "meters")
  13633. },
  13634. {
  13635. name: "Megamacro",
  13636. height: math.unit(2, "km")
  13637. },
  13638. ]
  13639. ))
  13640. characterMakers.push(() => makeCharacter(
  13641. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13642. {
  13643. front: {
  13644. height: math.unit(185, "cm"),
  13645. weight: math.unit(68, "kg"),
  13646. name: "Front",
  13647. image: {
  13648. source: "./media/characters/kauko/front.svg",
  13649. extra: 1455 / 1421,
  13650. bottom: 0.03
  13651. }
  13652. },
  13653. back: {
  13654. height: math.unit(185, "cm"),
  13655. weight: math.unit(68, "kg"),
  13656. name: "Back",
  13657. image: {
  13658. source: "./media/characters/kauko/back.svg",
  13659. extra: 1455 / 1421,
  13660. bottom: 0.004
  13661. }
  13662. },
  13663. },
  13664. [
  13665. {
  13666. name: "Normal",
  13667. height: math.unit(185, "cm"),
  13668. default: true
  13669. },
  13670. ]
  13671. ))
  13672. characterMakers.push(() => makeCharacter(
  13673. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13674. {
  13675. front: {
  13676. height: math.unit(6, "feet"),
  13677. weight: math.unit(150, "kg"),
  13678. name: "Front",
  13679. image: {
  13680. source: "./media/characters/varg/front.svg",
  13681. extra: 1108 / 1018,
  13682. bottom: 0.0375
  13683. }
  13684. },
  13685. },
  13686. [
  13687. {
  13688. name: "Normal",
  13689. height: math.unit(5, "meters")
  13690. },
  13691. {
  13692. name: "Macro",
  13693. height: math.unit(200, "meters")
  13694. },
  13695. {
  13696. name: "Megamacro",
  13697. height: math.unit(20, "kilometers")
  13698. },
  13699. {
  13700. name: "True Size",
  13701. height: math.unit(211, "km"),
  13702. default: true
  13703. },
  13704. {
  13705. name: "Gigamacro",
  13706. height: math.unit(1000, "km")
  13707. },
  13708. {
  13709. name: "Gigamacro+",
  13710. height: math.unit(8000, "km")
  13711. },
  13712. {
  13713. name: "Teramacro",
  13714. height: math.unit(1000000, "km")
  13715. },
  13716. ]
  13717. ))
  13718. characterMakers.push(() => makeCharacter(
  13719. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13720. {
  13721. front: {
  13722. height: math.unit(7 + 7 / 12, "feet"),
  13723. weight: math.unit(267, "lb"),
  13724. name: "Front",
  13725. image: {
  13726. source: "./media/characters/dayza/front.svg",
  13727. extra: 1262 / 1200,
  13728. bottom: 0.035
  13729. }
  13730. },
  13731. side: {
  13732. height: math.unit(7 + 7 / 12, "feet"),
  13733. weight: math.unit(267, "lb"),
  13734. name: "Side",
  13735. image: {
  13736. source: "./media/characters/dayza/side.svg",
  13737. extra: 1295 / 1245,
  13738. bottom: 0.05
  13739. }
  13740. },
  13741. back: {
  13742. height: math.unit(7 + 7 / 12, "feet"),
  13743. weight: math.unit(267, "lb"),
  13744. name: "Back",
  13745. image: {
  13746. source: "./media/characters/dayza/back.svg",
  13747. extra: 1241 / 1170
  13748. }
  13749. },
  13750. },
  13751. [
  13752. {
  13753. name: "Normal",
  13754. height: math.unit(7 + 7 / 12, "feet"),
  13755. default: true
  13756. },
  13757. {
  13758. name: "Macro",
  13759. height: math.unit(155, "feet")
  13760. },
  13761. ]
  13762. ))
  13763. characterMakers.push(() => makeCharacter(
  13764. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13765. {
  13766. front: {
  13767. height: math.unit(6 + 5 / 12, "feet"),
  13768. weight: math.unit(160, "lb"),
  13769. name: "Front",
  13770. image: {
  13771. source: "./media/characters/xanthos/front.svg",
  13772. extra: 1,
  13773. bottom: 0.04
  13774. }
  13775. },
  13776. back: {
  13777. height: math.unit(6 + 5 / 12, "feet"),
  13778. weight: math.unit(160, "lb"),
  13779. name: "Back",
  13780. image: {
  13781. source: "./media/characters/xanthos/back.svg",
  13782. extra: 1,
  13783. bottom: 0.03
  13784. }
  13785. },
  13786. hand: {
  13787. height: math.unit(0.928, "feet"),
  13788. name: "Hand",
  13789. image: {
  13790. source: "./media/characters/xanthos/hand.svg"
  13791. }
  13792. },
  13793. foot: {
  13794. height: math.unit(1.286, "feet"),
  13795. name: "Foot",
  13796. image: {
  13797. source: "./media/characters/xanthos/foot.svg"
  13798. }
  13799. },
  13800. },
  13801. [
  13802. {
  13803. name: "Normal",
  13804. height: math.unit(6 + 5 / 12, "feet"),
  13805. default: true
  13806. },
  13807. {
  13808. name: "Normal+",
  13809. height: math.unit(6, "meters")
  13810. },
  13811. {
  13812. name: "Macro",
  13813. height: math.unit(40, "feet")
  13814. },
  13815. {
  13816. name: "Macro+",
  13817. height: math.unit(200, "meters")
  13818. },
  13819. {
  13820. name: "Megamacro",
  13821. height: math.unit(20, "km")
  13822. },
  13823. {
  13824. name: "Megamacro+",
  13825. height: math.unit(100, "km")
  13826. },
  13827. {
  13828. name: "Gigamacro",
  13829. height: math.unit(200, "megameters")
  13830. },
  13831. {
  13832. name: "Gigamacro+",
  13833. height: math.unit(1.5, "gigameters")
  13834. },
  13835. ]
  13836. ))
  13837. characterMakers.push(() => makeCharacter(
  13838. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13839. {
  13840. front: {
  13841. height: math.unit(6 + 3 / 12, "feet"),
  13842. weight: math.unit(215, "lb"),
  13843. name: "Front",
  13844. image: {
  13845. source: "./media/characters/grynn/front.svg",
  13846. extra: 4627 / 4209,
  13847. bottom: 0.047
  13848. }
  13849. },
  13850. },
  13851. [
  13852. {
  13853. name: "Micro",
  13854. height: math.unit(6, "inches")
  13855. },
  13856. {
  13857. name: "Normal",
  13858. height: math.unit(6 + 3 / 12, "feet"),
  13859. default: true
  13860. },
  13861. {
  13862. name: "Big",
  13863. height: math.unit(104, "feet")
  13864. },
  13865. {
  13866. name: "Macro",
  13867. height: math.unit(944, "feet")
  13868. },
  13869. {
  13870. name: "Macro+",
  13871. height: math.unit(9480, "feet")
  13872. },
  13873. {
  13874. name: "Megamacro",
  13875. height: math.unit(78752, "feet")
  13876. },
  13877. {
  13878. name: "Megamacro+",
  13879. height: math.unit(630128, "feet")
  13880. },
  13881. {
  13882. name: "Megamacro++",
  13883. height: math.unit(3150695, "feet")
  13884. },
  13885. ]
  13886. ))
  13887. characterMakers.push(() => makeCharacter(
  13888. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13889. {
  13890. front: {
  13891. height: math.unit(7 + 5 / 12, "feet"),
  13892. weight: math.unit(450, "lb"),
  13893. name: "Front",
  13894. image: {
  13895. source: "./media/characters/mocha-aura/front.svg",
  13896. extra: 1907 / 1817,
  13897. bottom: 0.04
  13898. }
  13899. },
  13900. back: {
  13901. height: math.unit(7 + 5 / 12, "feet"),
  13902. weight: math.unit(450, "lb"),
  13903. name: "Back",
  13904. image: {
  13905. source: "./media/characters/mocha-aura/back.svg",
  13906. extra: 1900 / 1825,
  13907. bottom: 0.045
  13908. }
  13909. },
  13910. },
  13911. [
  13912. {
  13913. name: "Nano",
  13914. height: math.unit(1, "nm")
  13915. },
  13916. {
  13917. name: "Megamicro",
  13918. height: math.unit(1, "mm")
  13919. },
  13920. {
  13921. name: "Micro",
  13922. height: math.unit(3, "inches")
  13923. },
  13924. {
  13925. name: "Normal",
  13926. height: math.unit(7 + 5 / 12, "feet"),
  13927. default: true
  13928. },
  13929. {
  13930. name: "Macro",
  13931. height: math.unit(30, "feet")
  13932. },
  13933. {
  13934. name: "Megamacro",
  13935. height: math.unit(3500, "feet")
  13936. },
  13937. {
  13938. name: "Teramacro",
  13939. height: math.unit(500000, "miles")
  13940. },
  13941. {
  13942. name: "Petamacro",
  13943. height: math.unit(50000000000000000, "parsecs")
  13944. },
  13945. ]
  13946. ))
  13947. characterMakers.push(() => makeCharacter(
  13948. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13949. {
  13950. front: {
  13951. height: math.unit(6, "feet"),
  13952. weight: math.unit(150, "lb"),
  13953. name: "Front",
  13954. image: {
  13955. source: "./media/characters/ilisha-devya/front.svg",
  13956. extra: 1053/1049,
  13957. bottom: 270/1323
  13958. }
  13959. },
  13960. back: {
  13961. height: math.unit(6, "feet"),
  13962. weight: math.unit(150, "lb"),
  13963. name: "Back",
  13964. image: {
  13965. source: "./media/characters/ilisha-devya/back.svg",
  13966. extra: 1131/1128,
  13967. bottom: 39/1170
  13968. }
  13969. },
  13970. },
  13971. [
  13972. {
  13973. name: "Macro",
  13974. height: math.unit(500, "feet"),
  13975. default: true
  13976. },
  13977. {
  13978. name: "Megamacro",
  13979. height: math.unit(10, "miles")
  13980. },
  13981. {
  13982. name: "Gigamacro",
  13983. height: math.unit(100000, "miles")
  13984. },
  13985. {
  13986. name: "Examacro",
  13987. height: math.unit(1e9, "lightyears")
  13988. },
  13989. {
  13990. name: "Omniversal",
  13991. height: math.unit(1e33, "lightyears")
  13992. },
  13993. {
  13994. name: "Beyond Infinite",
  13995. height: math.unit(1e100, "lightyears")
  13996. },
  13997. ]
  13998. ))
  13999. characterMakers.push(() => makeCharacter(
  14000. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14001. {
  14002. Side: {
  14003. height: math.unit(6, "feet"),
  14004. weight: math.unit(150, "lb"),
  14005. name: "Side",
  14006. image: {
  14007. source: "./media/characters/mira/side.svg",
  14008. extra: 900 / 799,
  14009. bottom: 0.02
  14010. }
  14011. },
  14012. },
  14013. [
  14014. {
  14015. name: "Human Size",
  14016. height: math.unit(6, "feet")
  14017. },
  14018. {
  14019. name: "Macro",
  14020. height: math.unit(100, "feet"),
  14021. default: true
  14022. },
  14023. {
  14024. name: "Megamacro",
  14025. height: math.unit(10, "miles")
  14026. },
  14027. {
  14028. name: "Gigamacro",
  14029. height: math.unit(25000, "miles")
  14030. },
  14031. {
  14032. name: "Teramacro",
  14033. height: math.unit(300, "AU")
  14034. },
  14035. {
  14036. name: "Full Size",
  14037. height: math.unit(4.5e10, "lightyears")
  14038. },
  14039. ]
  14040. ))
  14041. characterMakers.push(() => makeCharacter(
  14042. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14043. {
  14044. front: {
  14045. height: math.unit(6, "feet"),
  14046. weight: math.unit(150, "lb"),
  14047. name: "Front",
  14048. image: {
  14049. source: "./media/characters/holly/front.svg",
  14050. extra: 639 / 606
  14051. }
  14052. },
  14053. back: {
  14054. height: math.unit(6, "feet"),
  14055. weight: math.unit(150, "lb"),
  14056. name: "Back",
  14057. image: {
  14058. source: "./media/characters/holly/back.svg",
  14059. extra: 623 / 598
  14060. }
  14061. },
  14062. frontWorking: {
  14063. height: math.unit(6, "feet"),
  14064. weight: math.unit(150, "lb"),
  14065. name: "Front (Working)",
  14066. image: {
  14067. source: "./media/characters/holly/front-working.svg",
  14068. extra: 607 / 577,
  14069. bottom: 0.048
  14070. }
  14071. },
  14072. },
  14073. [
  14074. {
  14075. name: "Normal",
  14076. height: math.unit(12 + 3 / 12, "feet"),
  14077. default: true
  14078. },
  14079. ]
  14080. ))
  14081. characterMakers.push(() => makeCharacter(
  14082. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14083. {
  14084. front: {
  14085. height: math.unit(6, "feet"),
  14086. weight: math.unit(150, "lb"),
  14087. name: "Front",
  14088. image: {
  14089. source: "./media/characters/porter/front.svg",
  14090. extra: 1,
  14091. bottom: 0.01
  14092. }
  14093. },
  14094. frontRobes: {
  14095. height: math.unit(6, "feet"),
  14096. weight: math.unit(150, "lb"),
  14097. name: "Front (Robes)",
  14098. image: {
  14099. source: "./media/characters/porter/front-robes.svg",
  14100. extra: 1.01,
  14101. bottom: 0.01
  14102. }
  14103. },
  14104. },
  14105. [
  14106. {
  14107. name: "Normal",
  14108. height: math.unit(11 + 9 / 12, "feet"),
  14109. default: true
  14110. },
  14111. ]
  14112. ))
  14113. characterMakers.push(() => makeCharacter(
  14114. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14115. {
  14116. legendary: {
  14117. height: math.unit(6, "feet"),
  14118. weight: math.unit(150, "lb"),
  14119. name: "Legendary",
  14120. image: {
  14121. source: "./media/characters/lucy/legendary.svg",
  14122. extra: 1355 / 1100,
  14123. bottom: 0.045
  14124. }
  14125. },
  14126. },
  14127. [
  14128. {
  14129. name: "Legendary",
  14130. height: math.unit(86882 * 2, "miles"),
  14131. default: true
  14132. },
  14133. ]
  14134. ))
  14135. characterMakers.push(() => makeCharacter(
  14136. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14137. {
  14138. front: {
  14139. height: math.unit(6, "feet"),
  14140. weight: math.unit(150, "lb"),
  14141. name: "Front",
  14142. image: {
  14143. source: "./media/characters/drusilla/front.svg",
  14144. extra: 678 / 635,
  14145. bottom: 0.03
  14146. }
  14147. },
  14148. back: {
  14149. height: math.unit(6, "feet"),
  14150. weight: math.unit(150, "lb"),
  14151. name: "Back",
  14152. image: {
  14153. source: "./media/characters/drusilla/back.svg",
  14154. extra: 678 / 635,
  14155. bottom: 0.005
  14156. }
  14157. },
  14158. },
  14159. [
  14160. {
  14161. name: "Macro",
  14162. height: math.unit(100, "feet")
  14163. },
  14164. {
  14165. name: "Canon Height",
  14166. height: math.unit(2000, "feet"),
  14167. default: true
  14168. },
  14169. ]
  14170. ))
  14171. characterMakers.push(() => makeCharacter(
  14172. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14173. {
  14174. front: {
  14175. height: math.unit(6, "feet"),
  14176. weight: math.unit(180, "lb"),
  14177. name: "Front",
  14178. image: {
  14179. source: "./media/characters/renard-thatch/front.svg",
  14180. extra: 2411 / 2275,
  14181. bottom: 0.01
  14182. }
  14183. },
  14184. frontPosing: {
  14185. height: math.unit(6, "feet"),
  14186. weight: math.unit(180, "lb"),
  14187. name: "Front (Posing)",
  14188. image: {
  14189. source: "./media/characters/renard-thatch/front-posing.svg",
  14190. extra: 2381 / 2261,
  14191. bottom: 0.01
  14192. }
  14193. },
  14194. back: {
  14195. height: math.unit(6, "feet"),
  14196. weight: math.unit(180, "lb"),
  14197. name: "Back",
  14198. image: {
  14199. source: "./media/characters/renard-thatch/back.svg",
  14200. extra: 2428 / 2288
  14201. }
  14202. },
  14203. },
  14204. [
  14205. {
  14206. name: "Micro",
  14207. height: math.unit(3, "inches")
  14208. },
  14209. {
  14210. name: "Default",
  14211. height: math.unit(6, "feet"),
  14212. default: true
  14213. },
  14214. {
  14215. name: "Macro",
  14216. height: math.unit(75, "feet")
  14217. },
  14218. ]
  14219. ))
  14220. characterMakers.push(() => makeCharacter(
  14221. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14222. {
  14223. front: {
  14224. height: math.unit(1450, "feet"),
  14225. weight: math.unit(1.21e6, "tons"),
  14226. name: "Front",
  14227. image: {
  14228. source: "./media/characters/sekvra/front.svg",
  14229. extra: 1193/1190,
  14230. bottom: 78/1271
  14231. }
  14232. },
  14233. side: {
  14234. height: math.unit(1450, "feet"),
  14235. weight: math.unit(1.21e6, "tons"),
  14236. name: "Side",
  14237. image: {
  14238. source: "./media/characters/sekvra/side.svg",
  14239. extra: 1193/1190,
  14240. bottom: 52/1245
  14241. }
  14242. },
  14243. back: {
  14244. height: math.unit(1450, "feet"),
  14245. weight: math.unit(1.21e6, "tons"),
  14246. name: "Back",
  14247. image: {
  14248. source: "./media/characters/sekvra/back.svg",
  14249. extra: 1219/1216,
  14250. bottom: 21/1240
  14251. }
  14252. },
  14253. frontClothed: {
  14254. height: math.unit(1450, "feet"),
  14255. weight: math.unit(1.21e6, "tons"),
  14256. name: "Front (Clothed)",
  14257. image: {
  14258. source: "./media/characters/sekvra/front-clothed.svg",
  14259. extra: 1192/1189,
  14260. bottom: 79/1271
  14261. }
  14262. },
  14263. },
  14264. [
  14265. {
  14266. name: "Macro",
  14267. height: math.unit(1450, "feet"),
  14268. default: true
  14269. },
  14270. {
  14271. name: "Megamacro",
  14272. height: math.unit(15000, "feet")
  14273. },
  14274. ]
  14275. ))
  14276. characterMakers.push(() => makeCharacter(
  14277. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14278. {
  14279. front: {
  14280. height: math.unit(6, "feet"),
  14281. weight: math.unit(150, "lb"),
  14282. name: "Front",
  14283. image: {
  14284. source: "./media/characters/carmine/front.svg",
  14285. extra: 1,
  14286. bottom: 0.035
  14287. }
  14288. },
  14289. frontArmor: {
  14290. height: math.unit(6, "feet"),
  14291. weight: math.unit(150, "lb"),
  14292. name: "Front (Armor)",
  14293. image: {
  14294. source: "./media/characters/carmine/front-armor.svg",
  14295. extra: 1,
  14296. bottom: 0.035
  14297. }
  14298. },
  14299. },
  14300. [
  14301. {
  14302. name: "Large",
  14303. height: math.unit(1, "mile")
  14304. },
  14305. {
  14306. name: "Huge",
  14307. height: math.unit(40, "miles"),
  14308. default: true
  14309. },
  14310. {
  14311. name: "Colossal",
  14312. height: math.unit(2500, "miles")
  14313. },
  14314. ]
  14315. ))
  14316. characterMakers.push(() => makeCharacter(
  14317. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14318. {
  14319. front: {
  14320. height: math.unit(6, "feet"),
  14321. weight: math.unit(150, "lb"),
  14322. name: "Front",
  14323. image: {
  14324. source: "./media/characters/elyssia/front.svg",
  14325. extra: 2201 / 2035,
  14326. bottom: 0.05
  14327. }
  14328. },
  14329. frontClothed: {
  14330. height: math.unit(6, "feet"),
  14331. weight: math.unit(150, "lb"),
  14332. name: "Front (Clothed)",
  14333. image: {
  14334. source: "./media/characters/elyssia/front-clothed.svg",
  14335. extra: 2201 / 2035,
  14336. bottom: 0.05
  14337. }
  14338. },
  14339. back: {
  14340. height: math.unit(6, "feet"),
  14341. weight: math.unit(150, "lb"),
  14342. name: "Back",
  14343. image: {
  14344. source: "./media/characters/elyssia/back.svg",
  14345. extra: 2201 / 2035,
  14346. bottom: 0.013
  14347. }
  14348. },
  14349. },
  14350. [
  14351. {
  14352. name: "Smaller",
  14353. height: math.unit(150, "feet")
  14354. },
  14355. {
  14356. name: "Standard",
  14357. height: math.unit(1400, "feet"),
  14358. default: true
  14359. },
  14360. {
  14361. name: "Distracted",
  14362. height: math.unit(15000, "feet")
  14363. },
  14364. ]
  14365. ))
  14366. characterMakers.push(() => makeCharacter(
  14367. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14368. {
  14369. front: {
  14370. height: math.unit(7 + 4/12, "feet"),
  14371. weight: math.unit(690, "lb"),
  14372. name: "Front",
  14373. image: {
  14374. source: "./media/characters/geno-maxwell/front.svg",
  14375. extra: 984/856,
  14376. bottom: 87/1071
  14377. }
  14378. },
  14379. back: {
  14380. height: math.unit(7 + 4/12, "feet"),
  14381. weight: math.unit(690, "lb"),
  14382. name: "Back",
  14383. image: {
  14384. source: "./media/characters/geno-maxwell/back.svg",
  14385. extra: 981/854,
  14386. bottom: 57/1038
  14387. }
  14388. },
  14389. frontCostume: {
  14390. height: math.unit(7 + 4/12, "feet"),
  14391. weight: math.unit(690, "lb"),
  14392. name: "Front (Costume)",
  14393. image: {
  14394. source: "./media/characters/geno-maxwell/front-costume.svg",
  14395. extra: 984/856,
  14396. bottom: 87/1071
  14397. }
  14398. },
  14399. backcostume: {
  14400. height: math.unit(7 + 4/12, "feet"),
  14401. weight: math.unit(690, "lb"),
  14402. name: "Back (Costume)",
  14403. image: {
  14404. source: "./media/characters/geno-maxwell/back-costume.svg",
  14405. extra: 981/854,
  14406. bottom: 57/1038
  14407. }
  14408. },
  14409. },
  14410. [
  14411. {
  14412. name: "Micro",
  14413. height: math.unit(3, "inches")
  14414. },
  14415. {
  14416. name: "Normal",
  14417. height: math.unit(7 + 4 / 12, "feet"),
  14418. default: true
  14419. },
  14420. {
  14421. name: "Macro",
  14422. height: math.unit(220, "feet")
  14423. },
  14424. {
  14425. name: "Megamacro",
  14426. height: math.unit(11, "miles")
  14427. },
  14428. ]
  14429. ))
  14430. characterMakers.push(() => makeCharacter(
  14431. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14432. {
  14433. front: {
  14434. height: math.unit(7 + 4/12, "feet"),
  14435. weight: math.unit(750, "lb"),
  14436. name: "Front",
  14437. image: {
  14438. source: "./media/characters/regena-maxwell/front.svg",
  14439. extra: 984/856,
  14440. bottom: 87/1071
  14441. }
  14442. },
  14443. back: {
  14444. height: math.unit(7 + 4/12, "feet"),
  14445. weight: math.unit(750, "lb"),
  14446. name: "Back",
  14447. image: {
  14448. source: "./media/characters/regena-maxwell/back.svg",
  14449. extra: 981/854,
  14450. bottom: 57/1038
  14451. }
  14452. },
  14453. frontCostume: {
  14454. height: math.unit(7 + 4/12, "feet"),
  14455. weight: math.unit(750, "lb"),
  14456. name: "Front (Costume)",
  14457. image: {
  14458. source: "./media/characters/regena-maxwell/front-costume.svg",
  14459. extra: 984/856,
  14460. bottom: 87/1071
  14461. }
  14462. },
  14463. backcostume: {
  14464. height: math.unit(7 + 4/12, "feet"),
  14465. weight: math.unit(750, "lb"),
  14466. name: "Back (Costume)",
  14467. image: {
  14468. source: "./media/characters/regena-maxwell/back-costume.svg",
  14469. extra: 981/854,
  14470. bottom: 57/1038
  14471. }
  14472. },
  14473. },
  14474. [
  14475. {
  14476. name: "Normal",
  14477. height: math.unit(7 + 4 / 12, "feet"),
  14478. default: true
  14479. },
  14480. {
  14481. name: "Macro",
  14482. height: math.unit(220, "feet")
  14483. },
  14484. {
  14485. name: "Megamacro",
  14486. height: math.unit(11, "miles")
  14487. },
  14488. ]
  14489. ))
  14490. characterMakers.push(() => makeCharacter(
  14491. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14492. {
  14493. front: {
  14494. height: math.unit(6, "feet"),
  14495. weight: math.unit(150, "lb"),
  14496. name: "Front",
  14497. image: {
  14498. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14499. extra: 860 / 690,
  14500. bottom: 0.03
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(1.7, "meters"),
  14508. default: true
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14514. {
  14515. front: {
  14516. height: math.unit(6, "feet"),
  14517. weight: math.unit(150, "lb"),
  14518. name: "Front",
  14519. image: {
  14520. source: "./media/characters/quilly/front.svg",
  14521. extra: 890 / 776
  14522. }
  14523. },
  14524. },
  14525. [
  14526. {
  14527. name: "Gigamacro",
  14528. height: math.unit(404090, "miles"),
  14529. default: true
  14530. },
  14531. ]
  14532. ))
  14533. characterMakers.push(() => makeCharacter(
  14534. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14535. {
  14536. front: {
  14537. height: math.unit(7 + 8 / 12, "feet"),
  14538. weight: math.unit(350, "lb"),
  14539. name: "Front",
  14540. image: {
  14541. source: "./media/characters/tempest/front.svg",
  14542. extra: 1175 / 1086,
  14543. bottom: 0.02
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Normal",
  14550. height: math.unit(7 + 8 / 12, "feet"),
  14551. default: true
  14552. },
  14553. ]
  14554. ))
  14555. characterMakers.push(() => makeCharacter(
  14556. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14557. {
  14558. side: {
  14559. height: math.unit(4 + 5 / 12, "feet"),
  14560. weight: math.unit(80, "lb"),
  14561. name: "Side",
  14562. image: {
  14563. source: "./media/characters/rodger/side.svg",
  14564. extra: 1235 / 1118
  14565. }
  14566. },
  14567. },
  14568. [
  14569. {
  14570. name: "Micro",
  14571. height: math.unit(1, "inch")
  14572. },
  14573. {
  14574. name: "Normal",
  14575. height: math.unit(4 + 5 / 12, "feet"),
  14576. default: true
  14577. },
  14578. {
  14579. name: "Macro",
  14580. height: math.unit(120, "feet")
  14581. },
  14582. ]
  14583. ))
  14584. characterMakers.push(() => makeCharacter(
  14585. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14586. {
  14587. front: {
  14588. height: math.unit(6, "feet"),
  14589. weight: math.unit(150, "lb"),
  14590. name: "Front",
  14591. image: {
  14592. source: "./media/characters/danyel/front.svg",
  14593. extra: 1185 / 1123,
  14594. bottom: 0.05
  14595. }
  14596. },
  14597. },
  14598. [
  14599. {
  14600. name: "Shrunken",
  14601. height: math.unit(0.5, "mm")
  14602. },
  14603. {
  14604. name: "Micro",
  14605. height: math.unit(1, "mm"),
  14606. default: true
  14607. },
  14608. {
  14609. name: "Upsized",
  14610. height: math.unit(5 + 5 / 12, "feet")
  14611. },
  14612. ]
  14613. ))
  14614. characterMakers.push(() => makeCharacter(
  14615. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14616. {
  14617. front: {
  14618. height: math.unit(5 + 6 / 12, "feet"),
  14619. weight: math.unit(200, "lb"),
  14620. name: "Front",
  14621. image: {
  14622. source: "./media/characters/vivian-bijoux/front.svg",
  14623. extra: 1217/1209,
  14624. bottom: 76/1293
  14625. }
  14626. },
  14627. back: {
  14628. height: math.unit(5 + 6 / 12, "feet"),
  14629. weight: math.unit(200, "lb"),
  14630. name: "Back",
  14631. image: {
  14632. source: "./media/characters/vivian-bijoux/back.svg",
  14633. extra: 1214/1208,
  14634. bottom: 51/1265
  14635. }
  14636. },
  14637. dressed: {
  14638. height: math.unit(5 + 6 / 12, "feet"),
  14639. weight: math.unit(200, "lb"),
  14640. name: "Dressed",
  14641. image: {
  14642. source: "./media/characters/vivian-bijoux/dressed.svg",
  14643. extra: 1217/1209,
  14644. bottom: 76/1293
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Normal",
  14651. height: math.unit(5 + 6 / 12, "feet"),
  14652. default: true
  14653. },
  14654. {
  14655. name: "Bad Dream",
  14656. height: math.unit(500, "feet")
  14657. },
  14658. {
  14659. name: "Nightmare",
  14660. height: math.unit(500, "miles")
  14661. },
  14662. ]
  14663. ))
  14664. characterMakers.push(() => makeCharacter(
  14665. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14666. {
  14667. front: {
  14668. height: math.unit(6 + 1 / 12, "feet"),
  14669. weight: math.unit(260, "lb"),
  14670. name: "Front",
  14671. image: {
  14672. source: "./media/characters/zeta/front.svg",
  14673. extra: 1968 / 1889,
  14674. bottom: 0.06
  14675. }
  14676. },
  14677. back: {
  14678. height: math.unit(6 + 1 / 12, "feet"),
  14679. weight: math.unit(260, "lb"),
  14680. name: "Back",
  14681. image: {
  14682. source: "./media/characters/zeta/back.svg",
  14683. extra: 1944 / 1858,
  14684. bottom: 0.03
  14685. }
  14686. },
  14687. hand: {
  14688. height: math.unit(1.112, "feet"),
  14689. name: "Hand",
  14690. image: {
  14691. source: "./media/characters/zeta/hand.svg"
  14692. }
  14693. },
  14694. foot: {
  14695. height: math.unit(1.48, "feet"),
  14696. name: "Foot",
  14697. image: {
  14698. source: "./media/characters/zeta/foot.svg"
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Micro",
  14705. height: math.unit(6, "inches")
  14706. },
  14707. {
  14708. name: "Normal",
  14709. height: math.unit(6 + 1 / 12, "feet"),
  14710. default: true
  14711. },
  14712. {
  14713. name: "Macro",
  14714. height: math.unit(20, "feet")
  14715. },
  14716. ]
  14717. ))
  14718. characterMakers.push(() => makeCharacter(
  14719. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14720. {
  14721. front: {
  14722. height: math.unit(6, "feet"),
  14723. weight: math.unit(150, "lb"),
  14724. name: "Front",
  14725. image: {
  14726. source: "./media/characters/jamie-larsen/front.svg",
  14727. extra: 962 / 933,
  14728. bottom: 0.02
  14729. }
  14730. },
  14731. back: {
  14732. height: math.unit(6, "feet"),
  14733. weight: math.unit(150, "lb"),
  14734. name: "Back",
  14735. image: {
  14736. source: "./media/characters/jamie-larsen/back.svg",
  14737. extra: 997 / 946
  14738. }
  14739. },
  14740. },
  14741. [
  14742. {
  14743. name: "Macro",
  14744. height: math.unit(28 + 7 / 12, "feet"),
  14745. default: true
  14746. },
  14747. {
  14748. name: "Macro+",
  14749. height: math.unit(180, "feet")
  14750. },
  14751. {
  14752. name: "Megamacro",
  14753. height: math.unit(10, "miles")
  14754. },
  14755. {
  14756. name: "Gigamacro",
  14757. height: math.unit(200000, "miles")
  14758. },
  14759. ]
  14760. ))
  14761. characterMakers.push(() => makeCharacter(
  14762. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14763. {
  14764. front: {
  14765. height: math.unit(6, "feet"),
  14766. weight: math.unit(120, "lb"),
  14767. name: "Front",
  14768. image: {
  14769. source: "./media/characters/vance/front.svg",
  14770. extra: 1980 / 1890,
  14771. bottom: 0.09
  14772. }
  14773. },
  14774. back: {
  14775. height: math.unit(6, "feet"),
  14776. weight: math.unit(120, "lb"),
  14777. name: "Back",
  14778. image: {
  14779. source: "./media/characters/vance/back.svg",
  14780. extra: 2081 / 1994,
  14781. bottom: 0.014
  14782. }
  14783. },
  14784. hand: {
  14785. height: math.unit(0.88, "feet"),
  14786. name: "Hand",
  14787. image: {
  14788. source: "./media/characters/vance/hand.svg"
  14789. }
  14790. },
  14791. foot: {
  14792. height: math.unit(0.64, "feet"),
  14793. name: "Foot",
  14794. image: {
  14795. source: "./media/characters/vance/foot.svg"
  14796. }
  14797. },
  14798. },
  14799. [
  14800. {
  14801. name: "Small",
  14802. height: math.unit(90, "feet"),
  14803. default: true
  14804. },
  14805. {
  14806. name: "Macro",
  14807. height: math.unit(100, "meters")
  14808. },
  14809. {
  14810. name: "Megamacro",
  14811. height: math.unit(15, "miles")
  14812. },
  14813. ]
  14814. ))
  14815. characterMakers.push(() => makeCharacter(
  14816. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14817. {
  14818. front: {
  14819. height: math.unit(6, "feet"),
  14820. weight: math.unit(180, "lb"),
  14821. name: "Front",
  14822. image: {
  14823. source: "./media/characters/xochitl/front.svg",
  14824. extra: 2297 / 2261,
  14825. bottom: 0.065
  14826. }
  14827. },
  14828. back: {
  14829. height: math.unit(6, "feet"),
  14830. weight: math.unit(180, "lb"),
  14831. name: "Back",
  14832. image: {
  14833. source: "./media/characters/xochitl/back.svg",
  14834. extra: 2386 / 2354,
  14835. bottom: 0.01
  14836. }
  14837. },
  14838. foot: {
  14839. height: math.unit(6 / 5 * 1.15, "feet"),
  14840. weight: math.unit(150, "lb"),
  14841. name: "Foot",
  14842. image: {
  14843. source: "./media/characters/xochitl/foot.svg"
  14844. }
  14845. },
  14846. },
  14847. [
  14848. {
  14849. name: "Macro",
  14850. height: math.unit(80, "feet")
  14851. },
  14852. {
  14853. name: "Macro+",
  14854. height: math.unit(400, "feet"),
  14855. default: true
  14856. },
  14857. {
  14858. name: "Gigamacro",
  14859. height: math.unit(80000, "miles")
  14860. },
  14861. {
  14862. name: "Gigamacro+",
  14863. height: math.unit(400000, "miles")
  14864. },
  14865. {
  14866. name: "Teramacro",
  14867. height: math.unit(300, "AU")
  14868. },
  14869. ]
  14870. ))
  14871. characterMakers.push(() => makeCharacter(
  14872. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14873. {
  14874. front: {
  14875. height: math.unit(6, "feet"),
  14876. weight: math.unit(150, "lb"),
  14877. name: "Front",
  14878. image: {
  14879. source: "./media/characters/vincent/front.svg",
  14880. extra: 1130 / 1080,
  14881. bottom: 0.055
  14882. }
  14883. },
  14884. beak: {
  14885. height: math.unit(6 * 0.1, "feet"),
  14886. name: "Beak",
  14887. image: {
  14888. source: "./media/characters/vincent/beak.svg"
  14889. }
  14890. },
  14891. hand: {
  14892. height: math.unit(6 * 0.85, "feet"),
  14893. weight: math.unit(150, "lb"),
  14894. name: "Hand",
  14895. image: {
  14896. source: "./media/characters/vincent/hand.svg"
  14897. }
  14898. },
  14899. foot: {
  14900. height: math.unit(6 * 0.19, "feet"),
  14901. weight: math.unit(150, "lb"),
  14902. name: "Foot",
  14903. image: {
  14904. source: "./media/characters/vincent/foot.svg"
  14905. }
  14906. },
  14907. },
  14908. [
  14909. {
  14910. name: "Base",
  14911. height: math.unit(6 + 5 / 12, "feet"),
  14912. default: true
  14913. },
  14914. {
  14915. name: "Macro",
  14916. height: math.unit(300, "feet")
  14917. },
  14918. {
  14919. name: "Megamacro",
  14920. height: math.unit(2, "miles")
  14921. },
  14922. {
  14923. name: "Gigamacro",
  14924. height: math.unit(1000, "miles")
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(2, "meters"),
  14933. weight: math.unit(500, "kg"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/coatl/front.svg",
  14937. extra: 3948 / 3500,
  14938. bottom: 0.082
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(4, "meters")
  14946. },
  14947. {
  14948. name: "Macro",
  14949. height: math.unit(100, "meters"),
  14950. default: true
  14951. },
  14952. {
  14953. name: "Macro+",
  14954. height: math.unit(300, "meters")
  14955. },
  14956. {
  14957. name: "Megamacro",
  14958. height: math.unit(3, "gigameters")
  14959. },
  14960. {
  14961. name: "Megamacro+",
  14962. height: math.unit(300, "terameters")
  14963. },
  14964. {
  14965. name: "Megamacro++",
  14966. height: math.unit(3, "lightyears")
  14967. },
  14968. ]
  14969. ))
  14970. characterMakers.push(() => makeCharacter(
  14971. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14972. {
  14973. front: {
  14974. height: math.unit(6, "feet"),
  14975. weight: math.unit(50, "kg"),
  14976. name: "front",
  14977. image: {
  14978. source: "./media/characters/shiroryu/front.svg",
  14979. extra: 1990 / 1935
  14980. }
  14981. },
  14982. },
  14983. [
  14984. {
  14985. name: "Mortal Mingling",
  14986. height: math.unit(3, "meters")
  14987. },
  14988. {
  14989. name: "Kaiju-ish",
  14990. height: math.unit(250, "meters")
  14991. },
  14992. {
  14993. name: "Somewhat Godly",
  14994. height: math.unit(400, "km"),
  14995. default: true
  14996. },
  14997. {
  14998. name: "Planetary",
  14999. height: math.unit(300, "megameters")
  15000. },
  15001. {
  15002. name: "Galaxy-dwarfing",
  15003. height: math.unit(450, "kiloparsecs")
  15004. },
  15005. {
  15006. name: "Universe Eater",
  15007. height: math.unit(150, "gigaparsecs")
  15008. },
  15009. {
  15010. name: "Almost Immeasurable",
  15011. height: math.unit(1.3e266, "yottaparsecs")
  15012. },
  15013. ]
  15014. ))
  15015. characterMakers.push(() => makeCharacter(
  15016. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15017. {
  15018. front: {
  15019. height: math.unit(6, "feet"),
  15020. weight: math.unit(150, "lb"),
  15021. name: "Front",
  15022. image: {
  15023. source: "./media/characters/umeko/front.svg",
  15024. extra: 1,
  15025. bottom: 0.019
  15026. }
  15027. },
  15028. frontArmored: {
  15029. height: math.unit(6, "feet"),
  15030. weight: math.unit(150, "lb"),
  15031. name: "Front (Armored)",
  15032. image: {
  15033. source: "./media/characters/umeko/front-armored.svg",
  15034. extra: 1,
  15035. bottom: 0.021
  15036. }
  15037. },
  15038. },
  15039. [
  15040. {
  15041. name: "Macro",
  15042. height: math.unit(220, "feet"),
  15043. default: true
  15044. },
  15045. {
  15046. name: "Guardian Dragon",
  15047. height: math.unit(50, "miles")
  15048. },
  15049. {
  15050. name: "Cosmic",
  15051. height: math.unit(800000, "miles")
  15052. },
  15053. ]
  15054. ))
  15055. characterMakers.push(() => makeCharacter(
  15056. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15057. {
  15058. front: {
  15059. height: math.unit(6, "feet"),
  15060. weight: math.unit(150, "lb"),
  15061. name: "Front",
  15062. image: {
  15063. source: "./media/characters/cassidy/front.svg",
  15064. extra: 810/808,
  15065. bottom: 41/851
  15066. }
  15067. },
  15068. },
  15069. [
  15070. {
  15071. name: "Canon Height",
  15072. height: math.unit(120, "feet"),
  15073. default: true
  15074. },
  15075. {
  15076. name: "Macro+",
  15077. height: math.unit(400, "feet")
  15078. },
  15079. {
  15080. name: "Macro++",
  15081. height: math.unit(4000, "feet")
  15082. },
  15083. {
  15084. name: "Megamacro",
  15085. height: math.unit(3, "miles")
  15086. },
  15087. ]
  15088. ))
  15089. characterMakers.push(() => makeCharacter(
  15090. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15091. {
  15092. front: {
  15093. height: math.unit(6, "feet"),
  15094. weight: math.unit(150, "lb"),
  15095. name: "Front",
  15096. image: {
  15097. source: "./media/characters/isaac/front.svg",
  15098. extra: 896 / 815,
  15099. bottom: 0.11
  15100. }
  15101. },
  15102. },
  15103. [
  15104. {
  15105. name: "Human Size",
  15106. height: math.unit(8, "feet"),
  15107. default: true
  15108. },
  15109. {
  15110. name: "Macro",
  15111. height: math.unit(400, "feet")
  15112. },
  15113. {
  15114. name: "Megamacro",
  15115. height: math.unit(50, "miles")
  15116. },
  15117. {
  15118. name: "Canon Height",
  15119. height: math.unit(200, "AU")
  15120. },
  15121. ]
  15122. ))
  15123. characterMakers.push(() => makeCharacter(
  15124. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15125. {
  15126. front: {
  15127. height: math.unit(6, "feet"),
  15128. weight: math.unit(72, "kg"),
  15129. name: "Front",
  15130. image: {
  15131. source: "./media/characters/sleekit/front.svg",
  15132. extra: 4693 / 4487,
  15133. bottom: 0.012
  15134. }
  15135. },
  15136. },
  15137. [
  15138. {
  15139. name: "Minimum Height",
  15140. height: math.unit(10, "meters")
  15141. },
  15142. {
  15143. name: "Smaller",
  15144. height: math.unit(25, "meters")
  15145. },
  15146. {
  15147. name: "Larger",
  15148. height: math.unit(38, "meters"),
  15149. default: true
  15150. },
  15151. {
  15152. name: "Maximum height",
  15153. height: math.unit(100, "meters")
  15154. },
  15155. ]
  15156. ))
  15157. characterMakers.push(() => makeCharacter(
  15158. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15159. {
  15160. front: {
  15161. height: math.unit(6, "feet"),
  15162. weight: math.unit(150, "lb"),
  15163. name: "Front",
  15164. image: {
  15165. source: "./media/characters/nillia/front.svg",
  15166. extra: 2195 / 2037,
  15167. bottom: 0.005
  15168. }
  15169. },
  15170. back: {
  15171. height: math.unit(6, "feet"),
  15172. weight: math.unit(150, "lb"),
  15173. name: "Back",
  15174. image: {
  15175. source: "./media/characters/nillia/back.svg",
  15176. extra: 2195 / 2037,
  15177. bottom: 0.005
  15178. }
  15179. },
  15180. },
  15181. [
  15182. {
  15183. name: "Canon Height",
  15184. height: math.unit(489, "feet"),
  15185. default: true
  15186. }
  15187. ]
  15188. ))
  15189. characterMakers.push(() => makeCharacter(
  15190. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15191. {
  15192. front: {
  15193. height: math.unit(6, "feet"),
  15194. weight: math.unit(150, "lb"),
  15195. name: "Front",
  15196. image: {
  15197. source: "./media/characters/mesmyriza/front.svg",
  15198. extra: 2067 / 1784,
  15199. bottom: 0.035
  15200. }
  15201. },
  15202. foot: {
  15203. height: math.unit(6 / (250 / 35), "feet"),
  15204. name: "Foot",
  15205. image: {
  15206. source: "./media/characters/mesmyriza/foot.svg"
  15207. }
  15208. },
  15209. },
  15210. [
  15211. {
  15212. name: "Macro",
  15213. height: math.unit(457, "meters"),
  15214. default: true
  15215. },
  15216. {
  15217. name: "Megamacro",
  15218. height: math.unit(8, "megameters")
  15219. },
  15220. ]
  15221. ))
  15222. characterMakers.push(() => makeCharacter(
  15223. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15224. {
  15225. front: {
  15226. height: math.unit(6, "feet"),
  15227. weight: math.unit(250, "lb"),
  15228. name: "Front",
  15229. image: {
  15230. source: "./media/characters/saudade/front.svg",
  15231. extra: 1172 / 1139,
  15232. bottom: 0.035
  15233. }
  15234. },
  15235. },
  15236. [
  15237. {
  15238. name: "Micro",
  15239. height: math.unit(3, "inches")
  15240. },
  15241. {
  15242. name: "Normal",
  15243. height: math.unit(6, "feet"),
  15244. default: true
  15245. },
  15246. {
  15247. name: "Macro",
  15248. height: math.unit(50, "feet")
  15249. },
  15250. {
  15251. name: "Megamacro",
  15252. height: math.unit(2800, "feet")
  15253. },
  15254. ]
  15255. ))
  15256. characterMakers.push(() => makeCharacter(
  15257. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15258. {
  15259. front: {
  15260. height: math.unit(5 + 4 / 12, "feet"),
  15261. weight: math.unit(100, "lb"),
  15262. name: "Front",
  15263. image: {
  15264. source: "./media/characters/keireer/front.svg",
  15265. extra: 716 / 666,
  15266. bottom: 0.05
  15267. }
  15268. },
  15269. },
  15270. [
  15271. {
  15272. name: "Normal",
  15273. height: math.unit(5 + 4 / 12, "feet"),
  15274. default: true
  15275. },
  15276. ]
  15277. ))
  15278. characterMakers.push(() => makeCharacter(
  15279. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15280. {
  15281. front: {
  15282. height: math.unit(5.5, "feet"),
  15283. weight: math.unit(90, "kg"),
  15284. name: "Front",
  15285. image: {
  15286. source: "./media/characters/mirja/front.svg",
  15287. extra: 1452/1262,
  15288. bottom: 67/1519
  15289. }
  15290. },
  15291. frontDressed: {
  15292. height: math.unit(5.5, "feet"),
  15293. weight: math.unit(90, "lb"),
  15294. name: "Front (Dressed)",
  15295. image: {
  15296. source: "./media/characters/mirja/dressed.svg",
  15297. extra: 1452/1262,
  15298. bottom: 67/1519
  15299. }
  15300. },
  15301. back: {
  15302. height: math.unit(6, "feet"),
  15303. weight: math.unit(90, "lb"),
  15304. name: "Back",
  15305. image: {
  15306. source: "./media/characters/mirja/back.svg",
  15307. extra: 1892/1795,
  15308. bottom: 48/1940
  15309. }
  15310. },
  15311. maw: {
  15312. height: math.unit(1.312, "feet"),
  15313. name: "Maw",
  15314. image: {
  15315. source: "./media/characters/mirja/maw.svg"
  15316. }
  15317. },
  15318. paw: {
  15319. height: math.unit(1.15, "feet"),
  15320. name: "Paw",
  15321. image: {
  15322. source: "./media/characters/mirja/paw.svg"
  15323. }
  15324. },
  15325. },
  15326. [
  15327. {
  15328. name: "\"Incognito\"",
  15329. height: math.unit(3, "meters")
  15330. },
  15331. {
  15332. name: "Strolling Size",
  15333. height: math.unit(15, "km")
  15334. },
  15335. {
  15336. name: "Larger Strolling Size",
  15337. height: math.unit(400, "km")
  15338. },
  15339. {
  15340. name: "Preferred Size",
  15341. height: math.unit(5000, "km"),
  15342. default: true
  15343. },
  15344. {
  15345. name: "True Size",
  15346. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15347. },
  15348. ]
  15349. ))
  15350. characterMakers.push(() => makeCharacter(
  15351. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15352. {
  15353. front: {
  15354. height: math.unit(15, "feet"),
  15355. weight: math.unit(880, "kg"),
  15356. name: "Front",
  15357. image: {
  15358. source: "./media/characters/nightraver/front.svg",
  15359. extra: 2444 / 2160,
  15360. bottom: 0.027
  15361. }
  15362. },
  15363. back: {
  15364. height: math.unit(15, "feet"),
  15365. weight: math.unit(880, "kg"),
  15366. name: "Back",
  15367. image: {
  15368. source: "./media/characters/nightraver/back.svg",
  15369. extra: 2309 / 2180,
  15370. bottom: 0.005
  15371. }
  15372. },
  15373. sole: {
  15374. height: math.unit(2.878, "feet"),
  15375. name: "Sole",
  15376. image: {
  15377. source: "./media/characters/nightraver/sole.svg"
  15378. }
  15379. },
  15380. foot: {
  15381. height: math.unit(2.285, "feet"),
  15382. name: "Foot",
  15383. image: {
  15384. source: "./media/characters/nightraver/foot.svg"
  15385. }
  15386. },
  15387. maw: {
  15388. height: math.unit(2.67, "feet"),
  15389. name: "Maw",
  15390. image: {
  15391. source: "./media/characters/nightraver/maw.svg"
  15392. }
  15393. },
  15394. },
  15395. [
  15396. {
  15397. name: "Micro",
  15398. height: math.unit(1, "cm")
  15399. },
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(15, "feet"),
  15403. default: true
  15404. },
  15405. {
  15406. name: "Macro",
  15407. height: math.unit(300, "feet")
  15408. },
  15409. {
  15410. name: "Megamacro",
  15411. height: math.unit(300, "miles")
  15412. },
  15413. {
  15414. name: "Gigamacro",
  15415. height: math.unit(10000, "miles")
  15416. },
  15417. ]
  15418. ))
  15419. characterMakers.push(() => makeCharacter(
  15420. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15421. {
  15422. side: {
  15423. height: math.unit(2, "inches"),
  15424. weight: math.unit(5, "grams"),
  15425. name: "Side",
  15426. image: {
  15427. source: "./media/characters/arc/side.svg"
  15428. }
  15429. },
  15430. },
  15431. [
  15432. {
  15433. name: "Micro",
  15434. height: math.unit(2, "inches"),
  15435. default: true
  15436. },
  15437. ]
  15438. ))
  15439. characterMakers.push(() => makeCharacter(
  15440. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15441. {
  15442. front: {
  15443. height: math.unit(1.1938, "meters"),
  15444. weight: math.unit(54, "kg"),
  15445. name: "Front",
  15446. image: {
  15447. source: "./media/characters/nebula-shahar/front.svg",
  15448. extra: 1642 / 1436,
  15449. bottom: 0.06
  15450. }
  15451. },
  15452. },
  15453. [
  15454. {
  15455. name: "Megamicro",
  15456. height: math.unit(0.3, "mm")
  15457. },
  15458. {
  15459. name: "Micro",
  15460. height: math.unit(3, "cm")
  15461. },
  15462. {
  15463. name: "Normal",
  15464. height: math.unit(138, "cm"),
  15465. default: true
  15466. },
  15467. {
  15468. name: "Macro",
  15469. height: math.unit(30, "m")
  15470. },
  15471. ]
  15472. ))
  15473. characterMakers.push(() => makeCharacter(
  15474. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15475. {
  15476. front: {
  15477. height: math.unit(5.24, "feet"),
  15478. weight: math.unit(150, "lb"),
  15479. name: "Front",
  15480. image: {
  15481. source: "./media/characters/shayla/front.svg",
  15482. extra: 1512 / 1414,
  15483. bottom: 0.01
  15484. }
  15485. },
  15486. back: {
  15487. height: math.unit(5.24, "feet"),
  15488. weight: math.unit(150, "lb"),
  15489. name: "Back",
  15490. image: {
  15491. source: "./media/characters/shayla/back.svg",
  15492. extra: 1512 / 1414
  15493. }
  15494. },
  15495. hand: {
  15496. height: math.unit(0.7781496062992126, "feet"),
  15497. name: "Hand",
  15498. image: {
  15499. source: "./media/characters/shayla/hand.svg"
  15500. }
  15501. },
  15502. foot: {
  15503. height: math.unit(1.4206036745406823, "feet"),
  15504. name: "Foot",
  15505. image: {
  15506. source: "./media/characters/shayla/foot.svg"
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Micro",
  15513. height: math.unit(0.32, "feet")
  15514. },
  15515. {
  15516. name: "Normal",
  15517. height: math.unit(5.24, "feet"),
  15518. default: true
  15519. },
  15520. {
  15521. name: "Macro",
  15522. height: math.unit(492.12, "feet")
  15523. },
  15524. {
  15525. name: "Megamacro",
  15526. height: math.unit(186.41, "miles")
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(2.2, "m"),
  15535. weight: math.unit(120, "kg"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/pia-jr/front.svg",
  15539. extra: 1000 / 970,
  15540. bottom: 0.035
  15541. }
  15542. },
  15543. hand: {
  15544. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15545. name: "Hand",
  15546. image: {
  15547. source: "./media/characters/pia-jr/hand.svg"
  15548. }
  15549. },
  15550. paw: {
  15551. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15552. name: "Paw",
  15553. image: {
  15554. source: "./media/characters/pia-jr/paw.svg"
  15555. }
  15556. },
  15557. },
  15558. [
  15559. {
  15560. name: "Micro",
  15561. height: math.unit(1.2, "cm")
  15562. },
  15563. {
  15564. name: "Normal",
  15565. height: math.unit(2.2, "m"),
  15566. default: true
  15567. },
  15568. {
  15569. name: "Macro",
  15570. height: math.unit(180, "m")
  15571. },
  15572. {
  15573. name: "Megamacro",
  15574. height: math.unit(420, "km")
  15575. },
  15576. ]
  15577. ))
  15578. characterMakers.push(() => makeCharacter(
  15579. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15580. {
  15581. front: {
  15582. height: math.unit(2, "m"),
  15583. weight: math.unit(115, "kg"),
  15584. name: "Front",
  15585. image: {
  15586. source: "./media/characters/pia-sr/front.svg",
  15587. extra: 760 / 730,
  15588. bottom: 0.015
  15589. }
  15590. },
  15591. back: {
  15592. height: math.unit(2, "m"),
  15593. weight: math.unit(115, "kg"),
  15594. name: "Back",
  15595. image: {
  15596. source: "./media/characters/pia-sr/back.svg",
  15597. extra: 760 / 730,
  15598. bottom: 0.01
  15599. }
  15600. },
  15601. hand: {
  15602. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15603. name: "Hand",
  15604. image: {
  15605. source: "./media/characters/pia-sr/hand.svg"
  15606. }
  15607. },
  15608. foot: {
  15609. height: math.unit(1.83, "feet"),
  15610. name: "Foot",
  15611. image: {
  15612. source: "./media/characters/pia-sr/foot.svg"
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Micro",
  15619. height: math.unit(88, "mm")
  15620. },
  15621. {
  15622. name: "Normal",
  15623. height: math.unit(2, "m"),
  15624. default: true
  15625. },
  15626. {
  15627. name: "Macro",
  15628. height: math.unit(200, "m")
  15629. },
  15630. {
  15631. name: "Megamacro",
  15632. height: math.unit(420, "km")
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15638. {
  15639. front: {
  15640. height: math.unit(8 + 2 / 12, "feet"),
  15641. weight: math.unit(300, "lb"),
  15642. name: "Front",
  15643. image: {
  15644. source: "./media/characters/kibibyte/front.svg",
  15645. extra: 2221 / 2098,
  15646. bottom: 0.04
  15647. }
  15648. },
  15649. },
  15650. [
  15651. {
  15652. name: "Normal",
  15653. height: math.unit(8 + 2 / 12, "feet"),
  15654. default: true
  15655. },
  15656. {
  15657. name: "Socialable Macro",
  15658. height: math.unit(50, "feet")
  15659. },
  15660. {
  15661. name: "Macro",
  15662. height: math.unit(300, "feet")
  15663. },
  15664. {
  15665. name: "Megamacro",
  15666. height: math.unit(500, "miles")
  15667. },
  15668. ]
  15669. ))
  15670. characterMakers.push(() => makeCharacter(
  15671. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15672. {
  15673. front: {
  15674. height: math.unit(6, "feet"),
  15675. weight: math.unit(150, "lb"),
  15676. name: "Front",
  15677. image: {
  15678. source: "./media/characters/felix/front.svg",
  15679. extra: 762 / 722,
  15680. bottom: 0.02
  15681. }
  15682. },
  15683. frontClothed: {
  15684. height: math.unit(6, "feet"),
  15685. weight: math.unit(150, "lb"),
  15686. name: "Front (Clothed)",
  15687. image: {
  15688. source: "./media/characters/felix/front-clothed.svg",
  15689. extra: 762 / 722,
  15690. bottom: 0.02
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Normal",
  15697. height: math.unit(6 + 8 / 12, "feet"),
  15698. default: true
  15699. },
  15700. {
  15701. name: "Macro",
  15702. height: math.unit(2600, "feet")
  15703. },
  15704. {
  15705. name: "Megamacro",
  15706. height: math.unit(450, "miles")
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15712. {
  15713. front: {
  15714. height: math.unit(6 + 1 / 12, "feet"),
  15715. weight: math.unit(250, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/tobo/front.svg",
  15719. extra: 608 / 586,
  15720. bottom: 0.023
  15721. }
  15722. },
  15723. back: {
  15724. height: math.unit(6 + 1 / 12, "feet"),
  15725. weight: math.unit(250, "lb"),
  15726. name: "Back",
  15727. image: {
  15728. source: "./media/characters/tobo/back.svg",
  15729. extra: 608 / 586
  15730. }
  15731. },
  15732. },
  15733. [
  15734. {
  15735. name: "Nano",
  15736. height: math.unit(2, "nm")
  15737. },
  15738. {
  15739. name: "Megamicro",
  15740. height: math.unit(0.1, "mm")
  15741. },
  15742. {
  15743. name: "Micro",
  15744. height: math.unit(1, "inch"),
  15745. default: true
  15746. },
  15747. {
  15748. name: "Human-sized",
  15749. height: math.unit(6 + 1 / 12, "feet")
  15750. },
  15751. {
  15752. name: "Macro",
  15753. height: math.unit(250, "feet")
  15754. },
  15755. {
  15756. name: "Megamacro",
  15757. height: math.unit(75, "miles")
  15758. },
  15759. {
  15760. name: "Texas-sized",
  15761. height: math.unit(750, "miles")
  15762. },
  15763. {
  15764. name: "Teramacro",
  15765. height: math.unit(50000, "miles")
  15766. },
  15767. ]
  15768. ))
  15769. characterMakers.push(() => makeCharacter(
  15770. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15771. {
  15772. front: {
  15773. height: math.unit(6, "feet"),
  15774. weight: math.unit(269, "lb"),
  15775. name: "Front",
  15776. image: {
  15777. source: "./media/characters/danny-kapowsky/front.svg",
  15778. extra: 766 / 736,
  15779. bottom: 0.044
  15780. }
  15781. },
  15782. back: {
  15783. height: math.unit(6, "feet"),
  15784. weight: math.unit(269, "lb"),
  15785. name: "Back",
  15786. image: {
  15787. source: "./media/characters/danny-kapowsky/back.svg",
  15788. extra: 797 / 760,
  15789. bottom: 0.025
  15790. }
  15791. },
  15792. },
  15793. [
  15794. {
  15795. name: "Macro",
  15796. height: math.unit(150, "feet"),
  15797. default: true
  15798. },
  15799. {
  15800. name: "Macro+",
  15801. height: math.unit(200, "feet")
  15802. },
  15803. {
  15804. name: "Macro++",
  15805. height: math.unit(300, "feet")
  15806. },
  15807. {
  15808. name: "Macro+++",
  15809. height: math.unit(400, "feet")
  15810. },
  15811. ]
  15812. ))
  15813. characterMakers.push(() => makeCharacter(
  15814. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15815. {
  15816. side: {
  15817. height: math.unit(6, "feet"),
  15818. weight: math.unit(170, "lb"),
  15819. name: "Side",
  15820. image: {
  15821. source: "./media/characters/finn/side.svg",
  15822. extra: 1953 / 1807,
  15823. bottom: 0.057
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Megamacro",
  15830. height: math.unit(14445, "feet"),
  15831. default: true
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15837. {
  15838. front: {
  15839. height: math.unit(5 + 6 / 12, "feet"),
  15840. weight: math.unit(125, "lb"),
  15841. name: "Front",
  15842. image: {
  15843. source: "./media/characters/roy/front.svg",
  15844. extra: 1,
  15845. bottom: 0.11
  15846. }
  15847. },
  15848. },
  15849. [
  15850. {
  15851. name: "Micro",
  15852. height: math.unit(3, "inches"),
  15853. default: true
  15854. },
  15855. {
  15856. name: "Normal",
  15857. height: math.unit(5 + 6 / 12, "feet")
  15858. },
  15859. {
  15860. name: "Lesser Macro",
  15861. height: math.unit(60, "feet")
  15862. },
  15863. {
  15864. name: "Greater Macro",
  15865. height: math.unit(120, "feet")
  15866. },
  15867. ]
  15868. ))
  15869. characterMakers.push(() => makeCharacter(
  15870. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15871. {
  15872. front: {
  15873. height: math.unit(6, "feet"),
  15874. weight: math.unit(100, "lb"),
  15875. name: "Front",
  15876. image: {
  15877. source: "./media/characters/aevsivs/front.svg",
  15878. extra: 1,
  15879. bottom: 0.03
  15880. }
  15881. },
  15882. back: {
  15883. height: math.unit(6, "feet"),
  15884. weight: math.unit(100, "lb"),
  15885. name: "Back",
  15886. image: {
  15887. source: "./media/characters/aevsivs/back.svg"
  15888. }
  15889. },
  15890. },
  15891. [
  15892. {
  15893. name: "Micro",
  15894. height: math.unit(2, "inches"),
  15895. default: true
  15896. },
  15897. {
  15898. name: "Normal",
  15899. height: math.unit(5, "feet")
  15900. },
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15905. {
  15906. front: {
  15907. height: math.unit(5 + 7 / 12, "feet"),
  15908. weight: math.unit(159, "lb"),
  15909. name: "Front",
  15910. image: {
  15911. source: "./media/characters/hildegard/front.svg",
  15912. extra: 289 / 269,
  15913. bottom: 7.63 / 297.8
  15914. }
  15915. },
  15916. back: {
  15917. height: math.unit(5 + 7 / 12, "feet"),
  15918. weight: math.unit(159, "lb"),
  15919. name: "Back",
  15920. image: {
  15921. source: "./media/characters/hildegard/back.svg",
  15922. extra: 280 / 260,
  15923. bottom: 2.3 / 282
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Normal",
  15930. height: math.unit(5 + 7 / 12, "feet"),
  15931. default: true
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15937. {
  15938. bernard: {
  15939. height: math.unit(2 + 7 / 12, "feet"),
  15940. weight: math.unit(66, "lb"),
  15941. name: "Bernard",
  15942. rename: true,
  15943. image: {
  15944. source: "./media/characters/bernard-wilder/bernard.svg",
  15945. extra: 192 / 128,
  15946. bottom: 0.05
  15947. }
  15948. },
  15949. wilder: {
  15950. height: math.unit(5 + 8 / 12, "feet"),
  15951. weight: math.unit(143, "lb"),
  15952. name: "Wilder",
  15953. rename: true,
  15954. image: {
  15955. source: "./media/characters/bernard-wilder/wilder.svg",
  15956. extra: 361 / 312,
  15957. bottom: 0.02
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Normal",
  15964. height: math.unit(2 + 7 / 12, "feet"),
  15965. default: true
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15971. {
  15972. anthro: {
  15973. height: math.unit(6 + 1 / 12, "feet"),
  15974. weight: math.unit(155, "lb"),
  15975. name: "Anthro",
  15976. image: {
  15977. source: "./media/characters/hearth/anthro.svg",
  15978. extra: 1178/1136,
  15979. bottom: 28/1206
  15980. }
  15981. },
  15982. feral: {
  15983. height: math.unit(3.78, "feet"),
  15984. weight: math.unit(35, "kg"),
  15985. name: "Feral",
  15986. image: {
  15987. source: "./media/characters/hearth/feral.svg",
  15988. extra: 153 / 135,
  15989. bottom: 0.03
  15990. }
  15991. },
  15992. },
  15993. [
  15994. {
  15995. name: "Normal",
  15996. height: math.unit(6 + 1 / 12, "feet"),
  15997. default: true
  15998. },
  15999. ]
  16000. ))
  16001. characterMakers.push(() => makeCharacter(
  16002. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16003. {
  16004. front: {
  16005. height: math.unit(6, "feet"),
  16006. weight: math.unit(182, "lb"),
  16007. name: "Front",
  16008. image: {
  16009. source: "./media/characters/ingrid/front.svg",
  16010. extra: 294 / 268,
  16011. bottom: 0.027
  16012. }
  16013. },
  16014. },
  16015. [
  16016. {
  16017. name: "Normal",
  16018. height: math.unit(6, "feet"),
  16019. default: true
  16020. },
  16021. ]
  16022. ))
  16023. characterMakers.push(() => makeCharacter(
  16024. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16025. {
  16026. eevee: {
  16027. height: math.unit(2 + 10 / 12, "feet"),
  16028. weight: math.unit(86, "lb"),
  16029. name: "Malgam",
  16030. image: {
  16031. source: "./media/characters/malgam/eevee.svg",
  16032. extra: 952/784,
  16033. bottom: 38/990
  16034. }
  16035. },
  16036. sylveon: {
  16037. height: math.unit(4, "feet"),
  16038. weight: math.unit(101, "lb"),
  16039. name: "Future Malgam",
  16040. rename: true,
  16041. image: {
  16042. source: "./media/characters/malgam/sylveon.svg",
  16043. extra: 371 / 325,
  16044. bottom: 0.015
  16045. }
  16046. },
  16047. gigantamax: {
  16048. height: math.unit(50, "feet"),
  16049. name: "Gigantamax Malgam",
  16050. rename: true,
  16051. image: {
  16052. source: "./media/characters/malgam/gigantamax.svg"
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Normal",
  16059. height: math.unit(2 + 10 / 12, "feet"),
  16060. default: true
  16061. },
  16062. ]
  16063. ))
  16064. characterMakers.push(() => makeCharacter(
  16065. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16066. {
  16067. front: {
  16068. height: math.unit(5 + 11 / 12, "feet"),
  16069. weight: math.unit(188, "lb"),
  16070. name: "Front",
  16071. image: {
  16072. source: "./media/characters/fleur/front.svg",
  16073. extra: 309 / 283,
  16074. bottom: 0.007
  16075. }
  16076. },
  16077. },
  16078. [
  16079. {
  16080. name: "Normal",
  16081. height: math.unit(5 + 11 / 12, "feet"),
  16082. default: true
  16083. },
  16084. ]
  16085. ))
  16086. characterMakers.push(() => makeCharacter(
  16087. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16088. {
  16089. front: {
  16090. height: math.unit(5 + 4 / 12, "feet"),
  16091. weight: math.unit(122, "lb"),
  16092. name: "Front",
  16093. image: {
  16094. source: "./media/characters/jude/front.svg",
  16095. extra: 288 / 273,
  16096. bottom: 0.03
  16097. }
  16098. },
  16099. },
  16100. [
  16101. {
  16102. name: "Normal",
  16103. height: math.unit(5 + 4 / 12, "feet"),
  16104. default: true
  16105. },
  16106. ]
  16107. ))
  16108. characterMakers.push(() => makeCharacter(
  16109. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16110. {
  16111. front: {
  16112. height: math.unit(5 + 11 / 12, "feet"),
  16113. weight: math.unit(190, "lb"),
  16114. name: "Front",
  16115. image: {
  16116. source: "./media/characters/seara/front.svg",
  16117. extra: 1,
  16118. bottom: 0.05
  16119. }
  16120. },
  16121. },
  16122. [
  16123. {
  16124. name: "Normal",
  16125. height: math.unit(5 + 11 / 12, "feet"),
  16126. default: true
  16127. },
  16128. ]
  16129. ))
  16130. characterMakers.push(() => makeCharacter(
  16131. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16132. {
  16133. front: {
  16134. height: math.unit(16 + 5 / 12, "feet"),
  16135. weight: math.unit(524, "lb"),
  16136. name: "Front",
  16137. image: {
  16138. source: "./media/characters/caspian-lugia/front.svg",
  16139. extra: 1,
  16140. bottom: 0.04
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Normal",
  16147. height: math.unit(16 + 5 / 12, "feet"),
  16148. default: true
  16149. },
  16150. ]
  16151. ))
  16152. characterMakers.push(() => makeCharacter(
  16153. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16154. {
  16155. front: {
  16156. height: math.unit(5 + 7 / 12, "feet"),
  16157. weight: math.unit(170, "lb"),
  16158. name: "Front",
  16159. image: {
  16160. source: "./media/characters/mika/front.svg",
  16161. extra: 1,
  16162. bottom: 0.016
  16163. }
  16164. },
  16165. },
  16166. [
  16167. {
  16168. name: "Normal",
  16169. height: math.unit(5 + 7 / 12, "feet"),
  16170. default: true
  16171. },
  16172. ]
  16173. ))
  16174. characterMakers.push(() => makeCharacter(
  16175. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16176. {
  16177. front: {
  16178. height: math.unit(6 + 2 / 12, "feet"),
  16179. weight: math.unit(268, "lb"),
  16180. name: "Front",
  16181. image: {
  16182. source: "./media/characters/sol/front.svg",
  16183. extra: 247 / 231,
  16184. bottom: 0.05
  16185. }
  16186. },
  16187. },
  16188. [
  16189. {
  16190. name: "Normal",
  16191. height: math.unit(6 + 2 / 12, "feet"),
  16192. default: true
  16193. },
  16194. ]
  16195. ))
  16196. characterMakers.push(() => makeCharacter(
  16197. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16198. {
  16199. buizel: {
  16200. height: math.unit(2 + 5 / 12, "feet"),
  16201. weight: math.unit(87, "lb"),
  16202. name: "Front",
  16203. image: {
  16204. source: "./media/characters/umiko/buizel.svg",
  16205. extra: 172 / 157,
  16206. bottom: 0.01
  16207. },
  16208. form: "buizel",
  16209. default: true
  16210. },
  16211. floatzel: {
  16212. height: math.unit(5 + 9 / 12, "feet"),
  16213. weight: math.unit(250, "lb"),
  16214. name: "Front",
  16215. image: {
  16216. source: "./media/characters/umiko/floatzel.svg",
  16217. extra: 1076/1006,
  16218. bottom: 15/1091
  16219. },
  16220. form: "floatzel",
  16221. default: true
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Normal",
  16227. height: math.unit(2 + 5 / 12, "feet"),
  16228. form: "buizel",
  16229. default: true
  16230. },
  16231. {
  16232. name: "Normal",
  16233. height: math.unit(5 + 9 / 12, "feet"),
  16234. form: "floatzel",
  16235. default: true
  16236. },
  16237. ],
  16238. {
  16239. "buizel": {
  16240. name: "Buizel"
  16241. },
  16242. "floatzel": {
  16243. name: "Floatzel",
  16244. default: true
  16245. }
  16246. }
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16250. {
  16251. front: {
  16252. height: math.unit(6 + 2 / 12, "feet"),
  16253. weight: math.unit(146, "lb"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/iliac/front.svg",
  16257. extra: 389 / 365,
  16258. bottom: 0.035
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Normal",
  16265. height: math.unit(6 + 2 / 12, "feet"),
  16266. default: true
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16272. {
  16273. front: {
  16274. height: math.unit(6, "feet"),
  16275. weight: math.unit(170, "lb"),
  16276. name: "Front",
  16277. image: {
  16278. source: "./media/characters/topaz/front.svg",
  16279. extra: 317 / 303,
  16280. bottom: 0.055
  16281. }
  16282. },
  16283. },
  16284. [
  16285. {
  16286. name: "Normal",
  16287. height: math.unit(6, "feet"),
  16288. default: true
  16289. },
  16290. ]
  16291. ))
  16292. characterMakers.push(() => makeCharacter(
  16293. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16294. {
  16295. front: {
  16296. height: math.unit(5 + 11 / 12, "feet"),
  16297. weight: math.unit(144, "lb"),
  16298. name: "Front",
  16299. image: {
  16300. source: "./media/characters/gabriel/front.svg",
  16301. extra: 285 / 262,
  16302. bottom: 0.004
  16303. }
  16304. },
  16305. },
  16306. [
  16307. {
  16308. name: "Normal",
  16309. height: math.unit(5 + 11 / 12, "feet"),
  16310. default: true
  16311. },
  16312. ]
  16313. ))
  16314. characterMakers.push(() => makeCharacter(
  16315. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16316. {
  16317. side: {
  16318. height: math.unit(6 + 5 / 12, "feet"),
  16319. weight: math.unit(300, "lb"),
  16320. name: "Side",
  16321. image: {
  16322. source: "./media/characters/tempest-suicune/side.svg",
  16323. extra: 195 / 154,
  16324. bottom: 0.04
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Normal",
  16331. height: math.unit(6 + 5 / 12, "feet"),
  16332. default: true
  16333. },
  16334. ]
  16335. ))
  16336. characterMakers.push(() => makeCharacter(
  16337. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16338. {
  16339. front: {
  16340. height: math.unit(7 + 2 / 12, "feet"),
  16341. weight: math.unit(322, "lb"),
  16342. name: "Front",
  16343. image: {
  16344. source: "./media/characters/vulcan/front.svg",
  16345. extra: 154 / 147,
  16346. bottom: 0.04
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Normal",
  16353. height: math.unit(7 + 2 / 12, "feet"),
  16354. default: true
  16355. },
  16356. ]
  16357. ))
  16358. characterMakers.push(() => makeCharacter(
  16359. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16360. {
  16361. front: {
  16362. height: math.unit(5 + 10 / 12, "feet"),
  16363. weight: math.unit(264, "lb"),
  16364. name: "Front",
  16365. image: {
  16366. source: "./media/characters/gault/front.svg",
  16367. extra: 161 / 140,
  16368. bottom: 0.028
  16369. }
  16370. },
  16371. },
  16372. [
  16373. {
  16374. name: "Normal",
  16375. height: math.unit(5 + 10 / 12, "feet"),
  16376. default: true
  16377. },
  16378. ]
  16379. ))
  16380. characterMakers.push(() => makeCharacter(
  16381. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16382. {
  16383. front: {
  16384. height: math.unit(6, "feet"),
  16385. weight: math.unit(150, "lb"),
  16386. name: "Front",
  16387. image: {
  16388. source: "./media/characters/shard/front.svg",
  16389. extra: 273 / 238,
  16390. bottom: 0.02
  16391. }
  16392. },
  16393. },
  16394. [
  16395. {
  16396. name: "Normal",
  16397. height: math.unit(3 + 6 / 12, "feet"),
  16398. default: true
  16399. },
  16400. ]
  16401. ))
  16402. characterMakers.push(() => makeCharacter(
  16403. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16404. {
  16405. front: {
  16406. height: math.unit(5 + 11 / 12, "feet"),
  16407. weight: math.unit(146, "lb"),
  16408. name: "Front",
  16409. image: {
  16410. source: "./media/characters/ashe/front.svg",
  16411. extra: 400 / 373,
  16412. bottom: 0.01
  16413. }
  16414. },
  16415. },
  16416. [
  16417. {
  16418. name: "Normal",
  16419. height: math.unit(5 + 11 / 12, "feet"),
  16420. default: true
  16421. },
  16422. ]
  16423. ))
  16424. characterMakers.push(() => makeCharacter(
  16425. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16426. {
  16427. front: {
  16428. height: math.unit(5 + 5 / 12, "feet"),
  16429. weight: math.unit(135, "lb"),
  16430. name: "Front",
  16431. image: {
  16432. source: "./media/characters/beatrix/front.svg",
  16433. extra: 392 / 379,
  16434. bottom: 0.01
  16435. }
  16436. },
  16437. },
  16438. [
  16439. {
  16440. name: "Normal",
  16441. height: math.unit(6, "feet"),
  16442. default: true
  16443. },
  16444. ]
  16445. ))
  16446. characterMakers.push(() => makeCharacter(
  16447. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16448. {
  16449. front: {
  16450. height: math.unit(6 + 2/12, "feet"),
  16451. weight: math.unit(135, "lb"),
  16452. name: "Front",
  16453. image: {
  16454. source: "./media/characters/ignatius/front.svg",
  16455. extra: 1380/1259,
  16456. bottom: 27/1407
  16457. }
  16458. },
  16459. },
  16460. [
  16461. {
  16462. name: "Normal",
  16463. height: math.unit(6 + 2/12, "feet"),
  16464. default: true
  16465. },
  16466. ]
  16467. ))
  16468. characterMakers.push(() => makeCharacter(
  16469. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16470. {
  16471. front: {
  16472. height: math.unit(6 + 2 / 12, "feet"),
  16473. weight: math.unit(138, "lb"),
  16474. name: "Front",
  16475. image: {
  16476. source: "./media/characters/mei-li/front.svg",
  16477. extra: 237 / 229,
  16478. bottom: 0.03
  16479. }
  16480. },
  16481. },
  16482. [
  16483. {
  16484. name: "Normal",
  16485. height: math.unit(6 + 2 / 12, "feet"),
  16486. default: true
  16487. },
  16488. ]
  16489. ))
  16490. characterMakers.push(() => makeCharacter(
  16491. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16492. {
  16493. front: {
  16494. height: math.unit(2 + 4 / 12, "feet"),
  16495. weight: math.unit(62, "lb"),
  16496. name: "Front",
  16497. image: {
  16498. source: "./media/characters/puru/front.svg",
  16499. extra: 206 / 149,
  16500. bottom: 0.06
  16501. }
  16502. },
  16503. },
  16504. [
  16505. {
  16506. name: "Normal",
  16507. height: math.unit(2 + 4 / 12, "feet"),
  16508. default: true
  16509. },
  16510. ]
  16511. ))
  16512. characterMakers.push(() => makeCharacter(
  16513. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16514. {
  16515. anthro: {
  16516. height: math.unit(5 + 8/12, "feet"),
  16517. weight: math.unit(200, "lb"),
  16518. energyNeed: math.unit(2000, "kcal"),
  16519. name: "Anthro",
  16520. image: {
  16521. source: "./media/characters/kee/anthro.svg",
  16522. extra: 3251/3184,
  16523. bottom: 250/3501
  16524. }
  16525. },
  16526. taur: {
  16527. height: math.unit(11, "feet"),
  16528. weight: math.unit(500, "lb"),
  16529. energyNeed: math.unit(5000, "kcal"),
  16530. name: "Taur",
  16531. image: {
  16532. source: "./media/characters/kee/taur.svg",
  16533. extra: 1362/1320,
  16534. bottom: 83/1445
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(5 + 8/12, "feet"),
  16542. default: true
  16543. },
  16544. {
  16545. name: "Macro",
  16546. height: math.unit(35, "feet")
  16547. },
  16548. ]
  16549. ))
  16550. characterMakers.push(() => makeCharacter(
  16551. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16552. {
  16553. anthro: {
  16554. height: math.unit(7, "feet"),
  16555. weight: math.unit(190, "lb"),
  16556. name: "Anthro",
  16557. image: {
  16558. source: "./media/characters/cobalt-dracha/anthro.svg",
  16559. extra: 231 / 225,
  16560. bottom: 0.04
  16561. }
  16562. },
  16563. feral: {
  16564. height: math.unit(9 + 7 / 12, "feet"),
  16565. weight: math.unit(294, "lb"),
  16566. name: "Feral",
  16567. image: {
  16568. source: "./media/characters/cobalt-dracha/feral.svg",
  16569. extra: 692 / 633,
  16570. bottom: 0.05
  16571. }
  16572. },
  16573. },
  16574. [
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(7, "feet"),
  16578. default: true
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16584. {
  16585. fallen: {
  16586. height: math.unit(11 + 8 / 12, "feet"),
  16587. weight: math.unit(485, "lb"),
  16588. name: "Java (Fallen)",
  16589. rename: true,
  16590. image: {
  16591. source: "./media/characters/java/fallen.svg",
  16592. extra: 226 / 208,
  16593. bottom: 0.005
  16594. }
  16595. },
  16596. godkin: {
  16597. height: math.unit(10 + 6 / 12, "feet"),
  16598. weight: math.unit(328, "lb"),
  16599. name: "Java (Godkin)",
  16600. rename: true,
  16601. image: {
  16602. source: "./media/characters/java/godkin.svg",
  16603. extra: 1104/1068,
  16604. bottom: 36/1140
  16605. }
  16606. },
  16607. },
  16608. [
  16609. {
  16610. name: "Normal",
  16611. height: math.unit(11 + 8 / 12, "feet"),
  16612. default: true
  16613. },
  16614. ]
  16615. ))
  16616. characterMakers.push(() => makeCharacter(
  16617. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16618. {
  16619. front: {
  16620. height: math.unit(5 + 9 / 12, "feet"),
  16621. weight: math.unit(170, "lb"),
  16622. name: "Front",
  16623. image: {
  16624. source: "./media/characters/purna/front.svg",
  16625. extra: 239 / 229,
  16626. bottom: 0.01
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Normal",
  16633. height: math.unit(5 + 9 / 12, "feet"),
  16634. default: true
  16635. },
  16636. ]
  16637. ))
  16638. characterMakers.push(() => makeCharacter(
  16639. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16640. {
  16641. front: {
  16642. height: math.unit(5 + 9 / 12, "feet"),
  16643. weight: math.unit(142, "lb"),
  16644. name: "Front",
  16645. image: {
  16646. source: "./media/characters/kuva/front.svg",
  16647. extra: 281 / 271,
  16648. bottom: 0.006
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Normal",
  16655. height: math.unit(5 + 9 / 12, "feet"),
  16656. default: true
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16662. {
  16663. anthro: {
  16664. height: math.unit(9 + 2 / 12, "feet"),
  16665. weight: math.unit(270, "lb"),
  16666. name: "Anthro",
  16667. image: {
  16668. source: "./media/characters/embra/anthro.svg",
  16669. extra: 200 / 187,
  16670. bottom: 0.02
  16671. }
  16672. },
  16673. feral: {
  16674. height: math.unit(18 + 8 / 12, "feet"),
  16675. weight: math.unit(576, "lb"),
  16676. name: "Feral",
  16677. image: {
  16678. source: "./media/characters/embra/feral.svg",
  16679. extra: 152 / 137,
  16680. bottom: 0.037
  16681. }
  16682. },
  16683. },
  16684. [
  16685. {
  16686. name: "Normal",
  16687. height: math.unit(9 + 2 / 12, "feet"),
  16688. default: true
  16689. },
  16690. ]
  16691. ))
  16692. characterMakers.push(() => makeCharacter(
  16693. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16694. {
  16695. anthro: {
  16696. height: math.unit(10 + 9 / 12, "feet"),
  16697. weight: math.unit(224, "lb"),
  16698. name: "Anthro",
  16699. image: {
  16700. source: "./media/characters/grottos/anthro.svg",
  16701. extra: 350 / 332,
  16702. bottom: 0.045
  16703. }
  16704. },
  16705. feral: {
  16706. height: math.unit(20 + 7 / 12, "feet"),
  16707. weight: math.unit(629, "lb"),
  16708. name: "Feral",
  16709. image: {
  16710. source: "./media/characters/grottos/feral.svg",
  16711. extra: 207 / 190,
  16712. bottom: 0.05
  16713. }
  16714. },
  16715. },
  16716. [
  16717. {
  16718. name: "Normal",
  16719. height: math.unit(10 + 9 / 12, "feet"),
  16720. default: true
  16721. },
  16722. ]
  16723. ))
  16724. characterMakers.push(() => makeCharacter(
  16725. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16726. {
  16727. anthro: {
  16728. height: math.unit(9 + 6 / 12, "feet"),
  16729. weight: math.unit(298, "lb"),
  16730. name: "Anthro",
  16731. image: {
  16732. source: "./media/characters/frifna/anthro.svg",
  16733. extra: 282 / 269,
  16734. bottom: 0.015
  16735. }
  16736. },
  16737. feral: {
  16738. height: math.unit(16 + 2 / 12, "feet"),
  16739. weight: math.unit(624, "lb"),
  16740. name: "Feral",
  16741. image: {
  16742. source: "./media/characters/frifna/feral.svg"
  16743. }
  16744. },
  16745. },
  16746. [
  16747. {
  16748. name: "Normal",
  16749. height: math.unit(9 + 6 / 12, "feet"),
  16750. default: true
  16751. },
  16752. ]
  16753. ))
  16754. characterMakers.push(() => makeCharacter(
  16755. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16756. {
  16757. front: {
  16758. height: math.unit(6 + 2 / 12, "feet"),
  16759. weight: math.unit(168, "lb"),
  16760. name: "Front",
  16761. image: {
  16762. source: "./media/characters/elise/front.svg",
  16763. extra: 276 / 271
  16764. }
  16765. },
  16766. },
  16767. [
  16768. {
  16769. name: "Normal",
  16770. height: math.unit(6 + 2 / 12, "feet"),
  16771. default: true
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16777. {
  16778. front: {
  16779. height: math.unit(5 + 10 / 12, "feet"),
  16780. weight: math.unit(210, "lb"),
  16781. name: "Front",
  16782. image: {
  16783. source: "./media/characters/glade/front.svg",
  16784. extra: 258 / 247,
  16785. bottom: 0.008
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Normal",
  16792. height: math.unit(5 + 10 / 12, "feet"),
  16793. default: true
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16799. {
  16800. front: {
  16801. height: math.unit(5 + 10 / 12, "feet"),
  16802. weight: math.unit(129, "lb"),
  16803. name: "Front",
  16804. image: {
  16805. source: "./media/characters/rina/front.svg",
  16806. extra: 266 / 255,
  16807. bottom: 0.005
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(5 + 10 / 12, "feet"),
  16815. default: true
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(6 + 1 / 12, "feet"),
  16824. weight: math.unit(192, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/veronica/front.svg",
  16828. extra: 319 / 309,
  16829. bottom: 0.005
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(6 + 1 / 12, "feet"),
  16837. default: true
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16843. {
  16844. front: {
  16845. height: math.unit(9 + 3 / 12, "feet"),
  16846. weight: math.unit(1100, "lb"),
  16847. name: "Front",
  16848. image: {
  16849. source: "./media/characters/braxton/front.svg",
  16850. extra: 1057 / 984,
  16851. bottom: 0.05
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Normal",
  16858. height: math.unit(9 + 3 / 12, "feet")
  16859. },
  16860. {
  16861. name: "Giant",
  16862. height: math.unit(300, "feet"),
  16863. default: true
  16864. },
  16865. {
  16866. name: "Macro",
  16867. height: math.unit(700, "feet")
  16868. },
  16869. {
  16870. name: "Megamacro",
  16871. height: math.unit(6000, "feet")
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16877. {
  16878. front: {
  16879. height: math.unit(6 + 7 / 12, "feet"),
  16880. weight: math.unit(150, "lb"),
  16881. name: "Front",
  16882. image: {
  16883. source: "./media/characters/blue-feyonics/front.svg",
  16884. extra: 1403 / 1306,
  16885. bottom: 0.047
  16886. }
  16887. },
  16888. },
  16889. [
  16890. {
  16891. name: "Normal",
  16892. height: math.unit(6 + 7 / 12, "feet"),
  16893. default: true
  16894. },
  16895. ]
  16896. ))
  16897. characterMakers.push(() => makeCharacter(
  16898. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16899. {
  16900. front: {
  16901. height: math.unit(1.8, "meters"),
  16902. weight: math.unit(60, "kg"),
  16903. name: "Front",
  16904. image: {
  16905. source: "./media/characters/maxwell/front.svg",
  16906. extra: 2060 / 1873
  16907. }
  16908. },
  16909. },
  16910. [
  16911. {
  16912. name: "Micro",
  16913. height: math.unit(1, "mm")
  16914. },
  16915. {
  16916. name: "Normal",
  16917. height: math.unit(1.8, "meter"),
  16918. default: true
  16919. },
  16920. {
  16921. name: "Macro",
  16922. height: math.unit(30, "meters")
  16923. },
  16924. {
  16925. name: "Megamacro",
  16926. height: math.unit(10, "km")
  16927. },
  16928. ]
  16929. ))
  16930. characterMakers.push(() => makeCharacter(
  16931. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16932. {
  16933. front: {
  16934. height: math.unit(6, "feet"),
  16935. weight: math.unit(150, "lb"),
  16936. name: "Front",
  16937. image: {
  16938. source: "./media/characters/jack/front.svg",
  16939. extra: 1754 / 1640,
  16940. bottom: 0.01
  16941. }
  16942. },
  16943. },
  16944. [
  16945. {
  16946. name: "Normal",
  16947. height: math.unit(80000, "feet"),
  16948. default: true
  16949. },
  16950. {
  16951. name: "Max size",
  16952. height: math.unit(10, "lightyears")
  16953. },
  16954. ]
  16955. ))
  16956. characterMakers.push(() => makeCharacter(
  16957. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16958. {
  16959. urban: {
  16960. height: math.unit(5, "feet"),
  16961. weight: math.unit(240, "lb"),
  16962. name: "Urban",
  16963. image: {
  16964. source: "./media/characters/cafat/urban.svg",
  16965. extra: 1223/1126,
  16966. bottom: 205/1428
  16967. }
  16968. },
  16969. summer: {
  16970. height: math.unit(5, "feet"),
  16971. weight: math.unit(240, "lb"),
  16972. name: "Summer",
  16973. image: {
  16974. source: "./media/characters/cafat/summer.svg",
  16975. extra: 1223/1126,
  16976. bottom: 205/1428
  16977. }
  16978. },
  16979. winter: {
  16980. height: math.unit(5, "feet"),
  16981. weight: math.unit(240, "lb"),
  16982. name: "Winter",
  16983. image: {
  16984. source: "./media/characters/cafat/winter.svg",
  16985. extra: 1223/1126,
  16986. bottom: 205/1428
  16987. }
  16988. },
  16989. lingerie: {
  16990. height: math.unit(5, "feet"),
  16991. weight: math.unit(240, "lb"),
  16992. name: "Lingerie",
  16993. image: {
  16994. source: "./media/characters/cafat/lingerie.svg",
  16995. extra: 1223/1126,
  16996. bottom: 205/1428
  16997. }
  16998. },
  16999. upright: {
  17000. height: math.unit(6.3, "feet"),
  17001. weight: math.unit(240, "lb"),
  17002. name: "Upright",
  17003. image: {
  17004. source: "./media/characters/cafat/upright.svg",
  17005. bottom: 0.01
  17006. }
  17007. },
  17008. uprightFull: {
  17009. height: math.unit(6.3, "feet"),
  17010. weight: math.unit(240, "lb"),
  17011. name: "Upright (Full)",
  17012. image: {
  17013. source: "./media/characters/cafat/upright-full.svg",
  17014. bottom: 0.01
  17015. }
  17016. },
  17017. },
  17018. [
  17019. {
  17020. name: "Small",
  17021. height: math.unit(5, "feet"),
  17022. default: true
  17023. },
  17024. {
  17025. name: "Large",
  17026. height: math.unit(13, "feet")
  17027. },
  17028. ]
  17029. ))
  17030. characterMakers.push(() => makeCharacter(
  17031. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17032. {
  17033. front: {
  17034. height: math.unit(6, "feet"),
  17035. weight: math.unit(150, "lb"),
  17036. name: "Front",
  17037. image: {
  17038. source: "./media/characters/verin-raharra/front.svg",
  17039. extra: 5019 / 4835,
  17040. bottom: 0.023
  17041. }
  17042. },
  17043. },
  17044. [
  17045. {
  17046. name: "Normal",
  17047. height: math.unit(7 + 5 / 12, "feet"),
  17048. default: true
  17049. },
  17050. {
  17051. name: "Upsized",
  17052. height: math.unit(20, "feet")
  17053. },
  17054. ]
  17055. ))
  17056. characterMakers.push(() => makeCharacter(
  17057. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17058. {
  17059. front: {
  17060. height: math.unit(7, "feet"),
  17061. weight: math.unit(230, "lb"),
  17062. name: "Front",
  17063. image: {
  17064. source: "./media/characters/nakata/front.svg",
  17065. extra: 1.005,
  17066. bottom: 0.01
  17067. }
  17068. },
  17069. },
  17070. [
  17071. {
  17072. name: "Normal",
  17073. height: math.unit(7, "feet"),
  17074. default: true
  17075. },
  17076. {
  17077. name: "Big",
  17078. height: math.unit(14, "feet")
  17079. },
  17080. {
  17081. name: "Macro",
  17082. height: math.unit(400, "feet")
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17088. {
  17089. front: {
  17090. height: math.unit(4.91, "feet"),
  17091. weight: math.unit(100, "lb"),
  17092. name: "Front",
  17093. image: {
  17094. source: "./media/characters/lily/front.svg",
  17095. extra: 1585 / 1415,
  17096. bottom: 0.02
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(4.91, "feet"),
  17104. default: true
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17110. {
  17111. laying: {
  17112. height: math.unit(4 + 4 / 12, "feet"),
  17113. weight: math.unit(600, "lb"),
  17114. name: "Laying",
  17115. image: {
  17116. source: "./media/characters/sheila/laying.svg",
  17117. extra: 1333 / 1265,
  17118. bottom: 0.16
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Normal",
  17125. height: math.unit(4 + 4 / 12, "feet"),
  17126. default: true
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17132. {
  17133. front: {
  17134. height: math.unit(6, "feet"),
  17135. weight: math.unit(190, "lb"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/sax/front.svg",
  17139. extra: 1187 / 973,
  17140. bottom: 0.042
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Micro",
  17147. height: math.unit(4, "inches"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17154. {
  17155. front: {
  17156. height: math.unit(6, "feet"),
  17157. weight: math.unit(150, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/pandora/front.svg",
  17161. extra: 2720 / 2556,
  17162. bottom: 0.015
  17163. }
  17164. },
  17165. back: {
  17166. height: math.unit(6, "feet"),
  17167. weight: math.unit(150, "lb"),
  17168. name: "Back",
  17169. image: {
  17170. source: "./media/characters/pandora/back.svg",
  17171. extra: 2720 / 2556,
  17172. bottom: 0.01
  17173. }
  17174. },
  17175. beans: {
  17176. height: math.unit(6 / 8, "feet"),
  17177. name: "Beans",
  17178. image: {
  17179. source: "./media/characters/pandora/beans.svg"
  17180. }
  17181. },
  17182. collar: {
  17183. height: math.unit(0.31, "feet"),
  17184. name: "Collar",
  17185. image: {
  17186. source: "./media/characters/pandora/collar.svg"
  17187. }
  17188. },
  17189. skirt: {
  17190. height: math.unit(6, "feet"),
  17191. weight: math.unit(150, "lb"),
  17192. name: "Skirt",
  17193. image: {
  17194. source: "./media/characters/pandora/skirt.svg",
  17195. extra: 1622 / 1525,
  17196. bottom: 0.015
  17197. }
  17198. },
  17199. hoodie: {
  17200. height: math.unit(6, "feet"),
  17201. weight: math.unit(150, "lb"),
  17202. name: "Hoodie",
  17203. image: {
  17204. source: "./media/characters/pandora/hoodie.svg",
  17205. extra: 1622 / 1525,
  17206. bottom: 0.015
  17207. }
  17208. },
  17209. casual: {
  17210. height: math.unit(6, "feet"),
  17211. weight: math.unit(150, "lb"),
  17212. name: "Casual",
  17213. image: {
  17214. source: "./media/characters/pandora/casual.svg",
  17215. extra: 1622 / 1525,
  17216. bottom: 0.015
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Normal",
  17223. height: math.unit(6, "feet")
  17224. },
  17225. {
  17226. name: "Big Steppy",
  17227. height: math.unit(1, "km"),
  17228. default: true
  17229. },
  17230. {
  17231. name: "Galactic Steppy",
  17232. height: math.unit(2, "gigameters")
  17233. },
  17234. ]
  17235. ))
  17236. characterMakers.push(() => makeCharacter(
  17237. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17238. {
  17239. side: {
  17240. height: math.unit(10, "feet"),
  17241. weight: math.unit(800, "kg"),
  17242. name: "Side",
  17243. image: {
  17244. source: "./media/characters/venio-darcony/side.svg",
  17245. extra: 1373 / 1003,
  17246. bottom: 0.037
  17247. }
  17248. },
  17249. front: {
  17250. height: math.unit(19, "feet"),
  17251. weight: math.unit(800, "kg"),
  17252. name: "Front",
  17253. image: {
  17254. source: "./media/characters/venio-darcony/front.svg"
  17255. }
  17256. },
  17257. back: {
  17258. height: math.unit(19, "feet"),
  17259. weight: math.unit(800, "kg"),
  17260. name: "Back",
  17261. image: {
  17262. source: "./media/characters/venio-darcony/back.svg"
  17263. }
  17264. },
  17265. sideNsfw: {
  17266. height: math.unit(10, "feet"),
  17267. weight: math.unit(800, "kg"),
  17268. name: "Side (NSFW)",
  17269. image: {
  17270. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17271. extra: 1373 / 1003,
  17272. bottom: 0.037
  17273. }
  17274. },
  17275. frontNsfw: {
  17276. height: math.unit(19, "feet"),
  17277. weight: math.unit(800, "kg"),
  17278. name: "Front (NSFW)",
  17279. image: {
  17280. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17281. }
  17282. },
  17283. backNsfw: {
  17284. height: math.unit(19, "feet"),
  17285. weight: math.unit(800, "kg"),
  17286. name: "Back (NSFW)",
  17287. image: {
  17288. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17289. }
  17290. },
  17291. sideArmored: {
  17292. height: math.unit(10, "feet"),
  17293. weight: math.unit(800, "kg"),
  17294. name: "Side (Armored)",
  17295. image: {
  17296. source: "./media/characters/venio-darcony/side-armored.svg",
  17297. extra: 1373 / 1003,
  17298. bottom: 0.037
  17299. }
  17300. },
  17301. frontArmored: {
  17302. height: math.unit(19, "feet"),
  17303. weight: math.unit(900, "kg"),
  17304. name: "Front (Armored)",
  17305. image: {
  17306. source: "./media/characters/venio-darcony/front-armored.svg"
  17307. }
  17308. },
  17309. backArmored: {
  17310. height: math.unit(19, "feet"),
  17311. weight: math.unit(900, "kg"),
  17312. name: "Back (Armored)",
  17313. image: {
  17314. source: "./media/characters/venio-darcony/back-armored.svg"
  17315. }
  17316. },
  17317. sword: {
  17318. height: math.unit(10, "feet"),
  17319. weight: math.unit(50, "lb"),
  17320. name: "Sword",
  17321. image: {
  17322. source: "./media/characters/venio-darcony/sword.svg"
  17323. }
  17324. },
  17325. },
  17326. [
  17327. {
  17328. name: "Normal",
  17329. height: math.unit(10, "feet")
  17330. },
  17331. {
  17332. name: "Macro",
  17333. height: math.unit(130, "feet"),
  17334. default: true
  17335. },
  17336. {
  17337. name: "Macro+",
  17338. height: math.unit(240, "feet")
  17339. },
  17340. ]
  17341. ))
  17342. characterMakers.push(() => makeCharacter(
  17343. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17344. {
  17345. front: {
  17346. height: math.unit(6, "feet"),
  17347. weight: math.unit(150, "lb"),
  17348. name: "Front",
  17349. image: {
  17350. source: "./media/characters/veski/front.svg",
  17351. extra: 1299 / 1225,
  17352. bottom: 0.04
  17353. }
  17354. },
  17355. back: {
  17356. height: math.unit(6, "feet"),
  17357. weight: math.unit(150, "lb"),
  17358. name: "Back",
  17359. image: {
  17360. source: "./media/characters/veski/back.svg",
  17361. extra: 1299 / 1225,
  17362. bottom: 0.008
  17363. }
  17364. },
  17365. maw: {
  17366. height: math.unit(1.5 * 1.21, "feet"),
  17367. name: "Maw",
  17368. image: {
  17369. source: "./media/characters/veski/maw.svg"
  17370. }
  17371. },
  17372. },
  17373. [
  17374. {
  17375. name: "Macro",
  17376. height: math.unit(2, "km"),
  17377. default: true
  17378. },
  17379. ]
  17380. ))
  17381. characterMakers.push(() => makeCharacter(
  17382. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17383. {
  17384. front: {
  17385. height: math.unit(5 + 7 / 12, "feet"),
  17386. name: "Front",
  17387. image: {
  17388. source: "./media/characters/isabelle/front.svg",
  17389. extra: 2130 / 1976,
  17390. bottom: 0.05
  17391. }
  17392. },
  17393. },
  17394. [
  17395. {
  17396. name: "Supermicro",
  17397. height: math.unit(10, "micrometers")
  17398. },
  17399. {
  17400. name: "Micro",
  17401. height: math.unit(1, "inch")
  17402. },
  17403. {
  17404. name: "Tiny",
  17405. height: math.unit(5, "inches")
  17406. },
  17407. {
  17408. name: "Standard",
  17409. height: math.unit(5 + 7 / 12, "inches")
  17410. },
  17411. {
  17412. name: "Macro",
  17413. height: math.unit(80, "meters"),
  17414. default: true
  17415. },
  17416. {
  17417. name: "Megamacro",
  17418. height: math.unit(250, "meters")
  17419. },
  17420. {
  17421. name: "Gigamacro",
  17422. height: math.unit(5, "km")
  17423. },
  17424. {
  17425. name: "Cosmic",
  17426. height: math.unit(2.5e6, "miles")
  17427. },
  17428. ]
  17429. ))
  17430. characterMakers.push(() => makeCharacter(
  17431. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17432. {
  17433. front: {
  17434. height: math.unit(6, "feet"),
  17435. weight: math.unit(150, "lb"),
  17436. name: "Front",
  17437. image: {
  17438. source: "./media/characters/hanzo/front.svg",
  17439. extra: 374 / 344,
  17440. bottom: 0.02
  17441. }
  17442. },
  17443. },
  17444. [
  17445. {
  17446. name: "Normal",
  17447. height: math.unit(8, "feet"),
  17448. default: true
  17449. },
  17450. ]
  17451. ))
  17452. characterMakers.push(() => makeCharacter(
  17453. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17454. {
  17455. front: {
  17456. height: math.unit(7, "feet"),
  17457. weight: math.unit(130, "lb"),
  17458. name: "Front",
  17459. image: {
  17460. source: "./media/characters/anna/front.svg",
  17461. extra: 169 / 145,
  17462. bottom: 0.06
  17463. }
  17464. },
  17465. full: {
  17466. height: math.unit(4.96, "feet"),
  17467. weight: math.unit(220, "lb"),
  17468. name: "Full",
  17469. image: {
  17470. source: "./media/characters/anna/full.svg",
  17471. extra: 138 / 114,
  17472. bottom: 0.15
  17473. }
  17474. },
  17475. tongue: {
  17476. height: math.unit(2.53, "feet"),
  17477. name: "Tongue",
  17478. image: {
  17479. source: "./media/characters/anna/tongue.svg"
  17480. }
  17481. },
  17482. },
  17483. [
  17484. {
  17485. name: "Normal",
  17486. height: math.unit(7, "feet"),
  17487. default: true
  17488. },
  17489. ]
  17490. ))
  17491. characterMakers.push(() => makeCharacter(
  17492. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17493. {
  17494. front: {
  17495. height: math.unit(7, "feet"),
  17496. weight: math.unit(150, "lb"),
  17497. name: "Front",
  17498. image: {
  17499. source: "./media/characters/ian-corvid/front.svg",
  17500. extra: 150 / 142,
  17501. bottom: 0.02
  17502. }
  17503. },
  17504. back: {
  17505. height: math.unit(7, "feet"),
  17506. weight: math.unit(150, "lb"),
  17507. name: "Back",
  17508. image: {
  17509. source: "./media/characters/ian-corvid/back.svg",
  17510. extra: 150 / 143,
  17511. bottom: 0.01
  17512. }
  17513. },
  17514. stomping: {
  17515. height: math.unit(7, "feet"),
  17516. weight: math.unit(150, "lb"),
  17517. name: "Stomping",
  17518. image: {
  17519. source: "./media/characters/ian-corvid/stomping.svg",
  17520. extra: 76 / 72
  17521. }
  17522. },
  17523. sitting: {
  17524. height: math.unit(7 / 1.8, "feet"),
  17525. weight: math.unit(150, "lb"),
  17526. name: "Sitting",
  17527. image: {
  17528. source: "./media/characters/ian-corvid/sitting.svg",
  17529. extra: 1400 / 1269,
  17530. bottom: 0.15
  17531. }
  17532. },
  17533. },
  17534. [
  17535. {
  17536. name: "Tiny Microw",
  17537. height: math.unit(1, "inch")
  17538. },
  17539. {
  17540. name: "Microw",
  17541. height: math.unit(6, "inches")
  17542. },
  17543. {
  17544. name: "Crow",
  17545. height: math.unit(7 + 1 / 12, "feet"),
  17546. default: true
  17547. },
  17548. {
  17549. name: "Macrow",
  17550. height: math.unit(176, "feet")
  17551. },
  17552. ]
  17553. ))
  17554. characterMakers.push(() => makeCharacter(
  17555. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17556. {
  17557. front: {
  17558. height: math.unit(5 + 7 / 12, "feet"),
  17559. weight: math.unit(147, "lb"),
  17560. name: "Front",
  17561. image: {
  17562. source: "./media/characters/natalie-kellon/front.svg",
  17563. extra: 1214 / 1141,
  17564. bottom: 0.02
  17565. }
  17566. },
  17567. },
  17568. [
  17569. {
  17570. name: "Micro",
  17571. height: math.unit(1 / 16, "inch")
  17572. },
  17573. {
  17574. name: "Tiny",
  17575. height: math.unit(4, "inches")
  17576. },
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(5 + 7 / 12, "feet"),
  17580. default: true
  17581. },
  17582. {
  17583. name: "Amazon",
  17584. height: math.unit(12, "feet")
  17585. },
  17586. {
  17587. name: "Giantess",
  17588. height: math.unit(160, "meters")
  17589. },
  17590. {
  17591. name: "Titaness",
  17592. height: math.unit(800, "meters")
  17593. },
  17594. ]
  17595. ))
  17596. characterMakers.push(() => makeCharacter(
  17597. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17598. {
  17599. front: {
  17600. height: math.unit(6, "feet"),
  17601. weight: math.unit(150, "lb"),
  17602. name: "Front",
  17603. image: {
  17604. source: "./media/characters/alluria/front.svg",
  17605. extra: 806 / 738,
  17606. bottom: 0.01
  17607. }
  17608. },
  17609. side: {
  17610. height: math.unit(6, "feet"),
  17611. weight: math.unit(150, "lb"),
  17612. name: "Side",
  17613. image: {
  17614. source: "./media/characters/alluria/side.svg",
  17615. extra: 800 / 750,
  17616. }
  17617. },
  17618. back: {
  17619. height: math.unit(6, "feet"),
  17620. weight: math.unit(150, "lb"),
  17621. name: "Back",
  17622. image: {
  17623. source: "./media/characters/alluria/back.svg",
  17624. extra: 806 / 738,
  17625. }
  17626. },
  17627. frontMaid: {
  17628. height: math.unit(6, "feet"),
  17629. weight: math.unit(150, "lb"),
  17630. name: "Front (Maid)",
  17631. image: {
  17632. source: "./media/characters/alluria/front-maid.svg",
  17633. extra: 806 / 738,
  17634. bottom: 0.01
  17635. }
  17636. },
  17637. sideMaid: {
  17638. height: math.unit(6, "feet"),
  17639. weight: math.unit(150, "lb"),
  17640. name: "Side (Maid)",
  17641. image: {
  17642. source: "./media/characters/alluria/side-maid.svg",
  17643. extra: 800 / 750,
  17644. bottom: 0.005
  17645. }
  17646. },
  17647. backMaid: {
  17648. height: math.unit(6, "feet"),
  17649. weight: math.unit(150, "lb"),
  17650. name: "Back (Maid)",
  17651. image: {
  17652. source: "./media/characters/alluria/back-maid.svg",
  17653. extra: 806 / 738,
  17654. }
  17655. },
  17656. },
  17657. [
  17658. {
  17659. name: "Micro",
  17660. height: math.unit(6, "inches"),
  17661. default: true
  17662. },
  17663. ]
  17664. ))
  17665. characterMakers.push(() => makeCharacter(
  17666. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17667. {
  17668. front: {
  17669. height: math.unit(6, "feet"),
  17670. weight: math.unit(150, "lb"),
  17671. name: "Front",
  17672. image: {
  17673. source: "./media/characters/kyle/front.svg",
  17674. extra: 1069 / 962,
  17675. bottom: 77.228 / 1727.45
  17676. }
  17677. },
  17678. },
  17679. [
  17680. {
  17681. name: "Macro",
  17682. height: math.unit(150, "feet"),
  17683. default: true
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17689. {
  17690. front: {
  17691. height: math.unit(6, "feet"),
  17692. weight: math.unit(300, "lb"),
  17693. name: "Front",
  17694. image: {
  17695. source: "./media/characters/duncan/front.svg",
  17696. extra: 1650 / 1482,
  17697. bottom: 0.05
  17698. }
  17699. },
  17700. },
  17701. [
  17702. {
  17703. name: "Macro",
  17704. height: math.unit(100, "feet"),
  17705. default: true
  17706. },
  17707. ]
  17708. ))
  17709. characterMakers.push(() => makeCharacter(
  17710. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17711. {
  17712. front: {
  17713. height: math.unit(5 + 4 / 12, "feet"),
  17714. weight: math.unit(220, "lb"),
  17715. name: "Front",
  17716. image: {
  17717. source: "./media/characters/memory/front.svg",
  17718. extra: 3641 / 3545,
  17719. bottom: 0.03
  17720. }
  17721. },
  17722. back: {
  17723. height: math.unit(5 + 4 / 12, "feet"),
  17724. weight: math.unit(220, "lb"),
  17725. name: "Back",
  17726. image: {
  17727. source: "./media/characters/memory/back.svg",
  17728. extra: 3641 / 3545,
  17729. bottom: 0.025
  17730. }
  17731. },
  17732. frontSkirt: {
  17733. height: math.unit(5 + 4 / 12, "feet"),
  17734. weight: math.unit(220, "lb"),
  17735. name: "Front (Skirt)",
  17736. image: {
  17737. source: "./media/characters/memory/front-skirt.svg",
  17738. extra: 3641 / 3545,
  17739. bottom: 0.03
  17740. }
  17741. },
  17742. frontDress: {
  17743. height: math.unit(5 + 4 / 12, "feet"),
  17744. weight: math.unit(220, "lb"),
  17745. name: "Front (Dress)",
  17746. image: {
  17747. source: "./media/characters/memory/front-dress.svg",
  17748. extra: 3641 / 3545,
  17749. bottom: 0.03
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Micro",
  17756. height: math.unit(6, "inches"),
  17757. default: true
  17758. },
  17759. {
  17760. name: "Normal",
  17761. height: math.unit(5 + 4 / 12, "feet")
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17767. {
  17768. front: {
  17769. height: math.unit(4 + 11 / 12, "feet"),
  17770. weight: math.unit(100, "lb"),
  17771. name: "Front",
  17772. image: {
  17773. source: "./media/characters/luno/front.svg",
  17774. extra: 1535 / 1487,
  17775. bottom: 0.03
  17776. }
  17777. },
  17778. },
  17779. [
  17780. {
  17781. name: "Micro",
  17782. height: math.unit(3, "inches")
  17783. },
  17784. {
  17785. name: "Normal",
  17786. height: math.unit(4 + 11 / 12, "feet"),
  17787. default: true
  17788. },
  17789. {
  17790. name: "Macro",
  17791. height: math.unit(300, "feet")
  17792. },
  17793. {
  17794. name: "Megamacro",
  17795. height: math.unit(700, "miles")
  17796. },
  17797. ]
  17798. ))
  17799. characterMakers.push(() => makeCharacter(
  17800. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17801. {
  17802. front: {
  17803. height: math.unit(6 + 2 / 12, "feet"),
  17804. weight: math.unit(170, "lb"),
  17805. name: "Front",
  17806. image: {
  17807. source: "./media/characters/jamesy/front.svg",
  17808. extra: 440 / 382,
  17809. bottom: 0.005
  17810. }
  17811. },
  17812. },
  17813. [
  17814. {
  17815. name: "Micro",
  17816. height: math.unit(3, "inches")
  17817. },
  17818. {
  17819. name: "Normal",
  17820. height: math.unit(6 + 2 / 12, "feet"),
  17821. default: true
  17822. },
  17823. {
  17824. name: "Macro",
  17825. height: math.unit(300, "feet")
  17826. },
  17827. {
  17828. name: "Megamacro",
  17829. height: math.unit(700, "miles")
  17830. },
  17831. ]
  17832. ))
  17833. characterMakers.push(() => makeCharacter(
  17834. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17835. {
  17836. front: {
  17837. height: math.unit(6, "feet"),
  17838. weight: math.unit(160, "lb"),
  17839. name: "Front",
  17840. image: {
  17841. source: "./media/characters/mark/front.svg",
  17842. extra: 3300 / 3100,
  17843. bottom: 136.42 / 3440.47
  17844. }
  17845. },
  17846. },
  17847. [
  17848. {
  17849. name: "Macro",
  17850. height: math.unit(120, "meters")
  17851. },
  17852. {
  17853. name: "Bigger Macro",
  17854. height: math.unit(350, "meters")
  17855. },
  17856. {
  17857. name: "Megamacro",
  17858. height: math.unit(8, "km"),
  17859. default: true
  17860. },
  17861. {
  17862. name: "Continental",
  17863. height: math.unit(4550, "km")
  17864. },
  17865. {
  17866. name: "Planetary",
  17867. height: math.unit(65000, "km")
  17868. },
  17869. ]
  17870. ))
  17871. characterMakers.push(() => makeCharacter(
  17872. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17873. {
  17874. front: {
  17875. height: math.unit(6, "feet"),
  17876. weight: math.unit(400, "lb"),
  17877. name: "Front",
  17878. image: {
  17879. source: "./media/characters/mac/front.svg",
  17880. extra: 1048 / 987.7,
  17881. bottom: 60 / 1107.6,
  17882. }
  17883. },
  17884. },
  17885. [
  17886. {
  17887. name: "Macro",
  17888. height: math.unit(500, "feet"),
  17889. default: true
  17890. },
  17891. ]
  17892. ))
  17893. characterMakers.push(() => makeCharacter(
  17894. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17895. {
  17896. front: {
  17897. height: math.unit(5 + 2 / 12, "feet"),
  17898. weight: math.unit(190, "lb"),
  17899. name: "Front",
  17900. image: {
  17901. source: "./media/characters/bari/front.svg",
  17902. extra: 3156 / 2880,
  17903. bottom: 0.03
  17904. }
  17905. },
  17906. back: {
  17907. height: math.unit(5 + 2 / 12, "feet"),
  17908. weight: math.unit(190, "lb"),
  17909. name: "Back",
  17910. image: {
  17911. source: "./media/characters/bari/back.svg",
  17912. extra: 3260 / 2834,
  17913. bottom: 0.025
  17914. }
  17915. },
  17916. frontPlush: {
  17917. height: math.unit(5 + 2 / 12, "feet"),
  17918. weight: math.unit(190, "lb"),
  17919. name: "Front (Plush)",
  17920. image: {
  17921. source: "./media/characters/bari/front-plush.svg",
  17922. extra: 1112 / 1061,
  17923. bottom: 0.002
  17924. }
  17925. },
  17926. },
  17927. [
  17928. {
  17929. name: "Micro",
  17930. height: math.unit(3, "inches")
  17931. },
  17932. {
  17933. name: "Normal",
  17934. height: math.unit(5 + 2 / 12, "feet"),
  17935. default: true
  17936. },
  17937. {
  17938. name: "Macro",
  17939. height: math.unit(20, "feet")
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17945. {
  17946. front: {
  17947. height: math.unit(6 + 1 / 12, "feet"),
  17948. weight: math.unit(275, "lb"),
  17949. name: "Front",
  17950. image: {
  17951. source: "./media/characters/hunter-misha-raven/front.svg"
  17952. }
  17953. },
  17954. },
  17955. [
  17956. {
  17957. name: "Mortal",
  17958. height: math.unit(6 + 1 / 12, "feet")
  17959. },
  17960. {
  17961. name: "Divine",
  17962. height: math.unit(1.12134e34, "parsecs"),
  17963. default: true
  17964. },
  17965. ]
  17966. ))
  17967. characterMakers.push(() => makeCharacter(
  17968. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17969. {
  17970. front: {
  17971. height: math.unit(6 + 3 / 12, "feet"),
  17972. weight: math.unit(220, "lb"),
  17973. name: "Front",
  17974. image: {
  17975. source: "./media/characters/max-calore/front.svg",
  17976. extra: 1700 / 1648,
  17977. bottom: 0.01
  17978. }
  17979. },
  17980. back: {
  17981. height: math.unit(6 + 3 / 12, "feet"),
  17982. weight: math.unit(220, "lb"),
  17983. name: "Back",
  17984. image: {
  17985. source: "./media/characters/max-calore/back.svg",
  17986. extra: 1700 / 1648,
  17987. bottom: 0.01
  17988. }
  17989. },
  17990. },
  17991. [
  17992. {
  17993. name: "Normal",
  17994. height: math.unit(6 + 3 / 12, "feet"),
  17995. default: true
  17996. },
  17997. ]
  17998. ))
  17999. characterMakers.push(() => makeCharacter(
  18000. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18001. {
  18002. side: {
  18003. height: math.unit(2 + 8 / 12, "feet"),
  18004. weight: math.unit(99, "lb"),
  18005. name: "Side",
  18006. image: {
  18007. source: "./media/characters/aspen/side.svg",
  18008. extra: 152 / 138,
  18009. bottom: 0.032
  18010. }
  18011. },
  18012. },
  18013. [
  18014. {
  18015. name: "Normal",
  18016. height: math.unit(2 + 8 / 12, "feet"),
  18017. default: true
  18018. },
  18019. ]
  18020. ))
  18021. characterMakers.push(() => makeCharacter(
  18022. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18023. {
  18024. side: {
  18025. height: math.unit(3 + 2 / 12, "feet"),
  18026. weight: math.unit(224, "lb"),
  18027. name: "Side",
  18028. image: {
  18029. source: "./media/characters/sheila-feral-wolf/side.svg",
  18030. extra: 179 / 166,
  18031. bottom: 0.03
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(3 + 2 / 12, "feet"),
  18039. default: true
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18045. {
  18046. side: {
  18047. height: math.unit(1 + 9 / 12, "feet"),
  18048. weight: math.unit(38, "lb"),
  18049. name: "Side",
  18050. image: {
  18051. source: "./media/characters/michelle/side.svg",
  18052. extra: 147 / 136.7,
  18053. bottom: 0.03
  18054. }
  18055. },
  18056. },
  18057. [
  18058. {
  18059. name: "Normal",
  18060. height: math.unit(1 + 9 / 12, "feet"),
  18061. default: true
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18067. {
  18068. front: {
  18069. height: math.unit(1.54, "feet"),
  18070. weight: math.unit(50, "lb"),
  18071. name: "Front",
  18072. image: {
  18073. source: "./media/characters/nino/front.svg"
  18074. }
  18075. },
  18076. },
  18077. [
  18078. {
  18079. name: "Normal",
  18080. height: math.unit(1.54, "feet"),
  18081. default: true
  18082. },
  18083. ]
  18084. ))
  18085. characterMakers.push(() => makeCharacter(
  18086. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18087. {
  18088. front: {
  18089. height: math.unit(1.49, "feet"),
  18090. weight: math.unit(45, "lb"),
  18091. name: "Front",
  18092. image: {
  18093. source: "./media/characters/viola/front.svg"
  18094. }
  18095. },
  18096. },
  18097. [
  18098. {
  18099. name: "Normal",
  18100. height: math.unit(1.49, "feet"),
  18101. default: true
  18102. },
  18103. ]
  18104. ))
  18105. characterMakers.push(() => makeCharacter(
  18106. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18107. {
  18108. front: {
  18109. height: math.unit(6 + 5 / 12, "feet"),
  18110. weight: math.unit(580, "lb"),
  18111. name: "Front",
  18112. image: {
  18113. source: "./media/characters/atlas/front.svg",
  18114. extra: 298.5 / 290,
  18115. bottom: 0.015
  18116. }
  18117. },
  18118. },
  18119. [
  18120. {
  18121. name: "Normal",
  18122. height: math.unit(6 + 5 / 12, "feet"),
  18123. default: true
  18124. },
  18125. ]
  18126. ))
  18127. characterMakers.push(() => makeCharacter(
  18128. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18129. {
  18130. side: {
  18131. height: math.unit(15.6, "inches"),
  18132. weight: math.unit(10, "lb"),
  18133. name: "Side",
  18134. image: {
  18135. source: "./media/characters/davy/side.svg",
  18136. extra: 200 / 170,
  18137. bottom: 0.01
  18138. }
  18139. },
  18140. },
  18141. [
  18142. {
  18143. name: "Normal",
  18144. height: math.unit(15.6, "inches"),
  18145. default: true
  18146. },
  18147. ]
  18148. ))
  18149. characterMakers.push(() => makeCharacter(
  18150. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18151. {
  18152. side: {
  18153. height: math.unit(4 + 8 / 12, "feet"),
  18154. weight: math.unit(166, "lb"),
  18155. name: "Side",
  18156. image: {
  18157. source: "./media/characters/fiona/side.svg",
  18158. extra: 232 / 220,
  18159. bottom: 0.03
  18160. }
  18161. },
  18162. },
  18163. [
  18164. {
  18165. name: "Normal",
  18166. height: math.unit(4 + 8 / 12, "feet"),
  18167. default: true
  18168. },
  18169. ]
  18170. ))
  18171. characterMakers.push(() => makeCharacter(
  18172. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18173. {
  18174. front: {
  18175. height: math.unit(26, "inches"),
  18176. weight: math.unit(35, "lb"),
  18177. name: "Front",
  18178. image: {
  18179. source: "./media/characters/lyla/front.svg",
  18180. bottom: 0.1
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Normal",
  18187. height: math.unit(3, "feet"),
  18188. default: true
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18194. {
  18195. side: {
  18196. height: math.unit(1.8, "feet"),
  18197. weight: math.unit(44, "lb"),
  18198. name: "Side",
  18199. image: {
  18200. source: "./media/characters/perseus/side.svg",
  18201. bottom: 0.21
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Normal",
  18208. height: math.unit(1.8, "feet"),
  18209. default: true
  18210. },
  18211. ]
  18212. ))
  18213. characterMakers.push(() => makeCharacter(
  18214. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18215. {
  18216. side: {
  18217. height: math.unit(4 + 2 / 12, "feet"),
  18218. weight: math.unit(20, "lb"),
  18219. name: "Side",
  18220. image: {
  18221. source: "./media/characters/remus/side.svg"
  18222. }
  18223. },
  18224. },
  18225. [
  18226. {
  18227. name: "Normal",
  18228. height: math.unit(4 + 2 / 12, "feet"),
  18229. default: true
  18230. },
  18231. ]
  18232. ))
  18233. characterMakers.push(() => makeCharacter(
  18234. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18235. {
  18236. front: {
  18237. height: math.unit(4 + 11 / 12, "feet"),
  18238. weight: math.unit(114, "lb"),
  18239. name: "Front",
  18240. image: {
  18241. source: "./media/characters/raf/front.svg",
  18242. extra: 1504/1339,
  18243. bottom: 26/1530
  18244. }
  18245. },
  18246. side: {
  18247. height: math.unit(4 + 11 / 12, "feet"),
  18248. weight: math.unit(114, "lb"),
  18249. name: "Side",
  18250. image: {
  18251. source: "./media/characters/raf/side.svg",
  18252. extra: 1466/1316,
  18253. bottom: 29/1495
  18254. }
  18255. },
  18256. paw: {
  18257. height: math.unit(1.45, "feet"),
  18258. name: "Paw",
  18259. image: {
  18260. source: "./media/characters/raf/paw.svg"
  18261. },
  18262. extraAttributes: {
  18263. "toeSize": {
  18264. name: "Toe Size",
  18265. power: 2,
  18266. type: "area",
  18267. base: math.unit(0.004, "m^2")
  18268. },
  18269. "padSize": {
  18270. name: "Pad Size",
  18271. power: 2,
  18272. type: "area",
  18273. base: math.unit(0.04, "m^2")
  18274. },
  18275. "footSize": {
  18276. name: "Foot Size",
  18277. power: 2,
  18278. type: "area",
  18279. base: math.unit(0.08, "m^2")
  18280. },
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Micro",
  18287. height: math.unit(2, "inches")
  18288. },
  18289. {
  18290. name: "Normal",
  18291. height: math.unit(4 + 11 / 12, "feet"),
  18292. default: true
  18293. },
  18294. {
  18295. name: "Macro",
  18296. height: math.unit(70, "feet")
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(1.5, "meters"),
  18305. weight: math.unit(68, "kg"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/liam-einarr/front.svg",
  18309. extra: 2822 / 2666
  18310. }
  18311. },
  18312. back: {
  18313. height: math.unit(1.5, "meters"),
  18314. weight: math.unit(68, "kg"),
  18315. name: "Back",
  18316. image: {
  18317. source: "./media/characters/liam-einarr/back.svg",
  18318. extra: 2822 / 2666,
  18319. bottom: 0.015
  18320. }
  18321. },
  18322. },
  18323. [
  18324. {
  18325. name: "Normal",
  18326. height: math.unit(1.5, "meters"),
  18327. default: true
  18328. },
  18329. {
  18330. name: "Macro",
  18331. height: math.unit(150, "meters")
  18332. },
  18333. {
  18334. name: "Megamacro",
  18335. height: math.unit(35, "km")
  18336. },
  18337. ]
  18338. ))
  18339. characterMakers.push(() => makeCharacter(
  18340. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18341. {
  18342. front: {
  18343. height: math.unit(6, "feet"),
  18344. weight: math.unit(75, "kg"),
  18345. name: "Front",
  18346. image: {
  18347. source: "./media/characters/linda/front.svg",
  18348. extra: 930 / 874,
  18349. bottom: 0.004
  18350. }
  18351. },
  18352. },
  18353. [
  18354. {
  18355. name: "Normal",
  18356. height: math.unit(6, "feet"),
  18357. default: true
  18358. },
  18359. ]
  18360. ))
  18361. characterMakers.push(() => makeCharacter(
  18362. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18363. {
  18364. front: {
  18365. height: math.unit(6 + 8 / 12, "feet"),
  18366. weight: math.unit(220, "lb"),
  18367. name: "Front",
  18368. image: {
  18369. source: "./media/characters/caylex/front.svg",
  18370. extra: 821 / 772,
  18371. bottom: 0.07
  18372. }
  18373. },
  18374. back: {
  18375. height: math.unit(6 + 8 / 12, "feet"),
  18376. weight: math.unit(220, "lb"),
  18377. name: "Back",
  18378. image: {
  18379. source: "./media/characters/caylex/back.svg",
  18380. extra: 821 / 772,
  18381. bottom: 0.022
  18382. }
  18383. },
  18384. hand: {
  18385. height: math.unit(1.25, "feet"),
  18386. name: "Hand",
  18387. image: {
  18388. source: "./media/characters/caylex/hand.svg"
  18389. }
  18390. },
  18391. foot: {
  18392. height: math.unit(1.6, "feet"),
  18393. name: "Foot",
  18394. image: {
  18395. source: "./media/characters/caylex/foot.svg"
  18396. }
  18397. },
  18398. armored: {
  18399. height: math.unit(6 + 8 / 12, "feet"),
  18400. weight: math.unit(250, "lb"),
  18401. name: "Armored",
  18402. image: {
  18403. source: "./media/characters/caylex/armored.svg",
  18404. extra: 1420 / 1310,
  18405. bottom: 0.045
  18406. }
  18407. },
  18408. },
  18409. [
  18410. {
  18411. name: "Normal",
  18412. height: math.unit(6 + 8 / 12, "feet"),
  18413. default: true
  18414. },
  18415. {
  18416. name: "Normal+",
  18417. height: math.unit(12, "feet")
  18418. },
  18419. ]
  18420. ))
  18421. characterMakers.push(() => makeCharacter(
  18422. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18423. {
  18424. front: {
  18425. height: math.unit(7 + 6 / 12, "feet"),
  18426. weight: math.unit(288, "lb"),
  18427. name: "Front",
  18428. image: {
  18429. source: "./media/characters/alana/front.svg",
  18430. extra: 679 / 653,
  18431. bottom: 22.5 / 701
  18432. }
  18433. },
  18434. },
  18435. [
  18436. {
  18437. name: "Normal",
  18438. height: math.unit(7 + 6 / 12, "feet")
  18439. },
  18440. {
  18441. name: "Large",
  18442. height: math.unit(50, "feet")
  18443. },
  18444. {
  18445. name: "Macro",
  18446. height: math.unit(100, "feet"),
  18447. default: true
  18448. },
  18449. {
  18450. name: "Macro+",
  18451. height: math.unit(200, "feet")
  18452. },
  18453. ]
  18454. ))
  18455. characterMakers.push(() => makeCharacter(
  18456. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18457. {
  18458. front: {
  18459. height: math.unit(6 + 1 / 12, "feet"),
  18460. weight: math.unit(210, "lb"),
  18461. name: "Front",
  18462. image: {
  18463. source: "./media/characters/hasani/front.svg",
  18464. extra: 244 / 232,
  18465. bottom: 0.01
  18466. }
  18467. },
  18468. back: {
  18469. height: math.unit(6 + 1 / 12, "feet"),
  18470. weight: math.unit(210, "lb"),
  18471. name: "Back",
  18472. image: {
  18473. source: "./media/characters/hasani/back.svg",
  18474. extra: 244 / 232,
  18475. bottom: 0.01
  18476. }
  18477. },
  18478. },
  18479. [
  18480. {
  18481. name: "Normal",
  18482. height: math.unit(6 + 1 / 12, "feet")
  18483. },
  18484. {
  18485. name: "Macro",
  18486. height: math.unit(175, "feet"),
  18487. default: true
  18488. },
  18489. ]
  18490. ))
  18491. characterMakers.push(() => makeCharacter(
  18492. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18493. {
  18494. front: {
  18495. height: math.unit(1.82, "meters"),
  18496. weight: math.unit(140, "lb"),
  18497. name: "Front",
  18498. image: {
  18499. source: "./media/characters/nita/front.svg",
  18500. extra: 2473 / 2363,
  18501. bottom: 0.01
  18502. }
  18503. },
  18504. },
  18505. [
  18506. {
  18507. name: "Normal",
  18508. height: math.unit(1.82, "m")
  18509. },
  18510. {
  18511. name: "Macro",
  18512. height: math.unit(300, "m")
  18513. },
  18514. {
  18515. name: "Mistake Canon",
  18516. height: math.unit(0.5, "miles"),
  18517. default: true
  18518. },
  18519. {
  18520. name: "Big Mistake",
  18521. height: math.unit(13, "miles")
  18522. },
  18523. {
  18524. name: "Playing God",
  18525. height: math.unit(2450, "miles")
  18526. },
  18527. ]
  18528. ))
  18529. characterMakers.push(() => makeCharacter(
  18530. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18531. {
  18532. front: {
  18533. height: math.unit(4, "feet"),
  18534. weight: math.unit(120, "lb"),
  18535. name: "Front",
  18536. image: {
  18537. source: "./media/characters/shiriko/front.svg",
  18538. extra: 970/934,
  18539. bottom: 5/975
  18540. }
  18541. },
  18542. },
  18543. [
  18544. {
  18545. name: "Normal",
  18546. height: math.unit(4, "feet"),
  18547. default: true
  18548. },
  18549. ]
  18550. ))
  18551. characterMakers.push(() => makeCharacter(
  18552. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18553. {
  18554. front: {
  18555. height: math.unit(6, "feet"),
  18556. name: "front",
  18557. image: {
  18558. source: "./media/characters/deja/front.svg",
  18559. extra: 926 / 840,
  18560. bottom: 0.07
  18561. }
  18562. },
  18563. },
  18564. [
  18565. {
  18566. name: "Planck Length",
  18567. height: math.unit(1.6e-35, "meters")
  18568. },
  18569. {
  18570. name: "Normal",
  18571. height: math.unit(30.48, "meters"),
  18572. default: true
  18573. },
  18574. {
  18575. name: "Universal",
  18576. height: math.unit(8.8e26, "meters")
  18577. },
  18578. ]
  18579. ))
  18580. characterMakers.push(() => makeCharacter(
  18581. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18582. {
  18583. side: {
  18584. height: math.unit(8, "feet"),
  18585. weight: math.unit(6300, "lb"),
  18586. name: "Side",
  18587. image: {
  18588. source: "./media/characters/anima/side.svg",
  18589. bottom: 0.035
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Normal",
  18596. height: math.unit(8, "feet"),
  18597. default: true
  18598. },
  18599. ]
  18600. ))
  18601. characterMakers.push(() => makeCharacter(
  18602. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18603. {
  18604. front: {
  18605. height: math.unit(8, "feet"),
  18606. weight: math.unit(350, "lb"),
  18607. name: "Front",
  18608. image: {
  18609. source: "./media/characters/bianca/front.svg",
  18610. extra: 234 / 225,
  18611. bottom: 0.03
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Normal",
  18618. height: math.unit(8, "feet"),
  18619. default: true
  18620. },
  18621. ]
  18622. ))
  18623. characterMakers.push(() => makeCharacter(
  18624. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18625. {
  18626. front: {
  18627. height: math.unit(11 + 5/12, "feet"),
  18628. weight: math.unit(1200, "lb"),
  18629. name: "Front",
  18630. image: {
  18631. source: "./media/characters/adinia/front.svg",
  18632. extra: 1767/1641,
  18633. bottom: 44/1811
  18634. },
  18635. extraAttributes: {
  18636. "energyIntake": {
  18637. name: "Energy Intake",
  18638. power: 3,
  18639. type: "energy",
  18640. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18641. },
  18642. }
  18643. },
  18644. back: {
  18645. height: math.unit(11 + 5/12, "feet"),
  18646. weight: math.unit(1200, "lb"),
  18647. name: "Back",
  18648. image: {
  18649. source: "./media/characters/adinia/back.svg",
  18650. extra: 1834/1684,
  18651. bottom: 14/1848
  18652. },
  18653. extraAttributes: {
  18654. "energyIntake": {
  18655. name: "Energy Intake",
  18656. power: 3,
  18657. type: "energy",
  18658. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18659. },
  18660. }
  18661. },
  18662. maw: {
  18663. height: math.unit(3.79, "feet"),
  18664. name: "Maw",
  18665. image: {
  18666. source: "./media/characters/adinia/maw.svg"
  18667. }
  18668. },
  18669. rump: {
  18670. height: math.unit(4.6, "feet"),
  18671. name: "Rump",
  18672. image: {
  18673. source: "./media/characters/adinia/rump.svg"
  18674. }
  18675. },
  18676. },
  18677. [
  18678. {
  18679. name: "Normal",
  18680. height: math.unit(11 + 5 / 12, "feet"),
  18681. default: true
  18682. },
  18683. ]
  18684. ))
  18685. characterMakers.push(() => makeCharacter(
  18686. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18687. {
  18688. front: {
  18689. height: math.unit(3, "meters"),
  18690. weight: math.unit(200, "kg"),
  18691. name: "Front",
  18692. image: {
  18693. source: "./media/characters/lykasa/front.svg",
  18694. extra: 1076 / 976,
  18695. bottom: 0.06
  18696. }
  18697. },
  18698. },
  18699. [
  18700. {
  18701. name: "Normal",
  18702. height: math.unit(3, "meters")
  18703. },
  18704. {
  18705. name: "Kaiju",
  18706. height: math.unit(120, "meters"),
  18707. default: true
  18708. },
  18709. {
  18710. name: "Mega Kaiju",
  18711. height: math.unit(240, "km")
  18712. },
  18713. {
  18714. name: "Giga Kaiju",
  18715. height: math.unit(400, "megameters")
  18716. },
  18717. {
  18718. name: "Tera Kaiju",
  18719. height: math.unit(800, "gigameters")
  18720. },
  18721. {
  18722. name: "Kaiju Dragon Goddess",
  18723. height: math.unit(26, "zettaparsecs")
  18724. },
  18725. ]
  18726. ))
  18727. characterMakers.push(() => makeCharacter(
  18728. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18729. {
  18730. side: {
  18731. height: math.unit(283 / 124 * 6, "feet"),
  18732. weight: math.unit(35000, "lb"),
  18733. name: "Side",
  18734. image: {
  18735. source: "./media/characters/malfaren/side.svg",
  18736. extra: 1310/529,
  18737. bottom: 24/1334
  18738. }
  18739. },
  18740. front: {
  18741. height: math.unit(22.36, "feet"),
  18742. weight: math.unit(35000, "lb"),
  18743. name: "Front",
  18744. image: {
  18745. source: "./media/characters/malfaren/front.svg",
  18746. extra: 1237/1115,
  18747. bottom: 32/1269
  18748. }
  18749. },
  18750. maw: {
  18751. height: math.unit(6.9, "feet"),
  18752. name: "Maw",
  18753. image: {
  18754. source: "./media/characters/malfaren/maw.svg"
  18755. }
  18756. },
  18757. dick: {
  18758. height: math.unit(6.19, "feet"),
  18759. name: "Dick",
  18760. image: {
  18761. source: "./media/characters/malfaren/dick.svg"
  18762. }
  18763. },
  18764. eye: {
  18765. height: math.unit(0.69, "feet"),
  18766. name: "Eye",
  18767. image: {
  18768. source: "./media/characters/malfaren/eye.svg"
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Big",
  18775. height: math.unit(283 / 162 * 6, "feet"),
  18776. },
  18777. {
  18778. name: "Bigger",
  18779. height: math.unit(283 / 124 * 6, "feet")
  18780. },
  18781. {
  18782. name: "Massive",
  18783. height: math.unit(283 / 92 * 6, "feet"),
  18784. default: true
  18785. },
  18786. {
  18787. name: "👀💦",
  18788. height: math.unit(283 / 73 * 6, "feet"),
  18789. },
  18790. ]
  18791. ))
  18792. characterMakers.push(() => makeCharacter(
  18793. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18794. {
  18795. front: {
  18796. height: math.unit(1.7, "m"),
  18797. weight: math.unit(70, "kg"),
  18798. name: "Front",
  18799. image: {
  18800. source: "./media/characters/kernel/front.svg",
  18801. extra: 222 / 210,
  18802. bottom: 0.007
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Nano",
  18809. height: math.unit(17, "micrometers")
  18810. },
  18811. {
  18812. name: "Micro",
  18813. height: math.unit(1.7, "mm")
  18814. },
  18815. {
  18816. name: "Small",
  18817. height: math.unit(1.7, "cm")
  18818. },
  18819. {
  18820. name: "Normal",
  18821. height: math.unit(1.7, "m"),
  18822. default: true
  18823. },
  18824. ]
  18825. ))
  18826. characterMakers.push(() => makeCharacter(
  18827. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18828. {
  18829. front: {
  18830. height: math.unit(1.75, "meters"),
  18831. weight: math.unit(65, "kg"),
  18832. name: "Front",
  18833. image: {
  18834. source: "./media/characters/jayne-folest/front.svg",
  18835. extra: 2115 / 2007,
  18836. bottom: 0.02
  18837. }
  18838. },
  18839. back: {
  18840. height: math.unit(1.75, "meters"),
  18841. weight: math.unit(65, "kg"),
  18842. name: "Back",
  18843. image: {
  18844. source: "./media/characters/jayne-folest/back.svg",
  18845. extra: 2115 / 2007,
  18846. bottom: 0.005
  18847. }
  18848. },
  18849. frontClothed: {
  18850. height: math.unit(1.75, "meters"),
  18851. weight: math.unit(65, "kg"),
  18852. name: "Front (Clothed)",
  18853. image: {
  18854. source: "./media/characters/jayne-folest/front-clothed.svg",
  18855. extra: 2115 / 2007,
  18856. bottom: 0.035
  18857. }
  18858. },
  18859. hand: {
  18860. height: math.unit(1 / 1.260, "feet"),
  18861. name: "Hand",
  18862. image: {
  18863. source: "./media/characters/jayne-folest/hand.svg"
  18864. }
  18865. },
  18866. foot: {
  18867. height: math.unit(1 / 0.918, "feet"),
  18868. name: "Foot",
  18869. image: {
  18870. source: "./media/characters/jayne-folest/foot.svg"
  18871. }
  18872. },
  18873. },
  18874. [
  18875. {
  18876. name: "Micro",
  18877. height: math.unit(4, "cm")
  18878. },
  18879. {
  18880. name: "Normal",
  18881. height: math.unit(1.75, "meters")
  18882. },
  18883. {
  18884. name: "Macro",
  18885. height: math.unit(47.5, "meters"),
  18886. default: true
  18887. },
  18888. ]
  18889. ))
  18890. characterMakers.push(() => makeCharacter(
  18891. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18892. {
  18893. front: {
  18894. height: math.unit(180, "cm"),
  18895. weight: math.unit(70, "kg"),
  18896. name: "Front",
  18897. image: {
  18898. source: "./media/characters/algier/front.svg",
  18899. extra: 596 / 572,
  18900. bottom: 0.04
  18901. }
  18902. },
  18903. back: {
  18904. height: math.unit(180, "cm"),
  18905. weight: math.unit(70, "kg"),
  18906. name: "Back",
  18907. image: {
  18908. source: "./media/characters/algier/back.svg",
  18909. extra: 596 / 572,
  18910. bottom: 0.025
  18911. }
  18912. },
  18913. frontdressed: {
  18914. height: math.unit(180, "cm"),
  18915. weight: math.unit(150, "kg"),
  18916. name: "Front-dressed",
  18917. image: {
  18918. source: "./media/characters/algier/front-dressed.svg",
  18919. extra: 596 / 572,
  18920. bottom: 0.038
  18921. }
  18922. },
  18923. },
  18924. [
  18925. {
  18926. name: "Micro",
  18927. height: math.unit(5, "cm")
  18928. },
  18929. {
  18930. name: "Normal",
  18931. height: math.unit(180, "cm"),
  18932. default: true
  18933. },
  18934. {
  18935. name: "Macro",
  18936. height: math.unit(64, "m")
  18937. },
  18938. ]
  18939. ))
  18940. characterMakers.push(() => makeCharacter(
  18941. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18942. {
  18943. upright: {
  18944. height: math.unit(7, "feet"),
  18945. weight: math.unit(300, "lb"),
  18946. name: "Upright",
  18947. image: {
  18948. source: "./media/characters/pretzel/upright.svg",
  18949. extra: 534 / 522,
  18950. bottom: 0.065
  18951. }
  18952. },
  18953. sprawling: {
  18954. height: math.unit(3.75, "feet"),
  18955. weight: math.unit(300, "lb"),
  18956. name: "Sprawling",
  18957. image: {
  18958. source: "./media/characters/pretzel/sprawling.svg",
  18959. extra: 314 / 281,
  18960. bottom: 0.1
  18961. }
  18962. },
  18963. tongue: {
  18964. height: math.unit(2, "feet"),
  18965. name: "Tongue",
  18966. image: {
  18967. source: "./media/characters/pretzel/tongue.svg"
  18968. }
  18969. },
  18970. },
  18971. [
  18972. {
  18973. name: "Normal",
  18974. height: math.unit(7, "feet"),
  18975. default: true
  18976. },
  18977. {
  18978. name: "Oversized",
  18979. height: math.unit(15, "feet")
  18980. },
  18981. {
  18982. name: "Huge",
  18983. height: math.unit(30, "feet")
  18984. },
  18985. {
  18986. name: "Macro",
  18987. height: math.unit(250, "feet")
  18988. },
  18989. ]
  18990. ))
  18991. characterMakers.push(() => makeCharacter(
  18992. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18993. {
  18994. sideFront: {
  18995. height: math.unit(5 + 2 / 12, "feet"),
  18996. weight: math.unit(120, "lb"),
  18997. name: "Front Side",
  18998. image: {
  18999. source: "./media/characters/roxi/side-front.svg",
  19000. extra: 2924 / 2717,
  19001. bottom: 0.08
  19002. }
  19003. },
  19004. sideBack: {
  19005. height: math.unit(5 + 2 / 12, "feet"),
  19006. weight: math.unit(120, "lb"),
  19007. name: "Back Side",
  19008. image: {
  19009. source: "./media/characters/roxi/side-back.svg",
  19010. extra: 2904 / 2693,
  19011. bottom: 0.06
  19012. }
  19013. },
  19014. front: {
  19015. height: math.unit(5 + 2 / 12, "feet"),
  19016. weight: math.unit(120, "lb"),
  19017. name: "Front",
  19018. image: {
  19019. source: "./media/characters/roxi/front.svg",
  19020. extra: 2028 / 1907,
  19021. bottom: 0.01
  19022. }
  19023. },
  19024. frontAlt: {
  19025. height: math.unit(5 + 2 / 12, "feet"),
  19026. weight: math.unit(120, "lb"),
  19027. name: "Front (Alt)",
  19028. image: {
  19029. source: "./media/characters/roxi/front-alt.svg",
  19030. extra: 1828 / 1798,
  19031. bottom: 0.01
  19032. }
  19033. },
  19034. sitting: {
  19035. height: math.unit(2.8, "feet"),
  19036. weight: math.unit(120, "lb"),
  19037. name: "Sitting",
  19038. image: {
  19039. source: "./media/characters/roxi/sitting.svg",
  19040. extra: 2660 / 2462,
  19041. bottom: 0.1
  19042. }
  19043. },
  19044. },
  19045. [
  19046. {
  19047. name: "Normal",
  19048. height: math.unit(5 + 2 / 12, "feet"),
  19049. default: true
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19055. {
  19056. side: {
  19057. height: math.unit(55, "feet"),
  19058. weight: math.unit(153, "tons"),
  19059. name: "Side",
  19060. image: {
  19061. source: "./media/characters/shadow/side.svg",
  19062. extra: 701 / 628,
  19063. bottom: 0.02
  19064. }
  19065. },
  19066. flying: {
  19067. height: math.unit(145, "feet"),
  19068. weight: math.unit(153, "tons"),
  19069. name: "Flying",
  19070. image: {
  19071. source: "./media/characters/shadow/flying.svg"
  19072. }
  19073. },
  19074. },
  19075. [
  19076. {
  19077. name: "Normal",
  19078. height: math.unit(55, "feet"),
  19079. default: true
  19080. },
  19081. ]
  19082. ))
  19083. characterMakers.push(() => makeCharacter(
  19084. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19085. {
  19086. front: {
  19087. height: math.unit(6, "feet"),
  19088. weight: math.unit(200, "lb"),
  19089. name: "Front",
  19090. image: {
  19091. source: "./media/characters/marcie/front.svg",
  19092. extra: 960 / 876,
  19093. bottom: 58 / 1017.87
  19094. }
  19095. },
  19096. },
  19097. [
  19098. {
  19099. name: "Macro",
  19100. height: math.unit(1, "mile"),
  19101. default: true
  19102. },
  19103. ]
  19104. ))
  19105. characterMakers.push(() => makeCharacter(
  19106. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19107. {
  19108. front: {
  19109. height: math.unit(7, "feet"),
  19110. weight: math.unit(200, "lb"),
  19111. name: "Front",
  19112. image: {
  19113. source: "./media/characters/kachina/front.svg",
  19114. extra: 1290.68 / 1119,
  19115. bottom: 36.5 / 1327.18
  19116. }
  19117. },
  19118. },
  19119. [
  19120. {
  19121. name: "Normal",
  19122. height: math.unit(7, "feet"),
  19123. default: true
  19124. },
  19125. ]
  19126. ))
  19127. characterMakers.push(() => makeCharacter(
  19128. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19129. {
  19130. looking: {
  19131. height: math.unit(2, "meters"),
  19132. weight: math.unit(300, "kg"),
  19133. name: "Looking",
  19134. image: {
  19135. source: "./media/characters/kash/looking.svg",
  19136. extra: 474 / 344,
  19137. bottom: 0.03
  19138. }
  19139. },
  19140. side: {
  19141. height: math.unit(2, "meters"),
  19142. weight: math.unit(300, "kg"),
  19143. name: "Side",
  19144. image: {
  19145. source: "./media/characters/kash/side.svg",
  19146. extra: 302 / 251,
  19147. bottom: 0.03
  19148. }
  19149. },
  19150. front: {
  19151. height: math.unit(2, "meters"),
  19152. weight: math.unit(300, "kg"),
  19153. name: "Front",
  19154. image: {
  19155. source: "./media/characters/kash/front.svg",
  19156. extra: 495 / 360,
  19157. bottom: 0.015
  19158. }
  19159. },
  19160. },
  19161. [
  19162. {
  19163. name: "Normal",
  19164. height: math.unit(2, "meters"),
  19165. default: true
  19166. },
  19167. {
  19168. name: "Big",
  19169. height: math.unit(3, "meters")
  19170. },
  19171. {
  19172. name: "Large",
  19173. height: math.unit(5, "meters")
  19174. },
  19175. ]
  19176. ))
  19177. characterMakers.push(() => makeCharacter(
  19178. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19179. {
  19180. feeding: {
  19181. height: math.unit(6.7, "feet"),
  19182. weight: math.unit(350, "lb"),
  19183. name: "Feeding",
  19184. image: {
  19185. source: "./media/characters/lalim/feeding.svg",
  19186. }
  19187. },
  19188. },
  19189. [
  19190. {
  19191. name: "Normal",
  19192. height: math.unit(6.7, "feet"),
  19193. default: true
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19199. {
  19200. front: {
  19201. height: math.unit(9.5, "feet"),
  19202. weight: math.unit(600, "lb"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/de'vout/front.svg",
  19206. extra: 1443 / 1328,
  19207. bottom: 0.025
  19208. }
  19209. },
  19210. back: {
  19211. height: math.unit(9.5, "feet"),
  19212. weight: math.unit(600, "lb"),
  19213. name: "Back",
  19214. image: {
  19215. source: "./media/characters/de'vout/back.svg",
  19216. extra: 1443 / 1328
  19217. }
  19218. },
  19219. frontDressed: {
  19220. height: math.unit(9.5, "feet"),
  19221. weight: math.unit(600, "lb"),
  19222. name: "Front (Dressed",
  19223. image: {
  19224. source: "./media/characters/de'vout/front-dressed.svg",
  19225. extra: 1443 / 1328,
  19226. bottom: 0.025
  19227. }
  19228. },
  19229. backDressed: {
  19230. height: math.unit(9.5, "feet"),
  19231. weight: math.unit(600, "lb"),
  19232. name: "Back (Dressed",
  19233. image: {
  19234. source: "./media/characters/de'vout/back-dressed.svg",
  19235. extra: 1443 / 1328
  19236. }
  19237. },
  19238. },
  19239. [
  19240. {
  19241. name: "Normal",
  19242. height: math.unit(9.5, "feet"),
  19243. default: true
  19244. },
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19249. {
  19250. front: {
  19251. height: math.unit(8, "feet"),
  19252. weight: math.unit(225, "lb"),
  19253. name: "Front",
  19254. image: {
  19255. source: "./media/characters/talana/front.svg",
  19256. extra: 1410 / 1300,
  19257. bottom: 0.015
  19258. }
  19259. },
  19260. frontDressed: {
  19261. height: math.unit(8, "feet"),
  19262. weight: math.unit(225, "lb"),
  19263. name: "Front (Dressed",
  19264. image: {
  19265. source: "./media/characters/talana/front-dressed.svg",
  19266. extra: 1410 / 1300,
  19267. bottom: 0.015
  19268. }
  19269. },
  19270. },
  19271. [
  19272. {
  19273. name: "Normal",
  19274. height: math.unit(8, "feet"),
  19275. default: true
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19281. {
  19282. side: {
  19283. height: math.unit(7.2, "feet"),
  19284. weight: math.unit(150, "lb"),
  19285. name: "Side",
  19286. image: {
  19287. source: "./media/characters/xeauvok/side.svg",
  19288. extra: 1975 / 1523,
  19289. bottom: 0.07
  19290. }
  19291. },
  19292. },
  19293. [
  19294. {
  19295. name: "Normal",
  19296. height: math.unit(7.2, "feet"),
  19297. default: true
  19298. },
  19299. ]
  19300. ))
  19301. characterMakers.push(() => makeCharacter(
  19302. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19303. {
  19304. side: {
  19305. height: math.unit(4, "meters"),
  19306. weight: math.unit(2200, "kg"),
  19307. name: "Side",
  19308. image: {
  19309. source: "./media/characters/zara/side.svg",
  19310. extra: 765/744,
  19311. bottom: 156/921
  19312. }
  19313. },
  19314. },
  19315. [
  19316. {
  19317. name: "Normal",
  19318. height: math.unit(4, "meters"),
  19319. default: true
  19320. },
  19321. ]
  19322. ))
  19323. characterMakers.push(() => makeCharacter(
  19324. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19325. {
  19326. side: {
  19327. height: math.unit(6, "feet"),
  19328. weight: math.unit(150, "lb"),
  19329. name: "Side",
  19330. image: {
  19331. source: "./media/characters/richard-dragon/side.svg",
  19332. extra: 845 / 340,
  19333. bottom: 0.017
  19334. }
  19335. },
  19336. maw: {
  19337. height: math.unit(2.97, "feet"),
  19338. name: "Maw",
  19339. image: {
  19340. source: "./media/characters/richard-dragon/maw.svg"
  19341. }
  19342. },
  19343. },
  19344. [
  19345. ]
  19346. ))
  19347. characterMakers.push(() => makeCharacter(
  19348. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19349. {
  19350. front: {
  19351. height: math.unit(4, "feet"),
  19352. weight: math.unit(100, "lb"),
  19353. name: "Front",
  19354. image: {
  19355. source: "./media/characters/richard-smeargle/front.svg",
  19356. extra: 2952 / 2820,
  19357. bottom: 0.028
  19358. }
  19359. },
  19360. },
  19361. [
  19362. {
  19363. name: "Normal",
  19364. height: math.unit(4, "feet"),
  19365. default: true
  19366. },
  19367. {
  19368. name: "Dynamax",
  19369. height: math.unit(20, "meters")
  19370. },
  19371. ]
  19372. ))
  19373. characterMakers.push(() => makeCharacter(
  19374. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19375. {
  19376. front: {
  19377. height: math.unit(6, "feet"),
  19378. weight: math.unit(110, "lb"),
  19379. name: "Front",
  19380. image: {
  19381. source: "./media/characters/klay/front.svg",
  19382. extra: 962 / 883,
  19383. bottom: 0.04
  19384. }
  19385. },
  19386. back: {
  19387. height: math.unit(6, "feet"),
  19388. weight: math.unit(110, "lb"),
  19389. name: "Back",
  19390. image: {
  19391. source: "./media/characters/klay/back.svg",
  19392. extra: 962 / 883
  19393. }
  19394. },
  19395. beans: {
  19396. height: math.unit(1.15, "feet"),
  19397. name: "Beans",
  19398. image: {
  19399. source: "./media/characters/klay/beans.svg"
  19400. }
  19401. },
  19402. },
  19403. [
  19404. {
  19405. name: "Micro",
  19406. height: math.unit(6, "inches")
  19407. },
  19408. {
  19409. name: "Mini",
  19410. height: math.unit(3, "feet")
  19411. },
  19412. {
  19413. name: "Normal",
  19414. height: math.unit(6, "feet"),
  19415. default: true
  19416. },
  19417. {
  19418. name: "Big",
  19419. height: math.unit(25, "feet")
  19420. },
  19421. {
  19422. name: "Macro",
  19423. height: math.unit(100, "feet")
  19424. },
  19425. {
  19426. name: "Megamacro",
  19427. height: math.unit(400, "feet")
  19428. },
  19429. ]
  19430. ))
  19431. characterMakers.push(() => makeCharacter(
  19432. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19433. {
  19434. front: {
  19435. height: math.unit(6, "feet"),
  19436. weight: math.unit(160, "lb"),
  19437. name: "Front",
  19438. image: {
  19439. source: "./media/characters/marcus/front.svg",
  19440. extra: 734 / 676,
  19441. bottom: 0.03
  19442. }
  19443. },
  19444. },
  19445. [
  19446. {
  19447. name: "Little",
  19448. height: math.unit(6, "feet")
  19449. },
  19450. {
  19451. name: "Normal",
  19452. height: math.unit(110, "feet"),
  19453. default: true
  19454. },
  19455. {
  19456. name: "Macro",
  19457. height: math.unit(250, "feet")
  19458. },
  19459. {
  19460. name: "Megamacro",
  19461. height: math.unit(1000, "feet")
  19462. },
  19463. ]
  19464. ))
  19465. characterMakers.push(() => makeCharacter(
  19466. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19467. {
  19468. front: {
  19469. height: math.unit(7, "feet"),
  19470. weight: math.unit(275, "lb"),
  19471. name: "Front",
  19472. image: {
  19473. source: "./media/characters/claude-delroute/front.svg",
  19474. extra: 902/827,
  19475. bottom: 26/928
  19476. }
  19477. },
  19478. side: {
  19479. height: math.unit(7, "feet"),
  19480. weight: math.unit(275, "lb"),
  19481. name: "Side",
  19482. image: {
  19483. source: "./media/characters/claude-delroute/side.svg",
  19484. extra: 908/853,
  19485. bottom: 16/924
  19486. }
  19487. },
  19488. back: {
  19489. height: math.unit(7, "feet"),
  19490. weight: math.unit(275, "lb"),
  19491. name: "Back",
  19492. image: {
  19493. source: "./media/characters/claude-delroute/back.svg",
  19494. extra: 911/829,
  19495. bottom: 18/929
  19496. }
  19497. },
  19498. maw: {
  19499. height: math.unit(0.6407, "meters"),
  19500. name: "Maw",
  19501. image: {
  19502. source: "./media/characters/claude-delroute/maw.svg"
  19503. }
  19504. },
  19505. },
  19506. [
  19507. {
  19508. name: "Normal",
  19509. height: math.unit(7, "feet"),
  19510. default: true
  19511. },
  19512. {
  19513. name: "Lorge",
  19514. height: math.unit(20, "feet")
  19515. },
  19516. ]
  19517. ))
  19518. characterMakers.push(() => makeCharacter(
  19519. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19520. {
  19521. front: {
  19522. height: math.unit(8 + 4 / 12, "feet"),
  19523. weight: math.unit(600, "lb"),
  19524. name: "Front",
  19525. image: {
  19526. source: "./media/characters/dragonien/front.svg",
  19527. extra: 100 / 94,
  19528. bottom: 3.3 / 103.3445
  19529. }
  19530. },
  19531. back: {
  19532. height: math.unit(8 + 4 / 12, "feet"),
  19533. weight: math.unit(600, "lb"),
  19534. name: "Back",
  19535. image: {
  19536. source: "./media/characters/dragonien/back.svg",
  19537. extra: 776 / 746,
  19538. bottom: 6.4 / 782.0616
  19539. }
  19540. },
  19541. foot: {
  19542. height: math.unit(1.54, "feet"),
  19543. name: "Foot",
  19544. image: {
  19545. source: "./media/characters/dragonien/foot.svg",
  19546. }
  19547. },
  19548. },
  19549. [
  19550. {
  19551. name: "Normal",
  19552. height: math.unit(8 + 4 / 12, "feet"),
  19553. default: true
  19554. },
  19555. {
  19556. name: "Macro",
  19557. height: math.unit(200, "feet")
  19558. },
  19559. {
  19560. name: "Megamacro",
  19561. height: math.unit(1, "mile")
  19562. },
  19563. {
  19564. name: "Gigamacro",
  19565. height: math.unit(1000, "miles")
  19566. },
  19567. ]
  19568. ))
  19569. characterMakers.push(() => makeCharacter(
  19570. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19571. {
  19572. front: {
  19573. height: math.unit(5 + 2 / 12, "feet"),
  19574. weight: math.unit(110, "lb"),
  19575. name: "Front",
  19576. image: {
  19577. source: "./media/characters/desta/front.svg",
  19578. extra: 767 / 726,
  19579. bottom: 11.7 / 779
  19580. }
  19581. },
  19582. back: {
  19583. height: math.unit(5 + 2 / 12, "feet"),
  19584. weight: math.unit(110, "lb"),
  19585. name: "Back",
  19586. image: {
  19587. source: "./media/characters/desta/back.svg",
  19588. extra: 777 / 728,
  19589. bottom: 6 / 784
  19590. }
  19591. },
  19592. frontAlt: {
  19593. height: math.unit(5 + 2 / 12, "feet"),
  19594. weight: math.unit(110, "lb"),
  19595. name: "Front",
  19596. image: {
  19597. source: "./media/characters/desta/front-alt.svg",
  19598. extra: 1482 / 1417
  19599. }
  19600. },
  19601. side: {
  19602. height: math.unit(5 + 2 / 12, "feet"),
  19603. weight: math.unit(110, "lb"),
  19604. name: "Side",
  19605. image: {
  19606. source: "./media/characters/desta/side.svg",
  19607. extra: 2579 / 2491,
  19608. bottom: 0.053
  19609. }
  19610. },
  19611. },
  19612. [
  19613. {
  19614. name: "Micro",
  19615. height: math.unit(6, "inches")
  19616. },
  19617. {
  19618. name: "Normal",
  19619. height: math.unit(5 + 2 / 12, "feet"),
  19620. default: true
  19621. },
  19622. {
  19623. name: "Macro",
  19624. height: math.unit(62, "feet")
  19625. },
  19626. {
  19627. name: "Megamacro",
  19628. height: math.unit(1800, "feet")
  19629. },
  19630. ]
  19631. ))
  19632. characterMakers.push(() => makeCharacter(
  19633. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19634. {
  19635. front: {
  19636. height: math.unit(10, "feet"),
  19637. weight: math.unit(700, "lb"),
  19638. name: "Front",
  19639. image: {
  19640. source: "./media/characters/storm-alystar/front.svg",
  19641. extra: 2112 / 1898,
  19642. bottom: 0.034
  19643. }
  19644. },
  19645. },
  19646. [
  19647. {
  19648. name: "Micro",
  19649. height: math.unit(3.5, "inches")
  19650. },
  19651. {
  19652. name: "Normal",
  19653. height: math.unit(10, "feet"),
  19654. default: true
  19655. },
  19656. {
  19657. name: "Macro",
  19658. height: math.unit(400, "feet")
  19659. },
  19660. {
  19661. name: "Deific",
  19662. height: math.unit(60, "miles")
  19663. },
  19664. ]
  19665. ))
  19666. characterMakers.push(() => makeCharacter(
  19667. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19668. {
  19669. front: {
  19670. height: math.unit(2.35, "meters"),
  19671. weight: math.unit(119, "kg"),
  19672. name: "Front",
  19673. image: {
  19674. source: "./media/characters/ilia/front.svg",
  19675. extra: 1285 / 1255,
  19676. bottom: 0.06
  19677. }
  19678. },
  19679. },
  19680. [
  19681. {
  19682. name: "Normal",
  19683. height: math.unit(2.35, "meters")
  19684. },
  19685. {
  19686. name: "Macro",
  19687. height: math.unit(140, "meters"),
  19688. default: true
  19689. },
  19690. {
  19691. name: "Megamacro",
  19692. height: math.unit(100, "miles")
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19698. {
  19699. front: {
  19700. height: math.unit(6 + 5 / 12, "feet"),
  19701. weight: math.unit(190, "lb"),
  19702. name: "Front",
  19703. image: {
  19704. source: "./media/characters/kingdead/front.svg",
  19705. extra: 1228 / 1177
  19706. }
  19707. },
  19708. },
  19709. [
  19710. {
  19711. name: "Micro",
  19712. height: math.unit(7, "inches")
  19713. },
  19714. {
  19715. name: "Normal",
  19716. height: math.unit(6 + 5 / 12, "feet")
  19717. },
  19718. {
  19719. name: "Macro",
  19720. height: math.unit(150, "feet"),
  19721. default: true
  19722. },
  19723. {
  19724. name: "Megamacro",
  19725. height: math.unit(200, "miles")
  19726. },
  19727. ]
  19728. ))
  19729. characterMakers.push(() => makeCharacter(
  19730. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19731. {
  19732. front: {
  19733. height: math.unit(8, "feet"),
  19734. weight: math.unit(600, "lb"),
  19735. name: "Front",
  19736. image: {
  19737. source: "./media/characters/kyrehx/front.svg",
  19738. extra: 1195 / 1095,
  19739. bottom: 0.034
  19740. }
  19741. },
  19742. },
  19743. [
  19744. {
  19745. name: "Micro",
  19746. height: math.unit(2, "inches")
  19747. },
  19748. {
  19749. name: "Normal",
  19750. height: math.unit(8, "feet"),
  19751. default: true
  19752. },
  19753. {
  19754. name: "Macro",
  19755. height: math.unit(255, "feet")
  19756. },
  19757. ]
  19758. ))
  19759. characterMakers.push(() => makeCharacter(
  19760. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19761. {
  19762. front: {
  19763. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19764. weight: math.unit(184, "lb"),
  19765. name: "Front",
  19766. image: {
  19767. source: "./media/characters/xang/front.svg",
  19768. extra: 845 / 755
  19769. }
  19770. },
  19771. },
  19772. [
  19773. {
  19774. name: "Normal",
  19775. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19776. default: true
  19777. },
  19778. {
  19779. name: "Macro",
  19780. height: math.unit(0.935 * 146, "feet")
  19781. },
  19782. {
  19783. name: "Megamacro",
  19784. height: math.unit(0.935 * 3, "miles")
  19785. },
  19786. ]
  19787. ))
  19788. characterMakers.push(() => makeCharacter(
  19789. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19790. {
  19791. frontDressed: {
  19792. height: math.unit(5 + 7 / 12, "feet"),
  19793. weight: math.unit(140, "lb"),
  19794. name: "Front (Dressed)",
  19795. image: {
  19796. source: "./media/characters/doc-weardno/front-dressed.svg",
  19797. extra: 263 / 234
  19798. }
  19799. },
  19800. backDressed: {
  19801. height: math.unit(5 + 7 / 12, "feet"),
  19802. weight: math.unit(140, "lb"),
  19803. name: "Back (Dressed)",
  19804. image: {
  19805. source: "./media/characters/doc-weardno/back-dressed.svg",
  19806. extra: 266 / 238
  19807. }
  19808. },
  19809. front: {
  19810. height: math.unit(5 + 7 / 12, "feet"),
  19811. weight: math.unit(140, "lb"),
  19812. name: "Front",
  19813. image: {
  19814. source: "./media/characters/doc-weardno/front.svg",
  19815. extra: 254 / 233
  19816. }
  19817. },
  19818. },
  19819. [
  19820. {
  19821. name: "Micro",
  19822. height: math.unit(3, "inches")
  19823. },
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(5 + 7 / 12, "feet"),
  19827. default: true
  19828. },
  19829. {
  19830. name: "Macro",
  19831. height: math.unit(25, "feet")
  19832. },
  19833. {
  19834. name: "Megamacro",
  19835. height: math.unit(2, "miles")
  19836. },
  19837. ]
  19838. ))
  19839. characterMakers.push(() => makeCharacter(
  19840. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19841. {
  19842. front: {
  19843. height: math.unit(6 + 2 / 12, "feet"),
  19844. weight: math.unit(153, "lb"),
  19845. name: "Front",
  19846. image: {
  19847. source: "./media/characters/seth-whilst/front.svg",
  19848. bottom: 0.07
  19849. }
  19850. },
  19851. },
  19852. [
  19853. {
  19854. name: "Micro",
  19855. height: math.unit(5, "inches")
  19856. },
  19857. {
  19858. name: "Normal",
  19859. height: math.unit(6 + 2 / 12, "feet"),
  19860. default: true
  19861. },
  19862. ]
  19863. ))
  19864. characterMakers.push(() => makeCharacter(
  19865. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19866. {
  19867. front: {
  19868. height: math.unit(3, "inches"),
  19869. weight: math.unit(8, "grams"),
  19870. name: "Front",
  19871. image: {
  19872. source: "./media/characters/pocket-jabari/front.svg",
  19873. extra: 1024 / 974,
  19874. bottom: 0.039
  19875. }
  19876. },
  19877. },
  19878. [
  19879. {
  19880. name: "Minimicro",
  19881. height: math.unit(8, "mm")
  19882. },
  19883. {
  19884. name: "Micro",
  19885. height: math.unit(3, "inches"),
  19886. default: true
  19887. },
  19888. {
  19889. name: "Normal",
  19890. height: math.unit(3, "feet")
  19891. },
  19892. ]
  19893. ))
  19894. characterMakers.push(() => makeCharacter(
  19895. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19896. {
  19897. frontDressed: {
  19898. height: math.unit(15, "feet"),
  19899. weight: math.unit(3280, "lb"),
  19900. name: "Front (Dressed)",
  19901. image: {
  19902. source: "./media/characters/sapphy/front-dressed.svg",
  19903. extra: 1951/1654,
  19904. bottom: 194/2145
  19905. },
  19906. form: "anthro",
  19907. default: true
  19908. },
  19909. backDressed: {
  19910. height: math.unit(15, "feet"),
  19911. weight: math.unit(3280, "lb"),
  19912. name: "Back (Dressed)",
  19913. image: {
  19914. source: "./media/characters/sapphy/back-dressed.svg",
  19915. extra: 2058/1918,
  19916. bottom: 125/2183
  19917. },
  19918. form: "anthro"
  19919. },
  19920. frontNude: {
  19921. height: math.unit(15, "feet"),
  19922. weight: math.unit(3280, "lb"),
  19923. name: "Front (Nude)",
  19924. image: {
  19925. source: "./media/characters/sapphy/front-nude.svg",
  19926. extra: 1951/1654,
  19927. bottom: 194/2145
  19928. },
  19929. form: "anthro"
  19930. },
  19931. backNude: {
  19932. height: math.unit(15, "feet"),
  19933. weight: math.unit(3280, "lb"),
  19934. name: "Back (Nude)",
  19935. image: {
  19936. source: "./media/characters/sapphy/back-nude.svg",
  19937. extra: 2058/1918,
  19938. bottom: 125/2183
  19939. },
  19940. form: "anthro"
  19941. },
  19942. full: {
  19943. height: math.unit(15, "feet"),
  19944. weight: math.unit(3280, "lb"),
  19945. name: "Full",
  19946. image: {
  19947. source: "./media/characters/sapphy/full.svg",
  19948. extra: 1396/1317,
  19949. bottom: 44/1440
  19950. },
  19951. form: "anthro"
  19952. },
  19953. dick: {
  19954. height: math.unit(3.8, "feet"),
  19955. name: "Dick",
  19956. image: {
  19957. source: "./media/characters/sapphy/dick.svg"
  19958. },
  19959. form: "anthro"
  19960. },
  19961. feral: {
  19962. height: math.unit(35, "feet"),
  19963. weight: math.unit(160, "tons"),
  19964. name: "Feral",
  19965. image: {
  19966. source: "./media/characters/sapphy/feral.svg",
  19967. extra: 1050/573,
  19968. bottom: 60/1110
  19969. },
  19970. form: "feral",
  19971. default: true
  19972. },
  19973. },
  19974. [
  19975. {
  19976. name: "Normal",
  19977. height: math.unit(15, "feet"),
  19978. form: "anthro"
  19979. },
  19980. {
  19981. name: "Casual Macro",
  19982. height: math.unit(120, "feet"),
  19983. form: "anthro"
  19984. },
  19985. {
  19986. name: "Macro",
  19987. height: math.unit(2150, "feet"),
  19988. default: true,
  19989. form: "anthro"
  19990. },
  19991. {
  19992. name: "Megamacro",
  19993. height: math.unit(8, "miles"),
  19994. form: "anthro"
  19995. },
  19996. {
  19997. name: "Galaxy Mom",
  19998. height: math.unit(6, "megalightyears"),
  19999. form: "anthro"
  20000. },
  20001. {
  20002. name: "Normal",
  20003. height: math.unit(35, "feet"),
  20004. form: "feral",
  20005. default: true
  20006. },
  20007. {
  20008. name: "Macro",
  20009. height: math.unit(300, "feet"),
  20010. form: "feral"
  20011. },
  20012. {
  20013. name: "Galaxy Mom",
  20014. height: math.unit(10, "megalightyears"),
  20015. form: "feral"
  20016. },
  20017. ],
  20018. {
  20019. "anthro": {
  20020. name: "Anthro",
  20021. default: true
  20022. },
  20023. "feral": {
  20024. name: "Feral"
  20025. }
  20026. }
  20027. ))
  20028. characterMakers.push(() => makeCharacter(
  20029. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20030. {
  20031. hyenaFront: {
  20032. height: math.unit(6, "feet"),
  20033. weight: math.unit(190, "lb"),
  20034. name: "Front",
  20035. image: {
  20036. source: "./media/characters/kiro/hyena-front.svg",
  20037. extra: 927/839,
  20038. bottom: 91/1018
  20039. },
  20040. form: "hyena",
  20041. default: true
  20042. },
  20043. front: {
  20044. height: math.unit(6, "feet"),
  20045. weight: math.unit(170, "lb"),
  20046. name: "Front",
  20047. image: {
  20048. source: "./media/characters/kiro/front.svg",
  20049. extra: 1064 / 1012,
  20050. bottom: 0.052
  20051. },
  20052. form: "folf",
  20053. default: true
  20054. },
  20055. },
  20056. [
  20057. {
  20058. name: "Micro",
  20059. height: math.unit(6, "inches"),
  20060. form: "folf"
  20061. },
  20062. {
  20063. name: "Normal",
  20064. height: math.unit(6, "feet"),
  20065. form: "folf",
  20066. default: true
  20067. },
  20068. {
  20069. name: "Macro",
  20070. height: math.unit(72, "feet"),
  20071. form: "folf"
  20072. },
  20073. {
  20074. name: "Micro",
  20075. height: math.unit(6, "inches"),
  20076. form: "hyena"
  20077. },
  20078. {
  20079. name: "Normal",
  20080. height: math.unit(6, "feet"),
  20081. form: "hyena",
  20082. default: true
  20083. },
  20084. {
  20085. name: "Macro",
  20086. height: math.unit(72, "feet"),
  20087. form: "hyena"
  20088. },
  20089. ],
  20090. {
  20091. "hyena": {
  20092. name: "Hyena",
  20093. default: true
  20094. },
  20095. "folf": {
  20096. name: "Folf",
  20097. },
  20098. }
  20099. ))
  20100. characterMakers.push(() => makeCharacter(
  20101. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20102. {
  20103. front: {
  20104. height: math.unit(5 + 9 / 12, "feet"),
  20105. weight: math.unit(175, "lb"),
  20106. name: "Front",
  20107. image: {
  20108. source: "./media/characters/irishfox/front.svg",
  20109. extra: 1912 / 1680,
  20110. bottom: 0.02
  20111. }
  20112. },
  20113. },
  20114. [
  20115. {
  20116. name: "Nano",
  20117. height: math.unit(1, "mm")
  20118. },
  20119. {
  20120. name: "Micro",
  20121. height: math.unit(2, "inches")
  20122. },
  20123. {
  20124. name: "Normal",
  20125. height: math.unit(5 + 9 / 12, "feet"),
  20126. default: true
  20127. },
  20128. {
  20129. name: "Macro",
  20130. height: math.unit(45, "feet")
  20131. },
  20132. ]
  20133. ))
  20134. characterMakers.push(() => makeCharacter(
  20135. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20136. {
  20137. front: {
  20138. height: math.unit(6 + 1 / 12, "feet"),
  20139. weight: math.unit(75, "lb"),
  20140. name: "Front",
  20141. image: {
  20142. source: "./media/characters/aronai-sieyes/front.svg",
  20143. extra: 1532/1450,
  20144. bottom: 42/1574
  20145. }
  20146. },
  20147. side: {
  20148. height: math.unit(6 + 1 / 12, "feet"),
  20149. weight: math.unit(75, "lb"),
  20150. name: "Side",
  20151. image: {
  20152. source: "./media/characters/aronai-sieyes/side.svg",
  20153. extra: 1422/1365,
  20154. bottom: 148/1570
  20155. }
  20156. },
  20157. back: {
  20158. height: math.unit(6 + 1 / 12, "feet"),
  20159. weight: math.unit(75, "lb"),
  20160. name: "Back",
  20161. image: {
  20162. source: "./media/characters/aronai-sieyes/back.svg",
  20163. extra: 1526/1464,
  20164. bottom: 51/1577
  20165. }
  20166. },
  20167. dressed: {
  20168. height: math.unit(6 + 1 / 12, "feet"),
  20169. weight: math.unit(75, "lb"),
  20170. name: "Dressed",
  20171. image: {
  20172. source: "./media/characters/aronai-sieyes/dressed.svg",
  20173. extra: 1559/1483,
  20174. bottom: 39/1598
  20175. }
  20176. },
  20177. slit: {
  20178. height: math.unit(1.3, "feet"),
  20179. name: "Slit",
  20180. image: {
  20181. source: "./media/characters/aronai-sieyes/slit.svg"
  20182. }
  20183. },
  20184. slitSpread: {
  20185. height: math.unit(0.9, "feet"),
  20186. name: "Slit (Spread)",
  20187. image: {
  20188. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20189. }
  20190. },
  20191. rump: {
  20192. height: math.unit(1.3, "feet"),
  20193. name: "Rump",
  20194. image: {
  20195. source: "./media/characters/aronai-sieyes/rump.svg"
  20196. }
  20197. },
  20198. maw: {
  20199. height: math.unit(1.25, "feet"),
  20200. name: "Maw",
  20201. image: {
  20202. source: "./media/characters/aronai-sieyes/maw.svg"
  20203. }
  20204. },
  20205. feral: {
  20206. height: math.unit(18, "feet"),
  20207. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20208. name: "Feral",
  20209. image: {
  20210. source: "./media/characters/aronai-sieyes/feral.svg",
  20211. extra: 1530 / 1240,
  20212. bottom: 0.035
  20213. }
  20214. },
  20215. },
  20216. [
  20217. {
  20218. name: "Micro",
  20219. height: math.unit(2, "inches")
  20220. },
  20221. {
  20222. name: "Normal",
  20223. height: math.unit(6 + 1 / 12, "feet"),
  20224. default: true
  20225. }
  20226. ]
  20227. ))
  20228. characterMakers.push(() => makeCharacter(
  20229. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20230. {
  20231. front: {
  20232. height: math.unit(12, "feet"),
  20233. weight: math.unit(410, "kg"),
  20234. name: "Front",
  20235. image: {
  20236. source: "./media/characters/xuna/front.svg",
  20237. extra: 2184 / 1980
  20238. }
  20239. },
  20240. side: {
  20241. height: math.unit(12, "feet"),
  20242. weight: math.unit(410, "kg"),
  20243. name: "Side",
  20244. image: {
  20245. source: "./media/characters/xuna/side.svg",
  20246. extra: 2184 / 1980
  20247. }
  20248. },
  20249. back: {
  20250. height: math.unit(12, "feet"),
  20251. weight: math.unit(410, "kg"),
  20252. name: "Back",
  20253. image: {
  20254. source: "./media/characters/xuna/back.svg",
  20255. extra: 2184 / 1980
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Nano glow",
  20262. height: math.unit(10, "nm")
  20263. },
  20264. {
  20265. name: "Micro floof",
  20266. height: math.unit(0.3, "m")
  20267. },
  20268. {
  20269. name: "Huggable softy boi",
  20270. height: math.unit(3.6576, "m"),
  20271. default: true
  20272. },
  20273. {
  20274. name: "Admirable floof",
  20275. height: math.unit(80, "meters")
  20276. },
  20277. {
  20278. name: "Gentle macro",
  20279. height: math.unit(300, "meters")
  20280. },
  20281. {
  20282. name: "Very careful floof",
  20283. height: math.unit(3200, "meters")
  20284. },
  20285. {
  20286. name: "The mega floof",
  20287. height: math.unit(36000, "meters")
  20288. },
  20289. {
  20290. name: "Giga-fur-Wicker",
  20291. height: math.unit(4800000, "meters")
  20292. },
  20293. {
  20294. name: "Licky world",
  20295. height: math.unit(20000000, "meters")
  20296. },
  20297. {
  20298. name: "Floofy cyan sun",
  20299. height: math.unit(1500000000, "meters")
  20300. },
  20301. {
  20302. name: "Milky Wicker",
  20303. height: math.unit(1000000000000000000000, "meters")
  20304. },
  20305. {
  20306. name: "The observing Wicker",
  20307. height: math.unit(999999999999999999999999999, "meters")
  20308. },
  20309. ]
  20310. ))
  20311. characterMakers.push(() => makeCharacter(
  20312. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20313. {
  20314. front: {
  20315. height: math.unit(5 + 9 / 12, "feet"),
  20316. weight: math.unit(150, "lb"),
  20317. name: "Front",
  20318. image: {
  20319. source: "./media/characters/arokha-sieyes/front.svg",
  20320. extra: 1425 / 1284,
  20321. bottom: 0.05
  20322. }
  20323. },
  20324. },
  20325. [
  20326. {
  20327. name: "Normal",
  20328. height: math.unit(5 + 9 / 12, "feet")
  20329. },
  20330. {
  20331. name: "Macro",
  20332. height: math.unit(30, "meters"),
  20333. default: true
  20334. },
  20335. ]
  20336. ))
  20337. characterMakers.push(() => makeCharacter(
  20338. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20339. {
  20340. front: {
  20341. height: math.unit(6, "feet"),
  20342. weight: math.unit(180, "lb"),
  20343. name: "Front",
  20344. image: {
  20345. source: "./media/characters/arokh-sieyes/front.svg",
  20346. extra: 1830 / 1769,
  20347. bottom: 0.01
  20348. }
  20349. },
  20350. },
  20351. [
  20352. {
  20353. name: "Normal",
  20354. height: math.unit(6, "feet")
  20355. },
  20356. {
  20357. name: "Macro",
  20358. height: math.unit(30, "meters"),
  20359. default: true
  20360. },
  20361. ]
  20362. ))
  20363. characterMakers.push(() => makeCharacter(
  20364. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20365. {
  20366. side: {
  20367. height: math.unit(13 + 1 / 12, "feet"),
  20368. weight: math.unit(8.5, "tonnes"),
  20369. preyCapacity: math.unit(36, "people"),
  20370. name: "Side",
  20371. image: {
  20372. source: "./media/characters/goldeneye/side.svg",
  20373. extra: 1139/741,
  20374. bottom: 98/1237
  20375. }
  20376. },
  20377. front: {
  20378. height: math.unit(5.1, "feet"),
  20379. weight: math.unit(8.5, "tonnes"),
  20380. preyCapacity: math.unit(36, "people"),
  20381. name: "Front",
  20382. image: {
  20383. source: "./media/characters/goldeneye/front.svg",
  20384. extra: 635/365,
  20385. bottom: 598/1233
  20386. }
  20387. },
  20388. maw: {
  20389. height: math.unit(6.6, "feet"),
  20390. name: "Maw",
  20391. image: {
  20392. source: "./media/characters/goldeneye/maw.svg"
  20393. }
  20394. },
  20395. headFront: {
  20396. height: math.unit(8, "feet"),
  20397. name: "Head (Front)",
  20398. image: {
  20399. source: "./media/characters/goldeneye/head-front.svg"
  20400. }
  20401. },
  20402. headSide: {
  20403. height: math.unit(6, "feet"),
  20404. name: "Head (Side)",
  20405. image: {
  20406. source: "./media/characters/goldeneye/head-side.svg"
  20407. }
  20408. },
  20409. headBack: {
  20410. height: math.unit(8, "feet"),
  20411. name: "Head (Back)",
  20412. image: {
  20413. source: "./media/characters/goldeneye/head-back.svg"
  20414. }
  20415. },
  20416. paw: {
  20417. height: math.unit(3.4, "feet"),
  20418. name: "Paw",
  20419. image: {
  20420. source: "./media/characters/goldeneye/paw.svg"
  20421. }
  20422. },
  20423. toering: {
  20424. height: math.unit(0.45, "feet"),
  20425. name: "Toering",
  20426. image: {
  20427. source: "./media/characters/goldeneye/toering.svg"
  20428. }
  20429. },
  20430. eyes: {
  20431. height: math.unit(0.5, "feet"),
  20432. name: "Eyes",
  20433. image: {
  20434. source: "./media/characters/goldeneye/eyes.svg"
  20435. }
  20436. },
  20437. },
  20438. [
  20439. {
  20440. name: "Normal",
  20441. height: math.unit(13 + 1 / 12, "feet"),
  20442. default: true
  20443. },
  20444. ]
  20445. ))
  20446. characterMakers.push(() => makeCharacter(
  20447. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20448. {
  20449. front: {
  20450. height: math.unit(6 + 1 / 12, "feet"),
  20451. weight: math.unit(210, "lb"),
  20452. name: "Front",
  20453. image: {
  20454. source: "./media/characters/leonardo-lycheborne/front.svg",
  20455. extra: 776/723,
  20456. bottom: 34/810
  20457. }
  20458. },
  20459. side: {
  20460. height: math.unit(6 + 1 / 12, "feet"),
  20461. weight: math.unit(210, "lb"),
  20462. name: "Side",
  20463. image: {
  20464. source: "./media/characters/leonardo-lycheborne/side.svg",
  20465. extra: 780/728,
  20466. bottom: 12/792
  20467. }
  20468. },
  20469. back: {
  20470. height: math.unit(6 + 1 / 12, "feet"),
  20471. weight: math.unit(210, "lb"),
  20472. name: "Back",
  20473. image: {
  20474. source: "./media/characters/leonardo-lycheborne/back.svg",
  20475. extra: 775/721,
  20476. bottom: 17/792
  20477. }
  20478. },
  20479. hand: {
  20480. height: math.unit(1.08, "feet"),
  20481. name: "Hand",
  20482. image: {
  20483. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20484. }
  20485. },
  20486. foot: {
  20487. height: math.unit(1.32, "feet"),
  20488. name: "Foot",
  20489. image: {
  20490. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20491. }
  20492. },
  20493. maw: {
  20494. height: math.unit(1, "feet"),
  20495. name: "Maw",
  20496. image: {
  20497. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20498. }
  20499. },
  20500. were: {
  20501. height: math.unit(20, "feet"),
  20502. weight: math.unit(7800, "lb"),
  20503. name: "Were",
  20504. image: {
  20505. source: "./media/characters/leonardo-lycheborne/were.svg",
  20506. extra: 1224/1165,
  20507. bottom: 72/1296
  20508. }
  20509. },
  20510. feral: {
  20511. height: math.unit(7.5, "feet"),
  20512. weight: math.unit(600, "lb"),
  20513. name: "Feral",
  20514. image: {
  20515. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20516. extra: 797/702,
  20517. bottom: 139/936
  20518. }
  20519. },
  20520. taur: {
  20521. height: math.unit(11, "feet"),
  20522. weight: math.unit(3300, "lb"),
  20523. name: "Taur",
  20524. image: {
  20525. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20526. extra: 1271/1197,
  20527. bottom: 47/1318
  20528. }
  20529. },
  20530. barghest: {
  20531. height: math.unit(11, "feet"),
  20532. weight: math.unit(1300, "lb"),
  20533. name: "Barghest",
  20534. image: {
  20535. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20536. extra: 1291/1204,
  20537. bottom: 37/1328
  20538. }
  20539. },
  20540. dick: {
  20541. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20542. name: "Dick",
  20543. image: {
  20544. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20545. }
  20546. },
  20547. dickWere: {
  20548. height: math.unit((20) / 3.8, "feet"),
  20549. name: "Dick (Were)",
  20550. image: {
  20551. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20552. }
  20553. },
  20554. },
  20555. [
  20556. {
  20557. name: "Normal",
  20558. height: math.unit(6 + 1 / 12, "feet"),
  20559. default: true
  20560. },
  20561. ]
  20562. ))
  20563. characterMakers.push(() => makeCharacter(
  20564. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20565. {
  20566. front: {
  20567. height: math.unit(10, "feet"),
  20568. weight: math.unit(350, "lb"),
  20569. name: "Front",
  20570. image: {
  20571. source: "./media/characters/jet/front.svg",
  20572. extra: 2050 / 1980,
  20573. bottom: 0.013
  20574. }
  20575. },
  20576. back: {
  20577. height: math.unit(10, "feet"),
  20578. weight: math.unit(350, "lb"),
  20579. name: "Back",
  20580. image: {
  20581. source: "./media/characters/jet/back.svg",
  20582. extra: 2050 / 1980,
  20583. bottom: 0.013
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Micro",
  20590. height: math.unit(6, "inches")
  20591. },
  20592. {
  20593. name: "Normal",
  20594. height: math.unit(10, "feet"),
  20595. default: true
  20596. },
  20597. {
  20598. name: "Macro",
  20599. height: math.unit(100, "feet")
  20600. },
  20601. ]
  20602. ))
  20603. characterMakers.push(() => makeCharacter(
  20604. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20605. {
  20606. front: {
  20607. height: math.unit(15, "feet"),
  20608. weight: math.unit(2800, "lb"),
  20609. name: "Front",
  20610. image: {
  20611. source: "./media/characters/tanarath/front.svg",
  20612. extra: 2392 / 2220,
  20613. bottom: 0.03
  20614. }
  20615. },
  20616. back: {
  20617. height: math.unit(15, "feet"),
  20618. weight: math.unit(2800, "lb"),
  20619. name: "Back",
  20620. image: {
  20621. source: "./media/characters/tanarath/back.svg",
  20622. extra: 2392 / 2220,
  20623. bottom: 0.03
  20624. }
  20625. },
  20626. },
  20627. [
  20628. {
  20629. name: "Normal",
  20630. height: math.unit(15, "feet"),
  20631. default: true
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20637. {
  20638. front: {
  20639. height: math.unit(7 + 1 / 12, "feet"),
  20640. weight: math.unit(175, "lb"),
  20641. name: "Front",
  20642. image: {
  20643. source: "./media/characters/patty-cattybatty/front.svg",
  20644. extra: 908 / 874,
  20645. bottom: 0.025
  20646. }
  20647. },
  20648. },
  20649. [
  20650. {
  20651. name: "Micro",
  20652. height: math.unit(1, "inch")
  20653. },
  20654. {
  20655. name: "Normal",
  20656. height: math.unit(7 + 1 / 12, "feet")
  20657. },
  20658. {
  20659. name: "Mini Macro",
  20660. height: math.unit(155, "feet")
  20661. },
  20662. {
  20663. name: "Macro",
  20664. height: math.unit(1077, "feet")
  20665. },
  20666. {
  20667. name: "Mega Macro",
  20668. height: math.unit(47650, "feet"),
  20669. default: true
  20670. },
  20671. {
  20672. name: "Giga Macro",
  20673. height: math.unit(440, "miles")
  20674. },
  20675. {
  20676. name: "Tera Macro",
  20677. height: math.unit(8700, "miles")
  20678. },
  20679. {
  20680. name: "Planetary Macro",
  20681. height: math.unit(32700, "miles")
  20682. },
  20683. {
  20684. name: "Solar Macro",
  20685. height: math.unit(550000, "miles")
  20686. },
  20687. {
  20688. name: "Celestial Macro",
  20689. height: math.unit(2.5, "AU")
  20690. },
  20691. ]
  20692. ))
  20693. characterMakers.push(() => makeCharacter(
  20694. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20695. {
  20696. front: {
  20697. height: math.unit(4 + 5 / 12, "feet"),
  20698. weight: math.unit(90, "lb"),
  20699. name: "Front",
  20700. image: {
  20701. source: "./media/characters/cappu/front.svg",
  20702. extra: 1247 / 1152,
  20703. bottom: 0.012
  20704. }
  20705. },
  20706. },
  20707. [
  20708. {
  20709. name: "Normal",
  20710. height: math.unit(4 + 5 / 12, "feet"),
  20711. default: true
  20712. },
  20713. ]
  20714. ))
  20715. characterMakers.push(() => makeCharacter(
  20716. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20717. {
  20718. frontDressed: {
  20719. height: math.unit(70, "cm"),
  20720. weight: math.unit(6, "kg"),
  20721. name: "Front (Dressed)",
  20722. image: {
  20723. source: "./media/characters/sebi/front-dressed.svg",
  20724. extra: 713.5 / 686.5,
  20725. bottom: 0.003
  20726. }
  20727. },
  20728. front: {
  20729. height: math.unit(70, "cm"),
  20730. weight: math.unit(5, "kg"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/sebi/front.svg",
  20734. extra: 713.5 / 686.5,
  20735. bottom: 0.003
  20736. }
  20737. }
  20738. },
  20739. [
  20740. {
  20741. name: "Normal",
  20742. height: math.unit(70, "cm"),
  20743. default: true
  20744. },
  20745. {
  20746. name: "Macro",
  20747. height: math.unit(8, "meters")
  20748. },
  20749. ]
  20750. ))
  20751. characterMakers.push(() => makeCharacter(
  20752. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20753. {
  20754. front: {
  20755. height: math.unit(6, "feet"),
  20756. weight: math.unit(150, "lb"),
  20757. name: "Front",
  20758. image: {
  20759. source: "./media/characters/typhek/front.svg",
  20760. extra: 1948 / 1929,
  20761. bottom: 0.025
  20762. }
  20763. },
  20764. side: {
  20765. height: math.unit(6, "feet"),
  20766. weight: math.unit(150, "lb"),
  20767. name: "Side",
  20768. image: {
  20769. source: "./media/characters/typhek/side.svg",
  20770. extra: 2034 / 2010,
  20771. bottom: 0.003
  20772. }
  20773. },
  20774. back: {
  20775. height: math.unit(6, "feet"),
  20776. weight: math.unit(150, "lb"),
  20777. name: "Back",
  20778. image: {
  20779. source: "./media/characters/typhek/back.svg",
  20780. extra: 2005 / 1978,
  20781. bottom: 0.004
  20782. }
  20783. },
  20784. palm: {
  20785. height: math.unit(1.2, "feet"),
  20786. name: "Palm",
  20787. image: {
  20788. source: "./media/characters/typhek/palm.svg"
  20789. }
  20790. },
  20791. fist: {
  20792. height: math.unit(1.1, "feet"),
  20793. name: "Fist",
  20794. image: {
  20795. source: "./media/characters/typhek/fist.svg"
  20796. }
  20797. },
  20798. foot: {
  20799. height: math.unit(1.57, "feet"),
  20800. name: "Foot",
  20801. image: {
  20802. source: "./media/characters/typhek/foot.svg"
  20803. }
  20804. },
  20805. sole: {
  20806. height: math.unit(2.05, "feet"),
  20807. name: "Sole",
  20808. image: {
  20809. source: "./media/characters/typhek/sole.svg"
  20810. }
  20811. },
  20812. },
  20813. [
  20814. {
  20815. name: "Macro",
  20816. height: math.unit(40, "stories"),
  20817. default: true
  20818. },
  20819. {
  20820. name: "Megamacro",
  20821. height: math.unit(1, "mile")
  20822. },
  20823. {
  20824. name: "Gigamacro",
  20825. height: math.unit(4000, "solarradii")
  20826. },
  20827. {
  20828. name: "Universal",
  20829. height: math.unit(1.1, "universes")
  20830. }
  20831. ]
  20832. ))
  20833. characterMakers.push(() => makeCharacter(
  20834. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20835. {
  20836. side: {
  20837. height: math.unit(5 + 7 / 12, "feet"),
  20838. weight: math.unit(150, "lb"),
  20839. name: "Side",
  20840. image: {
  20841. source: "./media/characters/kassy/side.svg",
  20842. extra: 1280 / 1225,
  20843. bottom: 0.002
  20844. }
  20845. },
  20846. front: {
  20847. height: math.unit(5 + 7 / 12, "feet"),
  20848. weight: math.unit(150, "lb"),
  20849. name: "Front",
  20850. image: {
  20851. source: "./media/characters/kassy/front.svg",
  20852. extra: 1280 / 1225,
  20853. bottom: 0.025
  20854. }
  20855. },
  20856. back: {
  20857. height: math.unit(5 + 7 / 12, "feet"),
  20858. weight: math.unit(150, "lb"),
  20859. name: "Back",
  20860. image: {
  20861. source: "./media/characters/kassy/back.svg",
  20862. extra: 1280 / 1225,
  20863. bottom: 0.002
  20864. }
  20865. },
  20866. foot: {
  20867. height: math.unit(1.266, "feet"),
  20868. name: "Foot",
  20869. image: {
  20870. source: "./media/characters/kassy/foot.svg"
  20871. }
  20872. },
  20873. },
  20874. [
  20875. {
  20876. name: "Normal",
  20877. height: math.unit(5 + 7 / 12, "feet")
  20878. },
  20879. {
  20880. name: "Macro",
  20881. height: math.unit(137, "feet"),
  20882. default: true
  20883. },
  20884. {
  20885. name: "Megamacro",
  20886. height: math.unit(1, "mile")
  20887. },
  20888. ]
  20889. ))
  20890. characterMakers.push(() => makeCharacter(
  20891. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20892. {
  20893. front: {
  20894. height: math.unit(6 + 1 / 12, "feet"),
  20895. weight: math.unit(200, "lb"),
  20896. name: "Front",
  20897. image: {
  20898. source: "./media/characters/neil/front.svg",
  20899. extra: 1326 / 1250,
  20900. bottom: 0.023
  20901. }
  20902. },
  20903. },
  20904. [
  20905. {
  20906. name: "Normal",
  20907. height: math.unit(6 + 1 / 12, "feet"),
  20908. default: true
  20909. },
  20910. {
  20911. name: "Macro",
  20912. height: math.unit(200, "feet")
  20913. },
  20914. ]
  20915. ))
  20916. characterMakers.push(() => makeCharacter(
  20917. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20918. {
  20919. front: {
  20920. height: math.unit(5 + 9 / 12, "feet"),
  20921. weight: math.unit(190, "lb"),
  20922. name: "Front",
  20923. image: {
  20924. source: "./media/characters/atticus/front.svg",
  20925. extra: 2934 / 2785,
  20926. bottom: 0.025
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Normal",
  20933. height: math.unit(5 + 9 / 12, "feet"),
  20934. default: true
  20935. },
  20936. {
  20937. name: "Macro",
  20938. height: math.unit(180, "feet")
  20939. },
  20940. ]
  20941. ))
  20942. characterMakers.push(() => makeCharacter(
  20943. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20944. {
  20945. side: {
  20946. height: math.unit(9, "feet"),
  20947. weight: math.unit(650, "lb"),
  20948. name: "Side",
  20949. image: {
  20950. source: "./media/characters/milo/side.svg",
  20951. extra: 2644 / 2310,
  20952. bottom: 0.032
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Normal",
  20959. height: math.unit(9, "feet"),
  20960. default: true
  20961. },
  20962. {
  20963. name: "Macro",
  20964. height: math.unit(300, "feet")
  20965. },
  20966. ]
  20967. ))
  20968. characterMakers.push(() => makeCharacter(
  20969. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20970. {
  20971. side: {
  20972. height: math.unit(8, "meters"),
  20973. weight: math.unit(90000, "kg"),
  20974. name: "Side",
  20975. image: {
  20976. source: "./media/characters/ijzer/side.svg",
  20977. extra: 2756 / 1600,
  20978. bottom: 0.01
  20979. }
  20980. },
  20981. },
  20982. [
  20983. {
  20984. name: "Small",
  20985. height: math.unit(3, "meters")
  20986. },
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(8, "meters"),
  20990. default: true
  20991. },
  20992. {
  20993. name: "Normal+",
  20994. height: math.unit(10, "meters")
  20995. },
  20996. {
  20997. name: "Bigger",
  20998. height: math.unit(24, "meters")
  20999. },
  21000. {
  21001. name: "Huge",
  21002. height: math.unit(80, "meters")
  21003. },
  21004. ]
  21005. ))
  21006. characterMakers.push(() => makeCharacter(
  21007. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21008. {
  21009. front: {
  21010. height: math.unit(6 + 2 / 12, "feet"),
  21011. weight: math.unit(153, "lb"),
  21012. name: "Front",
  21013. image: {
  21014. source: "./media/characters/luca-cervicum/front.svg",
  21015. extra: 370 / 327,
  21016. bottom: 0.015
  21017. }
  21018. },
  21019. back: {
  21020. height: math.unit(6 + 2 / 12, "feet"),
  21021. weight: math.unit(153, "lb"),
  21022. name: "Back",
  21023. image: {
  21024. source: "./media/characters/luca-cervicum/back.svg",
  21025. extra: 367 / 333,
  21026. bottom: 0.005
  21027. }
  21028. },
  21029. frontGear: {
  21030. height: math.unit(6 + 2 / 12, "feet"),
  21031. weight: math.unit(173, "lb"),
  21032. name: "Front (Gear)",
  21033. image: {
  21034. source: "./media/characters/luca-cervicum/front-gear.svg",
  21035. extra: 377 / 333,
  21036. bottom: 0.006
  21037. }
  21038. },
  21039. },
  21040. [
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(6 + 2 / 12, "feet"),
  21044. default: true
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21050. {
  21051. front: {
  21052. height: math.unit(6 + 1 / 12, "feet"),
  21053. weight: math.unit(304, "lb"),
  21054. name: "Front",
  21055. image: {
  21056. source: "./media/characters/oliver/front.svg",
  21057. extra: 157 / 143,
  21058. bottom: 0.08
  21059. }
  21060. },
  21061. },
  21062. [
  21063. {
  21064. name: "Normal",
  21065. height: math.unit(6 + 1 / 12, "feet"),
  21066. default: true
  21067. },
  21068. ]
  21069. ))
  21070. characterMakers.push(() => makeCharacter(
  21071. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21072. {
  21073. front: {
  21074. height: math.unit(5 + 7 / 12, "feet"),
  21075. weight: math.unit(140, "lb"),
  21076. name: "Front",
  21077. image: {
  21078. source: "./media/characters/shane/front.svg",
  21079. extra: 304 / 289,
  21080. bottom: 0.005
  21081. }
  21082. },
  21083. },
  21084. [
  21085. {
  21086. name: "Normal",
  21087. height: math.unit(5 + 7 / 12, "feet"),
  21088. default: true
  21089. },
  21090. ]
  21091. ))
  21092. characterMakers.push(() => makeCharacter(
  21093. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21094. {
  21095. front: {
  21096. height: math.unit(5 + 9 / 12, "feet"),
  21097. weight: math.unit(178, "lb"),
  21098. name: "Front",
  21099. image: {
  21100. source: "./media/characters/shin/front.svg",
  21101. extra: 159 / 151,
  21102. bottom: 0.015
  21103. }
  21104. },
  21105. },
  21106. [
  21107. {
  21108. name: "Normal",
  21109. height: math.unit(5 + 9 / 12, "feet"),
  21110. default: true
  21111. },
  21112. ]
  21113. ))
  21114. characterMakers.push(() => makeCharacter(
  21115. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21116. {
  21117. front: {
  21118. height: math.unit(5 + 10 / 12, "feet"),
  21119. weight: math.unit(168, "lb"),
  21120. name: "Front",
  21121. image: {
  21122. source: "./media/characters/xerxes/front.svg",
  21123. extra: 282 / 260,
  21124. bottom: 0.045
  21125. }
  21126. },
  21127. },
  21128. [
  21129. {
  21130. name: "Normal",
  21131. height: math.unit(5 + 10 / 12, "feet"),
  21132. default: true
  21133. },
  21134. ]
  21135. ))
  21136. characterMakers.push(() => makeCharacter(
  21137. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21138. {
  21139. front: {
  21140. height: math.unit(6 + 7 / 12, "feet"),
  21141. weight: math.unit(208, "lb"),
  21142. name: "Front",
  21143. image: {
  21144. source: "./media/characters/chaska/front.svg",
  21145. extra: 332 / 319,
  21146. bottom: 0.015
  21147. }
  21148. },
  21149. },
  21150. [
  21151. {
  21152. name: "Normal",
  21153. height: math.unit(6 + 7 / 12, "feet"),
  21154. default: true
  21155. },
  21156. ]
  21157. ))
  21158. characterMakers.push(() => makeCharacter(
  21159. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21160. {
  21161. front: {
  21162. height: math.unit(5 + 8 / 12, "feet"),
  21163. weight: math.unit(208, "lb"),
  21164. name: "Front",
  21165. image: {
  21166. source: "./media/characters/enuk/front.svg",
  21167. extra: 437 / 406,
  21168. bottom: 0.02
  21169. }
  21170. },
  21171. },
  21172. [
  21173. {
  21174. name: "Normal",
  21175. height: math.unit(5 + 8 / 12, "feet"),
  21176. default: true
  21177. },
  21178. ]
  21179. ))
  21180. characterMakers.push(() => makeCharacter(
  21181. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21182. {
  21183. front: {
  21184. height: math.unit(5 + 10 / 12, "feet"),
  21185. weight: math.unit(252, "lb"),
  21186. name: "Front",
  21187. image: {
  21188. source: "./media/characters/bruun/front.svg",
  21189. extra: 197 / 187,
  21190. bottom: 0.012
  21191. }
  21192. },
  21193. },
  21194. [
  21195. {
  21196. name: "Normal",
  21197. height: math.unit(5 + 10 / 12, "feet"),
  21198. default: true
  21199. },
  21200. ]
  21201. ))
  21202. characterMakers.push(() => makeCharacter(
  21203. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21204. {
  21205. front: {
  21206. height: math.unit(6 + 10 / 12, "feet"),
  21207. weight: math.unit(255, "lb"),
  21208. name: "Front",
  21209. image: {
  21210. source: "./media/characters/alexeev/front.svg",
  21211. extra: 213 / 200,
  21212. bottom: 0.05
  21213. }
  21214. },
  21215. },
  21216. [
  21217. {
  21218. name: "Normal",
  21219. height: math.unit(6 + 10 / 12, "feet"),
  21220. default: true
  21221. },
  21222. ]
  21223. ))
  21224. characterMakers.push(() => makeCharacter(
  21225. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21226. {
  21227. front: {
  21228. height: math.unit(2 + 8 / 12, "feet"),
  21229. weight: math.unit(22, "lb"),
  21230. name: "Front",
  21231. image: {
  21232. source: "./media/characters/evelyn/front.svg",
  21233. extra: 208 / 180
  21234. }
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Normal",
  21240. height: math.unit(2 + 8 / 12, "feet"),
  21241. default: true
  21242. },
  21243. ]
  21244. ))
  21245. characterMakers.push(() => makeCharacter(
  21246. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21247. {
  21248. front: {
  21249. height: math.unit(5 + 9 / 12, "feet"),
  21250. weight: math.unit(139, "lb"),
  21251. name: "Front",
  21252. image: {
  21253. source: "./media/characters/inca/front.svg",
  21254. extra: 294 / 291,
  21255. bottom: 0.03
  21256. }
  21257. },
  21258. },
  21259. [
  21260. {
  21261. name: "Normal",
  21262. height: math.unit(5 + 9 / 12, "feet"),
  21263. default: true
  21264. },
  21265. ]
  21266. ))
  21267. characterMakers.push(() => makeCharacter(
  21268. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21269. {
  21270. front: {
  21271. height: math.unit(6 + 3 / 12, "feet"),
  21272. weight: math.unit(185, "lb"),
  21273. name: "Front",
  21274. image: {
  21275. source: "./media/characters/mera/front.svg",
  21276. extra: 291 / 277,
  21277. bottom: 0.03
  21278. }
  21279. },
  21280. },
  21281. [
  21282. {
  21283. name: "Normal",
  21284. height: math.unit(6 + 3 / 12, "feet"),
  21285. default: true
  21286. },
  21287. ]
  21288. ))
  21289. characterMakers.push(() => makeCharacter(
  21290. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21291. {
  21292. front: {
  21293. height: math.unit(6 + 7 / 12, "feet"),
  21294. weight: math.unit(160, "lb"),
  21295. name: "Front",
  21296. image: {
  21297. source: "./media/characters/ceres/front.svg",
  21298. extra: 1023 / 950,
  21299. bottom: 0.027
  21300. }
  21301. },
  21302. back: {
  21303. height: math.unit(6 + 7 / 12, "feet"),
  21304. weight: math.unit(160, "lb"),
  21305. name: "Back",
  21306. image: {
  21307. source: "./media/characters/ceres/back.svg",
  21308. extra: 1023 / 950
  21309. }
  21310. },
  21311. },
  21312. [
  21313. {
  21314. name: "Normal",
  21315. height: math.unit(6 + 7 / 12, "feet"),
  21316. default: true
  21317. },
  21318. ]
  21319. ))
  21320. characterMakers.push(() => makeCharacter(
  21321. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21322. {
  21323. front: {
  21324. height: math.unit(5 + 10 / 12, "feet"),
  21325. weight: math.unit(150, "lb"),
  21326. name: "Front",
  21327. image: {
  21328. source: "./media/characters/kris/front.svg",
  21329. extra: 885 / 803,
  21330. bottom: 0.03
  21331. }
  21332. },
  21333. },
  21334. [
  21335. {
  21336. name: "Normal",
  21337. height: math.unit(5 + 10 / 12, "feet"),
  21338. default: true
  21339. },
  21340. ]
  21341. ))
  21342. characterMakers.push(() => makeCharacter(
  21343. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21344. {
  21345. front: {
  21346. height: math.unit(7, "feet"),
  21347. weight: math.unit(120, "kg"),
  21348. name: "Front",
  21349. image: {
  21350. source: "./media/characters/taluthus/front.svg",
  21351. extra: 903 / 833,
  21352. bottom: 0.015
  21353. }
  21354. },
  21355. },
  21356. [
  21357. {
  21358. name: "Normal",
  21359. height: math.unit(7, "feet"),
  21360. default: true
  21361. },
  21362. {
  21363. name: "Macro",
  21364. height: math.unit(300, "feet")
  21365. },
  21366. ]
  21367. ))
  21368. characterMakers.push(() => makeCharacter(
  21369. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21370. {
  21371. front: {
  21372. height: math.unit(5 + 9 / 12, "feet"),
  21373. weight: math.unit(145, "lb"),
  21374. name: "Front",
  21375. image: {
  21376. source: "./media/characters/dawn/front.svg",
  21377. extra: 2094 / 2016,
  21378. bottom: 0.025
  21379. }
  21380. },
  21381. back: {
  21382. height: math.unit(5 + 9 / 12, "feet"),
  21383. weight: math.unit(160, "lb"),
  21384. name: "Back",
  21385. image: {
  21386. source: "./media/characters/dawn/back.svg",
  21387. extra: 2112 / 2080,
  21388. bottom: 0.005
  21389. }
  21390. },
  21391. },
  21392. [
  21393. {
  21394. name: "Normal",
  21395. height: math.unit(6 + 7 / 12, "feet"),
  21396. default: true
  21397. },
  21398. ]
  21399. ))
  21400. characterMakers.push(() => makeCharacter(
  21401. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21402. {
  21403. anthro: {
  21404. height: math.unit(8 + 3 / 12, "feet"),
  21405. weight: math.unit(450, "lb"),
  21406. name: "Anthro",
  21407. image: {
  21408. source: "./media/characters/arador/anthro.svg",
  21409. extra: 1835 / 1718,
  21410. bottom: 0.025
  21411. }
  21412. },
  21413. feral: {
  21414. height: math.unit(4, "feet"),
  21415. weight: math.unit(200, "lb"),
  21416. name: "Feral",
  21417. image: {
  21418. source: "./media/characters/arador/feral.svg",
  21419. extra: 1683 / 1514,
  21420. bottom: 0.07
  21421. }
  21422. },
  21423. },
  21424. [
  21425. {
  21426. name: "Normal",
  21427. height: math.unit(8 + 3 / 12, "feet")
  21428. },
  21429. {
  21430. name: "Macro",
  21431. height: math.unit(82.5, "feet"),
  21432. default: true
  21433. },
  21434. ]
  21435. ))
  21436. characterMakers.push(() => makeCharacter(
  21437. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21438. {
  21439. front: {
  21440. height: math.unit(5 + 10 / 12, "feet"),
  21441. weight: math.unit(125, "lb"),
  21442. name: "Front",
  21443. image: {
  21444. source: "./media/characters/dharsi/front.svg",
  21445. extra: 716 / 630,
  21446. bottom: 0.035
  21447. }
  21448. },
  21449. },
  21450. [
  21451. {
  21452. name: "Nano",
  21453. height: math.unit(100, "nm")
  21454. },
  21455. {
  21456. name: "Micro",
  21457. height: math.unit(2, "inches")
  21458. },
  21459. {
  21460. name: "Normal",
  21461. height: math.unit(5 + 10 / 12, "feet"),
  21462. default: true
  21463. },
  21464. {
  21465. name: "Macro",
  21466. height: math.unit(1000, "feet")
  21467. },
  21468. {
  21469. name: "Megamacro",
  21470. height: math.unit(10, "miles")
  21471. },
  21472. {
  21473. name: "Gigamacro",
  21474. height: math.unit(3000, "miles")
  21475. },
  21476. {
  21477. name: "Teramacro",
  21478. height: math.unit(500000, "miles")
  21479. },
  21480. {
  21481. name: "Teramacro+",
  21482. height: math.unit(30, "galaxies")
  21483. },
  21484. ]
  21485. ))
  21486. characterMakers.push(() => makeCharacter(
  21487. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21488. {
  21489. front: {
  21490. height: math.unit(6, "feet"),
  21491. weight: math.unit(150, "lb"),
  21492. name: "Front",
  21493. image: {
  21494. source: "./media/characters/deathy/front.svg",
  21495. extra: 1552 / 1463,
  21496. bottom: 0.025
  21497. }
  21498. },
  21499. side: {
  21500. height: math.unit(6, "feet"),
  21501. weight: math.unit(150, "lb"),
  21502. name: "Side",
  21503. image: {
  21504. source: "./media/characters/deathy/side.svg",
  21505. extra: 1604 / 1455,
  21506. bottom: 0.025
  21507. }
  21508. },
  21509. back: {
  21510. height: math.unit(6, "feet"),
  21511. weight: math.unit(150, "lb"),
  21512. name: "Back",
  21513. image: {
  21514. source: "./media/characters/deathy/back.svg",
  21515. extra: 1580 / 1463,
  21516. bottom: 0.005
  21517. }
  21518. },
  21519. },
  21520. [
  21521. {
  21522. name: "Micro",
  21523. height: math.unit(5, "millimeters")
  21524. },
  21525. {
  21526. name: "Normal",
  21527. height: math.unit(6 + 5 / 12, "feet"),
  21528. default: true
  21529. },
  21530. ]
  21531. ))
  21532. characterMakers.push(() => makeCharacter(
  21533. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21534. {
  21535. front: {
  21536. height: math.unit(16, "feet"),
  21537. weight: math.unit(4000, "lb"),
  21538. name: "Front",
  21539. image: {
  21540. source: "./media/characters/juniper/front.svg",
  21541. bottom: 0.04
  21542. }
  21543. },
  21544. },
  21545. [
  21546. {
  21547. name: "Normal",
  21548. height: math.unit(16, "feet"),
  21549. default: true
  21550. },
  21551. ]
  21552. ))
  21553. characterMakers.push(() => makeCharacter(
  21554. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21555. {
  21556. front: {
  21557. height: math.unit(6, "feet"),
  21558. weight: math.unit(150, "lb"),
  21559. name: "Front",
  21560. image: {
  21561. source: "./media/characters/hipster/front.svg",
  21562. extra: 1312 / 1209,
  21563. bottom: 0.025
  21564. }
  21565. },
  21566. back: {
  21567. height: math.unit(6, "feet"),
  21568. weight: math.unit(150, "lb"),
  21569. name: "Back",
  21570. image: {
  21571. source: "./media/characters/hipster/back.svg",
  21572. extra: 1281 / 1196,
  21573. bottom: 0.01
  21574. }
  21575. },
  21576. },
  21577. [
  21578. {
  21579. name: "Micro",
  21580. height: math.unit(1, "mm")
  21581. },
  21582. {
  21583. name: "Normal",
  21584. height: math.unit(4, "inches"),
  21585. default: true
  21586. },
  21587. {
  21588. name: "Macro",
  21589. height: math.unit(500, "feet")
  21590. },
  21591. {
  21592. name: "Megamacro",
  21593. height: math.unit(1000, "miles")
  21594. },
  21595. ]
  21596. ))
  21597. characterMakers.push(() => makeCharacter(
  21598. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21599. {
  21600. front: {
  21601. height: math.unit(6, "feet"),
  21602. weight: math.unit(150, "lb"),
  21603. name: "Front",
  21604. image: {
  21605. source: "./media/characters/tendirmuldr/front.svg",
  21606. extra: 1878 / 1772,
  21607. bottom: 0.015
  21608. }
  21609. },
  21610. },
  21611. [
  21612. {
  21613. name: "Megamacro",
  21614. height: math.unit(1500, "miles"),
  21615. default: true
  21616. },
  21617. ]
  21618. ))
  21619. characterMakers.push(() => makeCharacter(
  21620. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21621. {
  21622. front: {
  21623. height: math.unit(14, "feet"),
  21624. weight: math.unit(12000, "lb"),
  21625. name: "Front",
  21626. image: {
  21627. source: "./media/characters/mort/front.svg",
  21628. extra: 365 / 318,
  21629. bottom: 0.01
  21630. }
  21631. },
  21632. side: {
  21633. height: math.unit(14, "feet"),
  21634. weight: math.unit(12000, "lb"),
  21635. name: "Side",
  21636. image: {
  21637. source: "./media/characters/mort/side.svg",
  21638. extra: 365 / 318,
  21639. bottom: 0.052
  21640. },
  21641. default: true
  21642. },
  21643. back: {
  21644. height: math.unit(14, "feet"),
  21645. weight: math.unit(12000, "lb"),
  21646. name: "Back",
  21647. image: {
  21648. source: "./media/characters/mort/back.svg",
  21649. extra: 371 / 332,
  21650. bottom: 0.18
  21651. }
  21652. },
  21653. },
  21654. [
  21655. {
  21656. name: "Normal",
  21657. height: math.unit(14, "feet"),
  21658. default: true
  21659. },
  21660. ]
  21661. ))
  21662. characterMakers.push(() => makeCharacter(
  21663. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21664. {
  21665. front: {
  21666. height: math.unit(8, "feet"),
  21667. weight: math.unit(1, "ton"),
  21668. name: "Front",
  21669. image: {
  21670. source: "./media/characters/lycoa/front.svg",
  21671. extra: 1836/1728,
  21672. bottom: 81/1917
  21673. }
  21674. },
  21675. back: {
  21676. height: math.unit(8, "feet"),
  21677. weight: math.unit(1, "ton"),
  21678. name: "Back",
  21679. image: {
  21680. source: "./media/characters/lycoa/back.svg",
  21681. extra: 1785/1720,
  21682. bottom: 91/1876
  21683. }
  21684. },
  21685. head: {
  21686. height: math.unit(1.6243, "feet"),
  21687. name: "Head",
  21688. image: {
  21689. source: "./media/characters/lycoa/head.svg",
  21690. extra: 1011/782,
  21691. bottom: 0/1011
  21692. }
  21693. },
  21694. tailmaw: {
  21695. height: math.unit(1.9, "feet"),
  21696. name: "Tailmaw",
  21697. image: {
  21698. source: "./media/characters/lycoa/tailmaw.svg"
  21699. }
  21700. },
  21701. tentacles: {
  21702. height: math.unit(2.1, "feet"),
  21703. name: "Tentacles",
  21704. image: {
  21705. source: "./media/characters/lycoa/tentacles.svg"
  21706. }
  21707. },
  21708. dick: {
  21709. height: math.unit(1.73, "feet"),
  21710. name: "Dick",
  21711. image: {
  21712. source: "./media/characters/lycoa/dick.svg"
  21713. }
  21714. },
  21715. },
  21716. [
  21717. {
  21718. name: "Normal",
  21719. height: math.unit(8, "feet"),
  21720. default: true
  21721. },
  21722. {
  21723. name: "Macro",
  21724. height: math.unit(30, "feet")
  21725. },
  21726. ]
  21727. ))
  21728. characterMakers.push(() => makeCharacter(
  21729. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21730. {
  21731. front: {
  21732. height: math.unit(4 + 2 / 12, "feet"),
  21733. weight: math.unit(70, "lb"),
  21734. name: "Front",
  21735. image: {
  21736. source: "./media/characters/naldara/front.svg",
  21737. extra: 1664/1387,
  21738. bottom: 81/1745
  21739. },
  21740. form: "anthro",
  21741. default: true
  21742. },
  21743. naga: {
  21744. height: math.unit(20, "feet"),
  21745. weight: math.unit(15000, "kg"),
  21746. name: "Front",
  21747. image: {
  21748. source: "./media/characters/naldara/naga.svg",
  21749. extra: 1590/1396,
  21750. bottom: 285/1875
  21751. },
  21752. form: "naga",
  21753. default: true
  21754. },
  21755. },
  21756. [
  21757. {
  21758. name: "Normal",
  21759. height: math.unit(4 + 2 / 12, "feet"),
  21760. form: "anthro",
  21761. default: true
  21762. },
  21763. {
  21764. name: "Normal",
  21765. height: math.unit(20, "feet"),
  21766. form: "naga",
  21767. default: true
  21768. },
  21769. ],
  21770. {
  21771. "anthro": {
  21772. name: "Anthro",
  21773. default: true
  21774. },
  21775. "naga": {
  21776. name: "Naga"
  21777. }
  21778. }
  21779. ))
  21780. characterMakers.push(() => makeCharacter(
  21781. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21782. {
  21783. front: {
  21784. height: math.unit(13 + 7 / 12, "feet"),
  21785. weight: math.unit(1500, "lb"),
  21786. name: "Front",
  21787. image: {
  21788. source: "./media/characters/briar/front.svg",
  21789. extra: 1223/1157,
  21790. bottom: 123/1346
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Normal",
  21797. height: math.unit(13 + 7 / 12, "feet"),
  21798. default: true
  21799. },
  21800. ]
  21801. ))
  21802. characterMakers.push(() => makeCharacter(
  21803. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21804. {
  21805. side: {
  21806. height: math.unit(16, "feet"),
  21807. weight: math.unit(500, "lb"),
  21808. name: "Side",
  21809. image: {
  21810. source: "./media/characters/vanguard/side.svg",
  21811. extra: 1022/914,
  21812. bottom: 30/1052
  21813. }
  21814. },
  21815. sideAlt: {
  21816. height: math.unit(10, "feet"),
  21817. weight: math.unit(500, "lb"),
  21818. name: "Side (Alt)",
  21819. image: {
  21820. source: "./media/characters/vanguard/side-alt.svg",
  21821. extra: 502 / 425,
  21822. bottom: 0.087
  21823. }
  21824. },
  21825. },
  21826. [
  21827. {
  21828. name: "Normal",
  21829. height: math.unit(17.71, "feet"),
  21830. default: true
  21831. },
  21832. ]
  21833. ))
  21834. characterMakers.push(() => makeCharacter(
  21835. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21836. {
  21837. front: {
  21838. height: math.unit(7.5, "feet"),
  21839. weight: math.unit(2, "lb"),
  21840. name: "Front",
  21841. image: {
  21842. source: "./media/characters/artemis/work-safe-front.svg",
  21843. extra: 1192 / 1075,
  21844. bottom: 0.07
  21845. },
  21846. form: "work-safe",
  21847. default: true
  21848. },
  21849. frontNsfw: {
  21850. height: math.unit(7.5, "feet"),
  21851. weight: math.unit(2, "lb"),
  21852. name: "Front",
  21853. image: {
  21854. source: "./media/characters/artemis/calibrating-front.svg",
  21855. extra: 1192 / 1075,
  21856. bottom: 0.07
  21857. },
  21858. form: "calibrating",
  21859. default: true
  21860. },
  21861. frontNsfwer: {
  21862. height: math.unit(7.5, "feet"),
  21863. weight: math.unit(2, "lb"),
  21864. name: "Front",
  21865. image: {
  21866. source: "./media/characters/artemis/oversize-load-front.svg",
  21867. extra: 1192 / 1075,
  21868. bottom: 0.07
  21869. },
  21870. form: "oversize-load",
  21871. default: true
  21872. },
  21873. side: {
  21874. height: math.unit(7.5, "feet"),
  21875. weight: math.unit(2, "lb"),
  21876. name: "Side",
  21877. image: {
  21878. source: "./media/characters/artemis/work-safe-side.svg",
  21879. extra: 1192 / 1075,
  21880. bottom: 0.07
  21881. },
  21882. form: "work-safe"
  21883. },
  21884. sideNsfw: {
  21885. height: math.unit(7.5, "feet"),
  21886. weight: math.unit(2, "lb"),
  21887. name: "Side",
  21888. image: {
  21889. source: "./media/characters/artemis/calibrating-side.svg",
  21890. extra: 1192 / 1075,
  21891. bottom: 0.07
  21892. },
  21893. form: "calibrating"
  21894. },
  21895. sideNsfwer: {
  21896. height: math.unit(7.5, "feet"),
  21897. weight: math.unit(2, "lb"),
  21898. name: "Side",
  21899. image: {
  21900. source: "./media/characters/artemis/oversize-load-side.svg",
  21901. extra: 1192 / 1075,
  21902. bottom: 0.07
  21903. },
  21904. form: "oversize-load"
  21905. },
  21906. maw: {
  21907. height: math.unit(1.1, "feet"),
  21908. name: "Maw",
  21909. image: {
  21910. source: "./media/characters/artemis/maw.svg"
  21911. },
  21912. form: "work-safe"
  21913. },
  21914. stomach: {
  21915. height: math.unit(0.95, "feet"),
  21916. name: "Stomach",
  21917. image: {
  21918. source: "./media/characters/artemis/stomach.svg"
  21919. },
  21920. form: "work-safe"
  21921. },
  21922. dickCanine: {
  21923. height: math.unit(1, "feet"),
  21924. name: "Dick (Canine)",
  21925. image: {
  21926. source: "./media/characters/artemis/dick-canine.svg"
  21927. },
  21928. form: "calibrating"
  21929. },
  21930. dickEquine: {
  21931. height: math.unit(0.85, "feet"),
  21932. name: "Dick (Equine)",
  21933. image: {
  21934. source: "./media/characters/artemis/dick-equine.svg"
  21935. },
  21936. form: "calibrating"
  21937. },
  21938. dickExotic: {
  21939. height: math.unit(0.85, "feet"),
  21940. name: "Dick (Exotic)",
  21941. image: {
  21942. source: "./media/characters/artemis/dick-exotic.svg"
  21943. },
  21944. form: "calibrating"
  21945. },
  21946. dickCanineBigger: {
  21947. height: math.unit(1 * 1.33, "feet"),
  21948. name: "Dick (Canine)",
  21949. image: {
  21950. source: "./media/characters/artemis/dick-canine.svg"
  21951. },
  21952. form: "oversize-load"
  21953. },
  21954. dickEquineBigger: {
  21955. height: math.unit(0.85 * 1.33, "feet"),
  21956. name: "Dick (Equine)",
  21957. image: {
  21958. source: "./media/characters/artemis/dick-equine.svg"
  21959. },
  21960. form: "oversize-load"
  21961. },
  21962. dickExoticBigger: {
  21963. height: math.unit(0.85 * 1.33, "feet"),
  21964. name: "Dick (Exotic)",
  21965. image: {
  21966. source: "./media/characters/artemis/dick-exotic.svg"
  21967. },
  21968. form: "oversize-load"
  21969. },
  21970. },
  21971. [
  21972. {
  21973. name: "Normal",
  21974. height: math.unit(7.5, "feet"),
  21975. form: "work-safe",
  21976. default: true
  21977. },
  21978. {
  21979. name: "Normal",
  21980. height: math.unit(7.5, "feet"),
  21981. form: "calibrating",
  21982. default: true
  21983. },
  21984. {
  21985. name: "Normal",
  21986. height: math.unit(7.5, "feet"),
  21987. form: "oversize-load",
  21988. default: true
  21989. },
  21990. {
  21991. name: "Enlarged",
  21992. height: math.unit(12, "feet"),
  21993. form: "work-safe",
  21994. },
  21995. {
  21996. name: "Enlarged",
  21997. height: math.unit(12, "feet"),
  21998. form: "calibrating",
  21999. },
  22000. {
  22001. name: "Enlarged",
  22002. height: math.unit(12, "feet"),
  22003. form: "oversize-load",
  22004. },
  22005. ],
  22006. {
  22007. "work-safe": {
  22008. name: "Work-Safe",
  22009. default: true
  22010. },
  22011. "calibrating": {
  22012. name: "Calibrating"
  22013. },
  22014. "oversize-load": {
  22015. name: "Oversize Load"
  22016. }
  22017. }
  22018. ))
  22019. characterMakers.push(() => makeCharacter(
  22020. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22021. {
  22022. front: {
  22023. height: math.unit(5 + 3 / 12, "feet"),
  22024. weight: math.unit(160, "lb"),
  22025. name: "Front",
  22026. image: {
  22027. source: "./media/characters/kira/front.svg",
  22028. extra: 906 / 786,
  22029. bottom: 0.01
  22030. }
  22031. },
  22032. back: {
  22033. height: math.unit(5 + 3 / 12, "feet"),
  22034. weight: math.unit(160, "lb"),
  22035. name: "Back",
  22036. image: {
  22037. source: "./media/characters/kira/back.svg",
  22038. extra: 882 / 757,
  22039. bottom: 0.005
  22040. }
  22041. },
  22042. frontDressed: {
  22043. height: math.unit(5 + 3 / 12, "feet"),
  22044. weight: math.unit(160, "lb"),
  22045. name: "Front (Dressed)",
  22046. image: {
  22047. source: "./media/characters/kira/front-dressed.svg",
  22048. extra: 906 / 786,
  22049. bottom: 0.01
  22050. }
  22051. },
  22052. beans: {
  22053. height: math.unit(0.92, "feet"),
  22054. name: "Beans",
  22055. image: {
  22056. source: "./media/characters/kira/beans.svg"
  22057. }
  22058. },
  22059. },
  22060. [
  22061. {
  22062. name: "Normal",
  22063. height: math.unit(5 + 3 / 12, "feet"),
  22064. default: true
  22065. },
  22066. ]
  22067. ))
  22068. characterMakers.push(() => makeCharacter(
  22069. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22070. {
  22071. front: {
  22072. height: math.unit(5 + 4 / 12, "feet"),
  22073. weight: math.unit(145, "lb"),
  22074. name: "Front",
  22075. image: {
  22076. source: "./media/characters/scramble/front.svg",
  22077. extra: 763 / 727,
  22078. bottom: 0.05
  22079. }
  22080. },
  22081. back: {
  22082. height: math.unit(5 + 4 / 12, "feet"),
  22083. weight: math.unit(145, "lb"),
  22084. name: "Back",
  22085. image: {
  22086. source: "./media/characters/scramble/back.svg",
  22087. extra: 826 / 737,
  22088. bottom: 0.002
  22089. }
  22090. },
  22091. },
  22092. [
  22093. {
  22094. name: "Normal",
  22095. height: math.unit(5 + 4 / 12, "feet"),
  22096. default: true
  22097. },
  22098. ]
  22099. ))
  22100. characterMakers.push(() => makeCharacter(
  22101. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22102. {
  22103. side: {
  22104. height: math.unit(6 + 2 / 12, "feet"),
  22105. weight: math.unit(190, "lb"),
  22106. name: "Side",
  22107. image: {
  22108. source: "./media/characters/biscuit/side.svg",
  22109. extra: 858 / 791,
  22110. bottom: 0.044
  22111. }
  22112. },
  22113. },
  22114. [
  22115. {
  22116. name: "Normal",
  22117. height: math.unit(6 + 2 / 12, "feet"),
  22118. default: true
  22119. },
  22120. ]
  22121. ))
  22122. characterMakers.push(() => makeCharacter(
  22123. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22124. {
  22125. front: {
  22126. height: math.unit(5 + 2 / 12, "feet"),
  22127. weight: math.unit(120, "lb"),
  22128. name: "Front",
  22129. image: {
  22130. source: "./media/characters/poffin/front.svg",
  22131. extra: 786 / 680,
  22132. bottom: 0.005
  22133. }
  22134. },
  22135. },
  22136. [
  22137. {
  22138. name: "Normal",
  22139. height: math.unit(5 + 2 / 12, "feet"),
  22140. default: true
  22141. },
  22142. ]
  22143. ))
  22144. characterMakers.push(() => makeCharacter(
  22145. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22146. {
  22147. front: {
  22148. height: math.unit(6 + 3 / 12, "feet"),
  22149. weight: math.unit(519, "lb"),
  22150. name: "Front",
  22151. image: {
  22152. source: "./media/characters/dhari/front.svg",
  22153. extra: 1048 / 946,
  22154. bottom: 0.015
  22155. }
  22156. },
  22157. back: {
  22158. height: math.unit(6 + 3 / 12, "feet"),
  22159. weight: math.unit(519, "lb"),
  22160. name: "Back",
  22161. image: {
  22162. source: "./media/characters/dhari/back.svg",
  22163. extra: 1048 / 931,
  22164. bottom: 0.005
  22165. }
  22166. },
  22167. frontDressed: {
  22168. height: math.unit(6 + 3 / 12, "feet"),
  22169. weight: math.unit(519, "lb"),
  22170. name: "Front (Dressed)",
  22171. image: {
  22172. source: "./media/characters/dhari/front-dressed.svg",
  22173. extra: 1713 / 1546,
  22174. bottom: 0.02
  22175. }
  22176. },
  22177. backDressed: {
  22178. height: math.unit(6 + 3 / 12, "feet"),
  22179. weight: math.unit(519, "lb"),
  22180. name: "Back (Dressed)",
  22181. image: {
  22182. source: "./media/characters/dhari/back-dressed.svg",
  22183. extra: 1699 / 1537,
  22184. bottom: 0.01
  22185. }
  22186. },
  22187. maw: {
  22188. height: math.unit(0.95, "feet"),
  22189. name: "Maw",
  22190. image: {
  22191. source: "./media/characters/dhari/maw.svg"
  22192. }
  22193. },
  22194. wereFront: {
  22195. height: math.unit(12 + 8 / 12, "feet"),
  22196. weight: math.unit(4000, "lb"),
  22197. name: "Front (Were)",
  22198. image: {
  22199. source: "./media/characters/dhari/were-front.svg",
  22200. extra: 1065 / 969,
  22201. bottom: 0.015
  22202. }
  22203. },
  22204. wereBack: {
  22205. height: math.unit(12 + 8 / 12, "feet"),
  22206. weight: math.unit(4000, "lb"),
  22207. name: "Back (Were)",
  22208. image: {
  22209. source: "./media/characters/dhari/were-back.svg",
  22210. extra: 1065 / 969,
  22211. bottom: 0.012
  22212. }
  22213. },
  22214. wereMaw: {
  22215. height: math.unit(0.625, "meters"),
  22216. name: "Maw (Were)",
  22217. image: {
  22218. source: "./media/characters/dhari/were-maw.svg"
  22219. }
  22220. },
  22221. },
  22222. [
  22223. {
  22224. name: "Normal",
  22225. height: math.unit(6 + 3 / 12, "feet"),
  22226. default: true
  22227. },
  22228. ]
  22229. ))
  22230. characterMakers.push(() => makeCharacter(
  22231. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22232. {
  22233. anthro: {
  22234. height: math.unit(5 + 7 / 12, "feet"),
  22235. weight: math.unit(175, "lb"),
  22236. name: "Anthro",
  22237. image: {
  22238. source: "./media/characters/rena-dyne/anthro.svg",
  22239. extra: 1849 / 1785,
  22240. bottom: 0.005
  22241. }
  22242. },
  22243. taur: {
  22244. height: math.unit(15 + 6 / 12, "feet"),
  22245. weight: math.unit(8000, "lb"),
  22246. name: "Taur",
  22247. image: {
  22248. source: "./media/characters/rena-dyne/taur.svg",
  22249. extra: 2315 / 2234,
  22250. bottom: 0.033
  22251. }
  22252. },
  22253. },
  22254. [
  22255. {
  22256. name: "Normal",
  22257. height: math.unit(5 + 7 / 12, "feet"),
  22258. default: true
  22259. },
  22260. ]
  22261. ))
  22262. characterMakers.push(() => makeCharacter(
  22263. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22264. {
  22265. front: {
  22266. height: math.unit(8, "feet"),
  22267. weight: math.unit(600, "lb"),
  22268. name: "Front",
  22269. image: {
  22270. source: "./media/characters/weremeep/front.svg",
  22271. extra: 970/849,
  22272. bottom: 7/977
  22273. }
  22274. },
  22275. },
  22276. [
  22277. {
  22278. name: "Normal",
  22279. height: math.unit(8, "feet"),
  22280. default: true
  22281. },
  22282. {
  22283. name: "Lorg",
  22284. height: math.unit(12, "feet")
  22285. },
  22286. {
  22287. name: "Oh Lawd She Comin'",
  22288. height: math.unit(20, "feet")
  22289. },
  22290. ]
  22291. ))
  22292. characterMakers.push(() => makeCharacter(
  22293. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22294. {
  22295. front: {
  22296. height: math.unit(4, "feet"),
  22297. weight: math.unit(90, "lb"),
  22298. name: "Front",
  22299. image: {
  22300. source: "./media/characters/reza/front.svg",
  22301. extra: 1183 / 1111,
  22302. bottom: 0.017
  22303. }
  22304. },
  22305. back: {
  22306. height: math.unit(4, "feet"),
  22307. weight: math.unit(90, "lb"),
  22308. name: "Back",
  22309. image: {
  22310. source: "./media/characters/reza/back.svg",
  22311. extra: 1183 / 1111,
  22312. bottom: 0.01
  22313. }
  22314. },
  22315. drake: {
  22316. height: math.unit(30, "feet"),
  22317. weight: math.unit(246960, "lb"),
  22318. name: "Drake",
  22319. image: {
  22320. source: "./media/characters/reza/drake.svg",
  22321. extra: 2350 / 2024,
  22322. bottom: 60.7 / 2403
  22323. }
  22324. },
  22325. },
  22326. [
  22327. {
  22328. name: "Normal",
  22329. height: math.unit(4, "feet"),
  22330. default: true
  22331. },
  22332. ]
  22333. ))
  22334. characterMakers.push(() => makeCharacter(
  22335. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22336. {
  22337. side: {
  22338. height: math.unit(15, "feet"),
  22339. weight: math.unit(14, "tons"),
  22340. name: "Side",
  22341. image: {
  22342. source: "./media/characters/athea/side.svg",
  22343. extra: 960 / 540,
  22344. bottom: 0.003
  22345. }
  22346. },
  22347. sitting: {
  22348. height: math.unit(6 * 2.85, "feet"),
  22349. weight: math.unit(14, "tons"),
  22350. name: "Sitting",
  22351. image: {
  22352. source: "./media/characters/athea/sitting.svg",
  22353. extra: 621 / 581,
  22354. bottom: 0.075
  22355. }
  22356. },
  22357. maw: {
  22358. height: math.unit(7.59498031496063, "feet"),
  22359. name: "Maw",
  22360. image: {
  22361. source: "./media/characters/athea/maw.svg"
  22362. }
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Lap Cat",
  22368. height: math.unit(2.5, "feet")
  22369. },
  22370. {
  22371. name: "Minimacro",
  22372. height: math.unit(15, "feet"),
  22373. default: true
  22374. },
  22375. {
  22376. name: "Macro",
  22377. height: math.unit(120, "feet")
  22378. },
  22379. {
  22380. name: "Macro+",
  22381. height: math.unit(640, "feet")
  22382. },
  22383. {
  22384. name: "Colossus",
  22385. height: math.unit(2.2, "miles")
  22386. },
  22387. ]
  22388. ))
  22389. characterMakers.push(() => makeCharacter(
  22390. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22391. {
  22392. front: {
  22393. height: math.unit(8 + 8 / 12, "feet"),
  22394. weight: math.unit(130, "kg"),
  22395. name: "Front",
  22396. image: {
  22397. source: "./media/characters/seroko/front.svg",
  22398. extra: 1385 / 1280,
  22399. bottom: 0.025
  22400. }
  22401. },
  22402. back: {
  22403. height: math.unit(8 + 8 / 12, "feet"),
  22404. weight: math.unit(130, "kg"),
  22405. name: "Back",
  22406. image: {
  22407. source: "./media/characters/seroko/back.svg",
  22408. extra: 1369 / 1238,
  22409. bottom: 0.018
  22410. }
  22411. },
  22412. frontDressed: {
  22413. height: math.unit(8 + 8 / 12, "feet"),
  22414. weight: math.unit(130, "kg"),
  22415. name: "Front (Dressed)",
  22416. image: {
  22417. source: "./media/characters/seroko/front-dressed.svg",
  22418. extra: 1366 / 1275,
  22419. bottom: 0.03
  22420. }
  22421. },
  22422. },
  22423. [
  22424. {
  22425. name: "Normal",
  22426. height: math.unit(8 + 8 / 12, "feet"),
  22427. default: true
  22428. },
  22429. ]
  22430. ))
  22431. characterMakers.push(() => makeCharacter(
  22432. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22433. {
  22434. front: {
  22435. height: math.unit(5.5, "feet"),
  22436. weight: math.unit(160, "lb"),
  22437. name: "Front",
  22438. image: {
  22439. source: "./media/characters/quatzi/front.svg",
  22440. extra: 2346 / 2242,
  22441. bottom: 0.015
  22442. }
  22443. },
  22444. },
  22445. [
  22446. {
  22447. name: "Normal",
  22448. height: math.unit(5.5, "feet"),
  22449. default: true
  22450. },
  22451. {
  22452. name: "Big",
  22453. height: math.unit(7.7, "feet")
  22454. },
  22455. ]
  22456. ))
  22457. characterMakers.push(() => makeCharacter(
  22458. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22459. {
  22460. front: {
  22461. height: math.unit(5 + 11 / 12, "feet"),
  22462. weight: math.unit(180, "lb"),
  22463. name: "Front",
  22464. image: {
  22465. source: "./media/characters/sen/front.svg",
  22466. extra: 1321 / 1254,
  22467. bottom: 0.015
  22468. }
  22469. },
  22470. side: {
  22471. height: math.unit(5 + 11 / 12, "feet"),
  22472. weight: math.unit(180, "lb"),
  22473. name: "Side",
  22474. image: {
  22475. source: "./media/characters/sen/side.svg",
  22476. extra: 1321 / 1254,
  22477. bottom: 0.007
  22478. }
  22479. },
  22480. back: {
  22481. height: math.unit(5 + 11 / 12, "feet"),
  22482. weight: math.unit(180, "lb"),
  22483. name: "Back",
  22484. image: {
  22485. source: "./media/characters/sen/back.svg",
  22486. extra: 1321 / 1254
  22487. }
  22488. },
  22489. },
  22490. [
  22491. {
  22492. name: "Normal",
  22493. height: math.unit(5 + 11 / 12, "feet"),
  22494. default: true
  22495. },
  22496. ]
  22497. ))
  22498. characterMakers.push(() => makeCharacter(
  22499. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22500. {
  22501. front: {
  22502. height: math.unit(166.6, "cm"),
  22503. weight: math.unit(66.6, "kg"),
  22504. name: "Front",
  22505. image: {
  22506. source: "./media/characters/fruity/front.svg",
  22507. extra: 1510 / 1386,
  22508. bottom: 0.04
  22509. }
  22510. },
  22511. back: {
  22512. height: math.unit(166.6, "cm"),
  22513. weight: math.unit(66.6, "lb"),
  22514. name: "Back",
  22515. image: {
  22516. source: "./media/characters/fruity/back.svg",
  22517. extra: 1563 / 1435,
  22518. bottom: 0.005
  22519. }
  22520. },
  22521. },
  22522. [
  22523. {
  22524. name: "Normal",
  22525. height: math.unit(166.6, "cm"),
  22526. default: true
  22527. },
  22528. {
  22529. name: "Demonic",
  22530. height: math.unit(166.6, "feet")
  22531. },
  22532. ]
  22533. ))
  22534. characterMakers.push(() => makeCharacter(
  22535. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22536. {
  22537. side: {
  22538. height: math.unit(10, "feet"),
  22539. weight: math.unit(500, "lb"),
  22540. name: "Side",
  22541. image: {
  22542. source: "./media/characters/zost/side.svg",
  22543. extra: 2870/2533,
  22544. bottom: 252/3122
  22545. }
  22546. },
  22547. mawFront: {
  22548. height: math.unit(1.08, "meters"),
  22549. name: "Maw (Front)",
  22550. image: {
  22551. source: "./media/characters/zost/maw-front.svg"
  22552. }
  22553. },
  22554. mawSide: {
  22555. height: math.unit(2.66, "feet"),
  22556. name: "Maw (Side)",
  22557. image: {
  22558. source: "./media/characters/zost/maw-side.svg"
  22559. }
  22560. },
  22561. wingspan: {
  22562. height: math.unit(7.4, "feet"),
  22563. name: "Wingspan",
  22564. image: {
  22565. source: "./media/characters/zost/wingspan.svg"
  22566. }
  22567. },
  22568. },
  22569. [
  22570. {
  22571. name: "Normal",
  22572. height: math.unit(10, "feet"),
  22573. default: true
  22574. },
  22575. ]
  22576. ))
  22577. characterMakers.push(() => makeCharacter(
  22578. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22579. {
  22580. front: {
  22581. height: math.unit(5 + 4 / 12, "feet"),
  22582. weight: math.unit(120, "lb"),
  22583. name: "Front",
  22584. image: {
  22585. source: "./media/characters/luci/front.svg",
  22586. extra: 1985 / 1884,
  22587. bottom: 0.04
  22588. }
  22589. },
  22590. back: {
  22591. height: math.unit(5 + 4 / 12, "feet"),
  22592. weight: math.unit(120, "lb"),
  22593. name: "Back",
  22594. image: {
  22595. source: "./media/characters/luci/back.svg",
  22596. extra: 1892 / 1791,
  22597. bottom: 0.002
  22598. }
  22599. },
  22600. },
  22601. [
  22602. {
  22603. name: "Normal",
  22604. height: math.unit(5 + 4 / 12, "feet"),
  22605. default: true
  22606. },
  22607. ]
  22608. ))
  22609. characterMakers.push(() => makeCharacter(
  22610. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22611. {
  22612. front: {
  22613. height: math.unit(1500, "feet"),
  22614. weight: math.unit(3.8e6, "tons"),
  22615. name: "Front",
  22616. image: {
  22617. source: "./media/characters/2th/front.svg",
  22618. extra: 3489 / 3350,
  22619. bottom: 0.1
  22620. }
  22621. },
  22622. foot: {
  22623. height: math.unit(461, "feet"),
  22624. name: "Foot",
  22625. image: {
  22626. source: "./media/characters/2th/foot.svg"
  22627. }
  22628. },
  22629. },
  22630. [
  22631. {
  22632. name: "\"Micro\"",
  22633. height: math.unit(15 + 7 / 12, "feet")
  22634. },
  22635. {
  22636. name: "Normal",
  22637. height: math.unit(1500, "feet"),
  22638. default: true
  22639. },
  22640. {
  22641. name: "Macro",
  22642. height: math.unit(5000, "feet")
  22643. },
  22644. {
  22645. name: "Megamacro",
  22646. height: math.unit(15, "miles")
  22647. },
  22648. {
  22649. name: "Gigamacro",
  22650. height: math.unit(4000, "miles")
  22651. },
  22652. {
  22653. name: "Galactic",
  22654. height: math.unit(50, "AU")
  22655. },
  22656. ]
  22657. ))
  22658. characterMakers.push(() => makeCharacter(
  22659. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22660. {
  22661. front: {
  22662. height: math.unit(5 + 6 / 12, "feet"),
  22663. weight: math.unit(220, "lb"),
  22664. name: "Front",
  22665. image: {
  22666. source: "./media/characters/amethyst/front.svg",
  22667. extra: 2078 / 2040,
  22668. bottom: 0.045
  22669. }
  22670. },
  22671. back: {
  22672. height: math.unit(5 + 6 / 12, "feet"),
  22673. weight: math.unit(220, "lb"),
  22674. name: "Back",
  22675. image: {
  22676. source: "./media/characters/amethyst/back.svg",
  22677. extra: 2021 / 1989,
  22678. bottom: 0.02
  22679. }
  22680. },
  22681. },
  22682. [
  22683. {
  22684. name: "Normal",
  22685. height: math.unit(5 + 6 / 12, "feet"),
  22686. default: true
  22687. },
  22688. ]
  22689. ))
  22690. characterMakers.push(() => makeCharacter(
  22691. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22692. {
  22693. front: {
  22694. height: math.unit(4 + 11 / 12, "feet"),
  22695. weight: math.unit(120, "lb"),
  22696. name: "Front",
  22697. image: {
  22698. source: "./media/characters/yumi-akiyama/front.svg",
  22699. extra: 1327 / 1235,
  22700. bottom: 0.02
  22701. }
  22702. },
  22703. back: {
  22704. height: math.unit(4 + 11 / 12, "feet"),
  22705. weight: math.unit(120, "lb"),
  22706. name: "Back",
  22707. image: {
  22708. source: "./media/characters/yumi-akiyama/back.svg",
  22709. extra: 1287 / 1245,
  22710. bottom: 0.002
  22711. }
  22712. },
  22713. },
  22714. [
  22715. {
  22716. name: "Galactic",
  22717. height: math.unit(50, "galaxies"),
  22718. default: true
  22719. },
  22720. {
  22721. name: "Universal",
  22722. height: math.unit(100, "universes")
  22723. },
  22724. ]
  22725. ))
  22726. characterMakers.push(() => makeCharacter(
  22727. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22728. {
  22729. front: {
  22730. height: math.unit(8, "feet"),
  22731. weight: math.unit(500, "lb"),
  22732. name: "Front",
  22733. image: {
  22734. source: "./media/characters/rifter-yrmori/front.svg",
  22735. extra: 1180 / 1125,
  22736. bottom: 0.02
  22737. }
  22738. },
  22739. back: {
  22740. height: math.unit(8, "feet"),
  22741. weight: math.unit(500, "lb"),
  22742. name: "Back",
  22743. image: {
  22744. source: "./media/characters/rifter-yrmori/back.svg",
  22745. extra: 1190 / 1145,
  22746. bottom: 0.001
  22747. }
  22748. },
  22749. wings: {
  22750. height: math.unit(7.75, "feet"),
  22751. weight: math.unit(500, "lb"),
  22752. name: "Wings",
  22753. image: {
  22754. source: "./media/characters/rifter-yrmori/wings.svg",
  22755. extra: 1357 / 1285
  22756. }
  22757. },
  22758. maw: {
  22759. height: math.unit(0.8, "feet"),
  22760. name: "Maw",
  22761. image: {
  22762. source: "./media/characters/rifter-yrmori/maw.svg"
  22763. }
  22764. },
  22765. mawfront: {
  22766. height: math.unit(1.45, "feet"),
  22767. name: "Maw (Front)",
  22768. image: {
  22769. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22770. }
  22771. },
  22772. },
  22773. [
  22774. {
  22775. name: "Normal",
  22776. height: math.unit(8, "feet"),
  22777. default: true
  22778. },
  22779. {
  22780. name: "Macro",
  22781. height: math.unit(42, "meters")
  22782. },
  22783. ]
  22784. ))
  22785. characterMakers.push(() => makeCharacter(
  22786. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22787. {
  22788. were: {
  22789. height: math.unit(25 + 6 / 12, "feet"),
  22790. weight: math.unit(10000, "lb"),
  22791. name: "Were",
  22792. image: {
  22793. source: "./media/characters/tahajin/were.svg",
  22794. extra: 801 / 770,
  22795. bottom: 0.042
  22796. }
  22797. },
  22798. aquatic: {
  22799. height: math.unit(6 + 4 / 12, "feet"),
  22800. weight: math.unit(160, "lb"),
  22801. name: "Aquatic",
  22802. image: {
  22803. source: "./media/characters/tahajin/aquatic.svg",
  22804. extra: 572 / 542,
  22805. bottom: 0.04
  22806. }
  22807. },
  22808. chow: {
  22809. height: math.unit(8 + 11 / 12, "feet"),
  22810. weight: math.unit(450, "lb"),
  22811. name: "Chow",
  22812. image: {
  22813. source: "./media/characters/tahajin/chow.svg",
  22814. extra: 660 / 640,
  22815. bottom: 0.015
  22816. }
  22817. },
  22818. demiNaga: {
  22819. height: math.unit(6 + 8 / 12, "feet"),
  22820. weight: math.unit(300, "lb"),
  22821. name: "Demi Naga",
  22822. image: {
  22823. source: "./media/characters/tahajin/demi-naga.svg",
  22824. extra: 643 / 615,
  22825. bottom: 0.1
  22826. }
  22827. },
  22828. data: {
  22829. height: math.unit(5, "inches"),
  22830. weight: math.unit(0.1, "lb"),
  22831. name: "Data",
  22832. image: {
  22833. source: "./media/characters/tahajin/data.svg"
  22834. }
  22835. },
  22836. fluu: {
  22837. height: math.unit(5 + 7 / 12, "feet"),
  22838. weight: math.unit(140, "lb"),
  22839. name: "Fluu",
  22840. image: {
  22841. source: "./media/characters/tahajin/fluu.svg",
  22842. extra: 628 / 592,
  22843. bottom: 0.02
  22844. }
  22845. },
  22846. starWarrior: {
  22847. height: math.unit(4 + 5 / 12, "feet"),
  22848. weight: math.unit(50, "lb"),
  22849. name: "Star Warrior",
  22850. image: {
  22851. source: "./media/characters/tahajin/star-warrior.svg"
  22852. }
  22853. },
  22854. },
  22855. [
  22856. {
  22857. name: "Normal",
  22858. height: math.unit(25 + 6 / 12, "feet"),
  22859. default: true
  22860. },
  22861. ]
  22862. ))
  22863. characterMakers.push(() => makeCharacter(
  22864. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22865. {
  22866. front: {
  22867. height: math.unit(8, "feet"),
  22868. weight: math.unit(350, "lb"),
  22869. name: "Front",
  22870. image: {
  22871. source: "./media/characters/gabira/front.svg",
  22872. extra: 1261/1154,
  22873. bottom: 51/1312
  22874. }
  22875. },
  22876. back: {
  22877. height: math.unit(8, "feet"),
  22878. weight: math.unit(350, "lb"),
  22879. name: "Back",
  22880. image: {
  22881. source: "./media/characters/gabira/back.svg",
  22882. extra: 1265/1163,
  22883. bottom: 46/1311
  22884. }
  22885. },
  22886. head: {
  22887. height: math.unit(2.85, "feet"),
  22888. name: "Head",
  22889. image: {
  22890. source: "./media/characters/gabira/head.svg"
  22891. }
  22892. },
  22893. },
  22894. [
  22895. {
  22896. name: "Normal",
  22897. height: math.unit(8, "feet"),
  22898. default: true
  22899. },
  22900. ]
  22901. ))
  22902. characterMakers.push(() => makeCharacter(
  22903. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22904. {
  22905. front: {
  22906. height: math.unit(5 + 3 / 12, "feet"),
  22907. weight: math.unit(137, "lb"),
  22908. name: "Front",
  22909. image: {
  22910. source: "./media/characters/sasha-katraine/front.svg",
  22911. extra: 1745/1694,
  22912. bottom: 37/1782
  22913. }
  22914. },
  22915. back: {
  22916. height: math.unit(5 + 3 / 12, "feet"),
  22917. weight: math.unit(137, "lb"),
  22918. name: "Back",
  22919. image: {
  22920. source: "./media/characters/sasha-katraine/back.svg",
  22921. extra: 1776/1699,
  22922. bottom: 26/1802
  22923. }
  22924. },
  22925. },
  22926. [
  22927. {
  22928. name: "Micro",
  22929. height: math.unit(5, "inches")
  22930. },
  22931. {
  22932. name: "Normal",
  22933. height: math.unit(5 + 3 / 12, "feet"),
  22934. default: true
  22935. },
  22936. ]
  22937. ))
  22938. characterMakers.push(() => makeCharacter(
  22939. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22940. {
  22941. side: {
  22942. height: math.unit(4, "inches"),
  22943. weight: math.unit(200, "grams"),
  22944. name: "Side",
  22945. image: {
  22946. source: "./media/characters/der/side.svg",
  22947. extra: 719 / 400,
  22948. bottom: 30.6 / 749.9187
  22949. }
  22950. },
  22951. },
  22952. [
  22953. {
  22954. name: "Micro",
  22955. height: math.unit(4, "inches"),
  22956. default: true
  22957. },
  22958. ]
  22959. ))
  22960. characterMakers.push(() => makeCharacter(
  22961. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22962. {
  22963. side: {
  22964. height: math.unit(30, "meters"),
  22965. weight: math.unit(700, "tonnes"),
  22966. name: "Side",
  22967. image: {
  22968. source: "./media/characters/fixerdragon/side.svg",
  22969. extra: (1293.0514 - 116.03) / 1106.86,
  22970. bottom: 116.03 / 1293.0514
  22971. }
  22972. },
  22973. },
  22974. [
  22975. {
  22976. name: "Planck",
  22977. height: math.unit(1.6e-35, "meters")
  22978. },
  22979. {
  22980. name: "Micro",
  22981. height: math.unit(0.4, "meters")
  22982. },
  22983. {
  22984. name: "Normal",
  22985. height: math.unit(30, "meters"),
  22986. default: true
  22987. },
  22988. {
  22989. name: "Megamacro",
  22990. height: math.unit(1.2, "megameters")
  22991. },
  22992. {
  22993. name: "Teramacro",
  22994. height: math.unit(130, "terameters")
  22995. },
  22996. {
  22997. name: "Yottamacro",
  22998. height: math.unit(6200, "yottameters")
  22999. },
  23000. ]
  23001. ));
  23002. characterMakers.push(() => makeCharacter(
  23003. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23004. {
  23005. front: {
  23006. height: math.unit(8, "feet"),
  23007. weight: math.unit(250, "lb"),
  23008. name: "Front",
  23009. image: {
  23010. source: "./media/characters/kite/front.svg",
  23011. extra: 2796 / 2659,
  23012. bottom: 0.002
  23013. }
  23014. },
  23015. },
  23016. [
  23017. {
  23018. name: "Normal",
  23019. height: math.unit(8, "feet"),
  23020. default: true
  23021. },
  23022. {
  23023. name: "Macro",
  23024. height: math.unit(360, "feet")
  23025. },
  23026. {
  23027. name: "Megamacro",
  23028. height: math.unit(1500, "feet")
  23029. },
  23030. ]
  23031. ))
  23032. characterMakers.push(() => makeCharacter(
  23033. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23034. {
  23035. front: {
  23036. height: math.unit(5 + 11/12, "feet"),
  23037. weight: math.unit(170, "lb"),
  23038. name: "Front",
  23039. image: {
  23040. source: "./media/characters/poojawa-vynar/front.svg",
  23041. extra: 1735/1585,
  23042. bottom: 96/1831
  23043. }
  23044. },
  23045. back: {
  23046. height: math.unit(5 + 11/12, "feet"),
  23047. weight: math.unit(170, "lb"),
  23048. name: "Back",
  23049. image: {
  23050. source: "./media/characters/poojawa-vynar/back.svg",
  23051. extra: 1749/1607,
  23052. bottom: 28/1777
  23053. }
  23054. },
  23055. male: {
  23056. height: math.unit(5 + 11/12, "feet"),
  23057. weight: math.unit(170, "lb"),
  23058. name: "Male",
  23059. image: {
  23060. source: "./media/characters/poojawa-vynar/male.svg",
  23061. extra: 1855/1713,
  23062. bottom: 63/1918
  23063. }
  23064. },
  23065. taur: {
  23066. height: math.unit(5 + 11/12, "feet"),
  23067. weight: math.unit(170, "lb"),
  23068. name: "Taur",
  23069. image: {
  23070. source: "./media/characters/poojawa-vynar/taur.svg",
  23071. extra: 1151/1059,
  23072. bottom: 356/1507
  23073. }
  23074. },
  23075. frontDressed: {
  23076. height: math.unit(5 + 11/12, "feet"),
  23077. weight: math.unit(170, "lb"),
  23078. name: "Front (Dressed)",
  23079. image: {
  23080. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23081. extra: 1735/1585,
  23082. bottom: 96/1831
  23083. }
  23084. },
  23085. backDressed: {
  23086. height: math.unit(5 + 11/12, "feet"),
  23087. weight: math.unit(170, "lb"),
  23088. name: "Back (Dressed)",
  23089. image: {
  23090. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23091. extra: 1749/1607,
  23092. bottom: 28/1777
  23093. }
  23094. },
  23095. maleDressed: {
  23096. height: math.unit(5 + 11/12, "feet"),
  23097. weight: math.unit(170, "lb"),
  23098. name: "Male (Dressed)",
  23099. image: {
  23100. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23101. extra: 1855/1713,
  23102. bottom: 63/1918
  23103. }
  23104. },
  23105. taurDressed: {
  23106. height: math.unit(5 + 11/12, "feet"),
  23107. weight: math.unit(170, "lb"),
  23108. name: "Taur (Dressed)",
  23109. image: {
  23110. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23111. extra: 1151/1059,
  23112. bottom: 356/1507
  23113. }
  23114. },
  23115. maw: {
  23116. height: math.unit(1.46, "feet"),
  23117. name: "Maw",
  23118. image: {
  23119. source: "./media/characters/poojawa-vynar/maw.svg"
  23120. }
  23121. },
  23122. head: {
  23123. height: math.unit(2.34, "feet"),
  23124. name: "Head",
  23125. image: {
  23126. source: "./media/characters/poojawa-vynar/head.svg"
  23127. }
  23128. },
  23129. paw: {
  23130. height: math.unit(1.61, "feet"),
  23131. name: "Paw",
  23132. image: {
  23133. source: "./media/characters/poojawa-vynar/paw.svg"
  23134. }
  23135. },
  23136. pawToering: {
  23137. height: math.unit(1.72, "feet"),
  23138. name: "Paw (Toering)",
  23139. image: {
  23140. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23141. }
  23142. },
  23143. toering: {
  23144. height: math.unit(2.9, "inches"),
  23145. name: "Toering",
  23146. image: {
  23147. source: "./media/characters/poojawa-vynar/toering.svg"
  23148. }
  23149. },
  23150. shaft: {
  23151. height: math.unit(0.625, "feet"),
  23152. name: "Shaft",
  23153. image: {
  23154. source: "./media/characters/poojawa-vynar/shaft.svg"
  23155. }
  23156. },
  23157. spade: {
  23158. height: math.unit(0.42, "feet"),
  23159. name: "Spade",
  23160. image: {
  23161. source: "./media/characters/poojawa-vynar/spade.svg"
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Shortstack",
  23168. height: math.unit(4, "feet")
  23169. },
  23170. {
  23171. name: "Normal",
  23172. height: math.unit(5 + 11 / 12, "feet"),
  23173. default: true
  23174. },
  23175. {
  23176. name: "Tauric",
  23177. height: math.unit(4, "meters")
  23178. },
  23179. ]
  23180. ))
  23181. characterMakers.push(() => makeCharacter(
  23182. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23183. {
  23184. front: {
  23185. height: math.unit(293, "meters"),
  23186. weight: math.unit(70400, "tons"),
  23187. name: "Front",
  23188. image: {
  23189. source: "./media/characters/violette/front.svg",
  23190. extra: 1227 / 1180,
  23191. bottom: 0.005
  23192. }
  23193. },
  23194. back: {
  23195. height: math.unit(293, "meters"),
  23196. weight: math.unit(70400, "tons"),
  23197. name: "Back",
  23198. image: {
  23199. source: "./media/characters/violette/back.svg",
  23200. extra: 1227 / 1180,
  23201. bottom: 0.005
  23202. }
  23203. },
  23204. },
  23205. [
  23206. {
  23207. name: "Macro",
  23208. height: math.unit(293, "meters"),
  23209. default: true
  23210. },
  23211. ]
  23212. ))
  23213. characterMakers.push(() => makeCharacter(
  23214. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23215. {
  23216. front: {
  23217. height: math.unit(1050, "feet"),
  23218. weight: math.unit(200000, "tons"),
  23219. name: "Front",
  23220. image: {
  23221. source: "./media/characters/alessandra/front.svg",
  23222. extra: 960 / 912,
  23223. bottom: 0.06
  23224. }
  23225. },
  23226. },
  23227. [
  23228. {
  23229. name: "Macro",
  23230. height: math.unit(1050, "feet")
  23231. },
  23232. {
  23233. name: "Macro+",
  23234. height: math.unit(900, "meters"),
  23235. default: true
  23236. },
  23237. ]
  23238. ))
  23239. characterMakers.push(() => makeCharacter(
  23240. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23241. {
  23242. front: {
  23243. height: math.unit(5, "feet"),
  23244. weight: math.unit(187, "lb"),
  23245. name: "Front",
  23246. image: {
  23247. source: "./media/characters/person/front.svg",
  23248. extra: 3087 / 2945,
  23249. bottom: 91 / 3181
  23250. }
  23251. },
  23252. },
  23253. [
  23254. {
  23255. name: "Micro",
  23256. height: math.unit(3, "inches")
  23257. },
  23258. {
  23259. name: "Normal",
  23260. height: math.unit(5, "feet"),
  23261. default: true
  23262. },
  23263. {
  23264. name: "Macro",
  23265. height: math.unit(90, "feet")
  23266. },
  23267. {
  23268. name: "Max Size",
  23269. height: math.unit(280, "feet")
  23270. },
  23271. ]
  23272. ))
  23273. characterMakers.push(() => makeCharacter(
  23274. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23275. {
  23276. front: {
  23277. height: math.unit(4.5, "meters"),
  23278. weight: math.unit(3200, "lb"),
  23279. name: "Front",
  23280. image: {
  23281. source: "./media/characters/ty/front.svg",
  23282. extra: 1038 / 960,
  23283. bottom: 31.156 / 1068
  23284. }
  23285. },
  23286. back: {
  23287. height: math.unit(4.5, "meters"),
  23288. weight: math.unit(3200, "lb"),
  23289. name: "Back",
  23290. image: {
  23291. source: "./media/characters/ty/back.svg",
  23292. extra: 1044 / 966,
  23293. bottom: 7.48 / 1049
  23294. }
  23295. },
  23296. },
  23297. [
  23298. {
  23299. name: "Normal",
  23300. height: math.unit(4.5, "meters"),
  23301. default: true
  23302. },
  23303. ]
  23304. ))
  23305. characterMakers.push(() => makeCharacter(
  23306. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23307. {
  23308. front: {
  23309. height: math.unit(5 + 4 / 12, "feet"),
  23310. weight: math.unit(115, "lb"),
  23311. name: "Front",
  23312. image: {
  23313. source: "./media/characters/rocky/front.svg",
  23314. extra: 1012 / 975,
  23315. bottom: 54 / 1066
  23316. }
  23317. },
  23318. },
  23319. [
  23320. {
  23321. name: "Normal",
  23322. height: math.unit(5 + 4 / 12, "feet"),
  23323. default: true
  23324. },
  23325. ]
  23326. ))
  23327. characterMakers.push(() => makeCharacter(
  23328. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23329. {
  23330. upright: {
  23331. height: math.unit(6, "meters"),
  23332. weight: math.unit(4000, "kg"),
  23333. name: "Upright",
  23334. image: {
  23335. source: "./media/characters/ruin/upright.svg",
  23336. extra: 668 / 661,
  23337. bottom: 42 / 799.8396
  23338. }
  23339. },
  23340. },
  23341. [
  23342. {
  23343. name: "Normal",
  23344. height: math.unit(6, "meters"),
  23345. default: true
  23346. },
  23347. ]
  23348. ))
  23349. characterMakers.push(() => makeCharacter(
  23350. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23351. {
  23352. front: {
  23353. height: math.unit(5, "feet"),
  23354. weight: math.unit(106, "lb"),
  23355. name: "Front",
  23356. image: {
  23357. source: "./media/characters/robin/front.svg",
  23358. extra: 862 / 799,
  23359. bottom: 42.4 / 914.8856
  23360. }
  23361. },
  23362. },
  23363. [
  23364. {
  23365. name: "Normal",
  23366. height: math.unit(5, "feet"),
  23367. default: true
  23368. },
  23369. ]
  23370. ))
  23371. characterMakers.push(() => makeCharacter(
  23372. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23373. {
  23374. side: {
  23375. height: math.unit(3, "feet"),
  23376. weight: math.unit(225, "lb"),
  23377. name: "Side",
  23378. image: {
  23379. source: "./media/characters/saian/side.svg",
  23380. extra: 566 / 356,
  23381. bottom: 79.7 / 643
  23382. }
  23383. },
  23384. maw: {
  23385. height: math.unit(2.85, "feet"),
  23386. name: "Maw",
  23387. image: {
  23388. source: "./media/characters/saian/maw.svg"
  23389. }
  23390. },
  23391. },
  23392. [
  23393. {
  23394. name: "Normal",
  23395. height: math.unit(3, "feet"),
  23396. default: true
  23397. },
  23398. ]
  23399. ))
  23400. characterMakers.push(() => makeCharacter(
  23401. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23402. {
  23403. side: {
  23404. height: math.unit(8, "feet"),
  23405. weight: math.unit(300, "lb"),
  23406. name: "Side",
  23407. image: {
  23408. source: "./media/characters/equus-silvermane/side.svg",
  23409. extra: 2176 / 2050,
  23410. bottom: 65.7 / 2245
  23411. }
  23412. },
  23413. front: {
  23414. height: math.unit(8, "feet"),
  23415. weight: math.unit(300, "lb"),
  23416. name: "Front",
  23417. image: {
  23418. source: "./media/characters/equus-silvermane/front.svg",
  23419. extra: 4633 / 4400,
  23420. bottom: 71.3 / 4706.915
  23421. }
  23422. },
  23423. sideStepping: {
  23424. height: math.unit(8, "feet"),
  23425. weight: math.unit(300, "lb"),
  23426. name: "Side (Stepping)",
  23427. image: {
  23428. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23429. extra: 1968 / 1860,
  23430. bottom: 16.4 / 1989
  23431. }
  23432. },
  23433. },
  23434. [
  23435. {
  23436. name: "Normal",
  23437. height: math.unit(8, "feet")
  23438. },
  23439. {
  23440. name: "Minimacro",
  23441. height: math.unit(75, "feet"),
  23442. default: true
  23443. },
  23444. {
  23445. name: "Macro",
  23446. height: math.unit(150, "feet")
  23447. },
  23448. {
  23449. name: "Macro+",
  23450. height: math.unit(1000, "feet")
  23451. },
  23452. {
  23453. name: "Megamacro",
  23454. height: math.unit(1, "mile")
  23455. },
  23456. ]
  23457. ))
  23458. characterMakers.push(() => makeCharacter(
  23459. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23460. {
  23461. side: {
  23462. height: math.unit(20, "feet"),
  23463. weight: math.unit(30000, "kg"),
  23464. name: "Side",
  23465. image: {
  23466. source: "./media/characters/windar/side.svg",
  23467. extra: 1491 / 1248,
  23468. bottom: 82.56 / 1568
  23469. }
  23470. },
  23471. },
  23472. [
  23473. {
  23474. name: "Normal",
  23475. height: math.unit(20, "feet"),
  23476. default: true
  23477. },
  23478. ]
  23479. ))
  23480. characterMakers.push(() => makeCharacter(
  23481. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23482. {
  23483. side: {
  23484. height: math.unit(15.66, "feet"),
  23485. weight: math.unit(150, "lb"),
  23486. name: "Side",
  23487. image: {
  23488. source: "./media/characters/melody/side.svg",
  23489. extra: 1097 / 944,
  23490. bottom: 11.8 / 1109
  23491. }
  23492. },
  23493. sideOutfit: {
  23494. height: math.unit(15.66, "feet"),
  23495. weight: math.unit(150, "lb"),
  23496. name: "Side (Outfit)",
  23497. image: {
  23498. source: "./media/characters/melody/side-outfit.svg",
  23499. extra: 1097 / 944,
  23500. bottom: 11.8 / 1109
  23501. }
  23502. },
  23503. },
  23504. [
  23505. {
  23506. name: "Normal",
  23507. height: math.unit(15.66, "feet"),
  23508. default: true
  23509. },
  23510. ]
  23511. ))
  23512. characterMakers.push(() => makeCharacter(
  23513. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23514. {
  23515. armoredFront: {
  23516. height: math.unit(8, "feet"),
  23517. weight: math.unit(325, "lb"),
  23518. name: "Front",
  23519. image: {
  23520. source: "./media/characters/windera/armored-front.svg",
  23521. extra: 1830/1598,
  23522. bottom: 151/1981
  23523. },
  23524. form: "armored",
  23525. default: true
  23526. },
  23527. macroFront: {
  23528. height: math.unit(70, "feet"),
  23529. weight: math.unit(315453, "lb"),
  23530. name: "Front",
  23531. image: {
  23532. source: "./media/characters/windera/macro-front.svg",
  23533. extra: 963/883,
  23534. bottom: 23/986
  23535. },
  23536. form: "macro",
  23537. default: true
  23538. },
  23539. },
  23540. [
  23541. {
  23542. name: "Normal",
  23543. height: math.unit(8, "feet"),
  23544. default: true,
  23545. form: "armored"
  23546. },
  23547. {
  23548. name: "Normal",
  23549. height: math.unit(70, "feet"),
  23550. default: true,
  23551. form: "macro"
  23552. },
  23553. ],
  23554. {
  23555. "armored": {
  23556. name: "Armored",
  23557. default: true
  23558. },
  23559. "macro": {
  23560. name: "Macro",
  23561. },
  23562. }
  23563. ))
  23564. characterMakers.push(() => makeCharacter(
  23565. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23566. {
  23567. front: {
  23568. height: math.unit(28.75, "feet"),
  23569. weight: math.unit(2000, "kg"),
  23570. name: "Front",
  23571. image: {
  23572. source: "./media/characters/sonear/front.svg",
  23573. extra: 1041.1 / 964.9,
  23574. bottom: 53.7 / 1096.6
  23575. }
  23576. },
  23577. },
  23578. [
  23579. {
  23580. name: "Normal",
  23581. height: math.unit(28.75, "feet"),
  23582. default: true
  23583. },
  23584. ]
  23585. ))
  23586. characterMakers.push(() => makeCharacter(
  23587. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23588. {
  23589. side: {
  23590. height: math.unit(25.5, "feet"),
  23591. weight: math.unit(23000, "kg"),
  23592. name: "Side",
  23593. image: {
  23594. source: "./media/characters/kanara/side.svg"
  23595. }
  23596. },
  23597. },
  23598. [
  23599. {
  23600. name: "Normal",
  23601. height: math.unit(25.5, "feet"),
  23602. default: true
  23603. },
  23604. ]
  23605. ))
  23606. characterMakers.push(() => makeCharacter(
  23607. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23608. {
  23609. side: {
  23610. height: math.unit(10, "feet"),
  23611. weight: math.unit(1000, "kg"),
  23612. name: "Side",
  23613. image: {
  23614. source: "./media/characters/ereus/side.svg",
  23615. extra: 1157 / 959,
  23616. bottom: 153 / 1312.5
  23617. }
  23618. },
  23619. },
  23620. [
  23621. {
  23622. name: "Normal",
  23623. height: math.unit(10, "feet"),
  23624. default: true
  23625. },
  23626. ]
  23627. ))
  23628. characterMakers.push(() => makeCharacter(
  23629. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23630. {
  23631. side: {
  23632. height: math.unit(4.5, "feet"),
  23633. weight: math.unit(500, "lb"),
  23634. name: "Side",
  23635. image: {
  23636. source: "./media/characters/e-ter/side.svg",
  23637. extra: 1550 / 1248,
  23638. bottom: 146 / 1694
  23639. }
  23640. },
  23641. },
  23642. [
  23643. {
  23644. name: "Normal",
  23645. height: math.unit(4.5, "feet"),
  23646. default: true
  23647. },
  23648. ]
  23649. ))
  23650. characterMakers.push(() => makeCharacter(
  23651. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23652. {
  23653. side: {
  23654. height: math.unit(9.7, "feet"),
  23655. weight: math.unit(4000, "kg"),
  23656. name: "Side",
  23657. image: {
  23658. source: "./media/characters/yamie/side.svg"
  23659. }
  23660. },
  23661. },
  23662. [
  23663. {
  23664. name: "Normal",
  23665. height: math.unit(9.7, "feet"),
  23666. default: true
  23667. },
  23668. ]
  23669. ))
  23670. characterMakers.push(() => makeCharacter(
  23671. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23672. {
  23673. front: {
  23674. height: math.unit(50, "feet"),
  23675. weight: math.unit(50000, "kg"),
  23676. name: "Front",
  23677. image: {
  23678. source: "./media/characters/anders/front.svg",
  23679. extra: 570 / 539,
  23680. bottom: 14.7 / 586.7
  23681. }
  23682. },
  23683. },
  23684. [
  23685. {
  23686. name: "Large",
  23687. height: math.unit(50, "feet")
  23688. },
  23689. {
  23690. name: "Macro",
  23691. height: math.unit(2000, "feet"),
  23692. default: true
  23693. },
  23694. {
  23695. name: "Megamacro",
  23696. height: math.unit(12, "miles")
  23697. },
  23698. ]
  23699. ))
  23700. characterMakers.push(() => makeCharacter(
  23701. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23702. {
  23703. front: {
  23704. height: math.unit(7 + 2 / 12, "feet"),
  23705. weight: math.unit(300, "lb"),
  23706. name: "Front",
  23707. image: {
  23708. source: "./media/characters/reban/front.svg",
  23709. extra: 1287/1212,
  23710. bottom: 148/1435
  23711. }
  23712. },
  23713. head: {
  23714. height: math.unit(1.95, "feet"),
  23715. name: "Head",
  23716. image: {
  23717. source: "./media/characters/reban/head.svg"
  23718. }
  23719. },
  23720. maw: {
  23721. height: math.unit(0.95, "feet"),
  23722. name: "Maw",
  23723. image: {
  23724. source: "./media/characters/reban/maw.svg"
  23725. }
  23726. },
  23727. foot: {
  23728. height: math.unit(1.65, "feet"),
  23729. name: "Foot",
  23730. image: {
  23731. source: "./media/characters/reban/foot.svg"
  23732. }
  23733. },
  23734. dick: {
  23735. height: math.unit(7 / 5, "feet"),
  23736. name: "Dick",
  23737. image: {
  23738. source: "./media/characters/reban/dick.svg"
  23739. }
  23740. },
  23741. },
  23742. [
  23743. {
  23744. name: "Natural Height",
  23745. height: math.unit(7 + 2 / 12, "feet")
  23746. },
  23747. {
  23748. name: "Macro",
  23749. height: math.unit(500, "feet"),
  23750. default: true
  23751. },
  23752. {
  23753. name: "Canon Height",
  23754. height: math.unit(50, "AU")
  23755. },
  23756. ]
  23757. ))
  23758. characterMakers.push(() => makeCharacter(
  23759. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23760. {
  23761. front: {
  23762. height: math.unit(6, "feet"),
  23763. weight: math.unit(150, "lb"),
  23764. name: "Front",
  23765. image: {
  23766. source: "./media/characters/terrance-keayes/front.svg",
  23767. extra: 1.005,
  23768. bottom: 151 / 1615
  23769. }
  23770. },
  23771. side: {
  23772. height: math.unit(6, "feet"),
  23773. weight: math.unit(150, "lb"),
  23774. name: "Side",
  23775. image: {
  23776. source: "./media/characters/terrance-keayes/side.svg",
  23777. extra: 1.005,
  23778. bottom: 129.4 / 1544
  23779. }
  23780. },
  23781. back: {
  23782. height: math.unit(6, "feet"),
  23783. weight: math.unit(150, "lb"),
  23784. name: "Back",
  23785. image: {
  23786. source: "./media/characters/terrance-keayes/back.svg",
  23787. extra: 1.005,
  23788. bottom: 58.4 / 1557.3
  23789. }
  23790. },
  23791. dick: {
  23792. height: math.unit(6 * 0.208, "feet"),
  23793. name: "Dick",
  23794. image: {
  23795. source: "./media/characters/terrance-keayes/dick.svg"
  23796. }
  23797. },
  23798. },
  23799. [
  23800. {
  23801. name: "Canon Height",
  23802. height: math.unit(35, "miles"),
  23803. default: true
  23804. },
  23805. ]
  23806. ))
  23807. characterMakers.push(() => makeCharacter(
  23808. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23809. {
  23810. front: {
  23811. height: math.unit(6, "feet"),
  23812. weight: math.unit(150, "lb"),
  23813. name: "Front",
  23814. image: {
  23815. source: "./media/characters/ofelia/front.svg",
  23816. extra: 1130/1117,
  23817. bottom: 91/1221
  23818. }
  23819. },
  23820. back: {
  23821. height: math.unit(6, "feet"),
  23822. weight: math.unit(150, "lb"),
  23823. name: "Back",
  23824. image: {
  23825. source: "./media/characters/ofelia/back.svg",
  23826. extra: 1172/1159,
  23827. bottom: 28/1200
  23828. }
  23829. },
  23830. maw: {
  23831. height: math.unit(1, "feet"),
  23832. name: "Maw",
  23833. image: {
  23834. source: "./media/characters/ofelia/maw.svg"
  23835. }
  23836. },
  23837. foot: {
  23838. height: math.unit(1.949, "feet"),
  23839. name: "Foot",
  23840. image: {
  23841. source: "./media/characters/ofelia/foot.svg"
  23842. }
  23843. },
  23844. },
  23845. [
  23846. {
  23847. name: "Canon Height",
  23848. height: math.unit(2000, "miles"),
  23849. default: true
  23850. },
  23851. ]
  23852. ))
  23853. characterMakers.push(() => makeCharacter(
  23854. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23855. {
  23856. front: {
  23857. height: math.unit(6, "feet"),
  23858. weight: math.unit(150, "lb"),
  23859. name: "Front",
  23860. image: {
  23861. source: "./media/characters/samuel/front.svg",
  23862. extra: 265 / 258,
  23863. bottom: 2 / 266.1566
  23864. }
  23865. },
  23866. },
  23867. [
  23868. {
  23869. name: "Macro",
  23870. height: math.unit(100, "feet"),
  23871. default: true
  23872. },
  23873. {
  23874. name: "Full Size",
  23875. height: math.unit(1000, "miles")
  23876. },
  23877. ]
  23878. ))
  23879. characterMakers.push(() => makeCharacter(
  23880. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23881. {
  23882. front: {
  23883. height: math.unit(6, "feet"),
  23884. weight: math.unit(300, "lb"),
  23885. name: "Front",
  23886. image: {
  23887. source: "./media/characters/beishir-kiel/front.svg",
  23888. extra: 569 / 547,
  23889. bottom: 41.9 / 609
  23890. }
  23891. },
  23892. maw: {
  23893. height: math.unit(6 * 0.202, "feet"),
  23894. name: "Maw",
  23895. image: {
  23896. source: "./media/characters/beishir-kiel/maw.svg"
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Macro",
  23903. height: math.unit(300, "feet"),
  23904. default: true
  23905. },
  23906. ]
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23910. {
  23911. front: {
  23912. height: math.unit(5 + 7/12, "feet"),
  23913. weight: math.unit(120, "lb"),
  23914. name: "Front",
  23915. image: {
  23916. source: "./media/characters/logan-grey/front.svg",
  23917. extra: 1836/1738,
  23918. bottom: 108/1944
  23919. }
  23920. },
  23921. back: {
  23922. height: math.unit(5 + 7/12, "feet"),
  23923. weight: math.unit(120, "lb"),
  23924. name: "Back",
  23925. image: {
  23926. source: "./media/characters/logan-grey/back.svg",
  23927. extra: 1880/1794,
  23928. bottom: 24/1904
  23929. }
  23930. },
  23931. frontSfw: {
  23932. height: math.unit(5 + 7/12, "feet"),
  23933. weight: math.unit(120, "lb"),
  23934. name: "Front (SFW)",
  23935. image: {
  23936. source: "./media/characters/logan-grey/front-sfw.svg",
  23937. extra: 1836/1738,
  23938. bottom: 108/1944
  23939. }
  23940. },
  23941. backSfw: {
  23942. height: math.unit(5 + 7/12, "feet"),
  23943. weight: math.unit(120, "lb"),
  23944. name: "Back (SFW)",
  23945. image: {
  23946. source: "./media/characters/logan-grey/back-sfw.svg",
  23947. extra: 1880/1794,
  23948. bottom: 24/1904
  23949. }
  23950. },
  23951. hands: {
  23952. height: math.unit(0.84, "feet"),
  23953. name: "Hands",
  23954. image: {
  23955. source: "./media/characters/logan-grey/hands.svg"
  23956. }
  23957. },
  23958. paws: {
  23959. height: math.unit(0.72, "feet"),
  23960. name: "Paws",
  23961. image: {
  23962. source: "./media/characters/logan-grey/paws.svg"
  23963. }
  23964. },
  23965. cock: {
  23966. height: math.unit(1.45, "feet"),
  23967. name: "Cock",
  23968. image: {
  23969. source: "./media/characters/logan-grey/cock.svg"
  23970. }
  23971. },
  23972. cockAlt: {
  23973. height: math.unit(1.437, "feet"),
  23974. name: "Cock (alt)",
  23975. image: {
  23976. source: "./media/characters/logan-grey/cock-alt.svg"
  23977. }
  23978. },
  23979. },
  23980. [
  23981. {
  23982. name: "Normal",
  23983. height: math.unit(5 + 8 / 12, "feet")
  23984. },
  23985. {
  23986. name: "The 500 Foot Femboy",
  23987. height: math.unit(500, "feet"),
  23988. default: true
  23989. },
  23990. {
  23991. name: "Megmacro",
  23992. height: math.unit(20, "miles")
  23993. },
  23994. ]
  23995. ))
  23996. characterMakers.push(() => makeCharacter(
  23997. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23998. {
  23999. front: {
  24000. height: math.unit(8 + 2 / 12, "feet"),
  24001. weight: math.unit(275, "lb"),
  24002. name: "Front",
  24003. image: {
  24004. source: "./media/characters/draganta/front.svg",
  24005. extra: 1177 / 1135,
  24006. bottom: 33.46 / 1212.1
  24007. }
  24008. },
  24009. },
  24010. [
  24011. {
  24012. name: "Normal",
  24013. height: math.unit(8 + 6 / 12, "feet"),
  24014. default: true
  24015. },
  24016. {
  24017. name: "Macro",
  24018. height: math.unit(150, "feet")
  24019. },
  24020. {
  24021. name: "Megamacro",
  24022. height: math.unit(1000, "miles")
  24023. },
  24024. ]
  24025. ))
  24026. characterMakers.push(() => makeCharacter(
  24027. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24028. {
  24029. front: {
  24030. height: math.unit(1.72, "m"),
  24031. weight: math.unit(80, "lb"),
  24032. name: "Front",
  24033. image: {
  24034. source: "./media/characters/voski/front.svg",
  24035. extra: 2076.22 / 2022.4,
  24036. bottom: 102.7 / 2177.3866
  24037. }
  24038. },
  24039. frontFlaccid: {
  24040. height: math.unit(1.72, "m"),
  24041. weight: math.unit(80, "lb"),
  24042. name: "Front (Flaccid)",
  24043. image: {
  24044. source: "./media/characters/voski/front-flaccid.svg",
  24045. extra: 2076.22 / 2022.4,
  24046. bottom: 102.7 / 2177.3866
  24047. }
  24048. },
  24049. frontErect: {
  24050. height: math.unit(1.72, "m"),
  24051. weight: math.unit(80, "lb"),
  24052. name: "Front (Erect)",
  24053. image: {
  24054. source: "./media/characters/voski/front-erect.svg",
  24055. extra: 2076.22 / 2022.4,
  24056. bottom: 102.7 / 2177.3866
  24057. }
  24058. },
  24059. back: {
  24060. height: math.unit(1.72, "m"),
  24061. weight: math.unit(80, "lb"),
  24062. name: "Back",
  24063. image: {
  24064. source: "./media/characters/voski/back.svg",
  24065. extra: 2104 / 2051,
  24066. bottom: 10.45 / 2113.63
  24067. }
  24068. },
  24069. },
  24070. [
  24071. {
  24072. name: "Normal",
  24073. height: math.unit(1.72, "m")
  24074. },
  24075. {
  24076. name: "Macro",
  24077. height: math.unit(55, "m"),
  24078. default: true
  24079. },
  24080. {
  24081. name: "Macro+",
  24082. height: math.unit(300, "m")
  24083. },
  24084. {
  24085. name: "Macro++",
  24086. height: math.unit(700, "m")
  24087. },
  24088. {
  24089. name: "Macro+++",
  24090. height: math.unit(4500, "m")
  24091. },
  24092. {
  24093. name: "Macro++++",
  24094. height: math.unit(45, "km")
  24095. },
  24096. {
  24097. name: "Macro+++++",
  24098. height: math.unit(1220, "km")
  24099. },
  24100. ]
  24101. ))
  24102. characterMakers.push(() => makeCharacter(
  24103. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24104. {
  24105. front: {
  24106. height: math.unit(2.3, "m"),
  24107. weight: math.unit(304, "kg"),
  24108. name: "Front",
  24109. image: {
  24110. source: "./media/characters/icowom-lee/front.svg",
  24111. extra: 985 / 955,
  24112. bottom: 25.4 / 1012
  24113. }
  24114. },
  24115. fronttentacles: {
  24116. height: math.unit(2.3, "m"),
  24117. weight: math.unit(304, "kg"),
  24118. name: "Front-tentacles",
  24119. image: {
  24120. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24121. extra: 985 / 955,
  24122. bottom: 25.4 / 1012
  24123. }
  24124. },
  24125. back: {
  24126. height: math.unit(2.3, "m"),
  24127. weight: math.unit(304, "kg"),
  24128. name: "Back",
  24129. image: {
  24130. source: "./media/characters/icowom-lee/back.svg",
  24131. extra: 975 / 954,
  24132. bottom: 9.5 / 985
  24133. }
  24134. },
  24135. backtentacles: {
  24136. height: math.unit(2.3, "m"),
  24137. weight: math.unit(304, "kg"),
  24138. name: "Back-tentacles",
  24139. image: {
  24140. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24141. extra: 975 / 954,
  24142. bottom: 9.5 / 985
  24143. }
  24144. },
  24145. frontDressed: {
  24146. height: math.unit(2.3, "m"),
  24147. weight: math.unit(304, "kg"),
  24148. name: "Front (Dressed)",
  24149. image: {
  24150. source: "./media/characters/icowom-lee/front-dressed.svg",
  24151. extra: 3076 / 2933,
  24152. bottom: 51.4 / 3125.1889
  24153. }
  24154. },
  24155. rump: {
  24156. height: math.unit(0.776, "meters"),
  24157. name: "Rump",
  24158. image: {
  24159. source: "./media/characters/icowom-lee/rump.svg"
  24160. }
  24161. },
  24162. genitals: {
  24163. height: math.unit(0.78, "meters"),
  24164. name: "Genitals",
  24165. image: {
  24166. source: "./media/characters/icowom-lee/genitals.svg"
  24167. }
  24168. },
  24169. },
  24170. [
  24171. {
  24172. name: "Normal",
  24173. height: math.unit(2.3, "meters"),
  24174. default: true
  24175. },
  24176. {
  24177. name: "Macro",
  24178. height: math.unit(94, "meters"),
  24179. default: true
  24180. },
  24181. ]
  24182. ))
  24183. characterMakers.push(() => makeCharacter(
  24184. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24185. {
  24186. front: {
  24187. height: math.unit(22, "meters"),
  24188. weight: math.unit(21000, "kg"),
  24189. name: "Front",
  24190. image: {
  24191. source: "./media/characters/shock-diamond/front.svg",
  24192. extra: 2204 / 2053,
  24193. bottom: 65 / 2239.47
  24194. }
  24195. },
  24196. frontNude: {
  24197. height: math.unit(22, "meters"),
  24198. weight: math.unit(21000, "kg"),
  24199. name: "Front (Nude)",
  24200. image: {
  24201. source: "./media/characters/shock-diamond/front-nude.svg",
  24202. extra: 2514 / 2285,
  24203. bottom: 13 / 2527.56
  24204. }
  24205. },
  24206. },
  24207. [
  24208. {
  24209. name: "Normal",
  24210. height: math.unit(3, "meters")
  24211. },
  24212. {
  24213. name: "Macro",
  24214. height: math.unit(22, "meters"),
  24215. default: true
  24216. },
  24217. ]
  24218. ))
  24219. characterMakers.push(() => makeCharacter(
  24220. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24221. {
  24222. front: {
  24223. height: math.unit(5 + 4/12, "feet"),
  24224. weight: math.unit(125, "lb"),
  24225. name: "Front",
  24226. image: {
  24227. source: "./media/characters/rory/front.svg",
  24228. extra: 1790/1681,
  24229. bottom: 66/1856
  24230. }
  24231. },
  24232. back: {
  24233. height: math.unit(5 + 4/12, "feet"),
  24234. weight: math.unit(125, "lb"),
  24235. name: "Back",
  24236. image: {
  24237. source: "./media/characters/rory/back.svg",
  24238. extra: 1805/1690,
  24239. bottom: 56/1861
  24240. }
  24241. },
  24242. frontDressed: {
  24243. height: math.unit(5 + 4/12, "feet"),
  24244. weight: math.unit(125, "lb"),
  24245. name: "Front (Dressed)",
  24246. image: {
  24247. source: "./media/characters/rory/front-dressed.svg",
  24248. extra: 1790/1681,
  24249. bottom: 66/1856
  24250. }
  24251. },
  24252. backDressed: {
  24253. height: math.unit(5 + 4/12, "feet"),
  24254. weight: math.unit(125, "lb"),
  24255. name: "Back (Dressed)",
  24256. image: {
  24257. source: "./media/characters/rory/back-dressed.svg",
  24258. extra: 1805/1690,
  24259. bottom: 56/1861
  24260. }
  24261. },
  24262. frontNsfw: {
  24263. height: math.unit(5 + 4/12, "feet"),
  24264. weight: math.unit(125, "lb"),
  24265. name: "Front (NSFW)",
  24266. image: {
  24267. source: "./media/characters/rory/front-nsfw.svg",
  24268. extra: 1790/1681,
  24269. bottom: 66/1856
  24270. }
  24271. },
  24272. backNsfw: {
  24273. height: math.unit(5 + 4/12, "feet"),
  24274. weight: math.unit(125, "lb"),
  24275. name: "Back (NSFW)",
  24276. image: {
  24277. source: "./media/characters/rory/back-nsfw.svg",
  24278. extra: 1805/1690,
  24279. bottom: 56/1861
  24280. }
  24281. },
  24282. dick: {
  24283. height: math.unit(0.8, "feet"),
  24284. name: "Dick",
  24285. image: {
  24286. source: "./media/characters/rory/dick.svg"
  24287. }
  24288. },
  24289. },
  24290. [
  24291. {
  24292. name: "Micro",
  24293. height: math.unit(3, "inches")
  24294. },
  24295. {
  24296. name: "Normal",
  24297. height: math.unit(5 + 4/12, "feet"),
  24298. default: true
  24299. },
  24300. {
  24301. name: "Macro",
  24302. height: math.unit(90, "feet")
  24303. },
  24304. {
  24305. name: "Supercharged",
  24306. height: math.unit(270, "feet")
  24307. },
  24308. ]
  24309. ))
  24310. characterMakers.push(() => makeCharacter(
  24311. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24312. {
  24313. front: {
  24314. height: math.unit(5 + 9 / 12, "feet"),
  24315. weight: math.unit(190, "lb"),
  24316. name: "Front",
  24317. image: {
  24318. source: "./media/characters/sprisk/front.svg",
  24319. extra: 1225 / 1180,
  24320. bottom: 42.7 / 1266.4
  24321. }
  24322. },
  24323. frontNsfw: {
  24324. height: math.unit(5 + 9 / 12, "feet"),
  24325. weight: math.unit(190, "lb"),
  24326. name: "Front (NSFW)",
  24327. image: {
  24328. source: "./media/characters/sprisk/front-nsfw.svg",
  24329. extra: 1225 / 1180,
  24330. bottom: 42.7 / 1266.4
  24331. }
  24332. },
  24333. back: {
  24334. height: math.unit(5 + 9 / 12, "feet"),
  24335. weight: math.unit(190, "lb"),
  24336. name: "Back",
  24337. image: {
  24338. source: "./media/characters/sprisk/back.svg",
  24339. extra: 1247 / 1200,
  24340. bottom: 5.6 / 1253.04
  24341. }
  24342. },
  24343. },
  24344. [
  24345. {
  24346. name: "Tiny",
  24347. height: math.unit(2, "inches")
  24348. },
  24349. {
  24350. name: "Normal",
  24351. height: math.unit(5 + 9 / 12, "feet"),
  24352. default: true
  24353. },
  24354. {
  24355. name: "Mini Macro",
  24356. height: math.unit(18, "feet")
  24357. },
  24358. {
  24359. name: "Macro",
  24360. height: math.unit(100, "feet")
  24361. },
  24362. {
  24363. name: "MACRO",
  24364. height: math.unit(50, "miles")
  24365. },
  24366. {
  24367. name: "M A C R O",
  24368. height: math.unit(300, "miles")
  24369. },
  24370. ]
  24371. ))
  24372. characterMakers.push(() => makeCharacter(
  24373. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24374. {
  24375. side: {
  24376. height: math.unit(15.6, "meters"),
  24377. weight: math.unit(700000, "kg"),
  24378. name: "Side",
  24379. image: {
  24380. source: "./media/characters/bunsen/side.svg",
  24381. extra: 1644 / 358
  24382. }
  24383. },
  24384. foot: {
  24385. height: math.unit(1.611 * 1644 / 358, "meter"),
  24386. name: "Foot",
  24387. image: {
  24388. source: "./media/characters/bunsen/foot.svg"
  24389. }
  24390. },
  24391. },
  24392. [
  24393. {
  24394. name: "Small",
  24395. height: math.unit(10, "feet")
  24396. },
  24397. {
  24398. name: "Normal",
  24399. height: math.unit(15.6, "meters"),
  24400. default: true
  24401. },
  24402. ]
  24403. ))
  24404. characterMakers.push(() => makeCharacter(
  24405. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24406. {
  24407. front: {
  24408. height: math.unit(4 + 11 / 12, "feet"),
  24409. weight: math.unit(140, "lb"),
  24410. name: "Front",
  24411. image: {
  24412. source: "./media/characters/sesh/front.svg",
  24413. extra: 3420 / 3231,
  24414. bottom: 72 / 3949.5
  24415. }
  24416. },
  24417. },
  24418. [
  24419. {
  24420. name: "Normal",
  24421. height: math.unit(4 + 11 / 12, "feet")
  24422. },
  24423. {
  24424. name: "Grown",
  24425. height: math.unit(15, "feet"),
  24426. default: true
  24427. },
  24428. {
  24429. name: "Macro",
  24430. height: math.unit(1500, "feet")
  24431. },
  24432. {
  24433. name: "Megamacro",
  24434. height: math.unit(30, "miles")
  24435. },
  24436. {
  24437. name: "Continental",
  24438. height: math.unit(3000, "miles")
  24439. },
  24440. {
  24441. name: "Gravity Mass",
  24442. height: math.unit(300000, "miles")
  24443. },
  24444. {
  24445. name: "Planet Buster",
  24446. height: math.unit(30000000, "miles")
  24447. },
  24448. {
  24449. name: "Big",
  24450. height: math.unit(3000000000, "miles")
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24456. {
  24457. front: {
  24458. height: math.unit(9, "feet"),
  24459. weight: math.unit(350, "lb"),
  24460. name: "Front",
  24461. image: {
  24462. source: "./media/characters/pepper/front.svg",
  24463. extra: 1448 / 1312,
  24464. bottom: 9.4 / 1457.88
  24465. }
  24466. },
  24467. back: {
  24468. height: math.unit(9, "feet"),
  24469. weight: math.unit(350, "lb"),
  24470. name: "Back",
  24471. image: {
  24472. source: "./media/characters/pepper/back.svg",
  24473. extra: 1423 / 1300,
  24474. bottom: 4.6 / 1429
  24475. }
  24476. },
  24477. maw: {
  24478. height: math.unit(0.932, "feet"),
  24479. name: "Maw",
  24480. image: {
  24481. source: "./media/characters/pepper/maw.svg"
  24482. }
  24483. },
  24484. },
  24485. [
  24486. {
  24487. name: "Normal",
  24488. height: math.unit(9, "feet"),
  24489. default: true
  24490. },
  24491. ]
  24492. ))
  24493. characterMakers.push(() => makeCharacter(
  24494. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24495. {
  24496. front: {
  24497. height: math.unit(6, "feet"),
  24498. weight: math.unit(150, "lb"),
  24499. name: "Front",
  24500. image: {
  24501. source: "./media/characters/maelstrom/front.svg",
  24502. extra: 2100 / 1883,
  24503. bottom: 94 / 2196.7
  24504. }
  24505. },
  24506. },
  24507. [
  24508. {
  24509. name: "Less Kaiju",
  24510. height: math.unit(200, "feet")
  24511. },
  24512. {
  24513. name: "Kaiju",
  24514. height: math.unit(400, "feet"),
  24515. default: true
  24516. },
  24517. {
  24518. name: "Kaiju-er",
  24519. height: math.unit(600, "feet")
  24520. },
  24521. ]
  24522. ))
  24523. characterMakers.push(() => makeCharacter(
  24524. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24525. {
  24526. front: {
  24527. height: math.unit(6 + 5 / 12, "feet"),
  24528. weight: math.unit(180, "lb"),
  24529. name: "Front",
  24530. image: {
  24531. source: "./media/characters/lexir/front.svg",
  24532. extra: 180 / 172,
  24533. bottom: 12 / 192
  24534. }
  24535. },
  24536. back: {
  24537. height: math.unit(6 + 5 / 12, "feet"),
  24538. weight: math.unit(180, "lb"),
  24539. name: "Back",
  24540. image: {
  24541. source: "./media/characters/lexir/back.svg",
  24542. extra: 1273/1201,
  24543. bottom: 39/1312
  24544. }
  24545. },
  24546. },
  24547. [
  24548. {
  24549. name: "Very Smal",
  24550. height: math.unit(1, "nm")
  24551. },
  24552. {
  24553. name: "Normal",
  24554. height: math.unit(6 + 5 / 12, "feet"),
  24555. default: true
  24556. },
  24557. {
  24558. name: "Macro",
  24559. height: math.unit(1, "mile")
  24560. },
  24561. {
  24562. name: "Megamacro",
  24563. height: math.unit(50, "miles")
  24564. },
  24565. ]
  24566. ))
  24567. characterMakers.push(() => makeCharacter(
  24568. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24569. {
  24570. front: {
  24571. height: math.unit(1.5, "meters"),
  24572. weight: math.unit(100, "lb"),
  24573. name: "Front",
  24574. image: {
  24575. source: "./media/characters/maksio/front.svg",
  24576. extra: 1549 / 1531,
  24577. bottom: 123.7 / 1674.5429
  24578. }
  24579. },
  24580. back: {
  24581. height: math.unit(1.5, "meters"),
  24582. weight: math.unit(100, "lb"),
  24583. name: "Back",
  24584. image: {
  24585. source: "./media/characters/maksio/back.svg",
  24586. extra: 1541 / 1509,
  24587. bottom: 97 / 1639
  24588. }
  24589. },
  24590. hand: {
  24591. height: math.unit(0.621, "feet"),
  24592. name: "Hand",
  24593. image: {
  24594. source: "./media/characters/maksio/hand.svg"
  24595. }
  24596. },
  24597. foot: {
  24598. height: math.unit(1.611, "feet"),
  24599. name: "Foot",
  24600. image: {
  24601. source: "./media/characters/maksio/foot.svg"
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Shrunken",
  24608. height: math.unit(10, "cm")
  24609. },
  24610. {
  24611. name: "Normal",
  24612. height: math.unit(150, "cm"),
  24613. default: true
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24619. {
  24620. front: {
  24621. height: math.unit(100, "feet"),
  24622. name: "Front",
  24623. image: {
  24624. source: "./media/characters/erza-bear/front.svg",
  24625. extra: 2449 / 2390,
  24626. bottom: 46 / 2494
  24627. }
  24628. },
  24629. back: {
  24630. height: math.unit(100, "feet"),
  24631. name: "Back",
  24632. image: {
  24633. source: "./media/characters/erza-bear/back.svg",
  24634. extra: 2489 / 2430,
  24635. bottom: 85.4 / 2480
  24636. }
  24637. },
  24638. tail: {
  24639. height: math.unit(42, "feet"),
  24640. name: "Tail",
  24641. image: {
  24642. source: "./media/characters/erza-bear/tail.svg"
  24643. }
  24644. },
  24645. tongue: {
  24646. height: math.unit(8, "feet"),
  24647. name: "Tongue",
  24648. image: {
  24649. source: "./media/characters/erza-bear/tongue.svg"
  24650. }
  24651. },
  24652. dick: {
  24653. height: math.unit(10.5, "feet"),
  24654. name: "Dick",
  24655. image: {
  24656. source: "./media/characters/erza-bear/dick.svg"
  24657. }
  24658. },
  24659. dickVertical: {
  24660. height: math.unit(16.9, "feet"),
  24661. name: "Dick (Vertical)",
  24662. image: {
  24663. source: "./media/characters/erza-bear/dick-vertical.svg"
  24664. }
  24665. },
  24666. },
  24667. [
  24668. {
  24669. name: "Macro",
  24670. height: math.unit(100, "feet"),
  24671. default: true
  24672. },
  24673. ]
  24674. ))
  24675. characterMakers.push(() => makeCharacter(
  24676. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24677. {
  24678. front: {
  24679. height: math.unit(172, "cm"),
  24680. weight: math.unit(73, "kg"),
  24681. name: "Front",
  24682. image: {
  24683. source: "./media/characters/violet-flor/front.svg",
  24684. extra: 1530 / 1442,
  24685. bottom: 61.9 / 1588.8
  24686. }
  24687. },
  24688. back: {
  24689. height: math.unit(180, "cm"),
  24690. weight: math.unit(73, "kg"),
  24691. name: "Back",
  24692. image: {
  24693. source: "./media/characters/violet-flor/back.svg",
  24694. extra: 1692 / 1630,
  24695. bottom: 20 / 1712
  24696. }
  24697. },
  24698. },
  24699. [
  24700. {
  24701. name: "Normal",
  24702. height: math.unit(172, "cm"),
  24703. default: true
  24704. },
  24705. ]
  24706. ))
  24707. characterMakers.push(() => makeCharacter(
  24708. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24709. {
  24710. front: {
  24711. height: math.unit(6, "feet"),
  24712. weight: math.unit(220, "lb"),
  24713. name: "Front",
  24714. image: {
  24715. source: "./media/characters/lynn-rhea/front.svg",
  24716. extra: 310 / 273
  24717. }
  24718. },
  24719. back: {
  24720. height: math.unit(6, "feet"),
  24721. weight: math.unit(220, "lb"),
  24722. name: "Back",
  24723. image: {
  24724. source: "./media/characters/lynn-rhea/back.svg",
  24725. extra: 310 / 273
  24726. }
  24727. },
  24728. dicks: {
  24729. height: math.unit(0.9, "feet"),
  24730. name: "Dicks",
  24731. image: {
  24732. source: "./media/characters/lynn-rhea/dicks.svg"
  24733. }
  24734. },
  24735. slit: {
  24736. height: math.unit(0.4, "feet"),
  24737. name: "Slit",
  24738. image: {
  24739. source: "./media/characters/lynn-rhea/slit.svg"
  24740. }
  24741. },
  24742. },
  24743. [
  24744. {
  24745. name: "Micro",
  24746. height: math.unit(1, "inch")
  24747. },
  24748. {
  24749. name: "Macro",
  24750. height: math.unit(60, "feet"),
  24751. default: true
  24752. },
  24753. {
  24754. name: "Megamacro",
  24755. height: math.unit(2, "miles")
  24756. },
  24757. {
  24758. name: "Gigamacro",
  24759. height: math.unit(3, "earths")
  24760. },
  24761. {
  24762. name: "Galactic",
  24763. height: math.unit(0.8, "galaxies")
  24764. },
  24765. ]
  24766. ))
  24767. characterMakers.push(() => makeCharacter(
  24768. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24769. {
  24770. front: {
  24771. height: math.unit(1600, "feet"),
  24772. weight: math.unit(85758785169, "kg"),
  24773. name: "Front",
  24774. image: {
  24775. source: "./media/characters/valathos/front.svg",
  24776. extra: 1451 / 1339
  24777. }
  24778. },
  24779. },
  24780. [
  24781. {
  24782. name: "Macro",
  24783. height: math.unit(1600, "feet"),
  24784. default: true
  24785. },
  24786. ]
  24787. ))
  24788. characterMakers.push(() => makeCharacter(
  24789. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24790. {
  24791. front: {
  24792. height: math.unit(7 + 5 / 12, "feet"),
  24793. weight: math.unit(300, "lb"),
  24794. name: "Front",
  24795. image: {
  24796. source: "./media/characters/azula/front.svg",
  24797. extra: 3208 / 2880,
  24798. bottom: 80.2 / 3277
  24799. }
  24800. },
  24801. back: {
  24802. height: math.unit(7 + 5 / 12, "feet"),
  24803. weight: math.unit(300, "lb"),
  24804. name: "Back",
  24805. image: {
  24806. source: "./media/characters/azula/back.svg",
  24807. extra: 3169 / 2822,
  24808. bottom: 150.6 / 3321
  24809. }
  24810. },
  24811. },
  24812. [
  24813. {
  24814. name: "Normal",
  24815. height: math.unit(7 + 5 / 12, "feet"),
  24816. default: true
  24817. },
  24818. {
  24819. name: "Big",
  24820. height: math.unit(20, "feet")
  24821. },
  24822. ]
  24823. ))
  24824. characterMakers.push(() => makeCharacter(
  24825. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24826. {
  24827. front: {
  24828. height: math.unit(5 + 1 / 12, "feet"),
  24829. weight: math.unit(110, "lb"),
  24830. name: "Front",
  24831. image: {
  24832. source: "./media/characters/rupert/front.svg",
  24833. extra: 1549 / 1495,
  24834. bottom: 54.2 / 1604.4
  24835. }
  24836. },
  24837. },
  24838. [
  24839. {
  24840. name: "Normal",
  24841. height: math.unit(5 + 1 / 12, "feet"),
  24842. default: true
  24843. },
  24844. ]
  24845. ))
  24846. characterMakers.push(() => makeCharacter(
  24847. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24848. {
  24849. front: {
  24850. height: math.unit(8 + 4 / 12, "feet"),
  24851. weight: math.unit(350, "lb"),
  24852. name: "Front",
  24853. image: {
  24854. source: "./media/characters/sheera-castellar/front.svg",
  24855. extra: 1957 / 1894,
  24856. bottom: 26.97 / 1975.017
  24857. }
  24858. },
  24859. side: {
  24860. height: math.unit(8 + 4 / 12, "feet"),
  24861. weight: math.unit(350, "lb"),
  24862. name: "Side",
  24863. image: {
  24864. source: "./media/characters/sheera-castellar/side.svg",
  24865. extra: 1957 / 1894
  24866. }
  24867. },
  24868. back: {
  24869. height: math.unit(8 + 4 / 12, "feet"),
  24870. weight: math.unit(350, "lb"),
  24871. name: "Back",
  24872. image: {
  24873. source: "./media/characters/sheera-castellar/back.svg",
  24874. extra: 1957 / 1894
  24875. }
  24876. },
  24877. angled: {
  24878. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24879. weight: math.unit(350, "lb"),
  24880. name: "Angled",
  24881. image: {
  24882. source: "./media/characters/sheera-castellar/angled.svg",
  24883. extra: 1807 / 1707,
  24884. bottom: 68 / 1875
  24885. }
  24886. },
  24887. genitals: {
  24888. height: math.unit(2.2, "feet"),
  24889. name: "Genitals",
  24890. image: {
  24891. source: "./media/characters/sheera-castellar/genitals.svg"
  24892. }
  24893. },
  24894. taur: {
  24895. height: math.unit(10 + 6/12, "feet"),
  24896. name: "Taur",
  24897. image: {
  24898. source: "./media/characters/sheera-castellar/taur.svg",
  24899. extra: 2017/1909,
  24900. bottom: 185/2202
  24901. }
  24902. },
  24903. },
  24904. [
  24905. {
  24906. name: "Normal",
  24907. height: math.unit(8 + 4 / 12, "feet")
  24908. },
  24909. {
  24910. name: "Macro",
  24911. height: math.unit(150, "feet"),
  24912. default: true
  24913. },
  24914. {
  24915. name: "Macro+",
  24916. height: math.unit(800, "feet")
  24917. },
  24918. ]
  24919. ))
  24920. characterMakers.push(() => makeCharacter(
  24921. { name: "Jaipur", species: ["black-panther"], 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/jaipur/front.svg",
  24929. extra: 3860 / 3731,
  24930. bottom: 287 / 4140
  24931. }
  24932. },
  24933. back: {
  24934. height: math.unit(6, "feet"),
  24935. weight: math.unit(150, "lb"),
  24936. name: "Back",
  24937. image: {
  24938. source: "./media/characters/jaipur/back.svg",
  24939. extra: 1637/1561,
  24940. bottom: 154/1791
  24941. }
  24942. },
  24943. },
  24944. [
  24945. {
  24946. name: "Normal",
  24947. height: math.unit(1.85, "meters"),
  24948. default: true
  24949. },
  24950. {
  24951. name: "Macro",
  24952. height: math.unit(150, "meters")
  24953. },
  24954. {
  24955. name: "Macro+",
  24956. height: math.unit(0.5, "miles")
  24957. },
  24958. {
  24959. name: "Macro++",
  24960. height: math.unit(2.5, "miles")
  24961. },
  24962. {
  24963. name: "Macro+++",
  24964. height: math.unit(12, "miles")
  24965. },
  24966. {
  24967. name: "Macro++++",
  24968. height: math.unit(120, "miles")
  24969. },
  24970. {
  24971. name: "Macro+++++",
  24972. height: math.unit(1200, "miles")
  24973. },
  24974. ]
  24975. ))
  24976. characterMakers.push(() => makeCharacter(
  24977. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24978. {
  24979. front: {
  24980. height: math.unit(6, "feet"),
  24981. weight: math.unit(150, "lb"),
  24982. name: "Front",
  24983. image: {
  24984. source: "./media/characters/sheila-wolf/front.svg",
  24985. extra: 1931 / 1808,
  24986. bottom: 29.5 / 1960
  24987. }
  24988. },
  24989. dick: {
  24990. height: math.unit(1.464, "feet"),
  24991. name: "Dick",
  24992. image: {
  24993. source: "./media/characters/sheila-wolf/dick.svg"
  24994. }
  24995. },
  24996. muzzle: {
  24997. height: math.unit(0.513, "feet"),
  24998. name: "Muzzle",
  24999. image: {
  25000. source: "./media/characters/sheila-wolf/muzzle.svg"
  25001. }
  25002. },
  25003. },
  25004. [
  25005. {
  25006. name: "Macro",
  25007. height: math.unit(70, "feet"),
  25008. default: true
  25009. },
  25010. ]
  25011. ))
  25012. characterMakers.push(() => makeCharacter(
  25013. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25014. {
  25015. front: {
  25016. height: math.unit(32, "meters"),
  25017. weight: math.unit(300000, "kg"),
  25018. name: "Front",
  25019. image: {
  25020. source: "./media/characters/almor/front.svg",
  25021. extra: 1408 / 1322,
  25022. bottom: 94.6 / 1506.5
  25023. }
  25024. },
  25025. },
  25026. [
  25027. {
  25028. name: "Macro",
  25029. height: math.unit(32, "meters"),
  25030. default: true
  25031. },
  25032. ]
  25033. ))
  25034. characterMakers.push(() => makeCharacter(
  25035. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25036. {
  25037. front: {
  25038. height: math.unit(7, "feet"),
  25039. weight: math.unit(200, "lb"),
  25040. name: "Front",
  25041. image: {
  25042. source: "./media/characters/silver/front.svg",
  25043. extra: 472.1 / 450.5,
  25044. bottom: 26.5 / 499.424
  25045. }
  25046. },
  25047. },
  25048. [
  25049. {
  25050. name: "Normal",
  25051. height: math.unit(7, "feet"),
  25052. default: true
  25053. },
  25054. {
  25055. name: "Macro",
  25056. height: math.unit(800, "feet")
  25057. },
  25058. {
  25059. name: "Megamacro",
  25060. height: math.unit(250, "miles")
  25061. },
  25062. ]
  25063. ))
  25064. characterMakers.push(() => makeCharacter(
  25065. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25066. {
  25067. front: {
  25068. height: math.unit(6, "feet"),
  25069. weight: math.unit(150, "lb"),
  25070. name: "Front",
  25071. image: {
  25072. source: "./media/characters/pliskin/front.svg",
  25073. extra: 1469 / 1359,
  25074. bottom: 70 / 1540
  25075. }
  25076. },
  25077. },
  25078. [
  25079. {
  25080. name: "Micro",
  25081. height: math.unit(3, "inches")
  25082. },
  25083. {
  25084. name: "Normal",
  25085. height: math.unit(5 + 11 / 12, "feet"),
  25086. default: true
  25087. },
  25088. {
  25089. name: "Macro",
  25090. height: math.unit(120, "feet")
  25091. },
  25092. ]
  25093. ))
  25094. characterMakers.push(() => makeCharacter(
  25095. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25096. {
  25097. front: {
  25098. height: math.unit(6, "feet"),
  25099. weight: math.unit(150, "lb"),
  25100. name: "Front",
  25101. image: {
  25102. source: "./media/characters/sammy/front.svg",
  25103. extra: 1193 / 1089,
  25104. bottom: 30.5 / 1226
  25105. }
  25106. },
  25107. },
  25108. [
  25109. {
  25110. name: "Macro",
  25111. height: math.unit(1700, "feet"),
  25112. default: true
  25113. },
  25114. {
  25115. name: "Examacro",
  25116. height: math.unit(2.5e9, "lightyears")
  25117. },
  25118. ]
  25119. ))
  25120. characterMakers.push(() => makeCharacter(
  25121. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25122. {
  25123. front: {
  25124. height: math.unit(21, "meters"),
  25125. weight: math.unit(12, "tonnes"),
  25126. name: "Front",
  25127. image: {
  25128. source: "./media/characters/kuru/front.svg",
  25129. extra: 4301 / 3785,
  25130. bottom: 371.3 / 4691
  25131. }
  25132. },
  25133. },
  25134. [
  25135. {
  25136. name: "Macro",
  25137. height: math.unit(21, "meters"),
  25138. default: true
  25139. },
  25140. ]
  25141. ))
  25142. characterMakers.push(() => makeCharacter(
  25143. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25144. {
  25145. front: {
  25146. height: math.unit(23, "meters"),
  25147. weight: math.unit(12.2, "tonnes"),
  25148. name: "Front",
  25149. image: {
  25150. source: "./media/characters/rakka/front.svg",
  25151. extra: 4670 / 4169,
  25152. bottom: 301 / 4968.7
  25153. }
  25154. },
  25155. },
  25156. [
  25157. {
  25158. name: "Macro",
  25159. height: math.unit(23, "meters"),
  25160. default: true
  25161. },
  25162. ]
  25163. ))
  25164. characterMakers.push(() => makeCharacter(
  25165. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25166. {
  25167. front: {
  25168. height: math.unit(6, "feet"),
  25169. weight: math.unit(150, "lb"),
  25170. name: "Front",
  25171. image: {
  25172. source: "./media/characters/rhys-feline/front.svg",
  25173. extra: 2488 / 2308,
  25174. bottom: 35.67 / 2519.19
  25175. }
  25176. },
  25177. },
  25178. [
  25179. {
  25180. name: "Really Small",
  25181. height: math.unit(1, "nm")
  25182. },
  25183. {
  25184. name: "Micro",
  25185. height: math.unit(4, "inches")
  25186. },
  25187. {
  25188. name: "Normal",
  25189. height: math.unit(4 + 10 / 12, "feet"),
  25190. default: true
  25191. },
  25192. {
  25193. name: "Macro",
  25194. height: math.unit(100, "feet")
  25195. },
  25196. {
  25197. name: "Megamacto",
  25198. height: math.unit(50, "miles")
  25199. },
  25200. ]
  25201. ))
  25202. characterMakers.push(() => makeCharacter(
  25203. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25204. {
  25205. side: {
  25206. height: math.unit(30, "feet"),
  25207. weight: math.unit(35000, "kg"),
  25208. name: "Side",
  25209. image: {
  25210. source: "./media/characters/alydar/side.svg",
  25211. extra: 234 / 222,
  25212. bottom: 6.5 / 241
  25213. }
  25214. },
  25215. front: {
  25216. height: math.unit(30, "feet"),
  25217. weight: math.unit(35000, "kg"),
  25218. name: "Front",
  25219. image: {
  25220. source: "./media/characters/alydar/front.svg",
  25221. extra: 223.37 / 210.2,
  25222. bottom: 22.3 / 246.76
  25223. }
  25224. },
  25225. top: {
  25226. height: math.unit(64.54, "feet"),
  25227. weight: math.unit(35000, "kg"),
  25228. name: "Top",
  25229. image: {
  25230. source: "./media/characters/alydar/top.svg"
  25231. }
  25232. },
  25233. anthro: {
  25234. height: math.unit(30, "feet"),
  25235. weight: math.unit(9000, "kg"),
  25236. name: "Anthro",
  25237. image: {
  25238. source: "./media/characters/alydar/anthro.svg",
  25239. extra: 432 / 421,
  25240. bottom: 7.18 / 440
  25241. }
  25242. },
  25243. maw: {
  25244. height: math.unit(11.693, "feet"),
  25245. name: "Maw",
  25246. image: {
  25247. source: "./media/characters/alydar/maw.svg"
  25248. }
  25249. },
  25250. head: {
  25251. height: math.unit(11.693, "feet"),
  25252. name: "Head",
  25253. image: {
  25254. source: "./media/characters/alydar/head.svg"
  25255. }
  25256. },
  25257. headAlt: {
  25258. height: math.unit(12.861, "feet"),
  25259. name: "Head (Alt)",
  25260. image: {
  25261. source: "./media/characters/alydar/head-alt.svg"
  25262. }
  25263. },
  25264. wing: {
  25265. height: math.unit(20.712, "feet"),
  25266. name: "Wing",
  25267. image: {
  25268. source: "./media/characters/alydar/wing.svg"
  25269. }
  25270. },
  25271. wingFeather: {
  25272. height: math.unit(9.662, "feet"),
  25273. name: "Wing Feather",
  25274. image: {
  25275. source: "./media/characters/alydar/wing-feather.svg"
  25276. }
  25277. },
  25278. countourFeather: {
  25279. height: math.unit(4.154, "feet"),
  25280. name: "Contour Feather",
  25281. image: {
  25282. source: "./media/characters/alydar/contour-feather.svg"
  25283. }
  25284. },
  25285. },
  25286. [
  25287. {
  25288. name: "Diplomatic",
  25289. height: math.unit(13, "feet"),
  25290. default: true
  25291. },
  25292. {
  25293. name: "Small",
  25294. height: math.unit(30, "feet")
  25295. },
  25296. {
  25297. name: "Normal",
  25298. height: math.unit(95, "feet"),
  25299. default: true
  25300. },
  25301. {
  25302. name: "Large",
  25303. height: math.unit(285, "feet")
  25304. },
  25305. {
  25306. name: "Incomprehensible",
  25307. height: math.unit(450, "megameters")
  25308. },
  25309. ]
  25310. ))
  25311. characterMakers.push(() => makeCharacter(
  25312. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25313. {
  25314. side: {
  25315. height: math.unit(11, "feet"),
  25316. weight: math.unit(1750, "kg"),
  25317. name: "Side",
  25318. image: {
  25319. source: "./media/characters/selicia/side.svg",
  25320. extra: 440 / 396,
  25321. bottom: 24.8 / 465.979
  25322. }
  25323. },
  25324. maw: {
  25325. height: math.unit(4.665, "feet"),
  25326. name: "Maw",
  25327. image: {
  25328. source: "./media/characters/selicia/maw.svg"
  25329. }
  25330. },
  25331. },
  25332. [
  25333. {
  25334. name: "Normal",
  25335. height: math.unit(11, "feet"),
  25336. default: true
  25337. },
  25338. ]
  25339. ))
  25340. characterMakers.push(() => makeCharacter(
  25341. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25342. {
  25343. side: {
  25344. height: math.unit(2 + 6 / 12, "feet"),
  25345. weight: math.unit(30, "lb"),
  25346. name: "Side",
  25347. image: {
  25348. source: "./media/characters/layla/side.svg",
  25349. extra: 244 / 188,
  25350. bottom: 18.2 / 262.1
  25351. }
  25352. },
  25353. back: {
  25354. height: math.unit(2 + 6 / 12, "feet"),
  25355. weight: math.unit(30, "lb"),
  25356. name: "Back",
  25357. image: {
  25358. source: "./media/characters/layla/back.svg",
  25359. extra: 308 / 241.5,
  25360. bottom: 8.9 / 316.8
  25361. }
  25362. },
  25363. cumming: {
  25364. height: math.unit(2 + 6 / 12, "feet"),
  25365. weight: math.unit(30, "lb"),
  25366. name: "Cumming",
  25367. image: {
  25368. source: "./media/characters/layla/cumming.svg",
  25369. extra: 342 / 279,
  25370. bottom: 595 / 938
  25371. }
  25372. },
  25373. dickFlaccid: {
  25374. height: math.unit(2.595, "feet"),
  25375. name: "Flaccid Genitals",
  25376. image: {
  25377. source: "./media/characters/layla/dick-flaccid.svg"
  25378. }
  25379. },
  25380. dickErect: {
  25381. height: math.unit(2.359, "feet"),
  25382. name: "Erect Genitals",
  25383. image: {
  25384. source: "./media/characters/layla/dick-erect.svg"
  25385. }
  25386. },
  25387. dragon: {
  25388. height: math.unit(40, "feet"),
  25389. name: "Dragon",
  25390. image: {
  25391. source: "./media/characters/layla/dragon.svg",
  25392. extra: 610/535,
  25393. bottom: 367/977
  25394. }
  25395. },
  25396. taur: {
  25397. height: math.unit(30, "feet"),
  25398. name: "Taur",
  25399. image: {
  25400. source: "./media/characters/layla/taur.svg",
  25401. extra: 1268/1199,
  25402. bottom: 112/1380
  25403. }
  25404. },
  25405. },
  25406. [
  25407. {
  25408. name: "Micro",
  25409. height: math.unit(1, "inch")
  25410. },
  25411. {
  25412. name: "Small",
  25413. height: math.unit(1, "foot")
  25414. },
  25415. {
  25416. name: "Normal",
  25417. height: math.unit(2 + 6 / 12, "feet"),
  25418. default: true
  25419. },
  25420. {
  25421. name: "Macro",
  25422. height: math.unit(200, "feet")
  25423. },
  25424. {
  25425. name: "Megamacro",
  25426. height: math.unit(1000, "miles")
  25427. },
  25428. {
  25429. name: "Planetary",
  25430. height: math.unit(8000, "miles")
  25431. },
  25432. {
  25433. name: "True Layla",
  25434. height: math.unit(200000 * 7, "multiverses")
  25435. },
  25436. ]
  25437. ))
  25438. characterMakers.push(() => makeCharacter(
  25439. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25440. {
  25441. back: {
  25442. height: math.unit(10.5, "feet"),
  25443. weight: math.unit(800, "lb"),
  25444. name: "Back",
  25445. image: {
  25446. source: "./media/characters/knox/back.svg",
  25447. extra: 1486 / 1089,
  25448. bottom: 107 / 1601.4
  25449. }
  25450. },
  25451. side: {
  25452. height: math.unit(10.5, "feet"),
  25453. weight: math.unit(800, "lb"),
  25454. name: "Side",
  25455. image: {
  25456. source: "./media/characters/knox/side.svg",
  25457. extra: 244 / 218,
  25458. bottom: 14 / 260
  25459. }
  25460. },
  25461. },
  25462. [
  25463. {
  25464. name: "Compact",
  25465. height: math.unit(10.5, "feet"),
  25466. default: true
  25467. },
  25468. {
  25469. name: "Dynamax",
  25470. height: math.unit(210, "feet")
  25471. },
  25472. {
  25473. name: "Full Macro",
  25474. height: math.unit(850, "feet")
  25475. },
  25476. ]
  25477. ))
  25478. characterMakers.push(() => makeCharacter(
  25479. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25480. {
  25481. front: {
  25482. height: math.unit(28, "feet"),
  25483. weight: math.unit(10500, "lb"),
  25484. name: "Front",
  25485. image: {
  25486. source: "./media/characters/kayda/front.svg",
  25487. extra: 1536 / 1428,
  25488. bottom: 68.7 / 1603
  25489. }
  25490. },
  25491. back: {
  25492. height: math.unit(28, "feet"),
  25493. weight: math.unit(10500, "lb"),
  25494. name: "Back",
  25495. image: {
  25496. source: "./media/characters/kayda/back.svg",
  25497. extra: 1557 / 1464,
  25498. bottom: 39.5 / 1597.49
  25499. }
  25500. },
  25501. dick: {
  25502. height: math.unit(3.858, "feet"),
  25503. name: "Dick",
  25504. image: {
  25505. source: "./media/characters/kayda/dick.svg"
  25506. }
  25507. },
  25508. },
  25509. [
  25510. {
  25511. name: "Macro",
  25512. height: math.unit(28, "feet"),
  25513. default: true
  25514. },
  25515. ]
  25516. ))
  25517. characterMakers.push(() => makeCharacter(
  25518. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25519. {
  25520. front: {
  25521. height: math.unit(10 + 11 / 12, "feet"),
  25522. weight: math.unit(1400, "lb"),
  25523. name: "Front",
  25524. image: {
  25525. source: "./media/characters/brian/front.svg",
  25526. extra: 737 / 692,
  25527. bottom: 55.4 / 785
  25528. }
  25529. },
  25530. },
  25531. [
  25532. {
  25533. name: "Normal",
  25534. height: math.unit(10 + 11 / 12, "feet"),
  25535. default: true
  25536. },
  25537. ]
  25538. ))
  25539. characterMakers.push(() => makeCharacter(
  25540. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25541. {
  25542. front: {
  25543. height: math.unit(5 + 8 / 12, "feet"),
  25544. weight: math.unit(140, "lb"),
  25545. name: "Front",
  25546. image: {
  25547. source: "./media/characters/khemri/front.svg",
  25548. extra: 4780 / 4059,
  25549. bottom: 80.1 / 4859.25
  25550. }
  25551. },
  25552. },
  25553. [
  25554. {
  25555. name: "Micro",
  25556. height: math.unit(6, "inches")
  25557. },
  25558. {
  25559. name: "Normal",
  25560. height: math.unit(5 + 8 / 12, "feet"),
  25561. default: true
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25567. {
  25568. front: {
  25569. height: math.unit(13, "feet"),
  25570. weight: math.unit(1700, "lb"),
  25571. name: "Front",
  25572. image: {
  25573. source: "./media/characters/felix-braveheart/front.svg",
  25574. extra: 1222 / 1157,
  25575. bottom: 53.2 / 1280
  25576. }
  25577. },
  25578. back: {
  25579. height: math.unit(13, "feet"),
  25580. weight: math.unit(1700, "lb"),
  25581. name: "Back",
  25582. image: {
  25583. source: "./media/characters/felix-braveheart/back.svg",
  25584. extra: 1277 / 1203,
  25585. bottom: 50.2 / 1327
  25586. }
  25587. },
  25588. feral: {
  25589. height: math.unit(6, "feet"),
  25590. weight: math.unit(400, "lb"),
  25591. name: "Feral",
  25592. image: {
  25593. source: "./media/characters/felix-braveheart/feral.svg",
  25594. extra: 682 / 625,
  25595. bottom: 6.9 / 688
  25596. }
  25597. },
  25598. },
  25599. [
  25600. {
  25601. name: "Normal",
  25602. height: math.unit(13, "feet"),
  25603. default: true
  25604. },
  25605. ]
  25606. ))
  25607. characterMakers.push(() => makeCharacter(
  25608. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25609. {
  25610. side: {
  25611. height: math.unit(5 + 11 / 12, "feet"),
  25612. weight: math.unit(1400, "lb"),
  25613. name: "Side",
  25614. image: {
  25615. source: "./media/characters/shadow-blade/side.svg",
  25616. extra: 1726 / 1267,
  25617. bottom: 58.4 / 1785
  25618. }
  25619. },
  25620. },
  25621. [
  25622. {
  25623. name: "Normal",
  25624. height: math.unit(5 + 11 / 12, "feet"),
  25625. default: true
  25626. },
  25627. ]
  25628. ))
  25629. characterMakers.push(() => makeCharacter(
  25630. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25631. {
  25632. front: {
  25633. height: math.unit(1 + 6 / 12, "feet"),
  25634. weight: math.unit(25, "lb"),
  25635. name: "Front",
  25636. image: {
  25637. source: "./media/characters/karla-halldor/front.svg",
  25638. extra: 1459 / 1383,
  25639. bottom: 12 / 1472
  25640. }
  25641. },
  25642. },
  25643. [
  25644. {
  25645. name: "Normal",
  25646. height: math.unit(1 + 6 / 12, "feet"),
  25647. default: true
  25648. },
  25649. ]
  25650. ))
  25651. characterMakers.push(() => makeCharacter(
  25652. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25653. {
  25654. front: {
  25655. height: math.unit(6 + 2 / 12, "feet"),
  25656. weight: math.unit(160, "lb"),
  25657. name: "Front",
  25658. image: {
  25659. source: "./media/characters/ariam/front.svg",
  25660. extra: 1073/976,
  25661. bottom: 52/1125
  25662. }
  25663. },
  25664. back: {
  25665. height: math.unit(6 + 2/12, "feet"),
  25666. weight: math.unit(160, "lb"),
  25667. name: "Back",
  25668. image: {
  25669. source: "./media/characters/ariam/back.svg",
  25670. extra: 1103/1023,
  25671. bottom: 9/1112
  25672. }
  25673. },
  25674. dressed: {
  25675. height: math.unit(6 + 2/12, "feet"),
  25676. weight: math.unit(160, "lb"),
  25677. name: "Dressed",
  25678. image: {
  25679. source: "./media/characters/ariam/dressed.svg",
  25680. extra: 1099/1009,
  25681. bottom: 25/1124
  25682. }
  25683. },
  25684. squatting: {
  25685. height: math.unit(4.1, "feet"),
  25686. weight: math.unit(160, "lb"),
  25687. name: "Squatting",
  25688. image: {
  25689. source: "./media/characters/ariam/squatting.svg",
  25690. extra: 2617 / 2112,
  25691. bottom: 61.2 / 2681,
  25692. }
  25693. },
  25694. },
  25695. [
  25696. {
  25697. name: "Normal",
  25698. height: math.unit(6 + 2 / 12, "feet"),
  25699. default: true
  25700. },
  25701. {
  25702. name: "Normal+",
  25703. height: math.unit(4, "meters")
  25704. },
  25705. {
  25706. name: "Macro",
  25707. height: math.unit(50, "meters")
  25708. },
  25709. {
  25710. name: "Macro+",
  25711. height: math.unit(100, "meters")
  25712. },
  25713. {
  25714. name: "Megamacro",
  25715. height: math.unit(20, "km")
  25716. },
  25717. {
  25718. name: "Caretaker",
  25719. height: math.unit(444, "megameters")
  25720. },
  25721. ]
  25722. ))
  25723. characterMakers.push(() => makeCharacter(
  25724. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25725. {
  25726. front: {
  25727. height: math.unit(1.67, "meters"),
  25728. weight: math.unit(140, "lb"),
  25729. name: "Front",
  25730. image: {
  25731. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25732. extra: 438 / 410,
  25733. bottom: 0.75 / 439
  25734. }
  25735. },
  25736. },
  25737. [
  25738. {
  25739. name: "Shrunken",
  25740. height: math.unit(7.6, "cm")
  25741. },
  25742. {
  25743. name: "Human Scale",
  25744. height: math.unit(1.67, "meters")
  25745. },
  25746. {
  25747. name: "Wolxi Scale",
  25748. height: math.unit(36.7, "meters"),
  25749. default: true
  25750. },
  25751. ]
  25752. ))
  25753. characterMakers.push(() => makeCharacter(
  25754. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25755. {
  25756. front: {
  25757. height: math.unit(1.73, "meters"),
  25758. weight: math.unit(240, "lb"),
  25759. name: "Front",
  25760. image: {
  25761. source: "./media/characters/izue-two-mothers/front.svg",
  25762. extra: 469 / 437,
  25763. bottom: 1.24 / 470.6
  25764. }
  25765. },
  25766. },
  25767. [
  25768. {
  25769. name: "Shrunken",
  25770. height: math.unit(7.86, "cm")
  25771. },
  25772. {
  25773. name: "Human Scale",
  25774. height: math.unit(1.73, "meters")
  25775. },
  25776. {
  25777. name: "Wolxi Scale",
  25778. height: math.unit(38, "meters"),
  25779. default: true
  25780. },
  25781. ]
  25782. ))
  25783. characterMakers.push(() => makeCharacter(
  25784. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25785. {
  25786. front: {
  25787. height: math.unit(1.55, "meters"),
  25788. weight: math.unit(120, "lb"),
  25789. name: "Front",
  25790. image: {
  25791. source: "./media/characters/teeku-love-shack/front.svg",
  25792. extra: 387 / 362,
  25793. bottom: 1.51 / 388
  25794. }
  25795. },
  25796. },
  25797. [
  25798. {
  25799. name: "Shrunken",
  25800. height: math.unit(7, "cm")
  25801. },
  25802. {
  25803. name: "Human Scale",
  25804. height: math.unit(1.55, "meters")
  25805. },
  25806. {
  25807. name: "Wolxi Scale",
  25808. height: math.unit(34.1, "meters"),
  25809. default: true
  25810. },
  25811. ]
  25812. ))
  25813. characterMakers.push(() => makeCharacter(
  25814. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25815. {
  25816. front: {
  25817. height: math.unit(1.83, "meters"),
  25818. weight: math.unit(135, "lb"),
  25819. name: "Front",
  25820. image: {
  25821. source: "./media/characters/dejma-the-red/front.svg",
  25822. extra: 480 / 458,
  25823. bottom: 1.8 / 482
  25824. }
  25825. },
  25826. },
  25827. [
  25828. {
  25829. name: "Shrunken",
  25830. height: math.unit(8.3, "cm")
  25831. },
  25832. {
  25833. name: "Human Scale",
  25834. height: math.unit(1.83, "meters")
  25835. },
  25836. {
  25837. name: "Wolxi Scale",
  25838. height: math.unit(40, "meters"),
  25839. default: true
  25840. },
  25841. ]
  25842. ))
  25843. characterMakers.push(() => makeCharacter(
  25844. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25845. {
  25846. front: {
  25847. height: math.unit(1.78, "meters"),
  25848. weight: math.unit(65, "kg"),
  25849. name: "Front",
  25850. image: {
  25851. source: "./media/characters/aki/front.svg",
  25852. extra: 452 / 415
  25853. }
  25854. },
  25855. frontNsfw: {
  25856. height: math.unit(1.78, "meters"),
  25857. weight: math.unit(65, "kg"),
  25858. name: "Front (NSFW)",
  25859. image: {
  25860. source: "./media/characters/aki/front-nsfw.svg",
  25861. extra: 452 / 415
  25862. }
  25863. },
  25864. back: {
  25865. height: math.unit(1.78, "meters"),
  25866. weight: math.unit(65, "kg"),
  25867. name: "Back",
  25868. image: {
  25869. source: "./media/characters/aki/back.svg",
  25870. extra: 452 / 415
  25871. }
  25872. },
  25873. rump: {
  25874. height: math.unit(2.05, "feet"),
  25875. name: "Rump",
  25876. image: {
  25877. source: "./media/characters/aki/rump.svg"
  25878. }
  25879. },
  25880. dick: {
  25881. height: math.unit(0.95, "feet"),
  25882. name: "Dick",
  25883. image: {
  25884. source: "./media/characters/aki/dick.svg"
  25885. }
  25886. },
  25887. },
  25888. [
  25889. {
  25890. name: "Micro",
  25891. height: math.unit(15, "cm")
  25892. },
  25893. {
  25894. name: "Normal",
  25895. height: math.unit(178, "cm"),
  25896. default: true
  25897. },
  25898. {
  25899. name: "Macro",
  25900. height: math.unit(214, "m")
  25901. },
  25902. {
  25903. name: "Macro+",
  25904. height: math.unit(534, "m")
  25905. },
  25906. ]
  25907. ))
  25908. characterMakers.push(() => makeCharacter(
  25909. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25910. {
  25911. front: {
  25912. height: math.unit(5 + 5 / 12, "feet"),
  25913. weight: math.unit(120, "lb"),
  25914. name: "Front",
  25915. image: {
  25916. source: "./media/characters/ari/front.svg",
  25917. extra: 1550/1471,
  25918. bottom: 39/1589
  25919. }
  25920. },
  25921. },
  25922. [
  25923. {
  25924. name: "Normal",
  25925. height: math.unit(5 + 5 / 12, "feet")
  25926. },
  25927. {
  25928. name: "Macro",
  25929. height: math.unit(100, "feet"),
  25930. default: true
  25931. },
  25932. {
  25933. name: "Megamacro",
  25934. height: math.unit(100, "miles")
  25935. },
  25936. {
  25937. name: "Gigamacro",
  25938. height: math.unit(80000, "miles")
  25939. },
  25940. ]
  25941. ))
  25942. characterMakers.push(() => makeCharacter(
  25943. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25944. {
  25945. side: {
  25946. height: math.unit(9, "feet"),
  25947. weight: math.unit(400, "kg"),
  25948. name: "Side",
  25949. image: {
  25950. source: "./media/characters/bolt/side.svg",
  25951. extra: 1126 / 896,
  25952. bottom: 60 / 1187.3,
  25953. }
  25954. },
  25955. },
  25956. [
  25957. {
  25958. name: "Micro",
  25959. height: math.unit(5, "inches")
  25960. },
  25961. {
  25962. name: "Normal",
  25963. height: math.unit(9, "feet"),
  25964. default: true
  25965. },
  25966. {
  25967. name: "Macro",
  25968. height: math.unit(700, "feet")
  25969. },
  25970. {
  25971. name: "Max Size",
  25972. height: math.unit(1.52e22, "yottameters")
  25973. },
  25974. ]
  25975. ))
  25976. characterMakers.push(() => makeCharacter(
  25977. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25978. {
  25979. front: {
  25980. height: math.unit(4.3, "meters"),
  25981. weight: math.unit(3, "tons"),
  25982. name: "Front",
  25983. image: {
  25984. source: "./media/characters/draekon-sylviar/front.svg",
  25985. extra: 2072/1512,
  25986. bottom: 74/2146
  25987. }
  25988. },
  25989. back: {
  25990. height: math.unit(4.3, "meters"),
  25991. weight: math.unit(3, "tons"),
  25992. name: "Back",
  25993. image: {
  25994. source: "./media/characters/draekon-sylviar/back.svg",
  25995. extra: 1639/1483,
  25996. bottom: 41/1680
  25997. }
  25998. },
  25999. feral: {
  26000. height: math.unit(1.15, "meters"),
  26001. weight: math.unit(3, "tons"),
  26002. name: "Feral",
  26003. image: {
  26004. source: "./media/characters/draekon-sylviar/feral.svg",
  26005. extra: 1033/395,
  26006. bottom: 130/1163
  26007. }
  26008. },
  26009. maw: {
  26010. height: math.unit(1.3, "meters"),
  26011. name: "Maw",
  26012. image: {
  26013. source: "./media/characters/draekon-sylviar/maw.svg"
  26014. }
  26015. },
  26016. mawSeparated: {
  26017. height: math.unit(1.53, "meters"),
  26018. name: "Separated Maw",
  26019. image: {
  26020. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26021. }
  26022. },
  26023. tail: {
  26024. height: math.unit(1.15, "meters"),
  26025. name: "Tail",
  26026. image: {
  26027. source: "./media/characters/draekon-sylviar/tail.svg"
  26028. }
  26029. },
  26030. tailDick: {
  26031. height: math.unit(1.15, "meters"),
  26032. name: "Tail (Dick)",
  26033. image: {
  26034. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26035. }
  26036. },
  26037. tailDickSeparated: {
  26038. height: math.unit(1.19, "meters"),
  26039. name: "Tail (Separated Dick)",
  26040. image: {
  26041. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26042. }
  26043. },
  26044. slit: {
  26045. height: math.unit(1, "meters"),
  26046. name: "Slit",
  26047. image: {
  26048. source: "./media/characters/draekon-sylviar/slit.svg"
  26049. }
  26050. },
  26051. dick: {
  26052. height: math.unit(1.15, "meters"),
  26053. name: "Dick",
  26054. image: {
  26055. source: "./media/characters/draekon-sylviar/dick.svg"
  26056. }
  26057. },
  26058. dickSeparated: {
  26059. height: math.unit(1.1, "meters"),
  26060. name: "Separated Dick",
  26061. image: {
  26062. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26063. }
  26064. },
  26065. sheath: {
  26066. height: math.unit(1.15, "meters"),
  26067. name: "Sheath",
  26068. image: {
  26069. source: "./media/characters/draekon-sylviar/sheath.svg"
  26070. }
  26071. },
  26072. },
  26073. [
  26074. {
  26075. name: "Small",
  26076. height: math.unit(4.53 / 2, "meters"),
  26077. default: true
  26078. },
  26079. {
  26080. name: "Normal",
  26081. height: math.unit(4.53, "meters"),
  26082. default: true
  26083. },
  26084. {
  26085. name: "Large",
  26086. height: math.unit(4.53 * 2, "meters"),
  26087. },
  26088. ]
  26089. ))
  26090. characterMakers.push(() => makeCharacter(
  26091. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26092. {
  26093. front: {
  26094. height: math.unit(6 + 2 / 12, "feet"),
  26095. weight: math.unit(180, "lb"),
  26096. name: "Front",
  26097. image: {
  26098. source: "./media/characters/brawler/front.svg",
  26099. extra: 3301 / 3027,
  26100. bottom: 138 / 3439
  26101. }
  26102. },
  26103. },
  26104. [
  26105. {
  26106. name: "Normal",
  26107. height: math.unit(6 + 2 / 12, "feet"),
  26108. default: true
  26109. },
  26110. ]
  26111. ))
  26112. characterMakers.push(() => makeCharacter(
  26113. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26114. {
  26115. front: {
  26116. height: math.unit(11, "feet"),
  26117. weight: math.unit(1000, "lb"),
  26118. name: "Front",
  26119. image: {
  26120. source: "./media/characters/alex/front.svg",
  26121. bottom: 44.5 / 620
  26122. }
  26123. },
  26124. },
  26125. [
  26126. {
  26127. name: "Micro",
  26128. height: math.unit(5, "inches")
  26129. },
  26130. {
  26131. name: "Normal",
  26132. height: math.unit(11, "feet"),
  26133. default: true
  26134. },
  26135. {
  26136. name: "Macro",
  26137. height: math.unit(9.5e9, "feet")
  26138. },
  26139. {
  26140. name: "Max Size",
  26141. height: math.unit(1.4e283, "yottameters")
  26142. },
  26143. ]
  26144. ))
  26145. characterMakers.push(() => makeCharacter(
  26146. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26147. {
  26148. female: {
  26149. height: math.unit(29.9, "m"),
  26150. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26151. name: "Female",
  26152. image: {
  26153. source: "./media/characters/zenari/female.svg",
  26154. extra: 3281.6 / 3217,
  26155. bottom: 72.2 / 3353
  26156. }
  26157. },
  26158. male: {
  26159. height: math.unit(27.7, "m"),
  26160. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26161. name: "Male",
  26162. image: {
  26163. source: "./media/characters/zenari/male.svg",
  26164. extra: 3008 / 2991,
  26165. bottom: 54.6 / 3069
  26166. }
  26167. },
  26168. },
  26169. [
  26170. {
  26171. name: "Macro",
  26172. height: math.unit(29.7, "meters"),
  26173. default: true
  26174. },
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26179. {
  26180. female: {
  26181. height: math.unit(23.8, "m"),
  26182. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26183. name: "Female",
  26184. image: {
  26185. source: "./media/characters/mactarian/female.svg",
  26186. extra: 2662 / 2569,
  26187. bottom: 73 / 2736
  26188. }
  26189. },
  26190. male: {
  26191. height: math.unit(23.8, "m"),
  26192. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26193. name: "Male",
  26194. image: {
  26195. source: "./media/characters/mactarian/male.svg",
  26196. extra: 2673 / 2600,
  26197. bottom: 76 / 2750
  26198. }
  26199. },
  26200. },
  26201. [
  26202. {
  26203. name: "Macro",
  26204. height: math.unit(23.8, "meters"),
  26205. default: true
  26206. },
  26207. ]
  26208. ))
  26209. characterMakers.push(() => makeCharacter(
  26210. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26211. {
  26212. female: {
  26213. height: math.unit(19.3, "m"),
  26214. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26215. name: "Female",
  26216. image: {
  26217. source: "./media/characters/umok/female.svg",
  26218. extra: 2186 / 2078,
  26219. bottom: 87 / 2277
  26220. }
  26221. },
  26222. male: {
  26223. height: math.unit(19.5, "m"),
  26224. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26225. name: "Male",
  26226. image: {
  26227. source: "./media/characters/umok/male.svg",
  26228. extra: 2233 / 2140,
  26229. bottom: 24.4 / 2258
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Macro",
  26236. height: math.unit(19.3, "meters"),
  26237. default: true
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26243. {
  26244. female: {
  26245. height: math.unit(26.15, "m"),
  26246. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26247. name: "Female",
  26248. image: {
  26249. source: "./media/characters/joraxian/female.svg",
  26250. extra: 2912 / 2824,
  26251. bottom: 36 / 2956
  26252. }
  26253. },
  26254. male: {
  26255. height: math.unit(25.4, "m"),
  26256. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26257. name: "Male",
  26258. image: {
  26259. source: "./media/characters/joraxian/male.svg",
  26260. extra: 2877 / 2721,
  26261. bottom: 82 / 2967
  26262. }
  26263. },
  26264. },
  26265. [
  26266. {
  26267. name: "Macro",
  26268. height: math.unit(26.15, "meters"),
  26269. default: true
  26270. },
  26271. ]
  26272. ))
  26273. characterMakers.push(() => makeCharacter(
  26274. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26275. {
  26276. female: {
  26277. height: math.unit(21.6, "m"),
  26278. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26279. name: "Female",
  26280. image: {
  26281. source: "./media/characters/sthara/female.svg",
  26282. extra: 2516 / 2347,
  26283. bottom: 21.5 / 2537
  26284. }
  26285. },
  26286. male: {
  26287. height: math.unit(24, "m"),
  26288. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26289. name: "Male",
  26290. image: {
  26291. source: "./media/characters/sthara/male.svg",
  26292. extra: 2732 / 2607,
  26293. bottom: 23 / 2732
  26294. }
  26295. },
  26296. },
  26297. [
  26298. {
  26299. name: "Macro",
  26300. height: math.unit(21.6, "meters"),
  26301. default: true
  26302. },
  26303. ]
  26304. ))
  26305. characterMakers.push(() => makeCharacter(
  26306. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26307. {
  26308. front: {
  26309. height: math.unit(6 + 4 / 12, "feet"),
  26310. weight: math.unit(175, "lb"),
  26311. name: "Front",
  26312. image: {
  26313. source: "./media/characters/luka-bryzant/front.svg",
  26314. extra: 311 / 289,
  26315. bottom: 4 / 315
  26316. }
  26317. },
  26318. back: {
  26319. height: math.unit(6 + 4 / 12, "feet"),
  26320. weight: math.unit(175, "lb"),
  26321. name: "Back",
  26322. image: {
  26323. source: "./media/characters/luka-bryzant/back.svg",
  26324. extra: 311 / 289,
  26325. bottom: 3.8 / 313.7
  26326. }
  26327. },
  26328. },
  26329. [
  26330. {
  26331. name: "Micro",
  26332. height: math.unit(10, "inches")
  26333. },
  26334. {
  26335. name: "Normal",
  26336. height: math.unit(6 + 4 / 12, "feet"),
  26337. default: true
  26338. },
  26339. {
  26340. name: "Large",
  26341. height: math.unit(12, "feet")
  26342. },
  26343. ]
  26344. ))
  26345. characterMakers.push(() => makeCharacter(
  26346. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26347. {
  26348. front: {
  26349. height: math.unit(5 + 7 / 12, "feet"),
  26350. weight: math.unit(185, "lb"),
  26351. name: "Front",
  26352. image: {
  26353. source: "./media/characters/aman-aquila/front.svg",
  26354. extra: 1013 / 976,
  26355. bottom: 45.6 / 1057
  26356. }
  26357. },
  26358. side: {
  26359. height: math.unit(5 + 7 / 12, "feet"),
  26360. weight: math.unit(185, "lb"),
  26361. name: "Side",
  26362. image: {
  26363. source: "./media/characters/aman-aquila/side.svg",
  26364. extra: 1054 / 1011,
  26365. bottom: 15 / 1070
  26366. }
  26367. },
  26368. back: {
  26369. height: math.unit(5 + 7 / 12, "feet"),
  26370. weight: math.unit(185, "lb"),
  26371. name: "Back",
  26372. image: {
  26373. source: "./media/characters/aman-aquila/back.svg",
  26374. extra: 1026 / 970,
  26375. bottom: 12 / 1039
  26376. }
  26377. },
  26378. head: {
  26379. height: math.unit(1.211, "feet"),
  26380. name: "Head",
  26381. image: {
  26382. source: "./media/characters/aman-aquila/head.svg",
  26383. }
  26384. },
  26385. },
  26386. [
  26387. {
  26388. name: "Minimicro",
  26389. height: math.unit(0.057, "inches")
  26390. },
  26391. {
  26392. name: "Micro",
  26393. height: math.unit(7, "inches")
  26394. },
  26395. {
  26396. name: "Mini",
  26397. height: math.unit(3 + 7 / 12, "feet")
  26398. },
  26399. {
  26400. name: "Normal",
  26401. height: math.unit(5 + 7 / 12, "feet"),
  26402. default: true
  26403. },
  26404. {
  26405. name: "Macro",
  26406. height: math.unit(157 + 7 / 12, "feet")
  26407. },
  26408. {
  26409. name: "Megamacro",
  26410. height: math.unit(1557 + 7 / 12, "feet")
  26411. },
  26412. {
  26413. name: "Gigamacro",
  26414. height: math.unit(15557 + 7 / 12, "feet")
  26415. },
  26416. ]
  26417. ))
  26418. characterMakers.push(() => makeCharacter(
  26419. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26420. {
  26421. front: {
  26422. height: math.unit(3 + 2 / 12, "inches"),
  26423. weight: math.unit(0.3, "ounces"),
  26424. name: "Front",
  26425. image: {
  26426. source: "./media/characters/hiphae/front.svg",
  26427. extra: 1931 / 1683,
  26428. bottom: 24 / 1955
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Normal",
  26435. height: math.unit(3 + 1 / 2, "inches"),
  26436. default: true
  26437. },
  26438. ]
  26439. ))
  26440. characterMakers.push(() => makeCharacter(
  26441. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26442. {
  26443. front: {
  26444. height: math.unit(5 + 10 / 12, "feet"),
  26445. weight: math.unit(165, "lb"),
  26446. name: "Front",
  26447. image: {
  26448. source: "./media/characters/nicky/front.svg",
  26449. extra: 3144 / 2886,
  26450. bottom: 45.6 / 3192
  26451. }
  26452. },
  26453. back: {
  26454. height: math.unit(5 + 10 / 12, "feet"),
  26455. weight: math.unit(165, "lb"),
  26456. name: "Back",
  26457. image: {
  26458. source: "./media/characters/nicky/back.svg",
  26459. extra: 3055 / 2804,
  26460. bottom: 28.4 / 3087
  26461. }
  26462. },
  26463. frontclothed: {
  26464. height: math.unit(5 + 10 / 12, "feet"),
  26465. weight: math.unit(165, "lb"),
  26466. name: "Front-clothed",
  26467. image: {
  26468. source: "./media/characters/nicky/front-clothed.svg",
  26469. extra: 3184.9 / 2926.9,
  26470. bottom: 86.5 / 3239.9
  26471. }
  26472. },
  26473. foot: {
  26474. height: math.unit(1.16, "feet"),
  26475. name: "Foot",
  26476. image: {
  26477. source: "./media/characters/nicky/foot.svg"
  26478. }
  26479. },
  26480. feet: {
  26481. height: math.unit(1.34, "feet"),
  26482. name: "Feet",
  26483. image: {
  26484. source: "./media/characters/nicky/feet.svg"
  26485. }
  26486. },
  26487. maw: {
  26488. height: math.unit(0.9, "feet"),
  26489. name: "Maw",
  26490. image: {
  26491. source: "./media/characters/nicky/maw.svg"
  26492. }
  26493. },
  26494. },
  26495. [
  26496. {
  26497. name: "Normal",
  26498. height: math.unit(5 + 10 / 12, "feet"),
  26499. default: true
  26500. },
  26501. {
  26502. name: "Macro",
  26503. height: math.unit(60, "feet")
  26504. },
  26505. {
  26506. name: "Megamacro",
  26507. height: math.unit(1, "mile")
  26508. },
  26509. ]
  26510. ))
  26511. characterMakers.push(() => makeCharacter(
  26512. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26513. {
  26514. side: {
  26515. height: math.unit(10, "feet"),
  26516. weight: math.unit(600, "lb"),
  26517. name: "Side",
  26518. image: {
  26519. source: "./media/characters/blair/side.svg",
  26520. bottom: 16.6 / 475,
  26521. extra: 458 / 431
  26522. }
  26523. },
  26524. },
  26525. [
  26526. {
  26527. name: "Micro",
  26528. height: math.unit(8, "inches")
  26529. },
  26530. {
  26531. name: "Normal",
  26532. height: math.unit(10, "feet"),
  26533. default: true
  26534. },
  26535. {
  26536. name: "Macro",
  26537. height: math.unit(180, "feet")
  26538. },
  26539. ]
  26540. ))
  26541. characterMakers.push(() => makeCharacter(
  26542. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26543. {
  26544. front: {
  26545. height: math.unit(5 + 4 / 12, "feet"),
  26546. weight: math.unit(125, "lb"),
  26547. name: "Front",
  26548. image: {
  26549. source: "./media/characters/fisher/front.svg",
  26550. extra: 444 / 390,
  26551. bottom: 2 / 444.8
  26552. }
  26553. },
  26554. },
  26555. [
  26556. {
  26557. name: "Micro",
  26558. height: math.unit(4, "inches")
  26559. },
  26560. {
  26561. name: "Normal",
  26562. height: math.unit(5 + 4 / 12, "feet"),
  26563. default: true
  26564. },
  26565. {
  26566. name: "Macro",
  26567. height: math.unit(100, "feet")
  26568. },
  26569. ]
  26570. ))
  26571. characterMakers.push(() => makeCharacter(
  26572. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26573. {
  26574. front: {
  26575. height: math.unit(6.71, "feet"),
  26576. weight: math.unit(200, "lb"),
  26577. preyCapacity: math.unit(1000000, "people"),
  26578. name: "Front",
  26579. image: {
  26580. source: "./media/characters/gliss/front.svg",
  26581. extra: 2347 / 2231,
  26582. bottom: 113 / 2462
  26583. }
  26584. },
  26585. hammerspaceSize: {
  26586. height: math.unit(6.71 * 717, "feet"),
  26587. weight: math.unit(200, "lb"),
  26588. preyCapacity: math.unit(1000000, "people"),
  26589. name: "Hammerspace Size",
  26590. image: {
  26591. source: "./media/characters/gliss/front.svg",
  26592. extra: 2347 / 2231,
  26593. bottom: 113 / 2462
  26594. }
  26595. },
  26596. },
  26597. [
  26598. {
  26599. name: "Normal",
  26600. height: math.unit(6.71, "feet"),
  26601. default: true
  26602. },
  26603. ]
  26604. ))
  26605. characterMakers.push(() => makeCharacter(
  26606. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26607. {
  26608. side: {
  26609. height: math.unit(1.44, "m"),
  26610. weight: math.unit(80, "kg"),
  26611. name: "Side",
  26612. image: {
  26613. source: "./media/characters/dune-anderson/side.svg",
  26614. bottom: 49 / 1426
  26615. }
  26616. },
  26617. },
  26618. [
  26619. {
  26620. name: "Wolf-sized",
  26621. height: math.unit(1.44, "meters")
  26622. },
  26623. {
  26624. name: "Normal",
  26625. height: math.unit(5.05, "meters"),
  26626. default: true
  26627. },
  26628. {
  26629. name: "Big",
  26630. height: math.unit(14.4, "meters")
  26631. },
  26632. {
  26633. name: "Huge",
  26634. height: math.unit(144, "meters")
  26635. },
  26636. ]
  26637. ))
  26638. characterMakers.push(() => makeCharacter(
  26639. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26640. {
  26641. front: {
  26642. height: math.unit(7, "feet"),
  26643. weight: math.unit(425, "lb"),
  26644. name: "Front",
  26645. image: {
  26646. source: "./media/characters/hind/front.svg",
  26647. extra: 2091 / 1860,
  26648. bottom: 129 / 2220
  26649. }
  26650. },
  26651. back: {
  26652. height: math.unit(7, "feet"),
  26653. weight: math.unit(425, "lb"),
  26654. name: "Back",
  26655. image: {
  26656. source: "./media/characters/hind/back.svg",
  26657. extra: 2091 / 1860,
  26658. bottom: 24.6 / 2309
  26659. }
  26660. },
  26661. tail: {
  26662. height: math.unit(2.8, "feet"),
  26663. name: "Tail",
  26664. image: {
  26665. source: "./media/characters/hind/tail.svg"
  26666. }
  26667. },
  26668. head: {
  26669. height: math.unit(2.55, "feet"),
  26670. name: "Head",
  26671. image: {
  26672. source: "./media/characters/hind/head.svg"
  26673. }
  26674. },
  26675. },
  26676. [
  26677. {
  26678. name: "XS",
  26679. height: math.unit(0.7, "feet")
  26680. },
  26681. {
  26682. name: "Normal",
  26683. height: math.unit(7, "feet"),
  26684. default: true
  26685. },
  26686. {
  26687. name: "XL",
  26688. height: math.unit(70, "feet")
  26689. },
  26690. ]
  26691. ))
  26692. characterMakers.push(() => makeCharacter(
  26693. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26694. {
  26695. front: {
  26696. height: math.unit(2.1, "meters"),
  26697. weight: math.unit(150, "lb"),
  26698. name: "Front",
  26699. image: {
  26700. source: "./media/characters/tharquench-sizestealer/front.svg",
  26701. extra: 1605/1470,
  26702. bottom: 36/1641
  26703. }
  26704. },
  26705. frontAlt: {
  26706. height: math.unit(2.1, "meters"),
  26707. weight: math.unit(150, "lb"),
  26708. name: "Front (Alt)",
  26709. image: {
  26710. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26711. extra: 2318 / 2063,
  26712. bottom: 93.4 / 2410
  26713. }
  26714. },
  26715. },
  26716. [
  26717. {
  26718. name: "Nano",
  26719. height: math.unit(1, "mm")
  26720. },
  26721. {
  26722. name: "Micro",
  26723. height: math.unit(1, "cm")
  26724. },
  26725. {
  26726. name: "Normal",
  26727. height: math.unit(2.1, "meters"),
  26728. default: true
  26729. },
  26730. ]
  26731. ))
  26732. characterMakers.push(() => makeCharacter(
  26733. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26734. {
  26735. front: {
  26736. height: math.unit(7 + 5 / 12, "feet"),
  26737. weight: math.unit(357, "lb"),
  26738. name: "Front",
  26739. image: {
  26740. source: "./media/characters/solex-draconov/front.svg",
  26741. extra: 1993 / 1865,
  26742. bottom: 117 / 2111
  26743. }
  26744. },
  26745. },
  26746. [
  26747. {
  26748. name: "Natural Height",
  26749. height: math.unit(7 + 5 / 12, "feet"),
  26750. default: true
  26751. },
  26752. {
  26753. name: "Macro",
  26754. height: math.unit(350, "feet")
  26755. },
  26756. {
  26757. name: "Macro+",
  26758. height: math.unit(1000, "feet")
  26759. },
  26760. {
  26761. name: "Megamacro",
  26762. height: math.unit(20, "km")
  26763. },
  26764. {
  26765. name: "Megamacro+",
  26766. height: math.unit(1000, "km")
  26767. },
  26768. {
  26769. name: "Gigamacro",
  26770. height: math.unit(2.5, "Gm")
  26771. },
  26772. {
  26773. name: "Teramacro",
  26774. height: math.unit(15, "Tm")
  26775. },
  26776. {
  26777. name: "Galactic",
  26778. height: math.unit(30, "Zm")
  26779. },
  26780. {
  26781. name: "Universal",
  26782. height: math.unit(21000, "Ym")
  26783. },
  26784. {
  26785. name: "Omniversal",
  26786. height: math.unit(9.861e50, "Ym")
  26787. },
  26788. {
  26789. name: "Existential",
  26790. height: math.unit(1e300, "meters")
  26791. },
  26792. ]
  26793. ))
  26794. characterMakers.push(() => makeCharacter(
  26795. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26796. {
  26797. side: {
  26798. height: math.unit(25, "feet"),
  26799. weight: math.unit(90000, "lb"),
  26800. name: "Side",
  26801. image: {
  26802. source: "./media/characters/mandarax/side.svg",
  26803. extra: 614 / 332,
  26804. bottom: 55 / 630
  26805. }
  26806. },
  26807. lounging: {
  26808. height: math.unit(15.4, "feet"),
  26809. weight: math.unit(90000, "lb"),
  26810. name: "Lounging",
  26811. image: {
  26812. source: "./media/characters/mandarax/lounging.svg",
  26813. extra: 817/609,
  26814. bottom: 685/1502
  26815. }
  26816. },
  26817. head: {
  26818. height: math.unit(11.4, "feet"),
  26819. name: "Head",
  26820. image: {
  26821. source: "./media/characters/mandarax/head.svg"
  26822. }
  26823. },
  26824. belly: {
  26825. height: math.unit(33, "feet"),
  26826. name: "Belly",
  26827. preyCapacity: math.unit(500, "people"),
  26828. image: {
  26829. source: "./media/characters/mandarax/belly.svg"
  26830. }
  26831. },
  26832. dick: {
  26833. height: math.unit(8.46, "feet"),
  26834. name: "Dick",
  26835. image: {
  26836. source: "./media/characters/mandarax/dick.svg"
  26837. }
  26838. },
  26839. top: {
  26840. height: math.unit(28, "meters"),
  26841. name: "Top",
  26842. image: {
  26843. source: "./media/characters/mandarax/top.svg"
  26844. }
  26845. },
  26846. },
  26847. [
  26848. {
  26849. name: "Normal",
  26850. height: math.unit(25, "feet"),
  26851. default: true
  26852. },
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26857. {
  26858. front: {
  26859. height: math.unit(5, "feet"),
  26860. weight: math.unit(90, "lb"),
  26861. name: "Front",
  26862. image: {
  26863. source: "./media/characters/pixil/front.svg",
  26864. extra: 2000 / 1618,
  26865. bottom: 12.3 / 2011
  26866. }
  26867. },
  26868. },
  26869. [
  26870. {
  26871. name: "Normal",
  26872. height: math.unit(5, "feet"),
  26873. default: true
  26874. },
  26875. {
  26876. name: "Megamacro",
  26877. height: math.unit(10, "miles"),
  26878. },
  26879. ]
  26880. ))
  26881. characterMakers.push(() => makeCharacter(
  26882. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26883. {
  26884. front: {
  26885. height: math.unit(7 + 2 / 12, "feet"),
  26886. weight: math.unit(200, "lb"),
  26887. name: "Front",
  26888. image: {
  26889. source: "./media/characters/angel/front.svg",
  26890. extra: 1830 / 1737,
  26891. bottom: 22.6 / 1854,
  26892. }
  26893. },
  26894. },
  26895. [
  26896. {
  26897. name: "Normal",
  26898. height: math.unit(7 + 2 / 12, "feet"),
  26899. default: true
  26900. },
  26901. {
  26902. name: "Macro",
  26903. height: math.unit(1000, "feet")
  26904. },
  26905. {
  26906. name: "Megamacro",
  26907. height: math.unit(2, "miles")
  26908. },
  26909. {
  26910. name: "Gigamacro",
  26911. height: math.unit(20, "earths")
  26912. },
  26913. ]
  26914. ))
  26915. characterMakers.push(() => makeCharacter(
  26916. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26917. {
  26918. front: {
  26919. height: math.unit(5, "feet"),
  26920. weight: math.unit(180, "lb"),
  26921. name: "Front",
  26922. image: {
  26923. source: "./media/characters/mekana/front.svg",
  26924. extra: 1671 / 1605,
  26925. bottom: 3.5 / 1691
  26926. }
  26927. },
  26928. side: {
  26929. height: math.unit(5, "feet"),
  26930. weight: math.unit(180, "lb"),
  26931. name: "Side",
  26932. image: {
  26933. source: "./media/characters/mekana/side.svg",
  26934. extra: 1671 / 1605,
  26935. bottom: 3.5 / 1691
  26936. }
  26937. },
  26938. back: {
  26939. height: math.unit(5, "feet"),
  26940. weight: math.unit(180, "lb"),
  26941. name: "Back",
  26942. image: {
  26943. source: "./media/characters/mekana/back.svg",
  26944. extra: 1671 / 1605,
  26945. bottom: 3.5 / 1691
  26946. }
  26947. },
  26948. },
  26949. [
  26950. {
  26951. name: "Normal",
  26952. height: math.unit(5, "feet"),
  26953. default: true
  26954. },
  26955. ]
  26956. ))
  26957. characterMakers.push(() => makeCharacter(
  26958. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26959. {
  26960. front: {
  26961. height: math.unit(4 + 6 / 12, "feet"),
  26962. weight: math.unit(80, "lb"),
  26963. name: "Front",
  26964. image: {
  26965. source: "./media/characters/pixie/front.svg",
  26966. extra: 1924 / 1825,
  26967. bottom: 22.4 / 1946
  26968. }
  26969. },
  26970. },
  26971. [
  26972. {
  26973. name: "Normal",
  26974. height: math.unit(4 + 6 / 12, "feet"),
  26975. default: true
  26976. },
  26977. {
  26978. name: "Macro",
  26979. height: math.unit(40, "feet")
  26980. },
  26981. ]
  26982. ))
  26983. characterMakers.push(() => makeCharacter(
  26984. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26985. {
  26986. front: {
  26987. height: math.unit(2.1, "meters"),
  26988. weight: math.unit(200, "lb"),
  26989. name: "Front",
  26990. image: {
  26991. source: "./media/characters/the-lascivious/front.svg",
  26992. extra: 1 / 0.893,
  26993. bottom: 3.5 / 573.7
  26994. }
  26995. },
  26996. },
  26997. [
  26998. {
  26999. name: "Human Scale",
  27000. height: math.unit(2.1, "meters")
  27001. },
  27002. {
  27003. name: "Wolxi Scale",
  27004. height: math.unit(46.2, "m"),
  27005. default: true
  27006. },
  27007. {
  27008. name: "Boinker of Buildings",
  27009. height: math.unit(10, "km")
  27010. },
  27011. {
  27012. name: "Shagger of Skyscrapers",
  27013. height: math.unit(40, "km")
  27014. },
  27015. {
  27016. name: "Banger of Boroughs",
  27017. height: math.unit(4000, "km")
  27018. },
  27019. {
  27020. name: "Screwer of States",
  27021. height: math.unit(100000, "km")
  27022. },
  27023. {
  27024. name: "Pounder of Planets",
  27025. height: math.unit(2000000, "km")
  27026. },
  27027. ]
  27028. ))
  27029. characterMakers.push(() => makeCharacter(
  27030. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27031. {
  27032. front: {
  27033. height: math.unit(6, "feet"),
  27034. weight: math.unit(150, "lb"),
  27035. name: "Front",
  27036. image: {
  27037. source: "./media/characters/aj/front.svg",
  27038. extra: 2039 / 1562,
  27039. bottom: 40 / 2079
  27040. }
  27041. },
  27042. },
  27043. [
  27044. {
  27045. name: "Normal",
  27046. height: math.unit(11 + 6 / 12, "feet"),
  27047. default: true
  27048. },
  27049. {
  27050. name: "Megamacro",
  27051. height: math.unit(60, "megameters")
  27052. },
  27053. ]
  27054. ))
  27055. characterMakers.push(() => makeCharacter(
  27056. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27057. {
  27058. side: {
  27059. height: math.unit(31 + 8 / 12, "feet"),
  27060. weight: math.unit(75000, "kg"),
  27061. name: "Side",
  27062. image: {
  27063. source: "./media/characters/koros/side.svg",
  27064. extra: 1442 / 1297,
  27065. bottom: 122.7 / 1562
  27066. }
  27067. },
  27068. dicksKingsCrown: {
  27069. height: math.unit(6, "feet"),
  27070. name: "Dicks (King's Crown)",
  27071. image: {
  27072. source: "./media/characters/koros/dicks-kings-crown.svg"
  27073. }
  27074. },
  27075. dicksTailSet: {
  27076. height: math.unit(3, "feet"),
  27077. name: "Dicks (Tail Set)",
  27078. image: {
  27079. source: "./media/characters/koros/dicks-tail-set.svg"
  27080. }
  27081. },
  27082. dickCumming: {
  27083. height: math.unit(7.98, "feet"),
  27084. name: "Dick (Cumming)",
  27085. image: {
  27086. source: "./media/characters/koros/dick-cumming.svg"
  27087. }
  27088. },
  27089. dicksBack: {
  27090. height: math.unit(5.9, "feet"),
  27091. name: "Dicks (Back)",
  27092. image: {
  27093. source: "./media/characters/koros/dicks-back.svg"
  27094. }
  27095. },
  27096. dicksFront: {
  27097. height: math.unit(3.72, "feet"),
  27098. name: "Dicks (Front)",
  27099. image: {
  27100. source: "./media/characters/koros/dicks-front.svg"
  27101. }
  27102. },
  27103. dicksPeeking: {
  27104. height: math.unit(3.0, "feet"),
  27105. name: "Dicks (Peeking)",
  27106. image: {
  27107. source: "./media/characters/koros/dicks-peeking.svg"
  27108. }
  27109. },
  27110. eye: {
  27111. height: math.unit(1.7, "feet"),
  27112. name: "Eye",
  27113. image: {
  27114. source: "./media/characters/koros/eye.svg"
  27115. }
  27116. },
  27117. headFront: {
  27118. height: math.unit(11.69, "feet"),
  27119. name: "Head (Front)",
  27120. image: {
  27121. source: "./media/characters/koros/head-front.svg"
  27122. }
  27123. },
  27124. headSide: {
  27125. height: math.unit(14, "feet"),
  27126. name: "Head (Side)",
  27127. image: {
  27128. source: "./media/characters/koros/head-side.svg"
  27129. }
  27130. },
  27131. leg: {
  27132. height: math.unit(17, "feet"),
  27133. name: "Leg",
  27134. image: {
  27135. source: "./media/characters/koros/leg.svg"
  27136. }
  27137. },
  27138. mawSide: {
  27139. height: math.unit(12.8, "feet"),
  27140. name: "Maw (Side)",
  27141. image: {
  27142. source: "./media/characters/koros/maw-side.svg"
  27143. }
  27144. },
  27145. mawSpitting: {
  27146. height: math.unit(17, "feet"),
  27147. name: "Maw (Spitting)",
  27148. image: {
  27149. source: "./media/characters/koros/maw-spitting.svg"
  27150. }
  27151. },
  27152. slit: {
  27153. height: math.unit(2.8, "feet"),
  27154. name: "Slit",
  27155. image: {
  27156. source: "./media/characters/koros/slit.svg"
  27157. }
  27158. },
  27159. stomach: {
  27160. height: math.unit(6.8, "feet"),
  27161. preyCapacity: math.unit(20, "people"),
  27162. name: "Stomach",
  27163. image: {
  27164. source: "./media/characters/koros/stomach.svg"
  27165. }
  27166. },
  27167. wingspanBottom: {
  27168. height: math.unit(114, "feet"),
  27169. name: "Wingspan (Bottom)",
  27170. image: {
  27171. source: "./media/characters/koros/wingspan-bottom.svg"
  27172. }
  27173. },
  27174. wingspanTop: {
  27175. height: math.unit(104, "feet"),
  27176. name: "Wingspan (Top)",
  27177. image: {
  27178. source: "./media/characters/koros/wingspan-top.svg"
  27179. }
  27180. },
  27181. },
  27182. [
  27183. {
  27184. name: "Normal",
  27185. height: math.unit(31 + 8 / 12, "feet"),
  27186. default: true
  27187. },
  27188. ]
  27189. ))
  27190. characterMakers.push(() => makeCharacter(
  27191. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27192. {
  27193. front: {
  27194. height: math.unit(18 + 5 / 12, "feet"),
  27195. weight: math.unit(3750, "kg"),
  27196. name: "Front",
  27197. image: {
  27198. source: "./media/characters/vexx/front.svg",
  27199. extra: 426 / 396,
  27200. bottom: 31.5 / 458
  27201. }
  27202. },
  27203. maw: {
  27204. height: math.unit(6, "feet"),
  27205. name: "Maw",
  27206. image: {
  27207. source: "./media/characters/vexx/maw.svg"
  27208. }
  27209. },
  27210. },
  27211. [
  27212. {
  27213. name: "Normal",
  27214. height: math.unit(18 + 5 / 12, "feet"),
  27215. default: true
  27216. },
  27217. ]
  27218. ))
  27219. characterMakers.push(() => makeCharacter(
  27220. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27221. {
  27222. front: {
  27223. height: math.unit(17 + 6 / 12, "feet"),
  27224. weight: math.unit(150, "lb"),
  27225. name: "Front",
  27226. image: {
  27227. source: "./media/characters/baadra/front.svg",
  27228. extra: 1694/1553,
  27229. bottom: 179/1873
  27230. }
  27231. },
  27232. frontAlt: {
  27233. height: math.unit(17 + 6 / 12, "feet"),
  27234. weight: math.unit(150, "lb"),
  27235. name: "Front (Alt)",
  27236. image: {
  27237. source: "./media/characters/baadra/front-alt.svg",
  27238. extra: 3137 / 2890,
  27239. bottom: 168.4 / 3305
  27240. }
  27241. },
  27242. back: {
  27243. height: math.unit(17 + 6 / 12, "feet"),
  27244. weight: math.unit(150, "lb"),
  27245. name: "Back",
  27246. image: {
  27247. source: "./media/characters/baadra/back.svg",
  27248. extra: 3142 / 2890,
  27249. bottom: 220 / 3371
  27250. }
  27251. },
  27252. head: {
  27253. height: math.unit(5.45, "feet"),
  27254. name: "Head",
  27255. image: {
  27256. source: "./media/characters/baadra/head.svg"
  27257. }
  27258. },
  27259. headAngry: {
  27260. height: math.unit(4.95, "feet"),
  27261. name: "Head (Angry)",
  27262. image: {
  27263. source: "./media/characters/baadra/head-angry.svg"
  27264. }
  27265. },
  27266. headOpen: {
  27267. height: math.unit(6, "feet"),
  27268. name: "Head (Open)",
  27269. image: {
  27270. source: "./media/characters/baadra/head-open.svg"
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Normal",
  27277. height: math.unit(17 + 6 / 12, "feet"),
  27278. default: true
  27279. },
  27280. ]
  27281. ))
  27282. characterMakers.push(() => makeCharacter(
  27283. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27284. {
  27285. front: {
  27286. height: math.unit(7 + 3 / 12, "feet"),
  27287. weight: math.unit(180, "lb"),
  27288. name: "Front",
  27289. image: {
  27290. source: "./media/characters/juri/front.svg",
  27291. extra: 1401 / 1237,
  27292. bottom: 18.5 / 1418
  27293. }
  27294. },
  27295. side: {
  27296. height: math.unit(7 + 3 / 12, "feet"),
  27297. weight: math.unit(180, "lb"),
  27298. name: "Side",
  27299. image: {
  27300. source: "./media/characters/juri/side.svg",
  27301. extra: 1424 / 1242,
  27302. bottom: 18.5 / 1447
  27303. }
  27304. },
  27305. sitting: {
  27306. height: math.unit(6, "feet"),
  27307. weight: math.unit(180, "lb"),
  27308. name: "Sitting",
  27309. image: {
  27310. source: "./media/characters/juri/sitting.svg",
  27311. extra: 1270 / 1143,
  27312. bottom: 100 / 1343
  27313. }
  27314. },
  27315. back: {
  27316. height: math.unit(7 + 3 / 12, "feet"),
  27317. weight: math.unit(180, "lb"),
  27318. name: "Back",
  27319. image: {
  27320. source: "./media/characters/juri/back.svg",
  27321. extra: 1377 / 1240,
  27322. bottom: 23.7 / 1405
  27323. }
  27324. },
  27325. maw: {
  27326. height: math.unit(2.8, "feet"),
  27327. name: "Maw",
  27328. image: {
  27329. source: "./media/characters/juri/maw.svg"
  27330. }
  27331. },
  27332. stomach: {
  27333. height: math.unit(0.89, "feet"),
  27334. preyCapacity: math.unit(4, "liters"),
  27335. name: "Stomach",
  27336. image: {
  27337. source: "./media/characters/juri/stomach.svg"
  27338. }
  27339. },
  27340. },
  27341. [
  27342. {
  27343. name: "Normal",
  27344. height: math.unit(7 + 3 / 12, "feet"),
  27345. default: true
  27346. },
  27347. ]
  27348. ))
  27349. characterMakers.push(() => makeCharacter(
  27350. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27351. {
  27352. fox: {
  27353. height: math.unit(5 + 6 / 12, "feet"),
  27354. weight: math.unit(140, "lb"),
  27355. name: "Fox",
  27356. image: {
  27357. source: "./media/characters/maxene-sita/fox.svg",
  27358. extra: 146 / 138,
  27359. bottom: 2.1 / 148.19
  27360. }
  27361. },
  27362. foxLaying: {
  27363. height: math.unit(1.70, "feet"),
  27364. weight: math.unit(140, "lb"),
  27365. name: "Fox (Laying)",
  27366. image: {
  27367. source: "./media/characters/maxene-sita/fox-laying.svg",
  27368. extra: 910 / 572,
  27369. bottom: 71 / 981
  27370. }
  27371. },
  27372. kitsune: {
  27373. height: math.unit(10, "feet"),
  27374. weight: math.unit(800, "lb"),
  27375. name: "Kitsune",
  27376. image: {
  27377. source: "./media/characters/maxene-sita/kitsune.svg",
  27378. extra: 185 / 176,
  27379. bottom: 4.7 / 189.9
  27380. }
  27381. },
  27382. hellhound: {
  27383. height: math.unit(10, "feet"),
  27384. weight: math.unit(700, "lb"),
  27385. name: "Hellhound",
  27386. image: {
  27387. source: "./media/characters/maxene-sita/hellhound.svg",
  27388. extra: 1600 / 1545,
  27389. bottom: 81 / 1681
  27390. }
  27391. },
  27392. },
  27393. [
  27394. {
  27395. name: "Normal",
  27396. height: math.unit(5 + 6 / 12, "feet"),
  27397. default: true
  27398. },
  27399. ]
  27400. ))
  27401. characterMakers.push(() => makeCharacter(
  27402. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27403. {
  27404. front: {
  27405. height: math.unit(3 + 4 / 12, "feet"),
  27406. weight: math.unit(70, "lb"),
  27407. name: "Front",
  27408. image: {
  27409. source: "./media/characters/maia/front.svg",
  27410. extra: 227 / 219.5,
  27411. bottom: 40 / 267
  27412. }
  27413. },
  27414. back: {
  27415. height: math.unit(3 + 4 / 12, "feet"),
  27416. weight: math.unit(70, "lb"),
  27417. name: "Back",
  27418. image: {
  27419. source: "./media/characters/maia/back.svg",
  27420. extra: 237 / 225
  27421. }
  27422. },
  27423. },
  27424. [
  27425. {
  27426. name: "Normal",
  27427. height: math.unit(3 + 4 / 12, "feet"),
  27428. default: true
  27429. },
  27430. ]
  27431. ))
  27432. characterMakers.push(() => makeCharacter(
  27433. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27434. {
  27435. front: {
  27436. height: math.unit(5 + 10 / 12, "feet"),
  27437. weight: math.unit(197, "lb"),
  27438. name: "Front",
  27439. image: {
  27440. source: "./media/characters/jabaro/front.svg",
  27441. extra: 225 / 216,
  27442. bottom: 5.06 / 230
  27443. }
  27444. },
  27445. back: {
  27446. height: math.unit(5 + 10 / 12, "feet"),
  27447. weight: math.unit(197, "lb"),
  27448. name: "Back",
  27449. image: {
  27450. source: "./media/characters/jabaro/back.svg",
  27451. extra: 225 / 219,
  27452. bottom: 1.9 / 227
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Normal",
  27459. height: math.unit(5 + 10 / 12, "feet"),
  27460. default: true
  27461. },
  27462. ]
  27463. ))
  27464. characterMakers.push(() => makeCharacter(
  27465. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27466. {
  27467. front: {
  27468. height: math.unit(5 + 8 / 12, "feet"),
  27469. weight: math.unit(139, "lb"),
  27470. name: "Front",
  27471. image: {
  27472. source: "./media/characters/risa/front.svg",
  27473. extra: 270 / 260,
  27474. bottom: 11.2 / 282
  27475. }
  27476. },
  27477. back: {
  27478. height: math.unit(5 + 8 / 12, "feet"),
  27479. weight: math.unit(139, "lb"),
  27480. name: "Back",
  27481. image: {
  27482. source: "./media/characters/risa/back.svg",
  27483. extra: 264 / 255,
  27484. bottom: 4 / 268
  27485. }
  27486. },
  27487. },
  27488. [
  27489. {
  27490. name: "Normal",
  27491. height: math.unit(5 + 8 / 12, "feet"),
  27492. default: true
  27493. },
  27494. ]
  27495. ))
  27496. characterMakers.push(() => makeCharacter(
  27497. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27498. {
  27499. front: {
  27500. height: math.unit(2 + 11 / 12, "feet"),
  27501. weight: math.unit(30, "lb"),
  27502. name: "Front",
  27503. image: {
  27504. source: "./media/characters/weatley/front.svg",
  27505. bottom: 10.7 / 414,
  27506. extra: 403.5 / 362
  27507. }
  27508. },
  27509. back: {
  27510. height: math.unit(2 + 11 / 12, "feet"),
  27511. weight: math.unit(30, "lb"),
  27512. name: "Back",
  27513. image: {
  27514. source: "./media/characters/weatley/back.svg",
  27515. bottom: 10.7 / 414,
  27516. extra: 403.5 / 362
  27517. }
  27518. },
  27519. },
  27520. [
  27521. {
  27522. name: "Normal",
  27523. height: math.unit(2 + 11 / 12, "feet"),
  27524. default: true
  27525. },
  27526. ]
  27527. ))
  27528. characterMakers.push(() => makeCharacter(
  27529. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27530. {
  27531. front: {
  27532. height: math.unit(5 + 2 / 12, "feet"),
  27533. weight: math.unit(50, "kg"),
  27534. name: "Front",
  27535. image: {
  27536. source: "./media/characters/mercury-crescent/front.svg",
  27537. extra: 1088 / 1033,
  27538. bottom: 18.9 / 1109
  27539. }
  27540. },
  27541. },
  27542. [
  27543. {
  27544. name: "Normal",
  27545. height: math.unit(5 + 2 / 12, "feet"),
  27546. default: true
  27547. },
  27548. ]
  27549. ))
  27550. characterMakers.push(() => makeCharacter(
  27551. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27552. {
  27553. front: {
  27554. height: math.unit(2, "feet"),
  27555. weight: math.unit(15, "kg"),
  27556. name: "Front",
  27557. image: {
  27558. source: "./media/characters/diamond-jones/front.svg",
  27559. extra: 727/723,
  27560. bottom: 46/773
  27561. }
  27562. },
  27563. },
  27564. [
  27565. {
  27566. name: "Normal",
  27567. height: math.unit(2, "feet"),
  27568. default: true
  27569. },
  27570. ]
  27571. ))
  27572. characterMakers.push(() => makeCharacter(
  27573. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27574. {
  27575. front: {
  27576. height: math.unit(3, "feet"),
  27577. weight: math.unit(30, "kg"),
  27578. name: "Front",
  27579. image: {
  27580. source: "./media/characters/sweet-bit/front.svg",
  27581. extra: 675 / 567,
  27582. bottom: 27.7 / 703
  27583. }
  27584. },
  27585. },
  27586. [
  27587. {
  27588. name: "Normal",
  27589. height: math.unit(3, "feet"),
  27590. default: true
  27591. },
  27592. ]
  27593. ))
  27594. characterMakers.push(() => makeCharacter(
  27595. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27596. {
  27597. side: {
  27598. height: math.unit(9.178, "feet"),
  27599. weight: math.unit(500, "lb"),
  27600. name: "Side",
  27601. image: {
  27602. source: "./media/characters/umbrazen/side.svg",
  27603. extra: 1730 / 1473,
  27604. bottom: 34.6 / 1765
  27605. }
  27606. },
  27607. },
  27608. [
  27609. {
  27610. name: "Normal",
  27611. height: math.unit(9.178, "feet"),
  27612. default: true
  27613. },
  27614. ]
  27615. ))
  27616. characterMakers.push(() => makeCharacter(
  27617. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27618. {
  27619. front: {
  27620. height: math.unit(10, "feet"),
  27621. weight: math.unit(750, "lb"),
  27622. name: "Front",
  27623. image: {
  27624. source: "./media/characters/arlist/front.svg",
  27625. extra: 961 / 778,
  27626. bottom: 6.2 / 986
  27627. }
  27628. },
  27629. },
  27630. [
  27631. {
  27632. name: "Normal",
  27633. height: math.unit(10, "feet"),
  27634. default: true
  27635. },
  27636. ]
  27637. ))
  27638. characterMakers.push(() => makeCharacter(
  27639. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27640. {
  27641. front: {
  27642. height: math.unit(5 + 1 / 12, "feet"),
  27643. weight: math.unit(110, "lb"),
  27644. name: "Front",
  27645. image: {
  27646. source: "./media/characters/aradel/front.svg",
  27647. extra: 324 / 303,
  27648. bottom: 3.6 / 329.4
  27649. }
  27650. },
  27651. },
  27652. [
  27653. {
  27654. name: "Normal",
  27655. height: math.unit(5 + 1 / 12, "feet"),
  27656. default: true
  27657. },
  27658. ]
  27659. ))
  27660. characterMakers.push(() => makeCharacter(
  27661. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27662. {
  27663. dressed: {
  27664. height: math.unit(3 + 8 / 12, "feet"),
  27665. weight: math.unit(50, "lb"),
  27666. name: "Dressed",
  27667. image: {
  27668. source: "./media/characters/serryn/dressed.svg",
  27669. extra: 1792 / 1656,
  27670. bottom: 43.5 / 1840
  27671. }
  27672. },
  27673. nude: {
  27674. height: math.unit(3 + 8 / 12, "feet"),
  27675. weight: math.unit(50, "lb"),
  27676. name: "Nude",
  27677. image: {
  27678. source: "./media/characters/serryn/nude.svg",
  27679. extra: 1792 / 1656,
  27680. bottom: 43.5 / 1840
  27681. }
  27682. },
  27683. },
  27684. [
  27685. {
  27686. name: "Normal",
  27687. height: math.unit(3 + 8 / 12, "feet"),
  27688. default: true
  27689. },
  27690. ]
  27691. ))
  27692. characterMakers.push(() => makeCharacter(
  27693. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27694. {
  27695. front: {
  27696. height: math.unit(7 + 10 / 12, "feet"),
  27697. weight: math.unit(255, "lb"),
  27698. name: "Front",
  27699. image: {
  27700. source: "./media/characters/xavier-thyme/front.svg",
  27701. extra: 3733 / 3642,
  27702. bottom: 131 / 3869
  27703. }
  27704. },
  27705. frontRaven: {
  27706. height: math.unit(7 + 10 / 12, "feet"),
  27707. weight: math.unit(255, "lb"),
  27708. name: "Front (Raven)",
  27709. image: {
  27710. source: "./media/characters/xavier-thyme/front-raven.svg",
  27711. extra: 4385 / 3642,
  27712. bottom: 131 / 4517
  27713. }
  27714. },
  27715. },
  27716. [
  27717. {
  27718. name: "Normal",
  27719. height: math.unit(7 + 10 / 12, "feet"),
  27720. default: true
  27721. },
  27722. ]
  27723. ))
  27724. characterMakers.push(() => makeCharacter(
  27725. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27726. {
  27727. front: {
  27728. height: math.unit(1.6, "m"),
  27729. weight: math.unit(50, "kg"),
  27730. name: "Front",
  27731. image: {
  27732. source: "./media/characters/kiki/front.svg",
  27733. extra: 4682 / 3610,
  27734. bottom: 115 / 4777
  27735. }
  27736. },
  27737. },
  27738. [
  27739. {
  27740. name: "Normal",
  27741. height: math.unit(1.6, "meters"),
  27742. default: true
  27743. },
  27744. ]
  27745. ))
  27746. characterMakers.push(() => makeCharacter(
  27747. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27748. {
  27749. front: {
  27750. height: math.unit(50, "m"),
  27751. weight: math.unit(500, "tonnes"),
  27752. name: "Front",
  27753. image: {
  27754. source: "./media/characters/ryoko/front.svg",
  27755. extra: 4632 / 3926,
  27756. bottom: 193 / 4823
  27757. }
  27758. },
  27759. },
  27760. [
  27761. {
  27762. name: "Normal",
  27763. height: math.unit(50, "meters"),
  27764. default: true
  27765. },
  27766. ]
  27767. ))
  27768. characterMakers.push(() => makeCharacter(
  27769. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27770. {
  27771. front: {
  27772. height: math.unit(30, "m"),
  27773. weight: math.unit(22, "tonnes"),
  27774. name: "Front",
  27775. image: {
  27776. source: "./media/characters/elio/front.svg",
  27777. extra: 4582 / 3720,
  27778. bottom: 236 / 4828
  27779. }
  27780. },
  27781. },
  27782. [
  27783. {
  27784. name: "Normal",
  27785. height: math.unit(30, "meters"),
  27786. default: true
  27787. },
  27788. ]
  27789. ))
  27790. characterMakers.push(() => makeCharacter(
  27791. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27792. {
  27793. front: {
  27794. height: math.unit(6 + 3 / 12, "feet"),
  27795. weight: math.unit(120, "lb"),
  27796. name: "Front",
  27797. image: {
  27798. source: "./media/characters/azura/front.svg",
  27799. extra: 1149 / 1135,
  27800. bottom: 45 / 1194
  27801. }
  27802. },
  27803. frontClothed: {
  27804. height: math.unit(6 + 3 / 12, "feet"),
  27805. weight: math.unit(120, "lb"),
  27806. name: "Front (Clothed)",
  27807. image: {
  27808. source: "./media/characters/azura/front-clothed.svg",
  27809. extra: 1149 / 1135,
  27810. bottom: 45 / 1194
  27811. }
  27812. },
  27813. },
  27814. [
  27815. {
  27816. name: "Normal",
  27817. height: math.unit(6 + 3 / 12, "feet"),
  27818. default: true
  27819. },
  27820. {
  27821. name: "Macro",
  27822. height: math.unit(20 + 6 / 12, "feet")
  27823. },
  27824. {
  27825. name: "Megamacro",
  27826. height: math.unit(12, "miles")
  27827. },
  27828. {
  27829. name: "Gigamacro",
  27830. height: math.unit(10000, "miles")
  27831. },
  27832. {
  27833. name: "Teramacro",
  27834. height: math.unit(900000, "miles")
  27835. },
  27836. ]
  27837. ))
  27838. characterMakers.push(() => makeCharacter(
  27839. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27840. {
  27841. front: {
  27842. height: math.unit(12, "feet"),
  27843. weight: math.unit(1, "ton"),
  27844. capacity: math.unit(660000, "gallons"),
  27845. name: "Front",
  27846. image: {
  27847. source: "./media/characters/zeus/front.svg",
  27848. extra: 5005 / 4717,
  27849. bottom: 363 / 5388
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Normal",
  27856. height: math.unit(12, "feet")
  27857. },
  27858. {
  27859. name: "Preferred Size",
  27860. height: math.unit(0.5, "miles"),
  27861. default: true
  27862. },
  27863. {
  27864. name: "Giga Horse",
  27865. height: math.unit(300, "miles")
  27866. },
  27867. {
  27868. name: "Riding Planets",
  27869. height: math.unit(30, "megameters")
  27870. },
  27871. {
  27872. name: "Cosmic Giant",
  27873. height: math.unit(3, "zettameters")
  27874. },
  27875. {
  27876. name: "Breeding God",
  27877. height: math.unit(9.92e22, "yottameters")
  27878. },
  27879. ]
  27880. ))
  27881. characterMakers.push(() => makeCharacter(
  27882. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27883. {
  27884. side: {
  27885. height: math.unit(9, "feet"),
  27886. weight: math.unit(1500, "kg"),
  27887. name: "Side",
  27888. image: {
  27889. source: "./media/characters/fang/side.svg",
  27890. extra: 924 / 866,
  27891. bottom: 47.5 / 972.3
  27892. }
  27893. },
  27894. },
  27895. [
  27896. {
  27897. name: "Normal",
  27898. height: math.unit(9, "feet"),
  27899. default: true
  27900. },
  27901. {
  27902. name: "Macro",
  27903. height: math.unit(75 + 6 / 12, "feet")
  27904. },
  27905. {
  27906. name: "Teramacro",
  27907. height: math.unit(50000, "miles")
  27908. },
  27909. ]
  27910. ))
  27911. characterMakers.push(() => makeCharacter(
  27912. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27913. {
  27914. front: {
  27915. height: math.unit(10, "feet"),
  27916. weight: math.unit(2, "tons"),
  27917. name: "Front",
  27918. image: {
  27919. source: "./media/characters/rekhit/front.svg",
  27920. extra: 2796 / 2590,
  27921. bottom: 225 / 3022
  27922. }
  27923. },
  27924. },
  27925. [
  27926. {
  27927. name: "Normal",
  27928. height: math.unit(10, "feet"),
  27929. default: true
  27930. },
  27931. {
  27932. name: "Macro",
  27933. height: math.unit(500, "feet")
  27934. },
  27935. ]
  27936. ))
  27937. characterMakers.push(() => makeCharacter(
  27938. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27939. {
  27940. front: {
  27941. height: math.unit(7 + 6.451 / 12, "feet"),
  27942. weight: math.unit(310, "lb"),
  27943. name: "Front",
  27944. image: {
  27945. source: "./media/characters/dahlia-verrick/front.svg",
  27946. extra: 1488 / 1365,
  27947. bottom: 6.2 / 1495
  27948. }
  27949. },
  27950. back: {
  27951. height: math.unit(7 + 6.451 / 12, "feet"),
  27952. weight: math.unit(310, "lb"),
  27953. name: "Back",
  27954. image: {
  27955. source: "./media/characters/dahlia-verrick/back.svg",
  27956. extra: 1472 / 1351,
  27957. bottom: 5.28 / 1477
  27958. }
  27959. },
  27960. frontBusiness: {
  27961. height: math.unit(7 + 6.451 / 12, "feet"),
  27962. weight: math.unit(200, "lb"),
  27963. name: "Front (Business)",
  27964. image: {
  27965. source: "./media/characters/dahlia-verrick/front-business.svg",
  27966. extra: 1478 / 1381,
  27967. bottom: 5.5 / 1484
  27968. }
  27969. },
  27970. frontCasual: {
  27971. height: math.unit(7 + 6.451 / 12, "feet"),
  27972. weight: math.unit(200, "lb"),
  27973. name: "Front (Casual)",
  27974. image: {
  27975. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27976. extra: 1478 / 1381,
  27977. bottom: 5.5 / 1484
  27978. }
  27979. },
  27980. },
  27981. [
  27982. {
  27983. name: "Travel-Sized",
  27984. height: math.unit(7.45, "inches")
  27985. },
  27986. {
  27987. name: "Normal",
  27988. height: math.unit(7 + 6.451 / 12, "feet"),
  27989. default: true
  27990. },
  27991. {
  27992. name: "Hitting the Town",
  27993. height: math.unit(37 + 8 / 12, "feet")
  27994. },
  27995. {
  27996. name: "Stomp in the Suburbs",
  27997. height: math.unit(964 + 9.728 / 12, "feet")
  27998. },
  27999. {
  28000. name: "Sit on the City",
  28001. height: math.unit(61747 + 10.592 / 12, "feet")
  28002. },
  28003. {
  28004. name: "Glomp the Globe",
  28005. height: math.unit(252919327 + 4.832 / 12, "feet")
  28006. },
  28007. ]
  28008. ))
  28009. characterMakers.push(() => makeCharacter(
  28010. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28011. {
  28012. front: {
  28013. height: math.unit(6 + 4 / 12, "feet"),
  28014. weight: math.unit(320, "lb"),
  28015. name: "Front",
  28016. image: {
  28017. source: "./media/characters/balina-mahigan/front.svg",
  28018. extra: 447 / 428,
  28019. bottom: 18 / 466
  28020. }
  28021. },
  28022. back: {
  28023. height: math.unit(6 + 4 / 12, "feet"),
  28024. weight: math.unit(320, "lb"),
  28025. name: "Back",
  28026. image: {
  28027. source: "./media/characters/balina-mahigan/back.svg",
  28028. extra: 445 / 428,
  28029. bottom: 4.07 / 448
  28030. }
  28031. },
  28032. arm: {
  28033. height: math.unit(1.88, "feet"),
  28034. name: "Arm",
  28035. image: {
  28036. source: "./media/characters/balina-mahigan/arm.svg"
  28037. }
  28038. },
  28039. backPort: {
  28040. height: math.unit(0.685, "feet"),
  28041. name: "Back Port",
  28042. image: {
  28043. source: "./media/characters/balina-mahigan/back-port.svg"
  28044. }
  28045. },
  28046. hoofpaw: {
  28047. height: math.unit(1.41, "feet"),
  28048. name: "Hoofpaw",
  28049. image: {
  28050. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28051. }
  28052. },
  28053. leftHandBack: {
  28054. height: math.unit(0.938, "feet"),
  28055. name: "Left Hand (Back)",
  28056. image: {
  28057. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28058. }
  28059. },
  28060. leftHandFront: {
  28061. height: math.unit(0.938, "feet"),
  28062. name: "Left Hand (Front)",
  28063. image: {
  28064. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28065. }
  28066. },
  28067. rightHandBack: {
  28068. height: math.unit(0.95, "feet"),
  28069. name: "Right Hand (Back)",
  28070. image: {
  28071. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28072. }
  28073. },
  28074. rightHandFront: {
  28075. height: math.unit(0.95, "feet"),
  28076. name: "Right Hand (Front)",
  28077. image: {
  28078. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28079. }
  28080. },
  28081. },
  28082. [
  28083. {
  28084. name: "Normal",
  28085. height: math.unit(6 + 4 / 12, "feet"),
  28086. default: true
  28087. },
  28088. ]
  28089. ))
  28090. characterMakers.push(() => makeCharacter(
  28091. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28092. {
  28093. front: {
  28094. height: math.unit(6, "feet"),
  28095. weight: math.unit(320, "lb"),
  28096. name: "Front",
  28097. image: {
  28098. source: "./media/characters/balina-mejeri/front.svg",
  28099. extra: 517 / 488,
  28100. bottom: 44.2 / 561
  28101. }
  28102. },
  28103. },
  28104. [
  28105. {
  28106. name: "Normal",
  28107. height: math.unit(6 + 4 / 12, "feet")
  28108. },
  28109. {
  28110. name: "Business",
  28111. height: math.unit(155, "feet"),
  28112. default: true
  28113. },
  28114. ]
  28115. ))
  28116. characterMakers.push(() => makeCharacter(
  28117. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28118. {
  28119. kneeling: {
  28120. height: math.unit(6 + 4 / 12, "feet"),
  28121. weight: math.unit(300 * 20, "lb"),
  28122. name: "Kneeling",
  28123. image: {
  28124. source: "./media/characters/balbarian/kneeling.svg",
  28125. extra: 922 / 862,
  28126. bottom: 42.4 / 965
  28127. }
  28128. },
  28129. },
  28130. [
  28131. {
  28132. name: "Normal",
  28133. height: math.unit(6 + 4 / 12, "feet")
  28134. },
  28135. {
  28136. name: "Treasured",
  28137. height: math.unit(18 + 9 / 12, "feet"),
  28138. default: true
  28139. },
  28140. {
  28141. name: "Macro",
  28142. height: math.unit(900, "feet")
  28143. },
  28144. ]
  28145. ))
  28146. characterMakers.push(() => makeCharacter(
  28147. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28148. {
  28149. front: {
  28150. height: math.unit(6 + 4 / 12, "feet"),
  28151. weight: math.unit(325, "lb"),
  28152. name: "Front",
  28153. image: {
  28154. source: "./media/characters/balina-amarini/front.svg",
  28155. extra: 415 / 403,
  28156. bottom: 19 / 433.4
  28157. }
  28158. },
  28159. back: {
  28160. height: math.unit(6 + 4 / 12, "feet"),
  28161. weight: math.unit(325, "lb"),
  28162. name: "Back",
  28163. image: {
  28164. source: "./media/characters/balina-amarini/back.svg",
  28165. extra: 415 / 403,
  28166. bottom: 13.5 / 432
  28167. }
  28168. },
  28169. overdrive: {
  28170. height: math.unit(6 + 4 / 12, "feet"),
  28171. weight: math.unit(400, "lb"),
  28172. name: "Overdrive",
  28173. image: {
  28174. source: "./media/characters/balina-amarini/overdrive.svg",
  28175. extra: 269 / 259,
  28176. bottom: 12 / 282
  28177. }
  28178. },
  28179. },
  28180. [
  28181. {
  28182. name: "Boom",
  28183. height: math.unit(9 + 10 / 12, "feet"),
  28184. default: true
  28185. },
  28186. {
  28187. name: "Macro",
  28188. height: math.unit(280, "feet")
  28189. },
  28190. ]
  28191. ))
  28192. characterMakers.push(() => makeCharacter(
  28193. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28194. {
  28195. goddess: {
  28196. height: math.unit(600, "feet"),
  28197. weight: math.unit(2000000, "tons"),
  28198. name: "Goddess",
  28199. image: {
  28200. source: "./media/characters/lady-kubwa/goddess.svg",
  28201. extra: 1240.5 / 1223,
  28202. bottom: 22 / 1263
  28203. }
  28204. },
  28205. goddesser: {
  28206. height: math.unit(900, "feet"),
  28207. weight: math.unit(20000000, "lb"),
  28208. name: "Goddess-er",
  28209. image: {
  28210. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28211. extra: 899 / 888,
  28212. bottom: 12.6 / 912
  28213. }
  28214. },
  28215. },
  28216. [
  28217. {
  28218. name: "Macro",
  28219. height: math.unit(600, "feet"),
  28220. default: true
  28221. },
  28222. {
  28223. name: "Megamacro",
  28224. height: math.unit(250, "miles")
  28225. },
  28226. ]
  28227. ))
  28228. characterMakers.push(() => makeCharacter(
  28229. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28230. {
  28231. front: {
  28232. height: math.unit(7 + 7 / 12, "feet"),
  28233. weight: math.unit(250, "lb"),
  28234. name: "Front",
  28235. image: {
  28236. source: "./media/characters/tala-grovehorn/front.svg",
  28237. extra: 2636 / 2525,
  28238. bottom: 147 / 2781
  28239. }
  28240. },
  28241. back: {
  28242. height: math.unit(7 + 7 / 12, "feet"),
  28243. weight: math.unit(250, "lb"),
  28244. name: "Back",
  28245. image: {
  28246. source: "./media/characters/tala-grovehorn/back.svg",
  28247. extra: 2635 / 2539,
  28248. bottom: 100 / 2732.8
  28249. }
  28250. },
  28251. mouth: {
  28252. height: math.unit(1.15, "feet"),
  28253. name: "Mouth",
  28254. image: {
  28255. source: "./media/characters/tala-grovehorn/mouth.svg"
  28256. }
  28257. },
  28258. dick: {
  28259. height: math.unit(2.36, "feet"),
  28260. name: "Dick",
  28261. image: {
  28262. source: "./media/characters/tala-grovehorn/dick.svg"
  28263. }
  28264. },
  28265. slit: {
  28266. height: math.unit(0.61, "feet"),
  28267. name: "Slit",
  28268. image: {
  28269. source: "./media/characters/tala-grovehorn/slit.svg"
  28270. }
  28271. },
  28272. },
  28273. [
  28274. ]
  28275. ))
  28276. characterMakers.push(() => makeCharacter(
  28277. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28278. {
  28279. front: {
  28280. height: math.unit(7 + 7 / 12, "feet"),
  28281. weight: math.unit(225, "lb"),
  28282. name: "Front",
  28283. image: {
  28284. source: "./media/characters/epona/front.svg",
  28285. extra: 2445 / 2290,
  28286. bottom: 251 / 2696
  28287. }
  28288. },
  28289. back: {
  28290. height: math.unit(7 + 7 / 12, "feet"),
  28291. weight: math.unit(225, "lb"),
  28292. name: "Back",
  28293. image: {
  28294. source: "./media/characters/epona/back.svg",
  28295. extra: 2546 / 2408,
  28296. bottom: 44 / 2589
  28297. }
  28298. },
  28299. genitals: {
  28300. height: math.unit(1.5, "feet"),
  28301. name: "Genitals",
  28302. image: {
  28303. source: "./media/characters/epona/genitals.svg"
  28304. }
  28305. },
  28306. },
  28307. [
  28308. {
  28309. name: "Normal",
  28310. height: math.unit(7 + 7 / 12, "feet"),
  28311. default: true
  28312. },
  28313. ]
  28314. ))
  28315. characterMakers.push(() => makeCharacter(
  28316. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28317. {
  28318. front: {
  28319. height: math.unit(7, "feet"),
  28320. weight: math.unit(518, "lb"),
  28321. name: "Front",
  28322. image: {
  28323. source: "./media/characters/avia-bloodbourn/front.svg",
  28324. extra: 1466 / 1350,
  28325. bottom: 65 / 1527
  28326. }
  28327. },
  28328. },
  28329. [
  28330. ]
  28331. ))
  28332. characterMakers.push(() => makeCharacter(
  28333. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28334. {
  28335. front: {
  28336. height: math.unit(9.35, "feet"),
  28337. weight: math.unit(600, "lb"),
  28338. name: "Front",
  28339. image: {
  28340. source: "./media/characters/amera/front.svg",
  28341. extra: 891 / 818,
  28342. bottom: 30 / 922.7
  28343. }
  28344. },
  28345. back: {
  28346. height: math.unit(9.35, "feet"),
  28347. weight: math.unit(600, "lb"),
  28348. name: "Back",
  28349. image: {
  28350. source: "./media/characters/amera/back.svg",
  28351. extra: 876 / 824,
  28352. bottom: 6.8 / 884
  28353. }
  28354. },
  28355. dick: {
  28356. height: math.unit(2.14, "feet"),
  28357. name: "Dick",
  28358. image: {
  28359. source: "./media/characters/amera/dick.svg"
  28360. }
  28361. },
  28362. },
  28363. [
  28364. {
  28365. name: "Normal",
  28366. height: math.unit(9.35, "feet"),
  28367. default: true
  28368. },
  28369. ]
  28370. ))
  28371. characterMakers.push(() => makeCharacter(
  28372. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28373. {
  28374. kneeling: {
  28375. height: math.unit(3 + 4 / 12, "feet"),
  28376. weight: math.unit(90, "lb"),
  28377. name: "Kneeling",
  28378. image: {
  28379. source: "./media/characters/rosewen/kneeling.svg",
  28380. extra: 1835 / 1571,
  28381. bottom: 27.7 / 1862
  28382. }
  28383. },
  28384. },
  28385. [
  28386. {
  28387. name: "Normal",
  28388. height: math.unit(3 + 4 / 12, "feet"),
  28389. default: true
  28390. },
  28391. ]
  28392. ))
  28393. characterMakers.push(() => makeCharacter(
  28394. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28395. {
  28396. front: {
  28397. height: math.unit(5 + 10 / 12, "feet"),
  28398. weight: math.unit(200, "lb"),
  28399. name: "Front",
  28400. image: {
  28401. source: "./media/characters/sabah/front.svg",
  28402. extra: 849 / 763,
  28403. bottom: 33.9 / 881
  28404. }
  28405. },
  28406. },
  28407. [
  28408. {
  28409. name: "Normal",
  28410. height: math.unit(5 + 10 / 12, "feet"),
  28411. default: true
  28412. },
  28413. ]
  28414. ))
  28415. characterMakers.push(() => makeCharacter(
  28416. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28417. {
  28418. front: {
  28419. height: math.unit(3 + 5 / 12, "feet"),
  28420. weight: math.unit(40, "kg"),
  28421. name: "Front",
  28422. image: {
  28423. source: "./media/characters/purple-flame/front.svg",
  28424. extra: 1577 / 1412,
  28425. bottom: 97 / 1694
  28426. }
  28427. },
  28428. frontDressed: {
  28429. height: math.unit(3 + 5 / 12, "feet"),
  28430. weight: math.unit(40, "kg"),
  28431. name: "Front (Dressed)",
  28432. image: {
  28433. source: "./media/characters/purple-flame/front-dressed.svg",
  28434. extra: 1577 / 1412,
  28435. bottom: 97 / 1694
  28436. }
  28437. },
  28438. headphones: {
  28439. height: math.unit(0.85, "feet"),
  28440. name: "Headphones",
  28441. image: {
  28442. source: "./media/characters/purple-flame/headphones.svg"
  28443. }
  28444. },
  28445. },
  28446. [
  28447. {
  28448. name: "Really Small",
  28449. height: math.unit(5, "cm")
  28450. },
  28451. {
  28452. name: "Micro",
  28453. height: math.unit(1 + 5 / 12, "feet")
  28454. },
  28455. {
  28456. name: "Normal",
  28457. height: math.unit(3 + 5 / 12, "feet"),
  28458. default: true
  28459. },
  28460. {
  28461. name: "Minimacro",
  28462. height: math.unit(125, "feet")
  28463. },
  28464. {
  28465. name: "Macro",
  28466. height: math.unit(0.5, "miles")
  28467. },
  28468. {
  28469. name: "Megamacro",
  28470. height: math.unit(50, "miles")
  28471. },
  28472. {
  28473. name: "Gigantic",
  28474. height: math.unit(750, "miles")
  28475. },
  28476. {
  28477. name: "Planetary",
  28478. height: math.unit(15000, "miles")
  28479. },
  28480. ]
  28481. ))
  28482. characterMakers.push(() => makeCharacter(
  28483. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28484. {
  28485. front: {
  28486. height: math.unit(14, "feet"),
  28487. weight: math.unit(959, "lb"),
  28488. name: "Front",
  28489. image: {
  28490. source: "./media/characters/arsenal/front.svg",
  28491. extra: 2357 / 2157,
  28492. bottom: 93 / 2458
  28493. }
  28494. },
  28495. },
  28496. [
  28497. {
  28498. name: "Normal",
  28499. height: math.unit(14, "feet"),
  28500. default: true
  28501. },
  28502. ]
  28503. ))
  28504. characterMakers.push(() => makeCharacter(
  28505. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28506. {
  28507. front: {
  28508. height: math.unit(6, "feet"),
  28509. weight: math.unit(150, "lb"),
  28510. name: "Front",
  28511. image: {
  28512. source: "./media/characters/adira/front.svg",
  28513. extra: 1078 / 1029,
  28514. bottom: 87 / 1166
  28515. }
  28516. },
  28517. },
  28518. [
  28519. {
  28520. name: "Micro",
  28521. height: math.unit(4, "inches"),
  28522. default: true
  28523. },
  28524. {
  28525. name: "Macro",
  28526. height: math.unit(50, "feet")
  28527. },
  28528. ]
  28529. ))
  28530. characterMakers.push(() => makeCharacter(
  28531. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28532. {
  28533. front: {
  28534. height: math.unit(16, "feet"),
  28535. weight: math.unit(1000, "lb"),
  28536. name: "Front",
  28537. image: {
  28538. source: "./media/characters/grim/front.svg",
  28539. extra: 622 / 614,
  28540. bottom: 18.1 / 642
  28541. }
  28542. },
  28543. back: {
  28544. height: math.unit(16, "feet"),
  28545. weight: math.unit(1000, "lb"),
  28546. name: "Back",
  28547. image: {
  28548. source: "./media/characters/grim/back.svg",
  28549. extra: 610.6 / 602,
  28550. bottom: 40.8 / 652
  28551. }
  28552. },
  28553. hunched: {
  28554. height: math.unit(9.75, "feet"),
  28555. weight: math.unit(1000, "lb"),
  28556. name: "Hunched",
  28557. image: {
  28558. source: "./media/characters/grim/hunched.svg",
  28559. extra: 304 / 297,
  28560. bottom: 35.4 / 394
  28561. }
  28562. },
  28563. },
  28564. [
  28565. {
  28566. name: "Normal",
  28567. height: math.unit(16, "feet"),
  28568. default: true
  28569. },
  28570. ]
  28571. ))
  28572. characterMakers.push(() => makeCharacter(
  28573. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28574. {
  28575. front: {
  28576. height: math.unit(2.3, "meters"),
  28577. weight: math.unit(300, "lb"),
  28578. name: "Front",
  28579. image: {
  28580. source: "./media/characters/sinja/front-sfw.svg",
  28581. extra: 1393 / 1294,
  28582. bottom: 70 / 1463
  28583. }
  28584. },
  28585. frontNsfw: {
  28586. height: math.unit(2.3, "meters"),
  28587. weight: math.unit(300, "lb"),
  28588. name: "Front (NSFW)",
  28589. image: {
  28590. source: "./media/characters/sinja/front-nsfw.svg",
  28591. extra: 1393 / 1294,
  28592. bottom: 70 / 1463
  28593. }
  28594. },
  28595. back: {
  28596. height: math.unit(2.3, "meters"),
  28597. weight: math.unit(300, "lb"),
  28598. name: "Back",
  28599. image: {
  28600. source: "./media/characters/sinja/back.svg",
  28601. extra: 1393 / 1294,
  28602. bottom: 70 / 1463
  28603. }
  28604. },
  28605. head: {
  28606. height: math.unit(1.771, "feet"),
  28607. name: "Head",
  28608. image: {
  28609. source: "./media/characters/sinja/head.svg"
  28610. }
  28611. },
  28612. slit: {
  28613. height: math.unit(0.8, "feet"),
  28614. name: "Slit",
  28615. image: {
  28616. source: "./media/characters/sinja/slit.svg"
  28617. }
  28618. },
  28619. },
  28620. [
  28621. {
  28622. name: "Normal",
  28623. height: math.unit(2.3, "meters")
  28624. },
  28625. {
  28626. name: "Macro",
  28627. height: math.unit(91, "meters"),
  28628. default: true
  28629. },
  28630. {
  28631. name: "Megamacro",
  28632. height: math.unit(91440, "meters")
  28633. },
  28634. {
  28635. name: "Gigamacro",
  28636. height: math.unit(60960000, "meters")
  28637. },
  28638. {
  28639. name: "Teramacro",
  28640. height: math.unit(9144000000, "meters")
  28641. },
  28642. ]
  28643. ))
  28644. characterMakers.push(() => makeCharacter(
  28645. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28646. {
  28647. front: {
  28648. height: math.unit(1.7, "meters"),
  28649. weight: math.unit(130, "lb"),
  28650. name: "Front",
  28651. image: {
  28652. source: "./media/characters/kyu/front.svg",
  28653. extra: 415 / 395,
  28654. bottom: 5 / 420
  28655. }
  28656. },
  28657. head: {
  28658. height: math.unit(1.75, "feet"),
  28659. name: "Head",
  28660. image: {
  28661. source: "./media/characters/kyu/head.svg"
  28662. }
  28663. },
  28664. foot: {
  28665. height: math.unit(0.81, "feet"),
  28666. name: "Foot",
  28667. image: {
  28668. source: "./media/characters/kyu/foot.svg"
  28669. }
  28670. },
  28671. },
  28672. [
  28673. {
  28674. name: "Normal",
  28675. height: math.unit(1.7, "meters")
  28676. },
  28677. {
  28678. name: "Macro",
  28679. height: math.unit(131, "feet"),
  28680. default: true
  28681. },
  28682. {
  28683. name: "Megamacro",
  28684. height: math.unit(91440, "meters")
  28685. },
  28686. {
  28687. name: "Gigamacro",
  28688. height: math.unit(60960000, "meters")
  28689. },
  28690. {
  28691. name: "Teramacro",
  28692. height: math.unit(9144000000, "meters")
  28693. },
  28694. ]
  28695. ))
  28696. characterMakers.push(() => makeCharacter(
  28697. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28698. {
  28699. front: {
  28700. height: math.unit(7 + 1 / 12, "feet"),
  28701. weight: math.unit(250, "lb"),
  28702. name: "Front",
  28703. image: {
  28704. source: "./media/characters/joey/front.svg",
  28705. extra: 1791 / 1537,
  28706. bottom: 28 / 1816
  28707. }
  28708. },
  28709. },
  28710. [
  28711. {
  28712. name: "Micro",
  28713. height: math.unit(3, "inches")
  28714. },
  28715. {
  28716. name: "Normal",
  28717. height: math.unit(7 + 1 / 12, "feet"),
  28718. default: true
  28719. },
  28720. ]
  28721. ))
  28722. characterMakers.push(() => makeCharacter(
  28723. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28724. {
  28725. front: {
  28726. height: math.unit(165, "cm"),
  28727. weight: math.unit(140, "lb"),
  28728. name: "Front",
  28729. image: {
  28730. source: "./media/characters/sam-evans/front.svg",
  28731. extra: 3417 / 3230,
  28732. bottom: 41.3 / 3417
  28733. }
  28734. },
  28735. frontSixTails: {
  28736. height: math.unit(165, "cm"),
  28737. weight: math.unit(140, "lb"),
  28738. name: "Front-six-tails",
  28739. image: {
  28740. source: "./media/characters/sam-evans/front-six-tails.svg",
  28741. extra: 3417 / 3230,
  28742. bottom: 41.3 / 3417
  28743. }
  28744. },
  28745. back: {
  28746. height: math.unit(165, "cm"),
  28747. weight: math.unit(140, "lb"),
  28748. name: "Back",
  28749. image: {
  28750. source: "./media/characters/sam-evans/back.svg",
  28751. extra: 3227 / 3032,
  28752. bottom: 6.8 / 3234
  28753. }
  28754. },
  28755. face: {
  28756. height: math.unit(0.68, "feet"),
  28757. name: "Face",
  28758. image: {
  28759. source: "./media/characters/sam-evans/face.svg"
  28760. }
  28761. },
  28762. },
  28763. [
  28764. {
  28765. name: "Normal",
  28766. height: math.unit(165, "cm"),
  28767. default: true
  28768. },
  28769. {
  28770. name: "Macro",
  28771. height: math.unit(100, "meters")
  28772. },
  28773. {
  28774. name: "Macro+",
  28775. height: math.unit(800, "meters")
  28776. },
  28777. {
  28778. name: "Macro++",
  28779. height: math.unit(3, "km")
  28780. },
  28781. {
  28782. name: "Macro+++",
  28783. height: math.unit(30, "km")
  28784. },
  28785. ]
  28786. ))
  28787. characterMakers.push(() => makeCharacter(
  28788. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28789. {
  28790. front: {
  28791. height: math.unit(10, "feet"),
  28792. weight: math.unit(750, "lb"),
  28793. name: "Front",
  28794. image: {
  28795. source: "./media/characters/juliet-a/front.svg",
  28796. extra: 1766 / 1720,
  28797. bottom: 43 / 1809
  28798. }
  28799. },
  28800. back: {
  28801. height: math.unit(10, "feet"),
  28802. weight: math.unit(750, "lb"),
  28803. name: "Back",
  28804. image: {
  28805. source: "./media/characters/juliet-a/back.svg",
  28806. extra: 1781 / 1734,
  28807. bottom: 35 / 1810,
  28808. }
  28809. },
  28810. },
  28811. [
  28812. {
  28813. name: "Normal",
  28814. height: math.unit(10, "feet"),
  28815. default: true
  28816. },
  28817. {
  28818. name: "Dragon Form",
  28819. height: math.unit(250, "feet")
  28820. },
  28821. {
  28822. name: "Macro",
  28823. height: math.unit(1000, "feet")
  28824. },
  28825. {
  28826. name: "Megamacro",
  28827. height: math.unit(10000, "feet")
  28828. }
  28829. ]
  28830. ))
  28831. characterMakers.push(() => makeCharacter(
  28832. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28833. {
  28834. regular: {
  28835. height: math.unit(7 + 3 / 12, "feet"),
  28836. weight: math.unit(260, "lb"),
  28837. name: "Regular",
  28838. image: {
  28839. source: "./media/characters/wild/regular.svg",
  28840. extra: 97.45 / 92,
  28841. bottom: 6.8 / 104.3
  28842. }
  28843. },
  28844. biggums: {
  28845. height: math.unit(8 + 6 / 12, "feet"),
  28846. weight: math.unit(425, "lb"),
  28847. name: "Biggums",
  28848. image: {
  28849. source: "./media/characters/wild/biggums.svg",
  28850. extra: 97.45 / 92,
  28851. bottom: 7.5 / 132.34
  28852. }
  28853. },
  28854. mawRegular: {
  28855. height: math.unit(1.24, "feet"),
  28856. name: "Maw (Regular)",
  28857. image: {
  28858. source: "./media/characters/wild/maw.svg"
  28859. }
  28860. },
  28861. mawBiggums: {
  28862. height: math.unit(1.47, "feet"),
  28863. name: "Maw (Biggums)",
  28864. image: {
  28865. source: "./media/characters/wild/maw.svg"
  28866. }
  28867. },
  28868. },
  28869. [
  28870. {
  28871. name: "Normal",
  28872. height: math.unit(7 + 3 / 12, "feet"),
  28873. default: true
  28874. },
  28875. ]
  28876. ))
  28877. characterMakers.push(() => makeCharacter(
  28878. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28879. {
  28880. front: {
  28881. height: math.unit(2.5, "meters"),
  28882. weight: math.unit(200, "kg"),
  28883. name: "Front",
  28884. image: {
  28885. source: "./media/characters/vidar/front.svg",
  28886. extra: 2994 / 2795,
  28887. bottom: 56 / 3061
  28888. }
  28889. },
  28890. back: {
  28891. height: math.unit(2.5, "meters"),
  28892. weight: math.unit(200, "kg"),
  28893. name: "Back",
  28894. image: {
  28895. source: "./media/characters/vidar/back.svg",
  28896. extra: 3131 / 2928,
  28897. bottom: 13.5 / 3141.5
  28898. }
  28899. },
  28900. feral: {
  28901. height: math.unit(2.5, "meters"),
  28902. weight: math.unit(2000, "kg"),
  28903. name: "Feral",
  28904. image: {
  28905. source: "./media/characters/vidar/feral.svg",
  28906. extra: 2790 / 1765,
  28907. bottom: 6 / 2796
  28908. }
  28909. },
  28910. },
  28911. [
  28912. {
  28913. name: "Normal",
  28914. height: math.unit(2.5, "meters"),
  28915. default: true
  28916. },
  28917. {
  28918. name: "Macro",
  28919. height: math.unit(100, "meters")
  28920. },
  28921. ]
  28922. ))
  28923. characterMakers.push(() => makeCharacter(
  28924. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28925. {
  28926. front: {
  28927. height: math.unit(5 + 9 / 12, "feet"),
  28928. weight: math.unit(120, "lb"),
  28929. name: "Front",
  28930. image: {
  28931. source: "./media/characters/ash/front.svg",
  28932. extra: 2189 / 1961,
  28933. bottom: 5.2 / 2194
  28934. }
  28935. },
  28936. },
  28937. [
  28938. {
  28939. name: "Normal",
  28940. height: math.unit(5 + 9 / 12, "feet"),
  28941. default: true
  28942. },
  28943. ]
  28944. ))
  28945. characterMakers.push(() => makeCharacter(
  28946. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28947. {
  28948. front: {
  28949. height: math.unit(9, "feet"),
  28950. weight: math.unit(10000, "lb"),
  28951. name: "Front",
  28952. image: {
  28953. source: "./media/characters/gygabite/front.svg",
  28954. bottom: 31.7 / 537.8,
  28955. extra: 505 / 370
  28956. }
  28957. },
  28958. },
  28959. [
  28960. {
  28961. name: "Normal",
  28962. height: math.unit(9, "feet"),
  28963. default: true
  28964. },
  28965. ]
  28966. ))
  28967. characterMakers.push(() => makeCharacter(
  28968. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28969. {
  28970. front: {
  28971. height: math.unit(12, "feet"),
  28972. weight: math.unit(4000, "lb"),
  28973. name: "Front",
  28974. image: {
  28975. source: "./media/characters/p0tat0/front.svg",
  28976. extra: 1065 / 921,
  28977. bottom: 55.7 / 1121.25
  28978. }
  28979. },
  28980. },
  28981. [
  28982. {
  28983. name: "Normal",
  28984. height: math.unit(12, "feet"),
  28985. default: true
  28986. },
  28987. ]
  28988. ))
  28989. characterMakers.push(() => makeCharacter(
  28990. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28991. {
  28992. side: {
  28993. height: math.unit(6.5, "feet"),
  28994. weight: math.unit(800, "lb"),
  28995. name: "Side",
  28996. image: {
  28997. source: "./media/characters/dusk/side.svg",
  28998. extra: 615 / 373,
  28999. bottom: 53 / 664
  29000. }
  29001. },
  29002. sitting: {
  29003. height: math.unit(7, "feet"),
  29004. weight: math.unit(800, "lb"),
  29005. name: "Sitting",
  29006. image: {
  29007. source: "./media/characters/dusk/sitting.svg",
  29008. extra: 753 / 425,
  29009. bottom: 33 / 774
  29010. }
  29011. },
  29012. head: {
  29013. height: math.unit(6.1, "feet"),
  29014. name: "Head",
  29015. image: {
  29016. source: "./media/characters/dusk/head.svg"
  29017. }
  29018. },
  29019. },
  29020. [
  29021. {
  29022. name: "Normal",
  29023. height: math.unit(7, "feet"),
  29024. default: true
  29025. },
  29026. ]
  29027. ))
  29028. characterMakers.push(() => makeCharacter(
  29029. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29030. {
  29031. front: {
  29032. height: math.unit(15, "feet"),
  29033. weight: math.unit(7000, "lb"),
  29034. name: "Front",
  29035. image: {
  29036. source: "./media/characters/jay-direwolf/front.svg",
  29037. extra: 1810 / 1732,
  29038. bottom: 66 / 1892
  29039. }
  29040. },
  29041. },
  29042. [
  29043. {
  29044. name: "Normal",
  29045. height: math.unit(15, "feet"),
  29046. default: true
  29047. },
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29052. {
  29053. front: {
  29054. height: math.unit(4 + 9 / 12, "feet"),
  29055. weight: math.unit(130, "lb"),
  29056. name: "Front",
  29057. image: {
  29058. source: "./media/characters/anchovie/front.svg",
  29059. extra: 382 / 350,
  29060. bottom: 25 / 409
  29061. }
  29062. },
  29063. back: {
  29064. height: math.unit(4 + 9 / 12, "feet"),
  29065. weight: math.unit(130, "lb"),
  29066. name: "Back",
  29067. image: {
  29068. source: "./media/characters/anchovie/back.svg",
  29069. extra: 385 / 352,
  29070. bottom: 16.6 / 402
  29071. }
  29072. },
  29073. frontDressed: {
  29074. height: math.unit(4 + 9 / 12, "feet"),
  29075. weight: math.unit(130, "lb"),
  29076. name: "Front (Dressed)",
  29077. image: {
  29078. source: "./media/characters/anchovie/front-dressed.svg",
  29079. extra: 382 / 350,
  29080. bottom: 25 / 409
  29081. }
  29082. },
  29083. backDressed: {
  29084. height: math.unit(4 + 9 / 12, "feet"),
  29085. weight: math.unit(130, "lb"),
  29086. name: "Back (Dressed)",
  29087. image: {
  29088. source: "./media/characters/anchovie/back-dressed.svg",
  29089. extra: 385 / 352,
  29090. bottom: 16.6 / 402
  29091. }
  29092. },
  29093. },
  29094. [
  29095. {
  29096. name: "Micro",
  29097. height: math.unit(6.4, "inches")
  29098. },
  29099. {
  29100. name: "Normal",
  29101. height: math.unit(4 + 9 / 12, "feet"),
  29102. default: true
  29103. },
  29104. ]
  29105. ))
  29106. characterMakers.push(() => makeCharacter(
  29107. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29108. {
  29109. front: {
  29110. height: math.unit(2, "meters"),
  29111. weight: math.unit(180, "lb"),
  29112. name: "Front",
  29113. image: {
  29114. source: "./media/characters/acidrenamon/front.svg",
  29115. extra: 987 / 890,
  29116. bottom: 22.8 / 1009
  29117. }
  29118. },
  29119. back: {
  29120. height: math.unit(2, "meters"),
  29121. weight: math.unit(180, "lb"),
  29122. name: "Back",
  29123. image: {
  29124. source: "./media/characters/acidrenamon/back.svg",
  29125. extra: 983 / 891,
  29126. bottom: 8.4 / 992
  29127. }
  29128. },
  29129. head: {
  29130. height: math.unit(1.92, "feet"),
  29131. name: "Head",
  29132. image: {
  29133. source: "./media/characters/acidrenamon/head.svg"
  29134. }
  29135. },
  29136. rump: {
  29137. height: math.unit(1.72, "feet"),
  29138. name: "Rump",
  29139. image: {
  29140. source: "./media/characters/acidrenamon/rump.svg"
  29141. }
  29142. },
  29143. tail: {
  29144. height: math.unit(4.2, "feet"),
  29145. name: "Tail",
  29146. image: {
  29147. source: "./media/characters/acidrenamon/tail.svg"
  29148. }
  29149. },
  29150. },
  29151. [
  29152. {
  29153. name: "Normal",
  29154. height: math.unit(2, "meters"),
  29155. default: true
  29156. },
  29157. {
  29158. name: "Minimacro",
  29159. height: math.unit(7, "meters")
  29160. },
  29161. {
  29162. name: "Macro",
  29163. height: math.unit(200, "meters")
  29164. },
  29165. {
  29166. name: "Gigamacro",
  29167. height: math.unit(0.2, "earths")
  29168. },
  29169. ]
  29170. ))
  29171. characterMakers.push(() => makeCharacter(
  29172. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29173. {
  29174. front: {
  29175. height: math.unit(152, "feet"),
  29176. name: "Front",
  29177. image: {
  29178. source: "./media/characters/kenzie-lee/front.svg",
  29179. extra: 1869/1774,
  29180. bottom: 128/1997
  29181. }
  29182. },
  29183. side: {
  29184. height: math.unit(86, "feet"),
  29185. name: "Side",
  29186. image: {
  29187. source: "./media/characters/kenzie-lee/side.svg",
  29188. extra: 930/815,
  29189. bottom: 177/1107
  29190. }
  29191. },
  29192. paw: {
  29193. height: math.unit(15, "feet"),
  29194. name: "Paw",
  29195. image: {
  29196. source: "./media/characters/kenzie-lee/paw.svg"
  29197. }
  29198. },
  29199. },
  29200. [
  29201. {
  29202. name: "Kenzie Flea",
  29203. height: math.unit(2, "mm"),
  29204. default: true
  29205. },
  29206. {
  29207. name: "Micro",
  29208. height: math.unit(2, "inches")
  29209. },
  29210. {
  29211. name: "Normal",
  29212. height: math.unit(152, "feet")
  29213. },
  29214. {
  29215. name: "Megamacro",
  29216. height: math.unit(7, "miles")
  29217. },
  29218. {
  29219. name: "Gigamacro",
  29220. height: math.unit(8000, "miles")
  29221. },
  29222. ]
  29223. ))
  29224. characterMakers.push(() => makeCharacter(
  29225. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29226. {
  29227. front: {
  29228. height: math.unit(6, "feet"),
  29229. name: "Front",
  29230. image: {
  29231. source: "./media/characters/withers/front.svg",
  29232. extra: 1935/1760,
  29233. bottom: 72/2007
  29234. }
  29235. },
  29236. back: {
  29237. height: math.unit(6, "feet"),
  29238. name: "Back",
  29239. image: {
  29240. source: "./media/characters/withers/back.svg",
  29241. extra: 1944/1792,
  29242. bottom: 12/1956
  29243. }
  29244. },
  29245. dressed: {
  29246. height: math.unit(6, "feet"),
  29247. name: "Dressed",
  29248. image: {
  29249. source: "./media/characters/withers/dressed.svg",
  29250. extra: 1937/1765,
  29251. bottom: 73/2010
  29252. }
  29253. },
  29254. phase1: {
  29255. height: math.unit(1.1, "feet"),
  29256. name: "Phase 1",
  29257. image: {
  29258. source: "./media/characters/withers/phase-1.svg",
  29259. extra: 1885/1232,
  29260. bottom: 0/1885
  29261. }
  29262. },
  29263. phase2: {
  29264. height: math.unit(1.05, "feet"),
  29265. name: "Phase 2",
  29266. image: {
  29267. source: "./media/characters/withers/phase-2.svg",
  29268. extra: 1792/1090,
  29269. bottom: 0/1792
  29270. }
  29271. },
  29272. partyWipe: {
  29273. height: math.unit(1.1, "feet"),
  29274. name: "Party Wipe",
  29275. image: {
  29276. source: "./media/characters/withers/party-wipe.svg",
  29277. extra: 1864/1207,
  29278. bottom: 0/1864
  29279. }
  29280. },
  29281. },
  29282. [
  29283. {
  29284. name: "Macro",
  29285. height: math.unit(167, "feet"),
  29286. default: true
  29287. },
  29288. {
  29289. name: "Megamacro",
  29290. height: math.unit(15, "miles")
  29291. }
  29292. ]
  29293. ))
  29294. characterMakers.push(() => makeCharacter(
  29295. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29296. {
  29297. front: {
  29298. height: math.unit(6 + 7 / 12, "feet"),
  29299. weight: math.unit(250, "lb"),
  29300. name: "Front",
  29301. image: {
  29302. source: "./media/characters/nemoskii/front.svg",
  29303. extra: 2270 / 1734,
  29304. bottom: 86 / 2354
  29305. }
  29306. },
  29307. back: {
  29308. height: math.unit(6 + 7 / 12, "feet"),
  29309. weight: math.unit(250, "lb"),
  29310. name: "Back",
  29311. image: {
  29312. source: "./media/characters/nemoskii/back.svg",
  29313. extra: 1845 / 1788,
  29314. bottom: 10.5 / 1852
  29315. }
  29316. },
  29317. head: {
  29318. height: math.unit(1.31, "feet"),
  29319. name: "Head",
  29320. image: {
  29321. source: "./media/characters/nemoskii/head.svg"
  29322. }
  29323. },
  29324. },
  29325. [
  29326. {
  29327. name: "Micro",
  29328. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29329. },
  29330. {
  29331. name: "Normal",
  29332. height: math.unit(6 + 7 / 12, "feet"),
  29333. default: true
  29334. },
  29335. {
  29336. name: "Macro",
  29337. height: math.unit((6 + 7 / 12) * 150, "feet")
  29338. },
  29339. {
  29340. name: "Macro+",
  29341. height: math.unit((6 + 7 / 12) * 500, "feet")
  29342. },
  29343. {
  29344. name: "Megamacro",
  29345. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29346. },
  29347. ]
  29348. ))
  29349. characterMakers.push(() => makeCharacter(
  29350. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29351. {
  29352. front: {
  29353. height: math.unit(1, "mile"),
  29354. weight: math.unit(265261.9, "lb"),
  29355. name: "Front",
  29356. image: {
  29357. source: "./media/characters/shui/front.svg",
  29358. extra: 1633 / 1564,
  29359. bottom: 91.5 / 1726
  29360. }
  29361. },
  29362. },
  29363. [
  29364. {
  29365. name: "Macro",
  29366. height: math.unit(1, "mile"),
  29367. default: true
  29368. },
  29369. ]
  29370. ))
  29371. characterMakers.push(() => makeCharacter(
  29372. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29373. {
  29374. front: {
  29375. height: math.unit(12 + 6 / 12, "feet"),
  29376. weight: math.unit(1342, "lb"),
  29377. name: "Front",
  29378. image: {
  29379. source: "./media/characters/arokh-takakura/front.svg",
  29380. extra: 1089 / 1043,
  29381. bottom: 77.4 / 1176.7
  29382. }
  29383. },
  29384. back: {
  29385. height: math.unit(12 + 6 / 12, "feet"),
  29386. weight: math.unit(1342, "lb"),
  29387. name: "Back",
  29388. image: {
  29389. source: "./media/characters/arokh-takakura/back.svg",
  29390. extra: 1046 / 1019,
  29391. bottom: 102 / 1150
  29392. }
  29393. },
  29394. },
  29395. [
  29396. {
  29397. name: "Big",
  29398. height: math.unit(12 + 6 / 12, "feet"),
  29399. default: true
  29400. },
  29401. ]
  29402. ))
  29403. characterMakers.push(() => makeCharacter(
  29404. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29405. {
  29406. front: {
  29407. height: math.unit(5 + 6 / 12, "feet"),
  29408. weight: math.unit(150, "lb"),
  29409. name: "Front",
  29410. image: {
  29411. source: "./media/characters/theo/front.svg",
  29412. extra: 1184 / 1131,
  29413. bottom: 7.4 / 1191
  29414. }
  29415. },
  29416. },
  29417. [
  29418. {
  29419. name: "Micro",
  29420. height: math.unit(5, "inches")
  29421. },
  29422. {
  29423. name: "Normal",
  29424. height: math.unit(5 + 6 / 12, "feet"),
  29425. default: true
  29426. },
  29427. ]
  29428. ))
  29429. characterMakers.push(() => makeCharacter(
  29430. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29431. {
  29432. front: {
  29433. height: math.unit(5 + 9 / 12, "feet"),
  29434. weight: math.unit(130, "lb"),
  29435. name: "Front",
  29436. image: {
  29437. source: "./media/characters/cecelia-swift/front.svg",
  29438. extra: 502 / 484,
  29439. bottom: 23 / 523
  29440. }
  29441. },
  29442. back: {
  29443. height: math.unit(5 + 9 / 12, "feet"),
  29444. weight: math.unit(130, "lb"),
  29445. name: "Back",
  29446. image: {
  29447. source: "./media/characters/cecelia-swift/back.svg",
  29448. extra: 499 / 485,
  29449. bottom: 12 / 511
  29450. }
  29451. },
  29452. head: {
  29453. height: math.unit(0.90, "feet"),
  29454. name: "Head",
  29455. image: {
  29456. source: "./media/characters/cecelia-swift/head.svg"
  29457. }
  29458. },
  29459. rump: {
  29460. height: math.unit(1.75, "feet"),
  29461. name: "Rump",
  29462. image: {
  29463. source: "./media/characters/cecelia-swift/rump.svg"
  29464. }
  29465. },
  29466. },
  29467. [
  29468. {
  29469. name: "Normal",
  29470. height: math.unit(5 + 9 / 12, "feet"),
  29471. default: true
  29472. },
  29473. {
  29474. name: "Big",
  29475. height: math.unit(50, "feet")
  29476. },
  29477. {
  29478. name: "Macro",
  29479. height: math.unit(100, "feet")
  29480. },
  29481. {
  29482. name: "Macro+",
  29483. height: math.unit(500, "feet")
  29484. },
  29485. {
  29486. name: "Macro++",
  29487. height: math.unit(1000, "feet")
  29488. },
  29489. ]
  29490. ))
  29491. characterMakers.push(() => makeCharacter(
  29492. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29493. {
  29494. front: {
  29495. height: math.unit(6, "feet"),
  29496. weight: math.unit(150, "lb"),
  29497. name: "Front",
  29498. image: {
  29499. source: "./media/characters/kaunan/front.svg",
  29500. extra: 2890 / 2523,
  29501. bottom: 49 / 2939
  29502. }
  29503. },
  29504. },
  29505. [
  29506. {
  29507. name: "Macro",
  29508. height: math.unit(150, "feet"),
  29509. default: true
  29510. },
  29511. ]
  29512. ))
  29513. characterMakers.push(() => makeCharacter(
  29514. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29515. {
  29516. dressed: {
  29517. height: math.unit(175, "cm"),
  29518. weight: math.unit(60, "kg"),
  29519. name: "Dressed",
  29520. image: {
  29521. source: "./media/characters/fei/dressed.svg",
  29522. extra: 1402/1278,
  29523. bottom: 27/1429
  29524. }
  29525. },
  29526. nude: {
  29527. height: math.unit(175, "cm"),
  29528. weight: math.unit(60, "kg"),
  29529. name: "Nude",
  29530. image: {
  29531. source: "./media/characters/fei/nude.svg",
  29532. extra: 1402/1278,
  29533. bottom: 27/1429
  29534. }
  29535. },
  29536. heels: {
  29537. height: math.unit(0.466, "feet"),
  29538. name: "Heels",
  29539. image: {
  29540. source: "./media/characters/fei/heels.svg",
  29541. extra: 156/152,
  29542. bottom: 28/184
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Mortal",
  29549. height: math.unit(175, "cm")
  29550. },
  29551. {
  29552. name: "Normal",
  29553. height: math.unit(3500, "m")
  29554. },
  29555. {
  29556. name: "Stroll",
  29557. height: math.unit(18.4, "km"),
  29558. default: true
  29559. },
  29560. {
  29561. name: "Showoff",
  29562. height: math.unit(175, "km")
  29563. },
  29564. ]
  29565. ))
  29566. characterMakers.push(() => makeCharacter(
  29567. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29568. {
  29569. front: {
  29570. height: math.unit(7, "feet"),
  29571. weight: math.unit(1000, "kg"),
  29572. name: "Front",
  29573. image: {
  29574. source: "./media/characters/edrax/front.svg",
  29575. extra: 2838 / 2550,
  29576. bottom: 130 / 2968
  29577. }
  29578. },
  29579. },
  29580. [
  29581. {
  29582. name: "Small",
  29583. height: math.unit(7, "feet")
  29584. },
  29585. {
  29586. name: "Normal",
  29587. height: math.unit(1500, "meters")
  29588. },
  29589. {
  29590. name: "Mega",
  29591. height: math.unit(12000000, "km"),
  29592. default: true
  29593. },
  29594. {
  29595. name: "Megamacro",
  29596. height: math.unit(10600000, "lightyears")
  29597. },
  29598. {
  29599. name: "Hypermacro",
  29600. height: math.unit(256, "yottameters")
  29601. },
  29602. ]
  29603. ))
  29604. characterMakers.push(() => makeCharacter(
  29605. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29606. {
  29607. front: {
  29608. height: math.unit(10, "feet"),
  29609. weight: math.unit(750, "lb"),
  29610. name: "Front",
  29611. image: {
  29612. source: "./media/characters/clove/front.svg",
  29613. extra: 1918/1751,
  29614. bottom: 52/1970
  29615. }
  29616. },
  29617. back: {
  29618. height: math.unit(10, "feet"),
  29619. weight: math.unit(750, "lb"),
  29620. name: "Back",
  29621. image: {
  29622. source: "./media/characters/clove/back.svg",
  29623. extra: 1912/1747,
  29624. bottom: 50/1962
  29625. }
  29626. },
  29627. },
  29628. [
  29629. {
  29630. name: "Normal",
  29631. height: math.unit(10, "feet"),
  29632. default: true
  29633. },
  29634. ]
  29635. ))
  29636. characterMakers.push(() => makeCharacter(
  29637. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29638. {
  29639. front: {
  29640. height: math.unit(4, "feet"),
  29641. weight: math.unit(50, "lb"),
  29642. name: "Front",
  29643. image: {
  29644. source: "./media/characters/alex-rabbit/front.svg",
  29645. extra: 507 / 458,
  29646. bottom: 18.5 / 527
  29647. }
  29648. },
  29649. back: {
  29650. height: math.unit(4, "feet"),
  29651. weight: math.unit(50, "lb"),
  29652. name: "Back",
  29653. image: {
  29654. source: "./media/characters/alex-rabbit/back.svg",
  29655. extra: 502 / 460,
  29656. bottom: 18.9 / 521
  29657. }
  29658. },
  29659. },
  29660. [
  29661. {
  29662. name: "Normal",
  29663. height: math.unit(4, "feet"),
  29664. default: true
  29665. },
  29666. ]
  29667. ))
  29668. characterMakers.push(() => makeCharacter(
  29669. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29670. {
  29671. front: {
  29672. height: math.unit(1 + 3 / 12, "feet"),
  29673. weight: math.unit(80, "lb"),
  29674. name: "Front",
  29675. image: {
  29676. source: "./media/characters/zander-rose/front.svg",
  29677. extra: 916 / 797,
  29678. bottom: 17 / 933
  29679. }
  29680. },
  29681. back: {
  29682. height: math.unit(1 + 3 / 12, "feet"),
  29683. weight: math.unit(80, "lb"),
  29684. name: "Back",
  29685. image: {
  29686. source: "./media/characters/zander-rose/back.svg",
  29687. extra: 903 / 779,
  29688. bottom: 31 / 934
  29689. }
  29690. },
  29691. },
  29692. [
  29693. {
  29694. name: "Normal",
  29695. height: math.unit(1 + 3 / 12, "feet"),
  29696. default: true
  29697. },
  29698. ]
  29699. ))
  29700. characterMakers.push(() => makeCharacter(
  29701. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29702. {
  29703. anthro: {
  29704. height: math.unit(6, "feet"),
  29705. weight: math.unit(150, "lb"),
  29706. name: "Anthro",
  29707. image: {
  29708. source: "./media/characters/razz/anthro.svg",
  29709. extra: 1437 / 1343,
  29710. bottom: 48 / 1485
  29711. }
  29712. },
  29713. feral: {
  29714. height: math.unit(6, "feet"),
  29715. weight: math.unit(150, "lb"),
  29716. name: "Feral",
  29717. image: {
  29718. source: "./media/characters/razz/feral.svg",
  29719. extra: 2569 / 1385,
  29720. bottom: 95 / 2664
  29721. }
  29722. },
  29723. },
  29724. [
  29725. {
  29726. name: "Normal",
  29727. height: math.unit(6, "feet"),
  29728. default: true
  29729. },
  29730. ]
  29731. ))
  29732. characterMakers.push(() => makeCharacter(
  29733. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29734. {
  29735. front: {
  29736. height: math.unit(9 + 4 / 12, "feet"),
  29737. weight: math.unit(500, "lb"),
  29738. name: "Front",
  29739. image: {
  29740. source: "./media/characters/morrigan/front.svg",
  29741. extra: 2707 / 2579,
  29742. bottom: 156 / 2863
  29743. }
  29744. },
  29745. },
  29746. [
  29747. {
  29748. name: "Normal",
  29749. height: math.unit(9 + 4 / 12, "feet"),
  29750. default: true
  29751. },
  29752. ]
  29753. ))
  29754. characterMakers.push(() => makeCharacter(
  29755. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29756. {
  29757. front: {
  29758. height: math.unit(5, "stories"),
  29759. weight: math.unit(4000, "lb"),
  29760. name: "Front",
  29761. image: {
  29762. source: "./media/characters/jenene/front.svg",
  29763. extra: 1780 / 1710,
  29764. bottom: 57 / 1837
  29765. }
  29766. },
  29767. },
  29768. [
  29769. {
  29770. name: "Normal",
  29771. height: math.unit(5, "stories"),
  29772. default: true
  29773. },
  29774. ]
  29775. ))
  29776. characterMakers.push(() => makeCharacter(
  29777. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29778. {
  29779. taurSfw: {
  29780. height: math.unit(10, "meters"),
  29781. weight: math.unit(17500, "kg"),
  29782. name: "Taur",
  29783. image: {
  29784. source: "./media/characters/faey/taur-sfw.svg",
  29785. extra: 1200 / 968,
  29786. bottom: 41 / 1241
  29787. }
  29788. },
  29789. chestmaw: {
  29790. height: math.unit(2.01, "meters"),
  29791. name: "Chestmaw",
  29792. image: {
  29793. source: "./media/characters/faey/chestmaw.svg"
  29794. }
  29795. },
  29796. foot: {
  29797. height: math.unit(2.43, "meters"),
  29798. name: "Foot",
  29799. image: {
  29800. source: "./media/characters/faey/foot.svg"
  29801. }
  29802. },
  29803. jaws: {
  29804. height: math.unit(1.66, "meters"),
  29805. name: "Jaws",
  29806. image: {
  29807. source: "./media/characters/faey/jaws.svg"
  29808. }
  29809. },
  29810. tongues: {
  29811. height: math.unit(2.01, "meters"),
  29812. name: "Tongues",
  29813. image: {
  29814. source: "./media/characters/faey/tongues.svg"
  29815. }
  29816. },
  29817. },
  29818. [
  29819. {
  29820. name: "Small",
  29821. height: math.unit(10, "meters"),
  29822. default: true
  29823. },
  29824. {
  29825. name: "Big",
  29826. height: math.unit(500000, "km")
  29827. },
  29828. ]
  29829. ))
  29830. characterMakers.push(() => makeCharacter(
  29831. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29832. {
  29833. front: {
  29834. height: math.unit(7, "feet"),
  29835. weight: math.unit(275, "lb"),
  29836. name: "Front",
  29837. image: {
  29838. source: "./media/characters/roku/front.svg",
  29839. extra: 903 / 878,
  29840. bottom: 37 / 940
  29841. }
  29842. },
  29843. },
  29844. [
  29845. {
  29846. name: "Normal",
  29847. height: math.unit(7, "feet"),
  29848. default: true
  29849. },
  29850. {
  29851. name: "Macro",
  29852. height: math.unit(500, "feet")
  29853. },
  29854. {
  29855. name: "Megamacro",
  29856. height: math.unit(200, "miles")
  29857. },
  29858. ]
  29859. ))
  29860. characterMakers.push(() => makeCharacter(
  29861. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29862. {
  29863. front: {
  29864. height: math.unit(6 + 2 / 12, "feet"),
  29865. weight: math.unit(150, "lb"),
  29866. name: "Front",
  29867. image: {
  29868. source: "./media/characters/lira/front.svg",
  29869. extra: 1727 / 1605,
  29870. bottom: 26 / 1753
  29871. }
  29872. },
  29873. back: {
  29874. height: math.unit(6 + 2 / 12, "feet"),
  29875. weight: math.unit(150, "lb"),
  29876. name: "Back",
  29877. image: {
  29878. source: "./media/characters/lira/back.svg",
  29879. extra: 1713/1621,
  29880. bottom: 20/1733
  29881. }
  29882. },
  29883. hand: {
  29884. height: math.unit(0.75, "feet"),
  29885. name: "Hand",
  29886. image: {
  29887. source: "./media/characters/lira/hand.svg"
  29888. }
  29889. },
  29890. maw: {
  29891. height: math.unit(0.65, "feet"),
  29892. name: "Maw",
  29893. image: {
  29894. source: "./media/characters/lira/maw.svg"
  29895. }
  29896. },
  29897. pawDigi: {
  29898. height: math.unit(1.6, "feet"),
  29899. name: "Paw Digi",
  29900. image: {
  29901. source: "./media/characters/lira/paw-digi.svg"
  29902. }
  29903. },
  29904. pawPlanti: {
  29905. height: math.unit(1.4, "feet"),
  29906. name: "Paw Planti",
  29907. image: {
  29908. source: "./media/characters/lira/paw-planti.svg"
  29909. }
  29910. },
  29911. },
  29912. [
  29913. {
  29914. name: "Normal",
  29915. height: math.unit(6 + 2 / 12, "feet"),
  29916. default: true
  29917. },
  29918. {
  29919. name: "Macro",
  29920. height: math.unit(100, "feet")
  29921. },
  29922. {
  29923. name: "Macro²",
  29924. height: math.unit(1600, "feet")
  29925. },
  29926. {
  29927. name: "Planetary",
  29928. height: math.unit(20, "earths")
  29929. },
  29930. ]
  29931. ))
  29932. characterMakers.push(() => makeCharacter(
  29933. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29934. {
  29935. front: {
  29936. height: math.unit(6, "feet"),
  29937. weight: math.unit(150, "lb"),
  29938. name: "Front",
  29939. image: {
  29940. source: "./media/characters/hadjet/front.svg",
  29941. extra: 1480 / 1346,
  29942. bottom: 26 / 1506
  29943. }
  29944. },
  29945. frontNsfw: {
  29946. height: math.unit(6, "feet"),
  29947. weight: math.unit(150, "lb"),
  29948. name: "Front (NSFW)",
  29949. image: {
  29950. source: "./media/characters/hadjet/front-nsfw.svg",
  29951. extra: 1440 / 1358,
  29952. bottom: 52 / 1492
  29953. }
  29954. },
  29955. },
  29956. [
  29957. {
  29958. name: "Macro",
  29959. height: math.unit(10, "stories"),
  29960. default: true
  29961. },
  29962. {
  29963. name: "Megamacro",
  29964. height: math.unit(1.5, "miles")
  29965. },
  29966. {
  29967. name: "Megamacro+",
  29968. height: math.unit(5, "miles")
  29969. },
  29970. ]
  29971. ))
  29972. characterMakers.push(() => makeCharacter(
  29973. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29974. {
  29975. side: {
  29976. height: math.unit(106, "feet"),
  29977. weight: math.unit(500, "tonnes"),
  29978. name: "Side",
  29979. image: {
  29980. source: "./media/characters/kodran/side.svg",
  29981. extra: 553 / 480,
  29982. bottom: 33 / 586
  29983. }
  29984. },
  29985. front: {
  29986. height: math.unit(132, "feet"),
  29987. weight: math.unit(500, "tonnes"),
  29988. name: "Front",
  29989. image: {
  29990. source: "./media/characters/kodran/front.svg",
  29991. extra: 667 / 643,
  29992. bottom: 42 / 709
  29993. }
  29994. },
  29995. flying: {
  29996. height: math.unit(350, "feet"),
  29997. weight: math.unit(500, "tonnes"),
  29998. name: "Flying",
  29999. image: {
  30000. source: "./media/characters/kodran/flying.svg"
  30001. }
  30002. },
  30003. foot: {
  30004. height: math.unit(33, "feet"),
  30005. name: "Foot",
  30006. image: {
  30007. source: "./media/characters/kodran/foot.svg"
  30008. }
  30009. },
  30010. footFront: {
  30011. height: math.unit(19, "feet"),
  30012. name: "Foot (Front)",
  30013. image: {
  30014. source: "./media/characters/kodran/foot-front.svg",
  30015. extra: 261 / 261,
  30016. bottom: 91 / 352
  30017. }
  30018. },
  30019. headFront: {
  30020. height: math.unit(53, "feet"),
  30021. name: "Head (Front)",
  30022. image: {
  30023. source: "./media/characters/kodran/head-front.svg"
  30024. }
  30025. },
  30026. headSide: {
  30027. height: math.unit(65, "feet"),
  30028. name: "Head (Side)",
  30029. image: {
  30030. source: "./media/characters/kodran/head-side.svg"
  30031. }
  30032. },
  30033. throat: {
  30034. height: math.unit(79, "feet"),
  30035. name: "Throat",
  30036. image: {
  30037. source: "./media/characters/kodran/throat.svg"
  30038. }
  30039. },
  30040. },
  30041. [
  30042. {
  30043. name: "Large",
  30044. height: math.unit(106, "feet"),
  30045. default: true
  30046. },
  30047. ]
  30048. ))
  30049. characterMakers.push(() => makeCharacter(
  30050. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30051. {
  30052. side: {
  30053. height: math.unit(11, "feet"),
  30054. weight: math.unit(150, "lb"),
  30055. name: "Side",
  30056. image: {
  30057. source: "./media/characters/pyxaron/side.svg",
  30058. extra: 305 / 195,
  30059. bottom: 17 / 322
  30060. }
  30061. },
  30062. },
  30063. [
  30064. {
  30065. name: "Normal",
  30066. height: math.unit(11, "feet"),
  30067. default: true
  30068. },
  30069. ]
  30070. ))
  30071. characterMakers.push(() => makeCharacter(
  30072. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30073. {
  30074. front: {
  30075. height: math.unit(6, "feet"),
  30076. weight: math.unit(150, "lb"),
  30077. name: "Front",
  30078. image: {
  30079. source: "./media/characters/meep/front.svg",
  30080. extra: 88 / 80,
  30081. bottom: 6 / 94
  30082. }
  30083. },
  30084. },
  30085. [
  30086. {
  30087. name: "Fun Sized",
  30088. height: math.unit(2, "inches"),
  30089. default: true
  30090. },
  30091. {
  30092. name: "Friend Sized",
  30093. height: math.unit(8, "inches")
  30094. },
  30095. ]
  30096. ))
  30097. characterMakers.push(() => makeCharacter(
  30098. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30099. {
  30100. front: {
  30101. height: math.unit(15, "feet"),
  30102. weight: math.unit(2500, "lb"),
  30103. name: "Front",
  30104. image: {
  30105. source: "./media/characters/holly-rabbit/front.svg",
  30106. extra: 1433 / 1233,
  30107. bottom: 125 / 1558
  30108. }
  30109. },
  30110. dick: {
  30111. height: math.unit(4.6, "feet"),
  30112. name: "Dick",
  30113. image: {
  30114. source: "./media/characters/holly-rabbit/dick.svg"
  30115. }
  30116. },
  30117. },
  30118. [
  30119. {
  30120. name: "Normal",
  30121. height: math.unit(15, "feet"),
  30122. default: true
  30123. },
  30124. {
  30125. name: "Macro",
  30126. height: math.unit(250, "feet")
  30127. },
  30128. {
  30129. name: "Macro+",
  30130. height: math.unit(2500, "feet")
  30131. },
  30132. ]
  30133. ))
  30134. characterMakers.push(() => makeCharacter(
  30135. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30136. {
  30137. front: {
  30138. height: math.unit(3.02, "meters"),
  30139. weight: math.unit(500, "kg"),
  30140. name: "Front",
  30141. image: {
  30142. source: "./media/characters/drena/front.svg",
  30143. extra: 282 / 243,
  30144. bottom: 8 / 290
  30145. }
  30146. },
  30147. side: {
  30148. height: math.unit(3.02, "meters"),
  30149. weight: math.unit(500, "kg"),
  30150. name: "Side",
  30151. image: {
  30152. source: "./media/characters/drena/side.svg",
  30153. extra: 280 / 245,
  30154. bottom: 10 / 290
  30155. }
  30156. },
  30157. back: {
  30158. height: math.unit(3.02, "meters"),
  30159. weight: math.unit(500, "kg"),
  30160. name: "Back",
  30161. image: {
  30162. source: "./media/characters/drena/back.svg",
  30163. extra: 278 / 243,
  30164. bottom: 2 / 280
  30165. }
  30166. },
  30167. foot: {
  30168. height: math.unit(0.75, "meters"),
  30169. name: "Foot",
  30170. image: {
  30171. source: "./media/characters/drena/foot.svg"
  30172. }
  30173. },
  30174. maw: {
  30175. height: math.unit(0.82, "meters"),
  30176. name: "Maw",
  30177. image: {
  30178. source: "./media/characters/drena/maw.svg"
  30179. }
  30180. },
  30181. eating: {
  30182. height: math.unit(0.75, "meters"),
  30183. name: "Eating",
  30184. image: {
  30185. source: "./media/characters/drena/eating.svg"
  30186. }
  30187. },
  30188. rump: {
  30189. height: math.unit(0.93, "meters"),
  30190. name: "Rump",
  30191. image: {
  30192. source: "./media/characters/drena/rump.svg"
  30193. }
  30194. },
  30195. },
  30196. [
  30197. {
  30198. name: "Normal",
  30199. height: math.unit(3.02, "meters"),
  30200. default: true
  30201. },
  30202. ]
  30203. ))
  30204. characterMakers.push(() => makeCharacter(
  30205. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30206. {
  30207. front: {
  30208. height: math.unit(6 + 4 / 12, "feet"),
  30209. weight: math.unit(250, "lb"),
  30210. name: "Front",
  30211. image: {
  30212. source: "./media/characters/remmyzilla/front.svg",
  30213. extra: 4033 / 3588,
  30214. bottom: 123 / 4156
  30215. }
  30216. },
  30217. back: {
  30218. height: math.unit(6 + 4 / 12, "feet"),
  30219. weight: math.unit(250, "lb"),
  30220. name: "Back",
  30221. image: {
  30222. source: "./media/characters/remmyzilla/back.svg",
  30223. extra: 2687 / 2555,
  30224. bottom: 48 / 2735
  30225. }
  30226. },
  30227. paw: {
  30228. height: math.unit(1.73, "feet"),
  30229. name: "Paw",
  30230. image: {
  30231. source: "./media/characters/remmyzilla/paw.svg"
  30232. },
  30233. extraAttributes: {
  30234. "toeSize": {
  30235. name: "Toe Size",
  30236. power: 2,
  30237. type: "area",
  30238. base: math.unit(0.0035, "m^2")
  30239. },
  30240. "padSize": {
  30241. name: "Pad Size",
  30242. power: 2,
  30243. type: "area",
  30244. base: math.unit(0.015, "m^2")
  30245. },
  30246. "pawsize": {
  30247. name: "Paw Size",
  30248. power: 2,
  30249. type: "area",
  30250. base: math.unit(0.072, "m^2")
  30251. },
  30252. }
  30253. },
  30254. maw: {
  30255. height: math.unit(1.73, "feet"),
  30256. name: "Maw",
  30257. image: {
  30258. source: "./media/characters/remmyzilla/maw.svg"
  30259. }
  30260. },
  30261. },
  30262. [
  30263. {
  30264. name: "Normal",
  30265. height: math.unit(6 + 4 / 12, "feet")
  30266. },
  30267. {
  30268. name: "Minimacro",
  30269. height: math.unit(12 + 8 / 12, "feet")
  30270. },
  30271. {
  30272. name: "Normal",
  30273. height: math.unit(640, "feet"),
  30274. default: true
  30275. },
  30276. {
  30277. name: "Megamacro",
  30278. height: math.unit(6400, "feet")
  30279. },
  30280. {
  30281. name: "Gigamacro",
  30282. height: math.unit(64000, "miles")
  30283. },
  30284. ]
  30285. ))
  30286. characterMakers.push(() => makeCharacter(
  30287. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30288. {
  30289. front: {
  30290. height: math.unit(2.5, "meters"),
  30291. weight: math.unit(300, "lb"),
  30292. name: "Front",
  30293. image: {
  30294. source: "./media/characters/lawrence/front.svg",
  30295. extra: 357 / 335,
  30296. bottom: 30 / 387
  30297. }
  30298. },
  30299. back: {
  30300. height: math.unit(2.5, "meters"),
  30301. weight: math.unit(300, "lb"),
  30302. name: "Back",
  30303. image: {
  30304. source: "./media/characters/lawrence/back.svg",
  30305. extra: 357 / 338,
  30306. bottom: 16 / 373
  30307. }
  30308. },
  30309. head: {
  30310. height: math.unit(0.9, "meter"),
  30311. name: "Head",
  30312. image: {
  30313. source: "./media/characters/lawrence/head.svg"
  30314. }
  30315. },
  30316. maw: {
  30317. height: math.unit(0.7, "meter"),
  30318. name: "Maw",
  30319. image: {
  30320. source: "./media/characters/lawrence/maw.svg"
  30321. }
  30322. },
  30323. footBottom: {
  30324. height: math.unit(0.5, "meter"),
  30325. name: "Foot (Bottom)",
  30326. image: {
  30327. source: "./media/characters/lawrence/foot-bottom.svg"
  30328. }
  30329. },
  30330. footTop: {
  30331. height: math.unit(0.5, "meter"),
  30332. name: "Foot (Top)",
  30333. image: {
  30334. source: "./media/characters/lawrence/foot-top.svg"
  30335. }
  30336. },
  30337. },
  30338. [
  30339. {
  30340. name: "Normal",
  30341. height: math.unit(2.5, "meters"),
  30342. default: true
  30343. },
  30344. {
  30345. name: "Macro",
  30346. height: math.unit(95, "meters")
  30347. },
  30348. {
  30349. name: "Megamacro",
  30350. height: math.unit(150, "km")
  30351. },
  30352. ]
  30353. ))
  30354. characterMakers.push(() => makeCharacter(
  30355. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30356. {
  30357. front: {
  30358. height: math.unit(4.2, "meters"),
  30359. name: "Front",
  30360. image: {
  30361. source: "./media/characters/sydney/front.svg",
  30362. extra: 1323 / 1277,
  30363. bottom: 111 / 1434
  30364. }
  30365. },
  30366. },
  30367. [
  30368. {
  30369. name: "Normal",
  30370. height: math.unit(4.2, "meters"),
  30371. default: true
  30372. },
  30373. ]
  30374. ))
  30375. characterMakers.push(() => makeCharacter(
  30376. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30377. {
  30378. back: {
  30379. height: math.unit(201, "feet"),
  30380. name: "Back",
  30381. image: {
  30382. source: "./media/characters/jessica/back.svg",
  30383. extra: 273 / 259,
  30384. bottom: 7 / 280
  30385. }
  30386. },
  30387. },
  30388. [
  30389. {
  30390. name: "Normal",
  30391. height: math.unit(201, "feet"),
  30392. default: true
  30393. },
  30394. {
  30395. name: "Megamacro",
  30396. height: math.unit(8, "miles")
  30397. },
  30398. ]
  30399. ))
  30400. characterMakers.push(() => makeCharacter(
  30401. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30402. {
  30403. side: {
  30404. height: math.unit(5.6, "m"),
  30405. weight: math.unit(8000, "kg"),
  30406. name: "Side",
  30407. image: {
  30408. source: "./media/characters/victoria/side.svg",
  30409. extra: 1542/1229,
  30410. bottom: 124/1666
  30411. }
  30412. },
  30413. maw: {
  30414. height: math.unit(7.14, "feet"),
  30415. name: "Maw",
  30416. image: {
  30417. source: "./media/characters/victoria/maw.svg"
  30418. }
  30419. },
  30420. },
  30421. [
  30422. {
  30423. name: "Normal",
  30424. height: math.unit(5.6, "m"),
  30425. default: true
  30426. },
  30427. ]
  30428. ))
  30429. characterMakers.push(() => makeCharacter(
  30430. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30431. {
  30432. front: {
  30433. height: math.unit(5 + 6 / 12, "feet"),
  30434. name: "Front",
  30435. image: {
  30436. source: "./media/characters/cat/front.svg",
  30437. extra: 1449/1295,
  30438. bottom: 34/1483
  30439. },
  30440. form: "cat",
  30441. default: true
  30442. },
  30443. back: {
  30444. height: math.unit(5 + 6 / 12, "feet"),
  30445. name: "Back",
  30446. image: {
  30447. source: "./media/characters/cat/back.svg",
  30448. extra: 1466/1301,
  30449. bottom: 19/1485
  30450. },
  30451. form: "cat"
  30452. },
  30453. taur: {
  30454. height: math.unit(7, "feet"),
  30455. name: "Taur",
  30456. image: {
  30457. source: "./media/characters/cat/taur.svg",
  30458. extra: 1389/1233,
  30459. bottom: 83/1472
  30460. },
  30461. form: "taur",
  30462. default: true
  30463. },
  30464. lucarioFront: {
  30465. height: math.unit(4, "feet"),
  30466. name: "Lucario (Front)",
  30467. image: {
  30468. source: "./media/characters/cat/lucario-front.svg",
  30469. extra: 1149/1019,
  30470. bottom: 84/1233
  30471. },
  30472. form: "lucario",
  30473. default: true
  30474. },
  30475. lucarioBack: {
  30476. height: math.unit(4, "feet"),
  30477. name: "Lucario (Back)",
  30478. image: {
  30479. source: "./media/characters/cat/lucario-back.svg",
  30480. extra: 1190/1059,
  30481. bottom: 33/1223
  30482. },
  30483. form: "lucario"
  30484. },
  30485. megaLucario: {
  30486. height: math.unit(4, "feet"),
  30487. name: "Mega Lucario",
  30488. image: {
  30489. source: "./media/characters/cat/mega-lucario.svg",
  30490. extra: 1515 / 1319,
  30491. bottom: 63 / 1578
  30492. },
  30493. form: "lucario"
  30494. },
  30495. nickit: {
  30496. height: math.unit(2, "feet"),
  30497. name: "Nickit",
  30498. image: {
  30499. source: "./media/characters/cat/nickit.svg",
  30500. extra: 1980 / 1585,
  30501. bottom: 102 / 2082
  30502. },
  30503. form: "nickit",
  30504. default: true
  30505. },
  30506. lopunnyFront: {
  30507. height: math.unit(5, "feet"),
  30508. name: "Lopunny (Front)",
  30509. image: {
  30510. source: "./media/characters/cat/lopunny-front.svg",
  30511. extra: 1782 / 1469,
  30512. bottom: 38 / 1820
  30513. },
  30514. form: "lopunny",
  30515. default: true
  30516. },
  30517. lopunnyBack: {
  30518. height: math.unit(5, "feet"),
  30519. name: "Lopunny (Back)",
  30520. image: {
  30521. source: "./media/characters/cat/lopunny-back.svg",
  30522. extra: 1660 / 1490,
  30523. bottom: 25 / 1685
  30524. },
  30525. form: "lopunny"
  30526. },
  30527. },
  30528. [
  30529. {
  30530. name: "Really small",
  30531. height: math.unit(1, "nm")
  30532. },
  30533. {
  30534. name: "Micro",
  30535. height: math.unit(5, "inches")
  30536. },
  30537. {
  30538. name: "Normal",
  30539. height: math.unit(5 + 6 / 12, "feet"),
  30540. default: true
  30541. },
  30542. {
  30543. name: "Macro",
  30544. height: math.unit(50, "feet")
  30545. },
  30546. {
  30547. name: "Macro+",
  30548. height: math.unit(150, "feet")
  30549. },
  30550. {
  30551. name: "Megamacro",
  30552. height: math.unit(100, "miles")
  30553. },
  30554. ]
  30555. ))
  30556. characterMakers.push(() => makeCharacter(
  30557. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30558. {
  30559. front: {
  30560. height: math.unit(63.4, "meters"),
  30561. weight: math.unit(3.28349e+6, "kilograms"),
  30562. name: "Front",
  30563. image: {
  30564. source: "./media/characters/kirina-violet/front.svg",
  30565. extra: 2812 / 2725,
  30566. bottom: 0 / 2812
  30567. }
  30568. },
  30569. back: {
  30570. height: math.unit(63.4, "meters"),
  30571. weight: math.unit(3.28349e+6, "kilograms"),
  30572. name: "Back",
  30573. image: {
  30574. source: "./media/characters/kirina-violet/back.svg",
  30575. extra: 2812 / 2725,
  30576. bottom: 0 / 2812
  30577. }
  30578. },
  30579. mouth: {
  30580. height: math.unit(4.35, "meters"),
  30581. name: "Mouth",
  30582. image: {
  30583. source: "./media/characters/kirina-violet/mouth.svg"
  30584. }
  30585. },
  30586. paw: {
  30587. height: math.unit(5.6, "meters"),
  30588. name: "Paw",
  30589. image: {
  30590. source: "./media/characters/kirina-violet/paw.svg"
  30591. }
  30592. },
  30593. tail: {
  30594. height: math.unit(18, "meters"),
  30595. name: "Tail",
  30596. image: {
  30597. source: "./media/characters/kirina-violet/tail.svg"
  30598. }
  30599. },
  30600. },
  30601. [
  30602. {
  30603. name: "Macro",
  30604. height: math.unit(63.4, "meters"),
  30605. default: true
  30606. },
  30607. ]
  30608. ))
  30609. characterMakers.push(() => makeCharacter(
  30610. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30611. {
  30612. front: {
  30613. height: math.unit(75, "feet"),
  30614. name: "Front",
  30615. image: {
  30616. source: "./media/characters/cat-gigachu/front.svg",
  30617. extra: 1239/1027,
  30618. bottom: 32/1271
  30619. }
  30620. },
  30621. back: {
  30622. height: math.unit(75, "feet"),
  30623. name: "Back",
  30624. image: {
  30625. source: "./media/characters/cat-gigachu/back.svg",
  30626. extra: 1229/1030,
  30627. bottom: 9/1238
  30628. }
  30629. },
  30630. },
  30631. [
  30632. {
  30633. name: "Dynamax",
  30634. height: math.unit(75, "feet"),
  30635. default: true
  30636. },
  30637. ]
  30638. ))
  30639. characterMakers.push(() => makeCharacter(
  30640. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30641. {
  30642. front: {
  30643. height: math.unit(6, "feet"),
  30644. weight: math.unit(150, "lb"),
  30645. name: "Front",
  30646. image: {
  30647. source: "./media/characters/sfaiyan/front.svg",
  30648. extra: 999 / 978,
  30649. bottom: 5 / 1004
  30650. }
  30651. },
  30652. },
  30653. [
  30654. {
  30655. name: "Normal",
  30656. height: math.unit(1.82, "meters")
  30657. },
  30658. {
  30659. name: "Giant",
  30660. height: math.unit(2.27, "km"),
  30661. default: true
  30662. },
  30663. ]
  30664. ))
  30665. characterMakers.push(() => makeCharacter(
  30666. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30667. {
  30668. front: {
  30669. height: math.unit(179, "cm"),
  30670. weight: math.unit(100, "kg"),
  30671. name: "Front",
  30672. image: {
  30673. source: "./media/characters/raunehkeli/front.svg",
  30674. extra: 1934 / 1926,
  30675. bottom: 0 / 1934
  30676. }
  30677. },
  30678. },
  30679. [
  30680. {
  30681. name: "Normal",
  30682. height: math.unit(179, "cm")
  30683. },
  30684. {
  30685. name: "Maximum",
  30686. height: math.unit(575, "meters"),
  30687. default: true
  30688. },
  30689. ]
  30690. ))
  30691. characterMakers.push(() => makeCharacter(
  30692. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30693. {
  30694. front: {
  30695. height: math.unit(6, "feet"),
  30696. weight: math.unit(150, "lb"),
  30697. name: "Front",
  30698. image: {
  30699. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30700. extra: 2625 / 2518,
  30701. bottom: 60 / 2685
  30702. }
  30703. },
  30704. },
  30705. [
  30706. {
  30707. name: "Normal",
  30708. height: math.unit(6 + 2 / 12, "feet")
  30709. },
  30710. {
  30711. name: "Macro",
  30712. height: math.unit(1180, "feet"),
  30713. default: true
  30714. },
  30715. ]
  30716. ))
  30717. characterMakers.push(() => makeCharacter(
  30718. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30719. {
  30720. front: {
  30721. height: math.unit(5 + 6 / 12, "feet"),
  30722. weight: math.unit(108, "lb"),
  30723. name: "Front",
  30724. image: {
  30725. source: "./media/characters/lilith-zott/front.svg",
  30726. extra: 2510 / 2238,
  30727. bottom: 100 / 2610
  30728. }
  30729. },
  30730. frontDressed: {
  30731. height: math.unit(5 + 6 / 12, "feet"),
  30732. weight: math.unit(108, "lb"),
  30733. name: "Front (Dressed)",
  30734. image: {
  30735. source: "./media/characters/lilith-zott/front-dressed.svg",
  30736. extra: 2510 / 2238,
  30737. bottom: 100 / 2610
  30738. }
  30739. },
  30740. },
  30741. [
  30742. {
  30743. name: "Normal",
  30744. height: math.unit(5 + 6 / 12, "feet")
  30745. },
  30746. {
  30747. name: "Macro",
  30748. height: math.unit(1030, "feet"),
  30749. default: true
  30750. },
  30751. ]
  30752. ))
  30753. characterMakers.push(() => makeCharacter(
  30754. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30755. {
  30756. front: {
  30757. height: math.unit(6, "feet"),
  30758. weight: math.unit(150, "lb"),
  30759. name: "Front",
  30760. image: {
  30761. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30762. extra: 2567 / 2435,
  30763. bottom: 39 / 2606
  30764. }
  30765. },
  30766. frontSuper: {
  30767. height: math.unit(6, "feet"),
  30768. name: "Front (Super)",
  30769. image: {
  30770. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30771. extra: 2567 / 2435,
  30772. bottom: 39 / 2606
  30773. }
  30774. },
  30775. },
  30776. [
  30777. {
  30778. name: "Normal",
  30779. height: math.unit(5 + 10 / 12, "feet")
  30780. },
  30781. {
  30782. name: "Macro",
  30783. height: math.unit(1100, "feet"),
  30784. default: true
  30785. },
  30786. ]
  30787. ))
  30788. characterMakers.push(() => makeCharacter(
  30789. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30790. {
  30791. front: {
  30792. height: math.unit(100, "miles"),
  30793. name: "Front",
  30794. image: {
  30795. source: "./media/characters/sona/front.svg",
  30796. extra: 2433 / 2201,
  30797. bottom: 53 / 2486
  30798. }
  30799. },
  30800. foot: {
  30801. height: math.unit(16.1, "miles"),
  30802. name: "Foot",
  30803. image: {
  30804. source: "./media/characters/sona/foot.svg"
  30805. }
  30806. },
  30807. },
  30808. [
  30809. {
  30810. name: "Macro",
  30811. height: math.unit(100, "miles"),
  30812. default: true
  30813. },
  30814. ]
  30815. ))
  30816. characterMakers.push(() => makeCharacter(
  30817. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30818. {
  30819. front: {
  30820. height: math.unit(6, "feet"),
  30821. weight: math.unit(150, "lb"),
  30822. name: "Front",
  30823. image: {
  30824. source: "./media/characters/bailey/front.svg",
  30825. extra: 1778 / 1724,
  30826. bottom: 30 / 1808
  30827. }
  30828. },
  30829. },
  30830. [
  30831. {
  30832. name: "Micro",
  30833. height: math.unit(4, "inches")
  30834. },
  30835. {
  30836. name: "Normal",
  30837. height: math.unit(5 + 5 / 12, "feet"),
  30838. default: true
  30839. },
  30840. {
  30841. name: "Macro",
  30842. height: math.unit(250, "feet")
  30843. },
  30844. {
  30845. name: "Megamacro",
  30846. height: math.unit(100, "miles")
  30847. },
  30848. ]
  30849. ))
  30850. characterMakers.push(() => makeCharacter(
  30851. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30852. {
  30853. front: {
  30854. height: math.unit(5 + 2 / 12, "feet"),
  30855. weight: math.unit(120, "lb"),
  30856. name: "Front",
  30857. image: {
  30858. source: "./media/characters/snaps/front.svg",
  30859. extra: 2370 / 2177,
  30860. bottom: 48 / 2418
  30861. }
  30862. },
  30863. back: {
  30864. height: math.unit(5 + 2 / 12, "feet"),
  30865. weight: math.unit(120, "lb"),
  30866. name: "Back",
  30867. image: {
  30868. source: "./media/characters/snaps/back.svg",
  30869. extra: 2408 / 2258,
  30870. bottom: 15 / 2423
  30871. }
  30872. },
  30873. },
  30874. [
  30875. {
  30876. name: "Micro",
  30877. height: math.unit(9, "inches")
  30878. },
  30879. {
  30880. name: "Normal",
  30881. height: math.unit(5 + 2 / 12, "feet"),
  30882. default: true
  30883. },
  30884. {
  30885. name: "Mini Macro",
  30886. height: math.unit(10, "feet")
  30887. },
  30888. ]
  30889. ))
  30890. characterMakers.push(() => makeCharacter(
  30891. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30892. {
  30893. front: {
  30894. height: math.unit(1.8, "meters"),
  30895. weight: math.unit(85, "kg"),
  30896. name: "Front",
  30897. image: {
  30898. source: "./media/characters/azteck/front.svg",
  30899. extra: 2815 / 2625,
  30900. bottom: 89 / 2904
  30901. }
  30902. },
  30903. back: {
  30904. height: math.unit(1.8, "meters"),
  30905. weight: math.unit(85, "kg"),
  30906. name: "Back",
  30907. image: {
  30908. source: "./media/characters/azteck/back.svg",
  30909. extra: 2856 / 2648,
  30910. bottom: 85 / 2941
  30911. }
  30912. },
  30913. frontDressed: {
  30914. height: math.unit(1.8, "meters"),
  30915. weight: math.unit(85, "kg"),
  30916. name: "Front (Dressed)",
  30917. image: {
  30918. source: "./media/characters/azteck/front-dressed.svg",
  30919. extra: 2147 / 2003,
  30920. bottom: 68 / 2215
  30921. }
  30922. },
  30923. head: {
  30924. height: math.unit(0.47, "meters"),
  30925. weight: math.unit(85, "kg"),
  30926. name: "Head",
  30927. image: {
  30928. source: "./media/characters/azteck/head.svg"
  30929. }
  30930. },
  30931. },
  30932. [
  30933. {
  30934. name: "Bite sized",
  30935. height: math.unit(16, "cm")
  30936. },
  30937. {
  30938. name: "Normal",
  30939. height: math.unit(1.8, "meters"),
  30940. default: true
  30941. },
  30942. ]
  30943. ))
  30944. characterMakers.push(() => makeCharacter(
  30945. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30946. {
  30947. front: {
  30948. height: math.unit(6, "feet"),
  30949. weight: math.unit(150, "lb"),
  30950. name: "Front",
  30951. image: {
  30952. source: "./media/characters/pidge/front.svg",
  30953. extra: 1936/1820,
  30954. bottom: 0/1936
  30955. }
  30956. },
  30957. back: {
  30958. height: math.unit(6, "feet"),
  30959. weight: math.unit(150, "lb"),
  30960. name: "Back",
  30961. image: {
  30962. source: "./media/characters/pidge/back.svg",
  30963. extra: 1938/1843,
  30964. bottom: 0/1938
  30965. }
  30966. },
  30967. casual: {
  30968. height: math.unit(6, "feet"),
  30969. weight: math.unit(150, "lb"),
  30970. name: "Casual",
  30971. image: {
  30972. source: "./media/characters/pidge/casual.svg",
  30973. extra: 1936/1820,
  30974. bottom: 0/1936
  30975. }
  30976. },
  30977. tech: {
  30978. height: math.unit(6, "feet"),
  30979. weight: math.unit(150, "lb"),
  30980. name: "Tech",
  30981. image: {
  30982. source: "./media/characters/pidge/tech.svg",
  30983. extra: 1802/1682,
  30984. bottom: 0/1802
  30985. }
  30986. },
  30987. head: {
  30988. height: math.unit(1.61, "feet"),
  30989. name: "Head",
  30990. image: {
  30991. source: "./media/characters/pidge/head.svg"
  30992. }
  30993. },
  30994. collar: {
  30995. height: math.unit(0.82, "feet"),
  30996. name: "Collar",
  30997. image: {
  30998. source: "./media/characters/pidge/collar.svg"
  30999. }
  31000. },
  31001. },
  31002. [
  31003. {
  31004. name: "Macro",
  31005. height: math.unit(2, "mile"),
  31006. default: true
  31007. },
  31008. {
  31009. name: "PUPPY",
  31010. height: math.unit(20, "miles")
  31011. },
  31012. ]
  31013. ))
  31014. characterMakers.push(() => makeCharacter(
  31015. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31016. {
  31017. front: {
  31018. height: math.unit(6, "feet"),
  31019. weight: math.unit(150, "lb"),
  31020. name: "Front",
  31021. image: {
  31022. source: "./media/characters/en/front.svg",
  31023. extra: 1697 / 1563,
  31024. bottom: 103 / 1800
  31025. }
  31026. },
  31027. back: {
  31028. height: math.unit(6, "feet"),
  31029. weight: math.unit(150, "lb"),
  31030. name: "Back",
  31031. image: {
  31032. source: "./media/characters/en/back.svg",
  31033. extra: 1700 / 1570,
  31034. bottom: 51 / 1751
  31035. }
  31036. },
  31037. frontDressed: {
  31038. height: math.unit(6, "feet"),
  31039. weight: math.unit(150, "lb"),
  31040. name: "Front (Dressed)",
  31041. image: {
  31042. source: "./media/characters/en/front-dressed.svg",
  31043. extra: 1697 / 1563,
  31044. bottom: 103 / 1800
  31045. }
  31046. },
  31047. backDressed: {
  31048. height: math.unit(6, "feet"),
  31049. weight: math.unit(150, "lb"),
  31050. name: "Back (Dressed)",
  31051. image: {
  31052. source: "./media/characters/en/back-dressed.svg",
  31053. extra: 1700 / 1570,
  31054. bottom: 51 / 1751
  31055. }
  31056. },
  31057. },
  31058. [
  31059. {
  31060. name: "Macro",
  31061. height: math.unit(210, "feet"),
  31062. default: true
  31063. },
  31064. ]
  31065. ))
  31066. characterMakers.push(() => makeCharacter(
  31067. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31068. {
  31069. front: {
  31070. height: math.unit(6, "feet"),
  31071. weight: math.unit(150, "lb"),
  31072. name: "Front",
  31073. image: {
  31074. source: "./media/characters/haze-orris/front.svg",
  31075. extra: 3975 / 3525,
  31076. bottom: 137 / 4112
  31077. }
  31078. },
  31079. },
  31080. [
  31081. {
  31082. name: "Micro",
  31083. height: math.unit(150, "mm"),
  31084. default: true
  31085. },
  31086. ]
  31087. ))
  31088. characterMakers.push(() => makeCharacter(
  31089. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31090. {
  31091. front: {
  31092. height: math.unit(6, "feet"),
  31093. weight: math.unit(150, "lb"),
  31094. name: "Front",
  31095. image: {
  31096. source: "./media/characters/casselene-yaro/front.svg",
  31097. extra: 4721 / 4541,
  31098. bottom: 82 / 4803
  31099. }
  31100. },
  31101. back: {
  31102. height: math.unit(6, "feet"),
  31103. weight: math.unit(150, "lb"),
  31104. name: "Back",
  31105. image: {
  31106. source: "./media/characters/casselene-yaro/back.svg",
  31107. extra: 4569 / 4377,
  31108. bottom: 69 / 4638
  31109. }
  31110. },
  31111. dressed: {
  31112. height: math.unit(6, "feet"),
  31113. weight: math.unit(150, "lb"),
  31114. name: "Dressed",
  31115. image: {
  31116. source: "./media/characters/casselene-yaro/dressed.svg",
  31117. extra: 4721 / 4541,
  31118. bottom: 82 / 4803
  31119. }
  31120. },
  31121. maw: {
  31122. height: math.unit(1, "feet"),
  31123. name: "Maw",
  31124. image: {
  31125. source: "./media/characters/casselene-yaro/maw.svg"
  31126. }
  31127. },
  31128. },
  31129. [
  31130. {
  31131. name: "Macro",
  31132. height: math.unit(190, "feet"),
  31133. default: true
  31134. },
  31135. ]
  31136. ))
  31137. characterMakers.push(() => makeCharacter(
  31138. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31139. {
  31140. front: {
  31141. height: math.unit(10, "feet"),
  31142. weight: math.unit(15015, "lb"),
  31143. name: "Front",
  31144. image: {
  31145. source: "./media/characters/platine/front.svg",
  31146. extra: 1741/1650,
  31147. bottom: 84/1825
  31148. }
  31149. },
  31150. side: {
  31151. height: math.unit(10, "feet"),
  31152. weight: math.unit(15015, "lb"),
  31153. name: "Side",
  31154. image: {
  31155. source: "./media/characters/platine/side.svg",
  31156. extra: 1790/1705,
  31157. bottom: 29/1819
  31158. }
  31159. },
  31160. },
  31161. [
  31162. {
  31163. name: "Normal",
  31164. height: math.unit(10, "feet"),
  31165. default: true
  31166. },
  31167. {
  31168. name: "Macro",
  31169. height: math.unit(100, "feet")
  31170. },
  31171. {
  31172. name: "Megamacro",
  31173. height: math.unit(1000, "feet")
  31174. },
  31175. ]
  31176. ))
  31177. characterMakers.push(() => makeCharacter(
  31178. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31179. {
  31180. front: {
  31181. height: math.unit(15 + 5 / 12, "feet"),
  31182. weight: math.unit(4600, "lb"),
  31183. name: "Front",
  31184. image: {
  31185. source: "./media/characters/neapolitan-ananassa/front.svg",
  31186. extra: 2903 / 2736,
  31187. bottom: 0 / 2903
  31188. }
  31189. },
  31190. side: {
  31191. height: math.unit(15 + 5 / 12, "feet"),
  31192. weight: math.unit(4600, "lb"),
  31193. name: "Side",
  31194. image: {
  31195. source: "./media/characters/neapolitan-ananassa/side.svg",
  31196. extra: 2925 / 2719,
  31197. bottom: 0 / 2925
  31198. }
  31199. },
  31200. back: {
  31201. height: math.unit(15 + 5 / 12, "feet"),
  31202. weight: math.unit(4600, "lb"),
  31203. name: "Back",
  31204. image: {
  31205. source: "./media/characters/neapolitan-ananassa/back.svg",
  31206. extra: 2903 / 2736,
  31207. bottom: 0 / 2903
  31208. }
  31209. },
  31210. },
  31211. [
  31212. {
  31213. name: "Normal",
  31214. height: math.unit(15 + 5 / 12, "feet"),
  31215. default: true
  31216. },
  31217. {
  31218. name: "Post-Millenium",
  31219. height: math.unit(35 + 5 / 12, "feet")
  31220. },
  31221. {
  31222. name: "Post-Era",
  31223. height: math.unit(450 + 5 / 12, "feet")
  31224. },
  31225. ]
  31226. ))
  31227. characterMakers.push(() => makeCharacter(
  31228. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31229. {
  31230. front: {
  31231. height: math.unit(300, "meters"),
  31232. weight: math.unit(125000, "tonnes"),
  31233. name: "Front",
  31234. image: {
  31235. source: "./media/characters/pazuzu/front.svg",
  31236. extra: 877 / 794,
  31237. bottom: 47 / 924
  31238. }
  31239. },
  31240. },
  31241. [
  31242. {
  31243. name: "Macro",
  31244. height: math.unit(300, "meters"),
  31245. default: true
  31246. },
  31247. ]
  31248. ))
  31249. characterMakers.push(() => makeCharacter(
  31250. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31251. {
  31252. side: {
  31253. height: math.unit(10 + 7 / 12, "feet"),
  31254. weight: math.unit(2.5, "tons"),
  31255. name: "Side",
  31256. image: {
  31257. source: "./media/characters/aasha/side.svg",
  31258. extra: 1345 / 1245,
  31259. bottom: 111 / 1456
  31260. }
  31261. },
  31262. back: {
  31263. height: math.unit(10 + 7 / 12, "feet"),
  31264. weight: math.unit(2.5, "tons"),
  31265. name: "Back",
  31266. image: {
  31267. source: "./media/characters/aasha/back.svg",
  31268. extra: 1133 / 1057,
  31269. bottom: 257 / 1390
  31270. }
  31271. },
  31272. },
  31273. [
  31274. {
  31275. name: "Normal",
  31276. height: math.unit(10 + 7 / 12, "feet"),
  31277. default: true
  31278. },
  31279. ]
  31280. ))
  31281. characterMakers.push(() => makeCharacter(
  31282. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31283. {
  31284. front: {
  31285. height: math.unit(6 + 3 / 12, "feet"),
  31286. name: "Front",
  31287. image: {
  31288. source: "./media/characters/nevan/front.svg",
  31289. extra: 704 / 704,
  31290. bottom: 28 / 732
  31291. }
  31292. },
  31293. back: {
  31294. height: math.unit(6 + 3 / 12, "feet"),
  31295. name: "Back",
  31296. image: {
  31297. source: "./media/characters/nevan/back.svg",
  31298. extra: 714 / 714,
  31299. bottom: 21 / 735
  31300. }
  31301. },
  31302. frontFlaccid: {
  31303. height: math.unit(6 + 3 / 12, "feet"),
  31304. name: "Front (Flaccid)",
  31305. image: {
  31306. source: "./media/characters/nevan/front-flaccid.svg",
  31307. extra: 704 / 704,
  31308. bottom: 28 / 732
  31309. }
  31310. },
  31311. frontErect: {
  31312. height: math.unit(6 + 3 / 12, "feet"),
  31313. name: "Front (Erect)",
  31314. image: {
  31315. source: "./media/characters/nevan/front-erect.svg",
  31316. extra: 704 / 704,
  31317. bottom: 28 / 732
  31318. }
  31319. },
  31320. backFlaccid: {
  31321. height: math.unit(6 + 3 / 12, "feet"),
  31322. name: "Back (Flaccid)",
  31323. image: {
  31324. source: "./media/characters/nevan/back-flaccid.svg",
  31325. extra: 714 / 714,
  31326. bottom: 21 / 735
  31327. }
  31328. },
  31329. },
  31330. [
  31331. {
  31332. name: "Normal",
  31333. height: math.unit(6 + 3 / 12, "feet"),
  31334. default: true
  31335. },
  31336. ]
  31337. ))
  31338. characterMakers.push(() => makeCharacter(
  31339. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31340. {
  31341. front: {
  31342. height: math.unit(4, "feet"),
  31343. name: "Front",
  31344. image: {
  31345. source: "./media/characters/arhan/front.svg",
  31346. extra: 3368 / 3133,
  31347. bottom: 0 / 3368
  31348. }
  31349. },
  31350. side: {
  31351. height: math.unit(4, "feet"),
  31352. name: "Side",
  31353. image: {
  31354. source: "./media/characters/arhan/side.svg",
  31355. extra: 3347 / 3105,
  31356. bottom: 0 / 3347
  31357. }
  31358. },
  31359. tongue: {
  31360. height: math.unit(1.42, "feet"),
  31361. name: "Tongue",
  31362. image: {
  31363. source: "./media/characters/arhan/tongue.svg"
  31364. }
  31365. },
  31366. head: {
  31367. height: math.unit(0.85, "feet"),
  31368. name: "Head",
  31369. image: {
  31370. source: "./media/characters/arhan/head.svg"
  31371. }
  31372. },
  31373. },
  31374. [
  31375. {
  31376. name: "Normal",
  31377. height: math.unit(4, "feet"),
  31378. default: true
  31379. },
  31380. ]
  31381. ))
  31382. characterMakers.push(() => makeCharacter(
  31383. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31384. {
  31385. front: {
  31386. height: math.unit(5 + 7.5 / 12, "feet"),
  31387. weight: math.unit(120, "lb"),
  31388. name: "Front",
  31389. image: {
  31390. source: "./media/characters/digi-duncan/front.svg",
  31391. extra: 330 / 326,
  31392. bottom: 16 / 346
  31393. }
  31394. },
  31395. side: {
  31396. height: math.unit(5 + 7.5 / 12, "feet"),
  31397. weight: math.unit(120, "lb"),
  31398. name: "Side",
  31399. image: {
  31400. source: "./media/characters/digi-duncan/side.svg",
  31401. extra: 341 / 337,
  31402. bottom: 1 / 342
  31403. }
  31404. },
  31405. back: {
  31406. height: math.unit(5 + 7.5 / 12, "feet"),
  31407. weight: math.unit(120, "lb"),
  31408. name: "Back",
  31409. image: {
  31410. source: "./media/characters/digi-duncan/back.svg",
  31411. extra: 330 / 326,
  31412. bottom: 12 / 342
  31413. }
  31414. },
  31415. },
  31416. [
  31417. {
  31418. name: "Speck",
  31419. height: math.unit(0.25, "mm")
  31420. },
  31421. {
  31422. name: "Micro",
  31423. height: math.unit(5, "mm")
  31424. },
  31425. {
  31426. name: "Tiny",
  31427. height: math.unit(0.5, "inches"),
  31428. default: true
  31429. },
  31430. {
  31431. name: "Human",
  31432. height: math.unit(5 + 7.5 / 12, "feet")
  31433. },
  31434. {
  31435. name: "Minigiant",
  31436. height: math.unit(8 + 5.25, "feet")
  31437. },
  31438. {
  31439. name: "Giant",
  31440. height: math.unit(2000, "feet")
  31441. },
  31442. {
  31443. name: "Mega",
  31444. height: math.unit(371.1, "miles")
  31445. },
  31446. ]
  31447. ))
  31448. characterMakers.push(() => makeCharacter(
  31449. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31450. {
  31451. front: {
  31452. height: math.unit(2, "meters"),
  31453. weight: math.unit(350, "kg"),
  31454. name: "Front",
  31455. image: {
  31456. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31457. extra: 898 / 838,
  31458. bottom: 9 / 907
  31459. }
  31460. },
  31461. },
  31462. [
  31463. {
  31464. name: "Micro",
  31465. height: math.unit(8, "meters")
  31466. },
  31467. {
  31468. name: "Normal",
  31469. height: math.unit(50, "meters"),
  31470. default: true
  31471. },
  31472. {
  31473. name: "Macro",
  31474. height: math.unit(500, "meters")
  31475. },
  31476. ]
  31477. ))
  31478. characterMakers.push(() => makeCharacter(
  31479. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31480. {
  31481. front: {
  31482. height: math.unit(6 + 6 / 12, "feet"),
  31483. name: "Front",
  31484. image: {
  31485. source: "./media/characters/khardesh/front.svg",
  31486. extra: 1788/1596,
  31487. bottom: 66/1854
  31488. }
  31489. },
  31490. back: {
  31491. height: math.unit(6 + 6 / 12, "feet"),
  31492. name: "Back",
  31493. image: {
  31494. source: "./media/characters/khardesh/back.svg",
  31495. extra: 1781/1584,
  31496. bottom: 68/1849
  31497. }
  31498. },
  31499. },
  31500. [
  31501. {
  31502. name: "Normal",
  31503. height: math.unit(6 + 6 / 12, "feet"),
  31504. default: true
  31505. },
  31506. {
  31507. name: "Normal+",
  31508. height: math.unit(4, "meters")
  31509. },
  31510. {
  31511. name: "Macro",
  31512. height: math.unit(50, "meters")
  31513. },
  31514. {
  31515. name: "Macro+",
  31516. height: math.unit(100, "meters")
  31517. },
  31518. {
  31519. name: "Megamacro",
  31520. height: math.unit(20, "km")
  31521. },
  31522. ]
  31523. ))
  31524. characterMakers.push(() => makeCharacter(
  31525. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31526. {
  31527. front: {
  31528. height: math.unit(6, "feet"),
  31529. weight: math.unit(150, "lb"),
  31530. name: "Front",
  31531. image: {
  31532. source: "./media/characters/kosho/front.svg",
  31533. extra: 1847 / 1847,
  31534. bottom: 86 / 1933
  31535. }
  31536. },
  31537. },
  31538. [
  31539. {
  31540. name: "Second-stage micro",
  31541. height: math.unit(0.5, "inches")
  31542. },
  31543. {
  31544. name: "First-stage micro",
  31545. height: math.unit(6, "inches")
  31546. },
  31547. {
  31548. name: "Normal",
  31549. height: math.unit(6, "feet"),
  31550. default: true
  31551. },
  31552. {
  31553. name: "First-stage macro",
  31554. height: math.unit(72, "feet")
  31555. },
  31556. {
  31557. name: "Second-stage macro",
  31558. height: math.unit(864, "feet")
  31559. },
  31560. ]
  31561. ))
  31562. characterMakers.push(() => makeCharacter(
  31563. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31564. {
  31565. normal: {
  31566. height: math.unit(4 + 6 / 12, "feet"),
  31567. name: "Normal",
  31568. image: {
  31569. source: "./media/characters/hydra/normal.svg",
  31570. extra: 2833 / 2634,
  31571. bottom: 68 / 2901
  31572. }
  31573. },
  31574. smol: {
  31575. height: math.unit(0.705, "inches"),
  31576. name: "Smol",
  31577. image: {
  31578. source: "./media/characters/hydra/smol.svg",
  31579. extra: 2715 / 2540,
  31580. bottom: 0 / 2715
  31581. }
  31582. },
  31583. },
  31584. [
  31585. {
  31586. name: "Normal",
  31587. height: math.unit(4 + 6 / 12, "feet"),
  31588. default: true
  31589. }
  31590. ]
  31591. ))
  31592. characterMakers.push(() => makeCharacter(
  31593. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31594. {
  31595. front: {
  31596. height: math.unit(0.6, "cm"),
  31597. name: "Front",
  31598. image: {
  31599. source: "./media/characters/daz/front.svg",
  31600. extra: 1682 / 1164,
  31601. bottom: 42 / 1724
  31602. }
  31603. },
  31604. },
  31605. [
  31606. {
  31607. name: "Normal",
  31608. height: math.unit(0.6, "cm"),
  31609. default: true
  31610. },
  31611. ]
  31612. ))
  31613. characterMakers.push(() => makeCharacter(
  31614. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31615. {
  31616. front: {
  31617. height: math.unit(6, "feet"),
  31618. weight: math.unit(235, "lb"),
  31619. name: "Front",
  31620. image: {
  31621. source: "./media/characters/theo-pangolin/front.svg",
  31622. extra: 1996 / 1969,
  31623. bottom: 115 / 2111
  31624. }
  31625. },
  31626. back: {
  31627. height: math.unit(6, "feet"),
  31628. weight: math.unit(235, "lb"),
  31629. name: "Back",
  31630. image: {
  31631. source: "./media/characters/theo-pangolin/back.svg",
  31632. extra: 1979 / 1979,
  31633. bottom: 40 / 2019
  31634. }
  31635. },
  31636. feral: {
  31637. height: math.unit(2, "feet"),
  31638. weight: math.unit(30, "lb"),
  31639. name: "Feral",
  31640. image: {
  31641. source: "./media/characters/theo-pangolin/feral.svg",
  31642. extra: 803 / 791,
  31643. bottom: 181 / 984
  31644. }
  31645. },
  31646. footFive: {
  31647. height: math.unit(1.43, "feet"),
  31648. name: "Foot (Five Toes)",
  31649. image: {
  31650. source: "./media/characters/theo-pangolin/foot-five.svg"
  31651. }
  31652. },
  31653. footFour: {
  31654. height: math.unit(1.43, "feet"),
  31655. name: "Foot (Four Toes)",
  31656. image: {
  31657. source: "./media/characters/theo-pangolin/foot-four.svg"
  31658. }
  31659. },
  31660. handFour: {
  31661. height: math.unit(0.81, "feet"),
  31662. name: "Hand (Four Fingers)",
  31663. image: {
  31664. source: "./media/characters/theo-pangolin/hand-four.svg"
  31665. }
  31666. },
  31667. handThree: {
  31668. height: math.unit(0.81, "feet"),
  31669. name: "Hand (Three Fingers)",
  31670. image: {
  31671. source: "./media/characters/theo-pangolin/hand-three.svg"
  31672. }
  31673. },
  31674. headFront: {
  31675. height: math.unit(1.37, "feet"),
  31676. name: "Head (Front)",
  31677. image: {
  31678. source: "./media/characters/theo-pangolin/head-front.svg"
  31679. }
  31680. },
  31681. headSide: {
  31682. height: math.unit(1.43, "feet"),
  31683. name: "Head (Side)",
  31684. image: {
  31685. source: "./media/characters/theo-pangolin/head-side.svg"
  31686. }
  31687. },
  31688. tongue: {
  31689. height: math.unit(2.29, "feet"),
  31690. name: "Tongue",
  31691. image: {
  31692. source: "./media/characters/theo-pangolin/tongue.svg"
  31693. }
  31694. },
  31695. },
  31696. [
  31697. {
  31698. name: "Normal",
  31699. height: math.unit(6, "feet")
  31700. },
  31701. {
  31702. name: "Macro",
  31703. height: math.unit(400, "feet"),
  31704. default: true
  31705. },
  31706. ]
  31707. ))
  31708. characterMakers.push(() => makeCharacter(
  31709. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31710. {
  31711. front: {
  31712. height: math.unit(6, "inches"),
  31713. weight: math.unit(0.036, "kg"),
  31714. name: "Front",
  31715. image: {
  31716. source: "./media/characters/renée/front.svg",
  31717. extra: 900 / 886,
  31718. bottom: 8 / 908
  31719. }
  31720. },
  31721. },
  31722. [
  31723. {
  31724. name: "Nano",
  31725. height: math.unit(1, "nm")
  31726. },
  31727. {
  31728. name: "Micro",
  31729. height: math.unit(1, "mm")
  31730. },
  31731. {
  31732. name: "Normal",
  31733. height: math.unit(6, "inches")
  31734. },
  31735. {
  31736. name: "Macro",
  31737. height: math.unit(2000, "feet"),
  31738. default: true
  31739. },
  31740. {
  31741. name: "Megamacro",
  31742. height: math.unit(2, "km")
  31743. },
  31744. {
  31745. name: "Gigamacro",
  31746. height: math.unit(2000, "km")
  31747. },
  31748. {
  31749. name: "Teramacro",
  31750. height: math.unit(250000, "km")
  31751. },
  31752. ]
  31753. ))
  31754. characterMakers.push(() => makeCharacter(
  31755. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31756. {
  31757. front: {
  31758. height: math.unit(4, "meters"),
  31759. weight: math.unit(150, "kg"),
  31760. name: "Front",
  31761. image: {
  31762. source: "./media/characters/caledvwlch/front.svg",
  31763. extra: 1760 / 1551,
  31764. bottom: 28 / 1788
  31765. }
  31766. },
  31767. side: {
  31768. height: math.unit(4, "meters"),
  31769. weight: math.unit(150, "kg"),
  31770. name: "Side",
  31771. image: {
  31772. source: "./media/characters/caledvwlch/side.svg",
  31773. extra: 1605 / 1536,
  31774. bottom: 31 / 1636
  31775. }
  31776. },
  31777. back: {
  31778. height: math.unit(4, "meters"),
  31779. weight: math.unit(150, "kg"),
  31780. name: "Back",
  31781. image: {
  31782. source: "./media/characters/caledvwlch/back.svg",
  31783. extra: 1635 / 1565,
  31784. bottom: 27 / 1662
  31785. }
  31786. },
  31787. },
  31788. [
  31789. {
  31790. name: "\"Incognito\"",
  31791. height: math.unit(4, "meters")
  31792. },
  31793. {
  31794. name: "Small rampage",
  31795. height: math.unit(600, "meters")
  31796. },
  31797. {
  31798. name: "Mega",
  31799. height: math.unit(30, "km")
  31800. },
  31801. {
  31802. name: "Home-size",
  31803. height: math.unit(50, "km"),
  31804. default: true
  31805. },
  31806. {
  31807. name: "Giga",
  31808. height: math.unit(300, "km")
  31809. },
  31810. {
  31811. name: "Lounging",
  31812. height: math.unit(11000, "km")
  31813. },
  31814. {
  31815. name: "Planet snacking",
  31816. height: math.unit(2000000, "km")
  31817. },
  31818. ]
  31819. ))
  31820. characterMakers.push(() => makeCharacter(
  31821. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31822. {
  31823. front: {
  31824. height: math.unit(6, "feet"),
  31825. weight: math.unit(215, "lb"),
  31826. name: "Front",
  31827. image: {
  31828. source: "./media/characters/sapphire-svell/front.svg",
  31829. extra: 495 / 455,
  31830. bottom: 20 / 515
  31831. }
  31832. },
  31833. back: {
  31834. height: math.unit(6, "feet"),
  31835. weight: math.unit(216, "lb"),
  31836. name: "Back",
  31837. image: {
  31838. source: "./media/characters/sapphire-svell/back.svg",
  31839. extra: 497 / 477,
  31840. bottom: 7 / 504
  31841. }
  31842. },
  31843. maw: {
  31844. height: math.unit(1.57, "feet"),
  31845. name: "Maw",
  31846. image: {
  31847. source: "./media/characters/sapphire-svell/maw.svg"
  31848. }
  31849. },
  31850. foot: {
  31851. height: math.unit(1.07, "feet"),
  31852. name: "Foot",
  31853. image: {
  31854. source: "./media/characters/sapphire-svell/foot.svg"
  31855. }
  31856. },
  31857. toering: {
  31858. height: math.unit(1.7, "inch"),
  31859. name: "Toering",
  31860. image: {
  31861. source: "./media/characters/sapphire-svell/toering.svg"
  31862. }
  31863. },
  31864. },
  31865. [
  31866. {
  31867. name: "Normal",
  31868. height: math.unit(300, "feet"),
  31869. default: true
  31870. },
  31871. {
  31872. name: "Augmented",
  31873. height: math.unit(1250, "feet")
  31874. },
  31875. {
  31876. name: "Unleashed",
  31877. height: math.unit(3000, "feet")
  31878. },
  31879. ]
  31880. ))
  31881. characterMakers.push(() => makeCharacter(
  31882. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31883. {
  31884. side: {
  31885. height: math.unit(2 + 3 / 12, "feet"),
  31886. weight: math.unit(110, "lb"),
  31887. name: "Side",
  31888. image: {
  31889. source: "./media/characters/glitch-flux/side.svg",
  31890. extra: 997 / 805,
  31891. bottom: 20 / 1017
  31892. }
  31893. },
  31894. },
  31895. [
  31896. {
  31897. name: "Normal",
  31898. height: math.unit(2 + 3 / 12, "feet"),
  31899. default: true
  31900. },
  31901. ]
  31902. ))
  31903. characterMakers.push(() => makeCharacter(
  31904. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31905. {
  31906. front: {
  31907. height: math.unit(4, "meters"),
  31908. name: "Front",
  31909. image: {
  31910. source: "./media/characters/mid/front.svg",
  31911. extra: 507 / 476,
  31912. bottom: 17 / 524
  31913. }
  31914. },
  31915. back: {
  31916. height: math.unit(4, "meters"),
  31917. name: "Back",
  31918. image: {
  31919. source: "./media/characters/mid/back.svg",
  31920. extra: 519 / 487,
  31921. bottom: 7 / 526
  31922. }
  31923. },
  31924. stuck: {
  31925. height: math.unit(2.2, "meters"),
  31926. name: "Stuck",
  31927. image: {
  31928. source: "./media/characters/mid/stuck.svg",
  31929. extra: 1951 / 1869,
  31930. bottom: 88 / 2039
  31931. }
  31932. }
  31933. },
  31934. [
  31935. {
  31936. name: "Normal",
  31937. height: math.unit(4, "meters"),
  31938. default: true
  31939. },
  31940. {
  31941. name: "Big",
  31942. height: math.unit(10, "meters")
  31943. },
  31944. {
  31945. name: "Macro",
  31946. height: math.unit(800, "meters")
  31947. },
  31948. {
  31949. name: "Megamacro",
  31950. height: math.unit(100, "km")
  31951. },
  31952. {
  31953. name: "Overgrown",
  31954. height: math.unit(1, "parsec")
  31955. },
  31956. ]
  31957. ))
  31958. characterMakers.push(() => makeCharacter(
  31959. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31960. {
  31961. front: {
  31962. height: math.unit(2.5, "meters"),
  31963. weight: math.unit(225, "kg"),
  31964. name: "Front",
  31965. image: {
  31966. source: "./media/characters/iris/front.svg",
  31967. extra: 3348 / 3251,
  31968. bottom: 205 / 3553
  31969. }
  31970. },
  31971. maw: {
  31972. height: math.unit(0.56, "meter"),
  31973. name: "Maw",
  31974. image: {
  31975. source: "./media/characters/iris/maw.svg"
  31976. }
  31977. },
  31978. },
  31979. [
  31980. {
  31981. name: "Mewter cat",
  31982. height: math.unit(1.2, "meters")
  31983. },
  31984. {
  31985. name: "Normal",
  31986. height: math.unit(2.5, "meters"),
  31987. default: true
  31988. },
  31989. {
  31990. name: "Minimacro",
  31991. height: math.unit(18, "feet")
  31992. },
  31993. {
  31994. name: "Macro",
  31995. height: math.unit(140, "feet")
  31996. },
  31997. {
  31998. name: "Macro+",
  31999. height: math.unit(180, "meters")
  32000. },
  32001. {
  32002. name: "Megamacro",
  32003. height: math.unit(2746, "meters")
  32004. },
  32005. ]
  32006. ))
  32007. characterMakers.push(() => makeCharacter(
  32008. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32009. {
  32010. front: {
  32011. height: math.unit(6, "feet"),
  32012. weight: math.unit(135, "lb"),
  32013. name: "Front",
  32014. image: {
  32015. source: "./media/characters/axel/front.svg",
  32016. extra: 908 / 908,
  32017. bottom: 58 / 966
  32018. }
  32019. },
  32020. side: {
  32021. height: math.unit(6, "feet"),
  32022. weight: math.unit(135, "lb"),
  32023. name: "Side",
  32024. image: {
  32025. source: "./media/characters/axel/side.svg",
  32026. extra: 958 / 958,
  32027. bottom: 11 / 969
  32028. }
  32029. },
  32030. back: {
  32031. height: math.unit(6, "feet"),
  32032. weight: math.unit(135, "lb"),
  32033. name: "Back",
  32034. image: {
  32035. source: "./media/characters/axel/back.svg",
  32036. extra: 887 / 887,
  32037. bottom: 34 / 921
  32038. }
  32039. },
  32040. head: {
  32041. height: math.unit(1.07, "feet"),
  32042. name: "Head",
  32043. image: {
  32044. source: "./media/characters/axel/head.svg"
  32045. }
  32046. },
  32047. beak: {
  32048. height: math.unit(1.4, "feet"),
  32049. name: "Beak",
  32050. image: {
  32051. source: "./media/characters/axel/beak.svg"
  32052. }
  32053. },
  32054. beakSide: {
  32055. height: math.unit(1.4, "feet"),
  32056. name: "Beak Side",
  32057. image: {
  32058. source: "./media/characters/axel/beak-side.svg"
  32059. }
  32060. },
  32061. sheath: {
  32062. height: math.unit(0.5, "feet"),
  32063. name: "Sheath",
  32064. image: {
  32065. source: "./media/characters/axel/sheath.svg"
  32066. }
  32067. },
  32068. dick: {
  32069. height: math.unit(0.98, "feet"),
  32070. name: "Dick",
  32071. image: {
  32072. source: "./media/characters/axel/dick.svg"
  32073. }
  32074. },
  32075. },
  32076. [
  32077. {
  32078. name: "Macro",
  32079. height: math.unit(68, "meters"),
  32080. default: true
  32081. },
  32082. ]
  32083. ))
  32084. characterMakers.push(() => makeCharacter(
  32085. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32086. {
  32087. front: {
  32088. height: math.unit(3.5, "meters"),
  32089. weight: math.unit(1200, "kg"),
  32090. name: "Front",
  32091. image: {
  32092. source: "./media/characters/joanna/front.svg",
  32093. extra: 1596 / 1488,
  32094. bottom: 29 / 1625
  32095. }
  32096. },
  32097. back: {
  32098. height: math.unit(3.5, "meters"),
  32099. weight: math.unit(1200, "kg"),
  32100. name: "Back",
  32101. image: {
  32102. source: "./media/characters/joanna/back.svg",
  32103. extra: 1594 / 1495,
  32104. bottom: 26 / 1620
  32105. }
  32106. },
  32107. frontShorts: {
  32108. height: math.unit(3.5, "meters"),
  32109. weight: math.unit(1200, "kg"),
  32110. name: "Front (Shorts)",
  32111. image: {
  32112. source: "./media/characters/joanna/front-shorts.svg",
  32113. extra: 1596 / 1488,
  32114. bottom: 29 / 1625
  32115. }
  32116. },
  32117. frontBiker: {
  32118. height: math.unit(3.5, "meters"),
  32119. weight: math.unit(1200, "kg"),
  32120. name: "Front (Biker)",
  32121. image: {
  32122. source: "./media/characters/joanna/front-biker.svg",
  32123. extra: 1596 / 1488,
  32124. bottom: 29 / 1625
  32125. }
  32126. },
  32127. backBiker: {
  32128. height: math.unit(3.5, "meters"),
  32129. weight: math.unit(1200, "kg"),
  32130. name: "Back (Biker)",
  32131. image: {
  32132. source: "./media/characters/joanna/back-biker.svg",
  32133. extra: 1594 / 1495,
  32134. bottom: 88 / 1682
  32135. }
  32136. },
  32137. bikeLeft: {
  32138. height: math.unit(2.4, "meters"),
  32139. weight: math.unit(1600, "kg"),
  32140. name: "Bike (Left)",
  32141. image: {
  32142. source: "./media/characters/joanna/bike-left.svg",
  32143. extra: 720 / 720,
  32144. bottom: 8 / 728
  32145. }
  32146. },
  32147. bikeRight: {
  32148. height: math.unit(2.4, "meters"),
  32149. weight: math.unit(1600, "kg"),
  32150. name: "Bike (Right)",
  32151. image: {
  32152. source: "./media/characters/joanna/bike-right.svg",
  32153. extra: 720 / 720,
  32154. bottom: 8 / 728
  32155. }
  32156. },
  32157. },
  32158. [
  32159. {
  32160. name: "Incognito",
  32161. height: math.unit(3.5, "meters")
  32162. },
  32163. {
  32164. name: "Casual Big",
  32165. height: math.unit(200, "meters")
  32166. },
  32167. {
  32168. name: "Macro",
  32169. height: math.unit(600, "meters")
  32170. },
  32171. {
  32172. name: "Original",
  32173. height: math.unit(20, "km"),
  32174. default: true
  32175. },
  32176. {
  32177. name: "Giga",
  32178. height: math.unit(400, "km")
  32179. },
  32180. {
  32181. name: "Lounging",
  32182. height: math.unit(1500, "km")
  32183. },
  32184. {
  32185. name: "Planetary",
  32186. height: math.unit(200000, "km")
  32187. },
  32188. ]
  32189. ))
  32190. characterMakers.push(() => makeCharacter(
  32191. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32192. {
  32193. front: {
  32194. height: math.unit(6, "feet"),
  32195. weight: math.unit(150, "lb"),
  32196. name: "Front",
  32197. image: {
  32198. source: "./media/characters/hugo-sigil/front.svg",
  32199. extra: 522 / 500,
  32200. bottom: 2 / 524
  32201. }
  32202. },
  32203. back: {
  32204. height: math.unit(6, "feet"),
  32205. weight: math.unit(150, "lb"),
  32206. name: "Back",
  32207. image: {
  32208. source: "./media/characters/hugo-sigil/back.svg",
  32209. extra: 519 / 495,
  32210. bottom: 5 / 524
  32211. }
  32212. },
  32213. maw: {
  32214. height: math.unit(1.4, "feet"),
  32215. weight: math.unit(150, "lb"),
  32216. name: "Maw",
  32217. image: {
  32218. source: "./media/characters/hugo-sigil/maw.svg"
  32219. }
  32220. },
  32221. feet: {
  32222. height: math.unit(1.56, "feet"),
  32223. weight: math.unit(150, "lb"),
  32224. name: "Feet",
  32225. image: {
  32226. source: "./media/characters/hugo-sigil/feet.svg",
  32227. extra: 177 / 177,
  32228. bottom: 12 / 189
  32229. }
  32230. },
  32231. },
  32232. [
  32233. {
  32234. name: "Normal",
  32235. height: math.unit(6, "feet")
  32236. },
  32237. {
  32238. name: "Macro",
  32239. height: math.unit(200, "feet"),
  32240. default: true
  32241. },
  32242. ]
  32243. ))
  32244. characterMakers.push(() => makeCharacter(
  32245. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32246. {
  32247. front: {
  32248. height: math.unit(6, "feet"),
  32249. weight: math.unit(150, "lb"),
  32250. name: "Front",
  32251. image: {
  32252. source: "./media/characters/peri/front.svg",
  32253. extra: 2354 / 2233,
  32254. bottom: 49 / 2403
  32255. }
  32256. },
  32257. },
  32258. [
  32259. {
  32260. name: "Really Small",
  32261. height: math.unit(1, "nm")
  32262. },
  32263. {
  32264. name: "Micro",
  32265. height: math.unit(4, "inches")
  32266. },
  32267. {
  32268. name: "Normal",
  32269. height: math.unit(7, "inches"),
  32270. default: true
  32271. },
  32272. {
  32273. name: "Macro",
  32274. height: math.unit(400, "feet")
  32275. },
  32276. {
  32277. name: "Megamacro",
  32278. height: math.unit(100, "miles")
  32279. },
  32280. ]
  32281. ))
  32282. characterMakers.push(() => makeCharacter(
  32283. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32284. {
  32285. frontSlim: {
  32286. height: math.unit(7, "feet"),
  32287. name: "Front (Slim)",
  32288. image: {
  32289. source: "./media/characters/issilora/front-slim.svg",
  32290. extra: 529 / 449,
  32291. bottom: 53 / 582
  32292. }
  32293. },
  32294. sideSlim: {
  32295. height: math.unit(7, "feet"),
  32296. name: "Side (Slim)",
  32297. image: {
  32298. source: "./media/characters/issilora/side-slim.svg",
  32299. extra: 570 / 480,
  32300. bottom: 30 / 600
  32301. }
  32302. },
  32303. backSlim: {
  32304. height: math.unit(7, "feet"),
  32305. name: "Back (Slim)",
  32306. image: {
  32307. source: "./media/characters/issilora/back-slim.svg",
  32308. extra: 537 / 455,
  32309. bottom: 46 / 583
  32310. }
  32311. },
  32312. frontBuff: {
  32313. height: math.unit(7, "feet"),
  32314. name: "Front (Buff)",
  32315. image: {
  32316. source: "./media/characters/issilora/front-buff.svg",
  32317. extra: 2310 / 2035,
  32318. bottom: 335 / 2645
  32319. }
  32320. },
  32321. head: {
  32322. height: math.unit(1.94, "feet"),
  32323. name: "Head",
  32324. image: {
  32325. source: "./media/characters/issilora/head.svg"
  32326. }
  32327. },
  32328. },
  32329. [
  32330. {
  32331. name: "Minimum",
  32332. height: math.unit(7, "feet")
  32333. },
  32334. {
  32335. name: "Comfortable",
  32336. height: math.unit(17, "feet")
  32337. },
  32338. {
  32339. name: "Fun Size",
  32340. height: math.unit(47, "feet")
  32341. },
  32342. {
  32343. name: "Natural Macro",
  32344. height: math.unit(137, "feet"),
  32345. default: true
  32346. },
  32347. {
  32348. name: "Maximum Kaiju",
  32349. height: math.unit(397, "feet")
  32350. },
  32351. ]
  32352. ))
  32353. characterMakers.push(() => makeCharacter(
  32354. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32355. {
  32356. front: {
  32357. height: math.unit(50 + 9/12, "feet"),
  32358. weight: math.unit(32.8, "tons"),
  32359. name: "Front",
  32360. image: {
  32361. source: "./media/characters/irb'iiritaahn/front.svg",
  32362. extra: 1878/1826,
  32363. bottom: 326/2204
  32364. }
  32365. },
  32366. back: {
  32367. height: math.unit(50 + 9/12, "feet"),
  32368. weight: math.unit(32.8, "tons"),
  32369. name: "Back",
  32370. image: {
  32371. source: "./media/characters/irb'iiritaahn/back.svg",
  32372. extra: 2052/2018,
  32373. bottom: 152/2204
  32374. }
  32375. },
  32376. head: {
  32377. height: math.unit(12.86, "feet"),
  32378. name: "Head",
  32379. image: {
  32380. source: "./media/characters/irb'iiritaahn/head.svg"
  32381. }
  32382. },
  32383. maw: {
  32384. height: math.unit(9.66, "feet"),
  32385. name: "Maw",
  32386. image: {
  32387. source: "./media/characters/irb'iiritaahn/maw.svg"
  32388. }
  32389. },
  32390. frontDick: {
  32391. height: math.unit(8.78461, "feet"),
  32392. name: "Front Dick",
  32393. image: {
  32394. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32395. }
  32396. },
  32397. rearDick: {
  32398. height: math.unit(8.78461, "feet"),
  32399. name: "Rear Dick",
  32400. image: {
  32401. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32402. }
  32403. },
  32404. rearDickUnfolded: {
  32405. height: math.unit(8.78, "feet"),
  32406. name: "Rear Dick (Unfolded)",
  32407. image: {
  32408. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32409. }
  32410. },
  32411. wings: {
  32412. height: math.unit(43, "feet"),
  32413. name: "Wings",
  32414. image: {
  32415. source: "./media/characters/irb'iiritaahn/wings.svg"
  32416. }
  32417. },
  32418. },
  32419. [
  32420. {
  32421. name: "Macro",
  32422. height: math.unit(50 + 9/12, "feet"),
  32423. default: true
  32424. },
  32425. ]
  32426. ))
  32427. characterMakers.push(() => makeCharacter(
  32428. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32429. {
  32430. front: {
  32431. height: math.unit(205, "cm"),
  32432. weight: math.unit(102, "kg"),
  32433. name: "Front",
  32434. image: {
  32435. source: "./media/characters/irbisgreif/front.svg",
  32436. extra: 785/706,
  32437. bottom: 13/798
  32438. }
  32439. },
  32440. back: {
  32441. height: math.unit(205, "cm"),
  32442. weight: math.unit(102, "kg"),
  32443. name: "Back",
  32444. image: {
  32445. source: "./media/characters/irbisgreif/back.svg",
  32446. extra: 713/701,
  32447. bottom: 26/739
  32448. }
  32449. },
  32450. frontDressed: {
  32451. height: math.unit(216, "cm"),
  32452. weight: math.unit(102, "kg"),
  32453. name: "Front-dressed",
  32454. image: {
  32455. source: "./media/characters/irbisgreif/front-dressed.svg",
  32456. extra: 902/776,
  32457. bottom: 14/916
  32458. }
  32459. },
  32460. sideDressed: {
  32461. height: math.unit(195, "cm"),
  32462. weight: math.unit(102, "kg"),
  32463. name: "Side-dressed",
  32464. image: {
  32465. source: "./media/characters/irbisgreif/side-dressed.svg",
  32466. extra: 788/688,
  32467. bottom: 21/809
  32468. }
  32469. },
  32470. backDressed: {
  32471. height: math.unit(216, "cm"),
  32472. weight: math.unit(102, "kg"),
  32473. name: "Back-dressed",
  32474. image: {
  32475. source: "./media/characters/irbisgreif/back-dressed.svg",
  32476. extra: 901/783,
  32477. bottom: 10/911
  32478. }
  32479. },
  32480. dick: {
  32481. height: math.unit(0.49, "feet"),
  32482. name: "Dick",
  32483. image: {
  32484. source: "./media/characters/irbisgreif/dick.svg"
  32485. }
  32486. },
  32487. wingTop: {
  32488. height: math.unit(1.93 , "feet"),
  32489. name: "Wing-top",
  32490. image: {
  32491. source: "./media/characters/irbisgreif/wing-top.svg"
  32492. }
  32493. },
  32494. wingBottom: {
  32495. height: math.unit(1.93 , "feet"),
  32496. name: "Wing-bottom",
  32497. image: {
  32498. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32499. }
  32500. },
  32501. },
  32502. [
  32503. {
  32504. name: "Normal",
  32505. height: math.unit(216, "cm"),
  32506. default: true
  32507. },
  32508. ]
  32509. ))
  32510. characterMakers.push(() => makeCharacter(
  32511. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32512. {
  32513. front: {
  32514. height: math.unit(6, "feet"),
  32515. weight: math.unit(150, "lb"),
  32516. name: "Front",
  32517. image: {
  32518. source: "./media/characters/pride/front.svg",
  32519. extra: 1299/1230,
  32520. bottom: 18/1317
  32521. }
  32522. },
  32523. },
  32524. [
  32525. {
  32526. name: "Normal",
  32527. height: math.unit(7, "feet")
  32528. },
  32529. {
  32530. name: "Mini-macro",
  32531. height: math.unit(11, "feet")
  32532. },
  32533. {
  32534. name: "Macro",
  32535. height: math.unit(15, "meters"),
  32536. default: true
  32537. },
  32538. {
  32539. name: "Macro+",
  32540. height: math.unit(40, "meters")
  32541. },
  32542. ]
  32543. ))
  32544. characterMakers.push(() => makeCharacter(
  32545. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32546. {
  32547. front: {
  32548. height: math.unit(4 + 2 / 12, "feet"),
  32549. weight: math.unit(95, "lb"),
  32550. name: "Front",
  32551. image: {
  32552. source: "./media/characters/vaelophis-nyx/front.svg",
  32553. extra: 2532/2330,
  32554. bottom: 0/2532
  32555. }
  32556. },
  32557. back: {
  32558. height: math.unit(4 + 2 / 12, "feet"),
  32559. weight: math.unit(95, "lb"),
  32560. name: "Back",
  32561. image: {
  32562. source: "./media/characters/vaelophis-nyx/back.svg",
  32563. extra: 2484/2361,
  32564. bottom: 0/2484
  32565. }
  32566. },
  32567. feralSide: {
  32568. height: math.unit(2 + 1/12, "feet"),
  32569. weight: math.unit(20, "lb"),
  32570. name: "Feral (Side)",
  32571. image: {
  32572. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32573. extra: 1721/1581,
  32574. bottom: 70/1791
  32575. }
  32576. },
  32577. feralLazing: {
  32578. height: math.unit(1.08, "feet"),
  32579. weight: math.unit(20, "lb"),
  32580. name: "Feral (Lazing)",
  32581. image: {
  32582. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32583. extra: 822/822,
  32584. bottom: 248/1070
  32585. }
  32586. },
  32587. ear: {
  32588. height: math.unit(0.416, "feet"),
  32589. name: "Ear",
  32590. image: {
  32591. source: "./media/characters/vaelophis-nyx/ear.svg"
  32592. }
  32593. },
  32594. eye: {
  32595. height: math.unit(0.0748, "feet"),
  32596. name: "Eye",
  32597. image: {
  32598. source: "./media/characters/vaelophis-nyx/eye.svg"
  32599. }
  32600. },
  32601. mouth: {
  32602. height: math.unit(0.378, "feet"),
  32603. name: "Mouth",
  32604. image: {
  32605. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32606. }
  32607. },
  32608. spade: {
  32609. height: math.unit(0.55, "feet"),
  32610. name: "Spade",
  32611. image: {
  32612. source: "./media/characters/vaelophis-nyx/spade.svg"
  32613. }
  32614. },
  32615. },
  32616. [
  32617. {
  32618. name: "Normal",
  32619. height: math.unit(4 + 2/12, "feet"),
  32620. default: true
  32621. },
  32622. ]
  32623. ))
  32624. characterMakers.push(() => makeCharacter(
  32625. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32626. {
  32627. front: {
  32628. height: math.unit(7, "feet"),
  32629. weight: math.unit(231, "lb"),
  32630. name: "Front",
  32631. image: {
  32632. source: "./media/characters/flux/front.svg",
  32633. extra: 919/871,
  32634. bottom: 0/919
  32635. }
  32636. },
  32637. back: {
  32638. height: math.unit(7, "feet"),
  32639. weight: math.unit(231, "lb"),
  32640. name: "Back",
  32641. image: {
  32642. source: "./media/characters/flux/back.svg",
  32643. extra: 1040/992,
  32644. bottom: 0/1040
  32645. }
  32646. },
  32647. frontDressed: {
  32648. height: math.unit(7, "feet"),
  32649. weight: math.unit(231, "lb"),
  32650. name: "Front (Dressed)",
  32651. image: {
  32652. source: "./media/characters/flux/front-dressed.svg",
  32653. extra: 919/871,
  32654. bottom: 0/919
  32655. }
  32656. },
  32657. feralSide: {
  32658. height: math.unit(5, "feet"),
  32659. weight: math.unit(150, "lb"),
  32660. name: "Feral (Side)",
  32661. image: {
  32662. source: "./media/characters/flux/feral-side.svg",
  32663. extra: 598/528,
  32664. bottom: 28/626
  32665. }
  32666. },
  32667. head: {
  32668. height: math.unit(1.585, "feet"),
  32669. name: "Head",
  32670. image: {
  32671. source: "./media/characters/flux/head.svg"
  32672. }
  32673. },
  32674. headSide: {
  32675. height: math.unit(1.74, "feet"),
  32676. name: "Head (Side)",
  32677. image: {
  32678. source: "./media/characters/flux/head-side.svg"
  32679. }
  32680. },
  32681. headSideFire: {
  32682. height: math.unit(1.76, "feet"),
  32683. name: "Head (Side, Fire)",
  32684. image: {
  32685. source: "./media/characters/flux/head-side-fire.svg"
  32686. }
  32687. },
  32688. },
  32689. [
  32690. {
  32691. name: "Normal",
  32692. height: math.unit(7, "feet"),
  32693. default: true
  32694. },
  32695. ]
  32696. ))
  32697. characterMakers.push(() => makeCharacter(
  32698. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32699. {
  32700. front: {
  32701. height: math.unit(9, "feet"),
  32702. weight: math.unit(1012, "lb"),
  32703. name: "Front",
  32704. image: {
  32705. source: "./media/characters/ulfra-lupae/front.svg",
  32706. extra: 1083/1011,
  32707. bottom: 67/1150
  32708. }
  32709. },
  32710. },
  32711. [
  32712. {
  32713. name: "Micro",
  32714. height: math.unit(6, "inches")
  32715. },
  32716. {
  32717. name: "Socializing",
  32718. height: math.unit(6 + 5/12, "feet")
  32719. },
  32720. {
  32721. name: "Normal",
  32722. height: math.unit(9, "feet"),
  32723. default: true
  32724. },
  32725. {
  32726. name: "Macro",
  32727. height: math.unit(150, "feet")
  32728. },
  32729. ]
  32730. ))
  32731. characterMakers.push(() => makeCharacter(
  32732. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32733. {
  32734. front: {
  32735. height: math.unit(5 + 2/12, "feet"),
  32736. weight: math.unit(120, "lb"),
  32737. name: "Front",
  32738. image: {
  32739. source: "./media/characters/timber/front.svg",
  32740. extra: 2814/2705,
  32741. bottom: 181/2995
  32742. }
  32743. },
  32744. },
  32745. [
  32746. {
  32747. name: "Normal",
  32748. height: math.unit(5 + 2/12, "feet"),
  32749. default: true
  32750. },
  32751. ]
  32752. ))
  32753. characterMakers.push(() => makeCharacter(
  32754. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32755. {
  32756. front: {
  32757. height: math.unit(9, "feet"),
  32758. name: "Front",
  32759. image: {
  32760. source: "./media/characters/nicki/front.svg",
  32761. extra: 1240/990,
  32762. bottom: 45/1285
  32763. },
  32764. form: "anthro",
  32765. default: true
  32766. },
  32767. side: {
  32768. height: math.unit(9, "feet"),
  32769. name: "Side",
  32770. image: {
  32771. source: "./media/characters/nicki/side.svg",
  32772. extra: 1047/973,
  32773. bottom: 61/1108
  32774. },
  32775. form: "anthro"
  32776. },
  32777. back: {
  32778. height: math.unit(9, "feet"),
  32779. name: "Back",
  32780. image: {
  32781. source: "./media/characters/nicki/back.svg",
  32782. extra: 1006/965,
  32783. bottom: 39/1045
  32784. },
  32785. form: "anthro"
  32786. },
  32787. taur: {
  32788. height: math.unit(15, "feet"),
  32789. name: "Taur",
  32790. image: {
  32791. source: "./media/characters/nicki/taur.svg",
  32792. extra: 1592/1347,
  32793. bottom: 0/1592
  32794. },
  32795. form: "taur",
  32796. default: true
  32797. },
  32798. },
  32799. [
  32800. {
  32801. name: "Normal",
  32802. height: math.unit(9, "feet"),
  32803. form: "anthro",
  32804. default: true
  32805. },
  32806. {
  32807. name: "Normal",
  32808. height: math.unit(15, "feet"),
  32809. form: "taur",
  32810. default: true
  32811. }
  32812. ],
  32813. {
  32814. "anthro": {
  32815. name: "Anthro",
  32816. default: true
  32817. },
  32818. "taur": {
  32819. name: "Taur"
  32820. }
  32821. }
  32822. ))
  32823. characterMakers.push(() => makeCharacter(
  32824. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32825. {
  32826. front: {
  32827. height: math.unit(7 + 10/12, "feet"),
  32828. weight: math.unit(3.5, "tons"),
  32829. name: "Front",
  32830. image: {
  32831. source: "./media/characters/lee/front.svg",
  32832. extra: 1773/1615,
  32833. bottom: 86/1859
  32834. }
  32835. },
  32836. hand: {
  32837. height: math.unit(1.78, "feet"),
  32838. name: "Hand",
  32839. image: {
  32840. source: "./media/characters/lee/hand.svg"
  32841. }
  32842. },
  32843. maw: {
  32844. height: math.unit(1.18, "feet"),
  32845. name: "Maw",
  32846. image: {
  32847. source: "./media/characters/lee/maw.svg"
  32848. }
  32849. },
  32850. },
  32851. [
  32852. {
  32853. name: "Normal",
  32854. height: math.unit(7 + 10/12, "feet"),
  32855. default: true
  32856. },
  32857. ]
  32858. ))
  32859. characterMakers.push(() => makeCharacter(
  32860. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32861. {
  32862. front: {
  32863. height: math.unit(9, "feet"),
  32864. name: "Front",
  32865. image: {
  32866. source: "./media/characters/guti/front.svg",
  32867. extra: 4551/4355,
  32868. bottom: 123/4674
  32869. }
  32870. },
  32871. tongue: {
  32872. height: math.unit(1, "feet"),
  32873. name: "Tongue",
  32874. image: {
  32875. source: "./media/characters/guti/tongue.svg"
  32876. }
  32877. },
  32878. paw: {
  32879. height: math.unit(1.18, "feet"),
  32880. name: "Paw",
  32881. image: {
  32882. source: "./media/characters/guti/paw.svg"
  32883. }
  32884. },
  32885. },
  32886. [
  32887. {
  32888. name: "Normal",
  32889. height: math.unit(9, "feet"),
  32890. default: true
  32891. },
  32892. ]
  32893. ))
  32894. characterMakers.push(() => makeCharacter(
  32895. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32896. {
  32897. side: {
  32898. height: math.unit(5, "meters"),
  32899. name: "Side",
  32900. image: {
  32901. source: "./media/characters/vesper/side.svg",
  32902. extra: 1605/1518,
  32903. bottom: 0/1605
  32904. }
  32905. },
  32906. },
  32907. [
  32908. {
  32909. name: "Small",
  32910. height: math.unit(5, "meters")
  32911. },
  32912. {
  32913. name: "Sage",
  32914. height: math.unit(100, "meters"),
  32915. default: true
  32916. },
  32917. {
  32918. name: "Fun Size",
  32919. height: math.unit(600, "meters")
  32920. },
  32921. {
  32922. name: "Goddess",
  32923. height: math.unit(20000, "km")
  32924. },
  32925. {
  32926. name: "Maximum",
  32927. height: math.unit(5, "galaxies")
  32928. },
  32929. ]
  32930. ))
  32931. characterMakers.push(() => makeCharacter(
  32932. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32933. {
  32934. front: {
  32935. height: math.unit(6 + 3/12, "feet"),
  32936. weight: math.unit(190, "lb"),
  32937. name: "Front",
  32938. image: {
  32939. source: "./media/characters/gawain/front.svg",
  32940. extra: 2222/2139,
  32941. bottom: 90/2312
  32942. }
  32943. },
  32944. back: {
  32945. height: math.unit(6 + 3/12, "feet"),
  32946. weight: math.unit(190, "lb"),
  32947. name: "Back",
  32948. image: {
  32949. source: "./media/characters/gawain/back.svg",
  32950. extra: 2199/2111,
  32951. bottom: 73/2272
  32952. }
  32953. },
  32954. },
  32955. [
  32956. {
  32957. name: "Normal",
  32958. height: math.unit(6 + 3/12, "feet"),
  32959. default: true
  32960. },
  32961. ]
  32962. ))
  32963. characterMakers.push(() => makeCharacter(
  32964. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32965. {
  32966. side: {
  32967. height: math.unit(3.5, "meters"),
  32968. weight: math.unit(16000, "lb"),
  32969. name: "Side",
  32970. image: {
  32971. source: "./media/characters/dascalti/side.svg",
  32972. extra: 392/273,
  32973. bottom: 47/439
  32974. }
  32975. },
  32976. breath: {
  32977. height: math.unit(7.4, "feet"),
  32978. name: "Breath",
  32979. image: {
  32980. source: "./media/characters/dascalti/breath.svg"
  32981. }
  32982. },
  32983. fed: {
  32984. height: math.unit(3.6, "meters"),
  32985. weight: math.unit(16000, "lb"),
  32986. name: "Fed",
  32987. image: {
  32988. source: "./media/characters/dascalti/fed.svg",
  32989. extra: 1419/820,
  32990. bottom: 95/1514
  32991. }
  32992. },
  32993. },
  32994. [
  32995. {
  32996. name: "Normal",
  32997. height: math.unit(3.5, "meters"),
  32998. default: true
  32999. },
  33000. ]
  33001. ))
  33002. characterMakers.push(() => makeCharacter(
  33003. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33004. {
  33005. front: {
  33006. height: math.unit(3 + 5/12, "feet"),
  33007. name: "Front",
  33008. image: {
  33009. source: "./media/characters/mauve/front.svg",
  33010. extra: 1126/1033,
  33011. bottom: 65/1191
  33012. }
  33013. },
  33014. side: {
  33015. height: math.unit(3 + 5/12, "feet"),
  33016. name: "Side",
  33017. image: {
  33018. source: "./media/characters/mauve/side.svg",
  33019. extra: 1089/1001,
  33020. bottom: 29/1118
  33021. }
  33022. },
  33023. back: {
  33024. height: math.unit(3 + 5/12, "feet"),
  33025. name: "Back",
  33026. image: {
  33027. source: "./media/characters/mauve/back.svg",
  33028. extra: 1173/1053,
  33029. bottom: 109/1282
  33030. }
  33031. },
  33032. },
  33033. [
  33034. {
  33035. name: "Normal",
  33036. height: math.unit(3 + 5/12, "feet"),
  33037. default: true
  33038. },
  33039. ]
  33040. ))
  33041. characterMakers.push(() => makeCharacter(
  33042. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33043. {
  33044. front: {
  33045. height: math.unit(6 + 3/12, "feet"),
  33046. weight: math.unit(430, "lb"),
  33047. name: "Front",
  33048. image: {
  33049. source: "./media/characters/carlos/front.svg",
  33050. extra: 1964/1913,
  33051. bottom: 70/2034
  33052. }
  33053. },
  33054. },
  33055. [
  33056. {
  33057. name: "Normal",
  33058. height: math.unit(6 + 3/12, "feet"),
  33059. default: true
  33060. },
  33061. ]
  33062. ))
  33063. characterMakers.push(() => makeCharacter(
  33064. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33065. {
  33066. back: {
  33067. height: math.unit(5 + 10/12, "feet"),
  33068. weight: math.unit(200, "lb"),
  33069. name: "Back",
  33070. image: {
  33071. source: "./media/characters/jax/back.svg",
  33072. extra: 764/739,
  33073. bottom: 25/789
  33074. }
  33075. },
  33076. },
  33077. [
  33078. {
  33079. name: "Normal",
  33080. height: math.unit(5 + 10/12, "feet"),
  33081. default: true
  33082. },
  33083. ]
  33084. ))
  33085. characterMakers.push(() => makeCharacter(
  33086. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33087. {
  33088. front: {
  33089. height: math.unit(8, "feet"),
  33090. weight: math.unit(250, "lb"),
  33091. name: "Front",
  33092. image: {
  33093. source: "./media/characters/eikthynir/front.svg",
  33094. extra: 1332/1166,
  33095. bottom: 82/1414
  33096. }
  33097. },
  33098. back: {
  33099. height: math.unit(8, "feet"),
  33100. weight: math.unit(250, "lb"),
  33101. name: "Back",
  33102. image: {
  33103. source: "./media/characters/eikthynir/back.svg",
  33104. extra: 1342/1190,
  33105. bottom: 19/1361
  33106. }
  33107. },
  33108. dick: {
  33109. height: math.unit(2.35, "feet"),
  33110. name: "Dick",
  33111. image: {
  33112. source: "./media/characters/eikthynir/dick.svg"
  33113. }
  33114. },
  33115. },
  33116. [
  33117. {
  33118. name: "Normal",
  33119. height: math.unit(8, "feet"),
  33120. default: true
  33121. },
  33122. ]
  33123. ))
  33124. characterMakers.push(() => makeCharacter(
  33125. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33126. {
  33127. front: {
  33128. height: math.unit(99, "meters"),
  33129. weight: math.unit(13000, "tons"),
  33130. name: "Front",
  33131. image: {
  33132. source: "./media/characters/zlmos/front.svg",
  33133. extra: 2202/1992,
  33134. bottom: 315/2517
  33135. }
  33136. },
  33137. },
  33138. [
  33139. {
  33140. name: "Macro",
  33141. height: math.unit(99, "meters"),
  33142. default: true
  33143. },
  33144. ]
  33145. ))
  33146. characterMakers.push(() => makeCharacter(
  33147. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33148. {
  33149. front: {
  33150. height: math.unit(6 + 5/12, "feet"),
  33151. name: "Front",
  33152. image: {
  33153. source: "./media/characters/purri/front.svg",
  33154. extra: 1698/1610,
  33155. bottom: 32/1730
  33156. }
  33157. },
  33158. frontAlt: {
  33159. height: math.unit(6 + 5/12, "feet"),
  33160. name: "Front (Alt)",
  33161. image: {
  33162. source: "./media/characters/purri/front-alt.svg",
  33163. extra: 450/420,
  33164. bottom: 26/476
  33165. }
  33166. },
  33167. boots: {
  33168. height: math.unit(5.5, "feet"),
  33169. name: "Boots",
  33170. image: {
  33171. source: "./media/characters/purri/boots.svg",
  33172. extra: 905/853,
  33173. bottom: 18/923
  33174. }
  33175. },
  33176. lying: {
  33177. height: math.unit(2, "feet"),
  33178. name: "Lying",
  33179. image: {
  33180. source: "./media/characters/purri/lying.svg",
  33181. extra: 940/843,
  33182. bottom: 146/1086
  33183. }
  33184. },
  33185. devious: {
  33186. height: math.unit(1.77, "feet"),
  33187. name: "Devious",
  33188. image: {
  33189. source: "./media/characters/purri/devious.svg",
  33190. extra: 1440/1155,
  33191. bottom: 147/1587
  33192. }
  33193. },
  33194. bean: {
  33195. height: math.unit(1.94, "feet"),
  33196. name: "Bean",
  33197. image: {
  33198. source: "./media/characters/purri/bean.svg"
  33199. }
  33200. },
  33201. },
  33202. [
  33203. {
  33204. name: "Micro",
  33205. height: math.unit(1, "mm")
  33206. },
  33207. {
  33208. name: "Normal",
  33209. height: math.unit(6 + 5/12, "feet"),
  33210. default: true
  33211. },
  33212. {
  33213. name: "Macro :3c",
  33214. height: math.unit(2, "miles")
  33215. },
  33216. ]
  33217. ))
  33218. characterMakers.push(() => makeCharacter(
  33219. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33220. {
  33221. front: {
  33222. height: math.unit(6 + 2/12, "feet"),
  33223. weight: math.unit(250, "lb"),
  33224. name: "Front",
  33225. image: {
  33226. source: "./media/characters/moonlight/front.svg",
  33227. extra: 1044/908,
  33228. bottom: 56/1100
  33229. }
  33230. },
  33231. feral: {
  33232. height: math.unit(3 + 1/12, "feet"),
  33233. weight: math.unit(50, "kg"),
  33234. name: "Feral",
  33235. image: {
  33236. source: "./media/characters/moonlight/feral.svg",
  33237. extra: 3705/2791,
  33238. bottom: 145/3850
  33239. }
  33240. },
  33241. paw: {
  33242. height: math.unit(1, "feet"),
  33243. name: "Paw",
  33244. image: {
  33245. source: "./media/characters/moonlight/paw.svg"
  33246. }
  33247. },
  33248. paws: {
  33249. height: math.unit(0.98, "feet"),
  33250. name: "Paws",
  33251. image: {
  33252. source: "./media/characters/moonlight/paws.svg",
  33253. extra: 939/939,
  33254. bottom: 50/989
  33255. }
  33256. },
  33257. mouth: {
  33258. height: math.unit(0.48, "feet"),
  33259. name: "Mouth",
  33260. image: {
  33261. source: "./media/characters/moonlight/mouth.svg"
  33262. }
  33263. },
  33264. dick: {
  33265. height: math.unit(1.46, "feet"),
  33266. name: "Dick",
  33267. image: {
  33268. source: "./media/characters/moonlight/dick.svg"
  33269. }
  33270. },
  33271. },
  33272. [
  33273. {
  33274. name: "Normal",
  33275. height: math.unit(6 + 2/12, "feet"),
  33276. default: true
  33277. },
  33278. {
  33279. name: "Macro",
  33280. height: math.unit(300, "feet")
  33281. },
  33282. {
  33283. name: "Macro+",
  33284. height: math.unit(1, "mile")
  33285. },
  33286. {
  33287. name: "Mt. Moon",
  33288. height: math.unit(5, "miles")
  33289. },
  33290. {
  33291. name: "Megamacro",
  33292. height: math.unit(15, "miles")
  33293. },
  33294. ]
  33295. ))
  33296. characterMakers.push(() => makeCharacter(
  33297. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33298. {
  33299. back: {
  33300. height: math.unit(6, "feet"),
  33301. weight: math.unit(150, "lb"),
  33302. name: "Back",
  33303. image: {
  33304. source: "./media/characters/sylen/back.svg",
  33305. extra: 1335/1273,
  33306. bottom: 107/1442
  33307. }
  33308. },
  33309. },
  33310. [
  33311. {
  33312. name: "Normal",
  33313. height: math.unit(5 + 5/12, "feet")
  33314. },
  33315. {
  33316. name: "Megamacro",
  33317. height: math.unit(3, "miles"),
  33318. default: true
  33319. },
  33320. ]
  33321. ))
  33322. characterMakers.push(() => makeCharacter(
  33323. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33324. {
  33325. front: {
  33326. height: math.unit(6, "feet"),
  33327. weight: math.unit(190, "lb"),
  33328. name: "Front",
  33329. image: {
  33330. source: "./media/characters/huttser/front.svg",
  33331. extra: 1152/1058,
  33332. bottom: 23/1175
  33333. }
  33334. },
  33335. side: {
  33336. height: math.unit(6, "feet"),
  33337. weight: math.unit(190, "lb"),
  33338. name: "Side",
  33339. image: {
  33340. source: "./media/characters/huttser/side.svg",
  33341. extra: 1174/1065,
  33342. bottom: 18/1192
  33343. }
  33344. },
  33345. back: {
  33346. height: math.unit(6, "feet"),
  33347. weight: math.unit(190, "lb"),
  33348. name: "Back",
  33349. image: {
  33350. source: "./media/characters/huttser/back.svg",
  33351. extra: 1158/1056,
  33352. bottom: 12/1170
  33353. }
  33354. },
  33355. },
  33356. [
  33357. ]
  33358. ))
  33359. characterMakers.push(() => makeCharacter(
  33360. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33361. {
  33362. side: {
  33363. height: math.unit(12 + 9/12, "feet"),
  33364. weight: math.unit(15000, "lb"),
  33365. name: "Side",
  33366. image: {
  33367. source: "./media/characters/faan/side.svg",
  33368. extra: 2747/2697,
  33369. bottom: 0/2747
  33370. }
  33371. },
  33372. front: {
  33373. height: math.unit(12 + 9/12, "feet"),
  33374. weight: math.unit(15000, "lb"),
  33375. name: "Front",
  33376. image: {
  33377. source: "./media/characters/faan/front.svg",
  33378. extra: 607/571,
  33379. bottom: 24/631
  33380. }
  33381. },
  33382. head: {
  33383. height: math.unit(2.85, "feet"),
  33384. name: "Head",
  33385. image: {
  33386. source: "./media/characters/faan/head.svg"
  33387. }
  33388. },
  33389. headAlt: {
  33390. height: math.unit(3.13, "feet"),
  33391. name: "Head-alt",
  33392. image: {
  33393. source: "./media/characters/faan/head-alt.svg"
  33394. }
  33395. },
  33396. },
  33397. [
  33398. {
  33399. name: "Normal",
  33400. height: math.unit(12 + 9/12, "feet"),
  33401. default: true
  33402. },
  33403. ]
  33404. ))
  33405. characterMakers.push(() => makeCharacter(
  33406. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33407. {
  33408. front: {
  33409. height: math.unit(6, "feet"),
  33410. weight: math.unit(300, "lb"),
  33411. name: "Front",
  33412. image: {
  33413. source: "./media/characters/tanio/front.svg",
  33414. extra: 711/673,
  33415. bottom: 25/736
  33416. }
  33417. },
  33418. },
  33419. [
  33420. {
  33421. name: "Normal",
  33422. height: math.unit(6, "feet"),
  33423. default: true
  33424. },
  33425. ]
  33426. ))
  33427. characterMakers.push(() => makeCharacter(
  33428. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33429. {
  33430. front: {
  33431. height: math.unit(3, "inches"),
  33432. name: "Front",
  33433. image: {
  33434. source: "./media/characters/noboru/front.svg",
  33435. extra: 1039/932,
  33436. bottom: 18/1057
  33437. }
  33438. },
  33439. },
  33440. [
  33441. {
  33442. name: "Micro",
  33443. height: math.unit(3, "inches"),
  33444. default: true
  33445. },
  33446. ]
  33447. ))
  33448. characterMakers.push(() => makeCharacter(
  33449. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33450. {
  33451. front: {
  33452. height: math.unit(1.85, "meters"),
  33453. weight: math.unit(80, "kg"),
  33454. name: "Front",
  33455. image: {
  33456. source: "./media/characters/daniel-barrett/front.svg",
  33457. extra: 355/337,
  33458. bottom: 9/364
  33459. }
  33460. },
  33461. },
  33462. [
  33463. {
  33464. name: "Pico",
  33465. height: math.unit(0.0433, "mm")
  33466. },
  33467. {
  33468. name: "Nano",
  33469. height: math.unit(1.5, "mm")
  33470. },
  33471. {
  33472. name: "Micro",
  33473. height: math.unit(5.3, "cm"),
  33474. default: true
  33475. },
  33476. {
  33477. name: "Normal",
  33478. height: math.unit(1.85, "meters")
  33479. },
  33480. {
  33481. name: "Macro",
  33482. height: math.unit(64.7, "meters")
  33483. },
  33484. {
  33485. name: "Megamacro",
  33486. height: math.unit(2.26, "km")
  33487. },
  33488. {
  33489. name: "Gigamacro",
  33490. height: math.unit(79, "km")
  33491. },
  33492. {
  33493. name: "Teramacro",
  33494. height: math.unit(2765, "km")
  33495. },
  33496. {
  33497. name: "Petamacro",
  33498. height: math.unit(96678, "km")
  33499. },
  33500. ]
  33501. ))
  33502. characterMakers.push(() => makeCharacter(
  33503. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33504. {
  33505. front: {
  33506. height: math.unit(30, "meters"),
  33507. weight: math.unit(400, "tons"),
  33508. name: "Front",
  33509. image: {
  33510. source: "./media/characters/zeel/front.svg",
  33511. extra: 2599/2599,
  33512. bottom: 226/2825
  33513. }
  33514. },
  33515. },
  33516. [
  33517. {
  33518. name: "Macro",
  33519. height: math.unit(30, "meters"),
  33520. default: true
  33521. },
  33522. ]
  33523. ))
  33524. characterMakers.push(() => makeCharacter(
  33525. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33526. {
  33527. front: {
  33528. height: math.unit(6 + 7/12, "feet"),
  33529. weight: math.unit(210, "lb"),
  33530. name: "Front",
  33531. image: {
  33532. source: "./media/characters/tarn/front.svg",
  33533. extra: 3517/3220,
  33534. bottom: 91/3608
  33535. }
  33536. },
  33537. back: {
  33538. height: math.unit(6 + 7/12, "feet"),
  33539. weight: math.unit(210, "lb"),
  33540. name: "Back",
  33541. image: {
  33542. source: "./media/characters/tarn/back.svg",
  33543. extra: 3566/3241,
  33544. bottom: 34/3600
  33545. }
  33546. },
  33547. dick: {
  33548. height: math.unit(1.65, "feet"),
  33549. name: "Dick",
  33550. image: {
  33551. source: "./media/characters/tarn/dick.svg"
  33552. }
  33553. },
  33554. paw: {
  33555. height: math.unit(1.80, "feet"),
  33556. name: "Paw",
  33557. image: {
  33558. source: "./media/characters/tarn/paw.svg"
  33559. }
  33560. },
  33561. tongue: {
  33562. height: math.unit(0.97, "feet"),
  33563. name: "Tongue",
  33564. image: {
  33565. source: "./media/characters/tarn/tongue.svg"
  33566. }
  33567. },
  33568. },
  33569. [
  33570. {
  33571. name: "Micro",
  33572. height: math.unit(4, "inches")
  33573. },
  33574. {
  33575. name: "Normal",
  33576. height: math.unit(6 + 7/12, "feet"),
  33577. default: true
  33578. },
  33579. {
  33580. name: "Macro",
  33581. height: math.unit(300, "feet")
  33582. },
  33583. ]
  33584. ))
  33585. characterMakers.push(() => makeCharacter(
  33586. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33587. {
  33588. front: {
  33589. height: math.unit(5 + 7/12, "feet"),
  33590. weight: math.unit(80, "kg"),
  33591. name: "Front",
  33592. image: {
  33593. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33594. extra: 3023/2865,
  33595. bottom: 33/3056
  33596. }
  33597. },
  33598. back: {
  33599. height: math.unit(5 + 7/12, "feet"),
  33600. weight: math.unit(80, "kg"),
  33601. name: "Back",
  33602. image: {
  33603. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33604. extra: 3020/2886,
  33605. bottom: 30/3050
  33606. }
  33607. },
  33608. dick: {
  33609. height: math.unit(0.98, "feet"),
  33610. name: "Dick",
  33611. image: {
  33612. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33613. }
  33614. },
  33615. anatomy: {
  33616. height: math.unit(2.86, "feet"),
  33617. name: "Anatomy",
  33618. image: {
  33619. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33620. }
  33621. },
  33622. },
  33623. [
  33624. {
  33625. name: "Really Small",
  33626. height: math.unit(2, "inches")
  33627. },
  33628. {
  33629. name: "Micro",
  33630. height: math.unit(5.583, "inches")
  33631. },
  33632. {
  33633. name: "Normal",
  33634. height: math.unit(5 + 7/12, "feet"),
  33635. default: true
  33636. },
  33637. {
  33638. name: "Macro",
  33639. height: math.unit(67, "feet")
  33640. },
  33641. {
  33642. name: "Megamacro",
  33643. height: math.unit(134, "feet")
  33644. },
  33645. ]
  33646. ))
  33647. characterMakers.push(() => makeCharacter(
  33648. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33649. {
  33650. front: {
  33651. height: math.unit(9, "feet"),
  33652. weight: math.unit(120, "lb"),
  33653. name: "Front",
  33654. image: {
  33655. source: "./media/characters/sally/front.svg",
  33656. extra: 1506/1349,
  33657. bottom: 66/1572
  33658. }
  33659. },
  33660. },
  33661. [
  33662. {
  33663. name: "Normal",
  33664. height: math.unit(9, "feet"),
  33665. default: true
  33666. },
  33667. ]
  33668. ))
  33669. characterMakers.push(() => makeCharacter(
  33670. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33671. {
  33672. front: {
  33673. height: math.unit(8, "feet"),
  33674. weight: math.unit(900, "lb"),
  33675. name: "Front",
  33676. image: {
  33677. source: "./media/characters/owen/front.svg",
  33678. extra: 1761/1657,
  33679. bottom: 74/1835
  33680. }
  33681. },
  33682. side: {
  33683. height: math.unit(8, "feet"),
  33684. weight: math.unit(900, "lb"),
  33685. name: "Side",
  33686. image: {
  33687. source: "./media/characters/owen/side.svg",
  33688. extra: 1797/1734,
  33689. bottom: 30/1827
  33690. }
  33691. },
  33692. back: {
  33693. height: math.unit(8, "feet"),
  33694. weight: math.unit(900, "lb"),
  33695. name: "Back",
  33696. image: {
  33697. source: "./media/characters/owen/back.svg",
  33698. extra: 1796/1706,
  33699. bottom: 59/1855
  33700. }
  33701. },
  33702. maw: {
  33703. height: math.unit(1.76, "feet"),
  33704. name: "Maw",
  33705. image: {
  33706. source: "./media/characters/owen/maw.svg"
  33707. }
  33708. },
  33709. },
  33710. [
  33711. {
  33712. name: "Normal",
  33713. height: math.unit(8, "feet"),
  33714. default: true
  33715. },
  33716. ]
  33717. ))
  33718. characterMakers.push(() => makeCharacter(
  33719. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33720. {
  33721. front: {
  33722. height: math.unit(4, "feet"),
  33723. weight: math.unit(400, "lb"),
  33724. name: "Front",
  33725. image: {
  33726. source: "./media/characters/ryth/front.svg",
  33727. extra: 1920/1748,
  33728. bottom: 42/1962
  33729. }
  33730. },
  33731. back: {
  33732. height: math.unit(4, "feet"),
  33733. weight: math.unit(400, "lb"),
  33734. name: "Back",
  33735. image: {
  33736. source: "./media/characters/ryth/back.svg",
  33737. extra: 1897/1690,
  33738. bottom: 89/1986
  33739. }
  33740. },
  33741. mouth: {
  33742. height: math.unit(1.39, "feet"),
  33743. name: "Mouth",
  33744. image: {
  33745. source: "./media/characters/ryth/mouth.svg"
  33746. }
  33747. },
  33748. tailmaw: {
  33749. height: math.unit(1.23, "feet"),
  33750. name: "Tailmaw",
  33751. image: {
  33752. source: "./media/characters/ryth/tailmaw.svg"
  33753. }
  33754. },
  33755. goia: {
  33756. height: math.unit(4, "meters"),
  33757. weight: math.unit(10800, "lb"),
  33758. name: "Goia",
  33759. image: {
  33760. source: "./media/characters/ryth/goia.svg",
  33761. extra: 745/640,
  33762. bottom: 107/852
  33763. }
  33764. },
  33765. goiaFront: {
  33766. height: math.unit(4, "meters"),
  33767. weight: math.unit(10800, "lb"),
  33768. name: "Goia (Front)",
  33769. image: {
  33770. source: "./media/characters/ryth/goia-front.svg",
  33771. extra: 750/586,
  33772. bottom: 114/864
  33773. }
  33774. },
  33775. goiaMaw: {
  33776. height: math.unit(5.55, "feet"),
  33777. name: "Goia Maw",
  33778. image: {
  33779. source: "./media/characters/ryth/goia-maw.svg"
  33780. }
  33781. },
  33782. goiaForepaw: {
  33783. height: math.unit(3.5, "feet"),
  33784. name: "Goia Forepaw",
  33785. image: {
  33786. source: "./media/characters/ryth/goia-forepaw.svg"
  33787. }
  33788. },
  33789. goiaHindpaw: {
  33790. height: math.unit(5.55, "feet"),
  33791. name: "Goia Hindpaw",
  33792. image: {
  33793. source: "./media/characters/ryth/goia-hindpaw.svg"
  33794. }
  33795. },
  33796. },
  33797. [
  33798. {
  33799. name: "Normal",
  33800. height: math.unit(4, "feet"),
  33801. default: true
  33802. },
  33803. ]
  33804. ))
  33805. characterMakers.push(() => makeCharacter(
  33806. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33807. {
  33808. front: {
  33809. height: math.unit(7, "feet"),
  33810. weight: math.unit(180, "lb"),
  33811. name: "Front",
  33812. image: {
  33813. source: "./media/characters/necrolance/front.svg",
  33814. extra: 1062/947,
  33815. bottom: 41/1103
  33816. }
  33817. },
  33818. back: {
  33819. height: math.unit(7, "feet"),
  33820. weight: math.unit(180, "lb"),
  33821. name: "Back",
  33822. image: {
  33823. source: "./media/characters/necrolance/back.svg",
  33824. extra: 1045/984,
  33825. bottom: 14/1059
  33826. }
  33827. },
  33828. wing: {
  33829. height: math.unit(2.67, "feet"),
  33830. name: "Wing",
  33831. image: {
  33832. source: "./media/characters/necrolance/wing.svg"
  33833. }
  33834. },
  33835. },
  33836. [
  33837. {
  33838. name: "Normal",
  33839. height: math.unit(7, "feet"),
  33840. default: true
  33841. },
  33842. ]
  33843. ))
  33844. characterMakers.push(() => makeCharacter(
  33845. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33846. {
  33847. front: {
  33848. height: math.unit(76, "meters"),
  33849. weight: math.unit(30000, "tons"),
  33850. name: "Front",
  33851. image: {
  33852. source: "./media/characters/tyler/front.svg",
  33853. extra: 1640/1640,
  33854. bottom: 114/1754
  33855. }
  33856. },
  33857. },
  33858. [
  33859. {
  33860. name: "Macro",
  33861. height: math.unit(76, "meters"),
  33862. default: true
  33863. },
  33864. ]
  33865. ))
  33866. characterMakers.push(() => makeCharacter(
  33867. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33868. {
  33869. front: {
  33870. height: math.unit(4 + 11/12, "feet"),
  33871. weight: math.unit(132, "lb"),
  33872. name: "Front",
  33873. image: {
  33874. source: "./media/characters/icey/front.svg",
  33875. extra: 2750/2550,
  33876. bottom: 33/2783
  33877. }
  33878. },
  33879. back: {
  33880. height: math.unit(4 + 11/12, "feet"),
  33881. weight: math.unit(132, "lb"),
  33882. name: "Back",
  33883. image: {
  33884. source: "./media/characters/icey/back.svg",
  33885. extra: 2624/2481,
  33886. bottom: 35/2659
  33887. }
  33888. },
  33889. },
  33890. [
  33891. {
  33892. name: "Normal",
  33893. height: math.unit(4 + 11/12, "feet"),
  33894. default: true
  33895. },
  33896. ]
  33897. ))
  33898. characterMakers.push(() => makeCharacter(
  33899. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33900. {
  33901. front: {
  33902. height: math.unit(100, "feet"),
  33903. weight: math.unit(0, "lb"),
  33904. name: "Front",
  33905. image: {
  33906. source: "./media/characters/smile/front.svg",
  33907. extra: 2983/2912,
  33908. bottom: 162/3145
  33909. }
  33910. },
  33911. back: {
  33912. height: math.unit(100, "feet"),
  33913. weight: math.unit(0, "lb"),
  33914. name: "Back",
  33915. image: {
  33916. source: "./media/characters/smile/back.svg",
  33917. extra: 3143/3031,
  33918. bottom: 91/3234
  33919. }
  33920. },
  33921. head: {
  33922. height: math.unit(26.3, "feet"),
  33923. weight: math.unit(0, "lb"),
  33924. name: "Head",
  33925. image: {
  33926. source: "./media/characters/smile/head.svg"
  33927. }
  33928. },
  33929. collar: {
  33930. height: math.unit(5.3, "feet"),
  33931. weight: math.unit(0, "lb"),
  33932. name: "Collar",
  33933. image: {
  33934. source: "./media/characters/smile/collar.svg"
  33935. }
  33936. },
  33937. },
  33938. [
  33939. {
  33940. name: "Macro",
  33941. height: math.unit(100, "feet"),
  33942. default: true
  33943. },
  33944. ]
  33945. ))
  33946. characterMakers.push(() => makeCharacter(
  33947. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33948. {
  33949. dragon: {
  33950. height: math.unit(26, "feet"),
  33951. weight: math.unit(36, "tons"),
  33952. name: "Dragon",
  33953. image: {
  33954. source: "./media/characters/arimphae/dragon.svg",
  33955. extra: 1574/983,
  33956. bottom: 357/1931
  33957. }
  33958. },
  33959. drake: {
  33960. height: math.unit(9, "feet"),
  33961. weight: math.unit(1.5, "tons"),
  33962. name: "Drake",
  33963. image: {
  33964. source: "./media/characters/arimphae/drake.svg",
  33965. extra: 1120/925,
  33966. bottom: 435/1555
  33967. }
  33968. },
  33969. },
  33970. [
  33971. {
  33972. name: "Small",
  33973. height: math.unit(26*5/9, "feet")
  33974. },
  33975. {
  33976. name: "Normal",
  33977. height: math.unit(26, "feet"),
  33978. default: true
  33979. },
  33980. ]
  33981. ))
  33982. characterMakers.push(() => makeCharacter(
  33983. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33984. {
  33985. front: {
  33986. height: math.unit(8 + 9/12, "feet"),
  33987. name: "Front",
  33988. image: {
  33989. source: "./media/characters/xander/front.svg",
  33990. extra: 1237/974,
  33991. bottom: 94/1331
  33992. }
  33993. },
  33994. },
  33995. [
  33996. {
  33997. name: "Normal",
  33998. height: math.unit(8 + 9/12, "feet"),
  33999. default: true
  34000. },
  34001. {
  34002. name: "Gaze Grabber",
  34003. height: math.unit(13 + 8/12, "feet")
  34004. },
  34005. {
  34006. name: "Jaw Dropper",
  34007. height: math.unit(27, "feet")
  34008. },
  34009. {
  34010. name: "Show Stopper",
  34011. height: math.unit(136, "feet")
  34012. },
  34013. {
  34014. name: "Superstar",
  34015. height: math.unit(1.9e6, "miles")
  34016. },
  34017. ]
  34018. ))
  34019. characterMakers.push(() => makeCharacter(
  34020. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34021. {
  34022. side: {
  34023. height: math.unit(2100, "feet"),
  34024. name: "Side",
  34025. image: {
  34026. source: "./media/characters/osiris/side.svg",
  34027. extra: 1105/939,
  34028. bottom: 167/1272
  34029. }
  34030. },
  34031. },
  34032. [
  34033. {
  34034. name: "Macro",
  34035. height: math.unit(2100, "feet"),
  34036. default: true
  34037. },
  34038. ]
  34039. ))
  34040. characterMakers.push(() => makeCharacter(
  34041. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34042. {
  34043. front: {
  34044. height: math.unit(6 + 8/12, "feet"),
  34045. weight: math.unit(225, "lb"),
  34046. name: "Front",
  34047. image: {
  34048. source: "./media/characters/rhys-londe/front.svg",
  34049. extra: 2258/2141,
  34050. bottom: 188/2446
  34051. }
  34052. },
  34053. back: {
  34054. height: math.unit(6 + 8/12, "feet"),
  34055. weight: math.unit(225, "lb"),
  34056. name: "Back",
  34057. image: {
  34058. source: "./media/characters/rhys-londe/back.svg",
  34059. extra: 2237/2137,
  34060. bottom: 63/2300
  34061. }
  34062. },
  34063. frontNsfw: {
  34064. height: math.unit(6 + 8/12, "feet"),
  34065. weight: math.unit(225, "lb"),
  34066. name: "Front (NSFW)",
  34067. image: {
  34068. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34069. extra: 2258/2141,
  34070. bottom: 188/2446
  34071. }
  34072. },
  34073. backNsfw: {
  34074. height: math.unit(6 + 8/12, "feet"),
  34075. weight: math.unit(225, "lb"),
  34076. name: "Back (NSFW)",
  34077. image: {
  34078. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34079. extra: 2237/2137,
  34080. bottom: 63/2300
  34081. }
  34082. },
  34083. dick: {
  34084. height: math.unit(30, "inches"),
  34085. name: "Dick",
  34086. image: {
  34087. source: "./media/characters/rhys-londe/dick.svg"
  34088. }
  34089. },
  34090. maw: {
  34091. height: math.unit(1.6, "feet"),
  34092. name: "Maw",
  34093. image: {
  34094. source: "./media/characters/rhys-londe/maw.svg"
  34095. }
  34096. },
  34097. },
  34098. [
  34099. {
  34100. name: "Normal",
  34101. height: math.unit(6 + 8/12, "feet"),
  34102. default: true
  34103. },
  34104. ]
  34105. ))
  34106. characterMakers.push(() => makeCharacter(
  34107. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34108. {
  34109. front: {
  34110. height: math.unit(3 + 10/12, "feet"),
  34111. weight: math.unit(90, "lb"),
  34112. name: "Front",
  34113. image: {
  34114. source: "./media/characters/taivas-ensim/front.svg",
  34115. extra: 1327/1216,
  34116. bottom: 96/1423
  34117. }
  34118. },
  34119. back: {
  34120. height: math.unit(3 + 10/12, "feet"),
  34121. weight: math.unit(90, "lb"),
  34122. name: "Back",
  34123. image: {
  34124. source: "./media/characters/taivas-ensim/back.svg",
  34125. extra: 1355/1247,
  34126. bottom: 11/1366
  34127. }
  34128. },
  34129. frontNsfw: {
  34130. height: math.unit(3 + 10/12, "feet"),
  34131. weight: math.unit(90, "lb"),
  34132. name: "Front (NSFW)",
  34133. image: {
  34134. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34135. extra: 1327/1216,
  34136. bottom: 96/1423
  34137. }
  34138. },
  34139. backNsfw: {
  34140. height: math.unit(3 + 10/12, "feet"),
  34141. weight: math.unit(90, "lb"),
  34142. name: "Back (NSFW)",
  34143. image: {
  34144. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34145. extra: 1355/1247,
  34146. bottom: 11/1366
  34147. }
  34148. },
  34149. },
  34150. [
  34151. {
  34152. name: "Normal",
  34153. height: math.unit(3 + 10/12, "feet"),
  34154. default: true
  34155. },
  34156. ]
  34157. ))
  34158. characterMakers.push(() => makeCharacter(
  34159. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34160. {
  34161. front: {
  34162. height: math.unit(9 + 6/12, "feet"),
  34163. weight: math.unit(940, "lb"),
  34164. name: "Front",
  34165. image: {
  34166. source: "./media/characters/byliss/front.svg",
  34167. extra: 1327/1290,
  34168. bottom: 82/1409
  34169. }
  34170. },
  34171. back: {
  34172. height: math.unit(9 + 6/12, "feet"),
  34173. weight: math.unit(940, "lb"),
  34174. name: "Back",
  34175. image: {
  34176. source: "./media/characters/byliss/back.svg",
  34177. extra: 1376/1349,
  34178. bottom: 9/1385
  34179. }
  34180. },
  34181. frontNsfw: {
  34182. height: math.unit(9 + 6/12, "feet"),
  34183. weight: math.unit(940, "lb"),
  34184. name: "Front (NSFW)",
  34185. image: {
  34186. source: "./media/characters/byliss/front-nsfw.svg",
  34187. extra: 1327/1290,
  34188. bottom: 82/1409
  34189. }
  34190. },
  34191. backNsfw: {
  34192. height: math.unit(9 + 6/12, "feet"),
  34193. weight: math.unit(940, "lb"),
  34194. name: "Back (NSFW)",
  34195. image: {
  34196. source: "./media/characters/byliss/back-nsfw.svg",
  34197. extra: 1376/1349,
  34198. bottom: 9/1385
  34199. }
  34200. },
  34201. },
  34202. [
  34203. {
  34204. name: "Normal",
  34205. height: math.unit(9 + 6/12, "feet"),
  34206. default: true
  34207. },
  34208. ]
  34209. ))
  34210. characterMakers.push(() => makeCharacter(
  34211. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34212. {
  34213. front: {
  34214. height: math.unit(5 + 2/12, "feet"),
  34215. weight: math.unit(200, "lb"),
  34216. name: "Front",
  34217. image: {
  34218. source: "./media/characters/noraly/front.svg",
  34219. extra: 4985/4773,
  34220. bottom: 150/5135
  34221. }
  34222. },
  34223. full: {
  34224. height: math.unit(5 + 2/12, "feet"),
  34225. weight: math.unit(164, "lb"),
  34226. name: "Full",
  34227. image: {
  34228. source: "./media/characters/noraly/full.svg",
  34229. extra: 1114/1059,
  34230. bottom: 35/1149
  34231. }
  34232. },
  34233. fuller: {
  34234. height: math.unit(5 + 2/12, "feet"),
  34235. weight: math.unit(230, "lb"),
  34236. name: "Fuller",
  34237. image: {
  34238. source: "./media/characters/noraly/fuller.svg",
  34239. extra: 1114/1059,
  34240. bottom: 35/1149
  34241. }
  34242. },
  34243. fullest: {
  34244. height: math.unit(5 + 2/12, "feet"),
  34245. weight: math.unit(300, "lb"),
  34246. name: "Fullest",
  34247. image: {
  34248. source: "./media/characters/noraly/fullest.svg",
  34249. extra: 1114/1059,
  34250. bottom: 35/1149
  34251. }
  34252. },
  34253. },
  34254. [
  34255. {
  34256. name: "Normal",
  34257. height: math.unit(5 + 2/12, "feet"),
  34258. default: true
  34259. },
  34260. ]
  34261. ))
  34262. characterMakers.push(() => makeCharacter(
  34263. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34264. {
  34265. front: {
  34266. height: math.unit(5 + 2/12, "feet"),
  34267. weight: math.unit(210, "lb"),
  34268. name: "Front",
  34269. image: {
  34270. source: "./media/characters/pera/front.svg",
  34271. extra: 1560/1531,
  34272. bottom: 165/1725
  34273. }
  34274. },
  34275. back: {
  34276. height: math.unit(5 + 2/12, "feet"),
  34277. weight: math.unit(210, "lb"),
  34278. name: "Back",
  34279. image: {
  34280. source: "./media/characters/pera/back.svg",
  34281. extra: 1523/1493,
  34282. bottom: 152/1675
  34283. }
  34284. },
  34285. dick: {
  34286. height: math.unit(2.4, "feet"),
  34287. name: "Dick",
  34288. image: {
  34289. source: "./media/characters/pera/dick.svg"
  34290. }
  34291. },
  34292. },
  34293. [
  34294. {
  34295. name: "Normal",
  34296. height: math.unit(5 + 2/12, "feet"),
  34297. default: true
  34298. },
  34299. ]
  34300. ))
  34301. characterMakers.push(() => makeCharacter(
  34302. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34303. {
  34304. front: {
  34305. height: math.unit(12, "feet"),
  34306. weight: math.unit(3200, "lb"),
  34307. name: "Front",
  34308. image: {
  34309. source: "./media/characters/julian/front.svg",
  34310. extra: 2962/2701,
  34311. bottom: 184/3146
  34312. }
  34313. },
  34314. maw: {
  34315. height: math.unit(5.35, "feet"),
  34316. name: "Maw",
  34317. image: {
  34318. source: "./media/characters/julian/maw.svg"
  34319. }
  34320. },
  34321. paw: {
  34322. height: math.unit(3.07, "feet"),
  34323. name: "Paw",
  34324. image: {
  34325. source: "./media/characters/julian/paw.svg"
  34326. }
  34327. },
  34328. },
  34329. [
  34330. {
  34331. name: "Default",
  34332. height: math.unit(12, "feet"),
  34333. default: true
  34334. },
  34335. {
  34336. name: "Big",
  34337. height: math.unit(50, "feet")
  34338. },
  34339. {
  34340. name: "Really Big",
  34341. height: math.unit(1, "mile")
  34342. },
  34343. {
  34344. name: "Extremely Big",
  34345. height: math.unit(100, "miles")
  34346. },
  34347. {
  34348. name: "Planet Hugger",
  34349. height: math.unit(200, "megameters")
  34350. },
  34351. {
  34352. name: "Unreasonably Big",
  34353. height: math.unit(1e300, "meters")
  34354. },
  34355. ]
  34356. ))
  34357. characterMakers.push(() => makeCharacter(
  34358. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34359. {
  34360. solgooleo: {
  34361. height: math.unit(4, "meters"),
  34362. weight: math.unit(6000*1.5, "kg"),
  34363. volume: math.unit(6000, "liters"),
  34364. name: "Solgooleo",
  34365. image: {
  34366. source: "./media/characters/pi/solgooleo.svg",
  34367. extra: 388/331,
  34368. bottom: 29/417
  34369. }
  34370. },
  34371. },
  34372. [
  34373. {
  34374. name: "Normal",
  34375. height: math.unit(4, "meters"),
  34376. default: true
  34377. },
  34378. ]
  34379. ))
  34380. characterMakers.push(() => makeCharacter(
  34381. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34382. {
  34383. front: {
  34384. height: math.unit(8, "feet"),
  34385. weight: math.unit(4, "tons"),
  34386. name: "Front",
  34387. image: {
  34388. source: "./media/characters/shaun/front.svg",
  34389. extra: 503/495,
  34390. bottom: 20/523
  34391. }
  34392. },
  34393. back: {
  34394. height: math.unit(8, "feet"),
  34395. weight: math.unit(4, "tons"),
  34396. name: "Back",
  34397. image: {
  34398. source: "./media/characters/shaun/back.svg",
  34399. extra: 487/480,
  34400. bottom: 20/507
  34401. }
  34402. },
  34403. },
  34404. [
  34405. {
  34406. name: "Lorg",
  34407. height: math.unit(8, "feet"),
  34408. default: true
  34409. },
  34410. ]
  34411. ))
  34412. characterMakers.push(() => makeCharacter(
  34413. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34414. {
  34415. frontAnthro: {
  34416. height: math.unit(7, "feet"),
  34417. name: "Front",
  34418. image: {
  34419. source: "./media/characters/sini/front-anthro.svg",
  34420. extra: 726/678,
  34421. bottom: 35/761
  34422. },
  34423. form: "anthro",
  34424. default: true
  34425. },
  34426. backAnthro: {
  34427. height: math.unit(7, "feet"),
  34428. name: "Back",
  34429. image: {
  34430. source: "./media/characters/sini/back-anthro.svg",
  34431. extra: 743/701,
  34432. bottom: 12/755
  34433. },
  34434. form: "anthro",
  34435. },
  34436. frontAnthroNsfw: {
  34437. height: math.unit(7, "feet"),
  34438. name: "Front (NSFW)",
  34439. image: {
  34440. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34441. extra: 726/678,
  34442. bottom: 35/761
  34443. },
  34444. form: "anthro"
  34445. },
  34446. backAnthroNsfw: {
  34447. height: math.unit(7, "feet"),
  34448. name: "Back (NSFW)",
  34449. image: {
  34450. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34451. extra: 743/701,
  34452. bottom: 12/755
  34453. },
  34454. form: "anthro",
  34455. },
  34456. mawAnthro: {
  34457. height: math.unit(2.14, "feet"),
  34458. name: "Maw",
  34459. image: {
  34460. source: "./media/characters/sini/maw-anthro.svg"
  34461. },
  34462. form: "anthro"
  34463. },
  34464. dick: {
  34465. height: math.unit(1.45, "feet"),
  34466. name: "Dick",
  34467. image: {
  34468. source: "./media/characters/sini/dick-anthro.svg"
  34469. },
  34470. form: "anthro"
  34471. },
  34472. feral: {
  34473. height: math.unit(16, "feet"),
  34474. name: "Feral",
  34475. image: {
  34476. source: "./media/characters/sini/feral.svg",
  34477. extra: 814/605,
  34478. bottom: 11/825
  34479. },
  34480. form: "feral",
  34481. default: true
  34482. },
  34483. feralNsfw: {
  34484. height: math.unit(16, "feet"),
  34485. name: "Feral (NSFW)",
  34486. image: {
  34487. source: "./media/characters/sini/feral-nsfw.svg",
  34488. extra: 814/605,
  34489. bottom: 11/825
  34490. },
  34491. form: "feral"
  34492. },
  34493. mawFeral: {
  34494. height: math.unit(5.66, "feet"),
  34495. name: "Maw",
  34496. image: {
  34497. source: "./media/characters/sini/maw-feral.svg"
  34498. },
  34499. form: "feral",
  34500. },
  34501. pawFeral: {
  34502. height: math.unit(5.17, "feet"),
  34503. name: "Paw",
  34504. image: {
  34505. source: "./media/characters/sini/paw-feral.svg"
  34506. },
  34507. form: "feral",
  34508. },
  34509. rumpFeral: {
  34510. height: math.unit(13.11, "feet"),
  34511. name: "Rump",
  34512. image: {
  34513. source: "./media/characters/sini/rump-feral.svg"
  34514. },
  34515. form: "feral",
  34516. },
  34517. dickFeral: {
  34518. height: math.unit(1, "feet"),
  34519. name: "Dick",
  34520. image: {
  34521. source: "./media/characters/sini/dick-feral.svg"
  34522. },
  34523. form: "feral",
  34524. },
  34525. eyeFeral: {
  34526. height: math.unit(1.23, "feet"),
  34527. name: "Eye",
  34528. image: {
  34529. source: "./media/characters/sini/eye-feral.svg"
  34530. },
  34531. form: "feral",
  34532. },
  34533. },
  34534. [
  34535. {
  34536. name: "Normal",
  34537. height: math.unit(7, "feet"),
  34538. default: true,
  34539. form: "anthro"
  34540. },
  34541. {
  34542. name: "Normal",
  34543. height: math.unit(16, "feet"),
  34544. default: true,
  34545. form: "feral"
  34546. },
  34547. ],
  34548. {
  34549. "anthro": {
  34550. name: "Anthro",
  34551. default: true
  34552. },
  34553. "feral": {
  34554. name: "Feral",
  34555. }
  34556. }
  34557. ))
  34558. characterMakers.push(() => makeCharacter(
  34559. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34560. {
  34561. side: {
  34562. height: math.unit(47.2, "meters"),
  34563. weight: math.unit(10000, "tons"),
  34564. name: "Side",
  34565. image: {
  34566. source: "./media/characters/raylldo/side.svg",
  34567. extra: 2363/642,
  34568. bottom: 221/2584
  34569. }
  34570. },
  34571. top: {
  34572. height: math.unit(240, "meters"),
  34573. weight: math.unit(10000, "tons"),
  34574. name: "Top",
  34575. image: {
  34576. source: "./media/characters/raylldo/top.svg"
  34577. }
  34578. },
  34579. bottom: {
  34580. height: math.unit(240, "meters"),
  34581. weight: math.unit(10000, "tons"),
  34582. name: "Bottom",
  34583. image: {
  34584. source: "./media/characters/raylldo/bottom.svg"
  34585. }
  34586. },
  34587. head: {
  34588. height: math.unit(38.6, "meters"),
  34589. name: "Head",
  34590. image: {
  34591. source: "./media/characters/raylldo/head.svg",
  34592. extra: 1335/1112,
  34593. bottom: 0/1335
  34594. }
  34595. },
  34596. maw: {
  34597. height: math.unit(16.37, "meters"),
  34598. name: "Maw",
  34599. image: {
  34600. source: "./media/characters/raylldo/maw.svg",
  34601. extra: 883/660,
  34602. bottom: 0/883
  34603. },
  34604. extraAttributes: {
  34605. preyCapacity: {
  34606. name: "Capacity",
  34607. power: 3,
  34608. type: "volume",
  34609. base: math.unit(1000, "people")
  34610. },
  34611. tongueSize: {
  34612. name: "Tongue Size",
  34613. power: 2,
  34614. type: "area",
  34615. base: math.unit(21, "m^2")
  34616. }
  34617. }
  34618. },
  34619. forepaw: {
  34620. height: math.unit(18, "meters"),
  34621. name: "Forepaw",
  34622. image: {
  34623. source: "./media/characters/raylldo/forepaw.svg"
  34624. }
  34625. },
  34626. hindpaw: {
  34627. height: math.unit(23, "meters"),
  34628. name: "Hindpaw",
  34629. image: {
  34630. source: "./media/characters/raylldo/hindpaw.svg"
  34631. }
  34632. },
  34633. genitals: {
  34634. height: math.unit(42, "meters"),
  34635. name: "Genitals",
  34636. image: {
  34637. source: "./media/characters/raylldo/genitals.svg"
  34638. }
  34639. },
  34640. },
  34641. [
  34642. {
  34643. name: "Normal",
  34644. height: math.unit(47.2, "meters"),
  34645. default: true
  34646. },
  34647. ]
  34648. ))
  34649. characterMakers.push(() => makeCharacter(
  34650. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34651. {
  34652. anthroFront: {
  34653. height: math.unit(9, "feet"),
  34654. weight: math.unit(600, "lb"),
  34655. name: "Anthro (Front)",
  34656. image: {
  34657. source: "./media/characters/glint/anthro-front.svg",
  34658. extra: 1097/1018,
  34659. bottom: 28/1125
  34660. }
  34661. },
  34662. anthroBack: {
  34663. height: math.unit(9, "feet"),
  34664. weight: math.unit(600, "lb"),
  34665. name: "Anthro (Back)",
  34666. image: {
  34667. source: "./media/characters/glint/anthro-back.svg",
  34668. extra: 1154/997,
  34669. bottom: 36/1190
  34670. }
  34671. },
  34672. feral: {
  34673. height: math.unit(11, "feet"),
  34674. weight: math.unit(50000, "lb"),
  34675. name: "Feral",
  34676. image: {
  34677. source: "./media/characters/glint/feral.svg",
  34678. extra: 3035/1585,
  34679. bottom: 1169/4204
  34680. }
  34681. },
  34682. dickAnthro: {
  34683. height: math.unit(0.7, "meters"),
  34684. name: "Dick (Anthro)",
  34685. image: {
  34686. source: "./media/characters/glint/dick-anthro.svg"
  34687. }
  34688. },
  34689. dickFeral: {
  34690. height: math.unit(2.65, "meters"),
  34691. name: "Dick (Feral)",
  34692. image: {
  34693. source: "./media/characters/glint/dick-feral.svg"
  34694. }
  34695. },
  34696. slitHidden: {
  34697. height: math.unit(5.85, "meters"),
  34698. name: "Slit (Hidden)",
  34699. image: {
  34700. source: "./media/characters/glint/slit-hidden.svg"
  34701. }
  34702. },
  34703. slitErect: {
  34704. height: math.unit(5.85, "meters"),
  34705. name: "Slit (Erect)",
  34706. image: {
  34707. source: "./media/characters/glint/slit-erect.svg"
  34708. }
  34709. },
  34710. mawAnthro: {
  34711. height: math.unit(0.63, "meters"),
  34712. name: "Maw (Anthro)",
  34713. image: {
  34714. source: "./media/characters/glint/maw.svg"
  34715. }
  34716. },
  34717. mawFeral: {
  34718. height: math.unit(2.89, "meters"),
  34719. name: "Maw (Feral)",
  34720. image: {
  34721. source: "./media/characters/glint/maw.svg"
  34722. }
  34723. },
  34724. },
  34725. [
  34726. {
  34727. name: "Normal",
  34728. height: math.unit(9, "feet"),
  34729. default: true
  34730. },
  34731. ]
  34732. ))
  34733. characterMakers.push(() => makeCharacter(
  34734. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34735. {
  34736. side: {
  34737. height: math.unit(15, "feet"),
  34738. weight: math.unit(5000, "kg"),
  34739. name: "Side",
  34740. image: {
  34741. source: "./media/characters/kairne/side.svg",
  34742. extra: 979/811,
  34743. bottom: 13/992
  34744. }
  34745. },
  34746. front: {
  34747. height: math.unit(15, "feet"),
  34748. weight: math.unit(5000, "kg"),
  34749. name: "Front",
  34750. image: {
  34751. source: "./media/characters/kairne/front.svg",
  34752. extra: 908/814,
  34753. bottom: 26/934
  34754. }
  34755. },
  34756. sideNsfw: {
  34757. height: math.unit(15, "feet"),
  34758. weight: math.unit(5000, "kg"),
  34759. name: "Side (NSFW)",
  34760. image: {
  34761. source: "./media/characters/kairne/side-nsfw.svg",
  34762. extra: 979/811,
  34763. bottom: 13/992
  34764. }
  34765. },
  34766. frontNsfw: {
  34767. height: math.unit(15, "feet"),
  34768. weight: math.unit(5000, "kg"),
  34769. name: "Front (NSFW)",
  34770. image: {
  34771. source: "./media/characters/kairne/front-nsfw.svg",
  34772. extra: 908/814,
  34773. bottom: 26/934
  34774. }
  34775. },
  34776. dickCaged: {
  34777. height: math.unit(0.65, "meters"),
  34778. name: "Dick-caged",
  34779. image: {
  34780. source: "./media/characters/kairne/dick-caged.svg"
  34781. }
  34782. },
  34783. dick: {
  34784. height: math.unit(0.79, "meters"),
  34785. name: "Dick",
  34786. image: {
  34787. source: "./media/characters/kairne/dick.svg"
  34788. }
  34789. },
  34790. genitals: {
  34791. height: math.unit(1.29, "meters"),
  34792. name: "Genitals",
  34793. image: {
  34794. source: "./media/characters/kairne/genitals.svg"
  34795. }
  34796. },
  34797. maw: {
  34798. height: math.unit(1.73, "meters"),
  34799. name: "Maw",
  34800. image: {
  34801. source: "./media/characters/kairne/maw.svg"
  34802. }
  34803. },
  34804. },
  34805. [
  34806. {
  34807. name: "Normal",
  34808. height: math.unit(15, "feet"),
  34809. default: true
  34810. },
  34811. ]
  34812. ))
  34813. characterMakers.push(() => makeCharacter(
  34814. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34815. {
  34816. front: {
  34817. height: math.unit(5 + 8/12, "feet"),
  34818. weight: math.unit(139, "lb"),
  34819. name: "Front",
  34820. image: {
  34821. source: "./media/characters/biscuit-jackal/front.svg",
  34822. extra: 2106/1961,
  34823. bottom: 58/2164
  34824. }
  34825. },
  34826. back: {
  34827. height: math.unit(5 + 8/12, "feet"),
  34828. weight: math.unit(139, "lb"),
  34829. name: "Back",
  34830. image: {
  34831. source: "./media/characters/biscuit-jackal/back.svg",
  34832. extra: 2132/1976,
  34833. bottom: 57/2189
  34834. }
  34835. },
  34836. werejackal: {
  34837. height: math.unit(6 + 3/12, "feet"),
  34838. weight: math.unit(188, "lb"),
  34839. name: "Werejackal",
  34840. image: {
  34841. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34842. extra: 2373/2178,
  34843. bottom: 53/2426
  34844. }
  34845. },
  34846. },
  34847. [
  34848. {
  34849. name: "Normal",
  34850. height: math.unit(5 + 8/12, "feet"),
  34851. default: true
  34852. },
  34853. ]
  34854. ))
  34855. characterMakers.push(() => makeCharacter(
  34856. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34857. {
  34858. front: {
  34859. height: math.unit(140, "cm"),
  34860. weight: math.unit(45, "kg"),
  34861. name: "Front",
  34862. image: {
  34863. source: "./media/characters/tayra-white/front.svg",
  34864. extra: 2229/2192,
  34865. bottom: 75/2304
  34866. }
  34867. },
  34868. },
  34869. [
  34870. {
  34871. name: "Normal",
  34872. height: math.unit(140, "cm"),
  34873. default: true
  34874. },
  34875. ]
  34876. ))
  34877. characterMakers.push(() => makeCharacter(
  34878. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34879. {
  34880. front: {
  34881. height: math.unit(4 + 5/12, "feet"),
  34882. name: "Front",
  34883. image: {
  34884. source: "./media/characters/scoop/front.svg",
  34885. extra: 1257/1136,
  34886. bottom: 69/1326
  34887. }
  34888. },
  34889. back: {
  34890. height: math.unit(4 + 5/12, "feet"),
  34891. name: "Back",
  34892. image: {
  34893. source: "./media/characters/scoop/back.svg",
  34894. extra: 1321/1152,
  34895. bottom: 32/1353
  34896. }
  34897. },
  34898. maw: {
  34899. height: math.unit(0.68, "feet"),
  34900. name: "Maw",
  34901. image: {
  34902. source: "./media/characters/scoop/maw.svg"
  34903. }
  34904. },
  34905. },
  34906. [
  34907. {
  34908. name: "Really Small",
  34909. height: math.unit(1, "mm")
  34910. },
  34911. {
  34912. name: "Micro",
  34913. height: math.unit(1, "inch")
  34914. },
  34915. {
  34916. name: "Normal",
  34917. height: math.unit(4 + 5/12, "feet"),
  34918. default: true
  34919. },
  34920. {
  34921. name: "Macro",
  34922. height: math.unit(200, "feet")
  34923. },
  34924. {
  34925. name: "Megamacro",
  34926. height: math.unit(3240, "feet")
  34927. },
  34928. {
  34929. name: "Teramacro",
  34930. height: math.unit(2500, "miles")
  34931. },
  34932. ]
  34933. ))
  34934. characterMakers.push(() => makeCharacter(
  34935. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34936. {
  34937. front: {
  34938. height: math.unit(15 + 7/12, "feet"),
  34939. weight: math.unit(1150, "tons"),
  34940. name: "Front",
  34941. image: {
  34942. source: "./media/characters/saphinara/front.svg",
  34943. extra: 1837/1643,
  34944. bottom: 84/1921
  34945. },
  34946. form: "normal",
  34947. default: true
  34948. },
  34949. side: {
  34950. height: math.unit(15 + 7/12, "feet"),
  34951. weight: math.unit(1150, "tons"),
  34952. name: "Side",
  34953. image: {
  34954. source: "./media/characters/saphinara/side.svg",
  34955. extra: 605/547,
  34956. bottom: 6/611
  34957. },
  34958. form: "normal"
  34959. },
  34960. back: {
  34961. height: math.unit(15 + 7/12, "feet"),
  34962. weight: math.unit(1150, "tons"),
  34963. name: "Back",
  34964. image: {
  34965. source: "./media/characters/saphinara/back.svg",
  34966. extra: 591/531,
  34967. bottom: 13/604
  34968. },
  34969. form: "normal"
  34970. },
  34971. frontTail: {
  34972. height: math.unit(15 + 7/12, "feet"),
  34973. weight: math.unit(1150, "tons"),
  34974. name: "Front (Full Tail)",
  34975. image: {
  34976. source: "./media/characters/saphinara/front-tail.svg",
  34977. extra: 2256/1630,
  34978. bottom: 261/2517
  34979. },
  34980. form: "normal"
  34981. },
  34982. insides: {
  34983. height: math.unit(11.92, "feet"),
  34984. name: "Insides",
  34985. image: {
  34986. source: "./media/characters/saphinara/insides.svg"
  34987. },
  34988. form: "normal"
  34989. },
  34990. head: {
  34991. height: math.unit(4.17, "feet"),
  34992. name: "Head",
  34993. image: {
  34994. source: "./media/characters/saphinara/head.svg"
  34995. },
  34996. form: "normal"
  34997. },
  34998. tongue: {
  34999. height: math.unit(4.60, "feet"),
  35000. name: "Tongue",
  35001. image: {
  35002. source: "./media/characters/saphinara/tongue.svg"
  35003. },
  35004. form: "normal"
  35005. },
  35006. headEnraged: {
  35007. height: math.unit(5.55, "feet"),
  35008. name: "Head (Enraged)",
  35009. image: {
  35010. source: "./media/characters/saphinara/head-enraged.svg"
  35011. },
  35012. form: "normal"
  35013. },
  35014. wings: {
  35015. height: math.unit(11.95, "feet"),
  35016. name: "Wings",
  35017. image: {
  35018. source: "./media/characters/saphinara/wings.svg"
  35019. },
  35020. form: "normal"
  35021. },
  35022. feathers: {
  35023. height: math.unit(8.92, "feet"),
  35024. name: "Feathers",
  35025. image: {
  35026. source: "./media/characters/saphinara/feathers.svg"
  35027. },
  35028. form: "normal"
  35029. },
  35030. shackles: {
  35031. height: math.unit(2, "feet"),
  35032. name: "Shackles",
  35033. image: {
  35034. source: "./media/characters/saphinara/shackles.svg"
  35035. },
  35036. form: "normal"
  35037. },
  35038. eyes: {
  35039. height: math.unit(1.331, "feet"),
  35040. name: "Eyes",
  35041. image: {
  35042. source: "./media/characters/saphinara/eyes.svg"
  35043. },
  35044. form: "normal"
  35045. },
  35046. eyesEnraged: {
  35047. height: math.unit(1.331, "feet"),
  35048. name: "Eyes (Enraged)",
  35049. image: {
  35050. source: "./media/characters/saphinara/eyes-enraged.svg"
  35051. },
  35052. form: "normal"
  35053. },
  35054. trueFormSide: {
  35055. height: math.unit(200, "feet"),
  35056. weight: math.unit(1e7, "tons"),
  35057. name: "Side",
  35058. image: {
  35059. source: "./media/characters/saphinara/true-form-side.svg",
  35060. extra: 1399/770,
  35061. bottom: 97/1496
  35062. },
  35063. form: "true-form",
  35064. default: true
  35065. },
  35066. trueFormMaw: {
  35067. height: math.unit(71.5, "feet"),
  35068. name: "Maw",
  35069. image: {
  35070. source: "./media/characters/saphinara/true-form-maw.svg",
  35071. extra: 2302/1453,
  35072. bottom: 0/2302
  35073. },
  35074. form: "true-form"
  35075. },
  35076. meowberusSide: {
  35077. height: math.unit(75, "feet"),
  35078. weight: math.unit(180000, "kg"),
  35079. preyCapacity: math.unit(50000, "people"),
  35080. name: "Side",
  35081. image: {
  35082. source: "./media/characters/saphinara/meowberus-side.svg",
  35083. extra: 1400/711,
  35084. bottom: 126/1526
  35085. },
  35086. form: "meowberus",
  35087. extraAttributes: {
  35088. "pawArea": {
  35089. name: "Paw Size",
  35090. power: 2,
  35091. type: "area",
  35092. base: math.unit(35, "m^2")
  35093. }
  35094. }
  35095. },
  35096. },
  35097. [
  35098. {
  35099. name: "Normal",
  35100. height: math.unit(15 + 7/12, "feet"),
  35101. default: true,
  35102. form: "normal"
  35103. },
  35104. {
  35105. name: "Angry",
  35106. height: math.unit(30 + 6/12, "feet"),
  35107. form: "normal"
  35108. },
  35109. {
  35110. name: "Enraged",
  35111. height: math.unit(102 + 1/12, "feet"),
  35112. form: "normal"
  35113. },
  35114. {
  35115. name: "True",
  35116. height: math.unit(200, "feet"),
  35117. default: true,
  35118. form: "true-form"
  35119. },
  35120. {
  35121. name: "Normal",
  35122. height: math.unit(75, "feet"),
  35123. default: true,
  35124. form: "meowberus"
  35125. },
  35126. ],
  35127. {
  35128. "normal": {
  35129. name: "Normal",
  35130. default: true
  35131. },
  35132. "true-form": {
  35133. name: "True Form"
  35134. },
  35135. "meowberus": {
  35136. name: "Meowberus",
  35137. },
  35138. }
  35139. ))
  35140. characterMakers.push(() => makeCharacter(
  35141. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35142. {
  35143. front: {
  35144. height: math.unit(6 + 8/12, "feet"),
  35145. weight: math.unit(300, "lb"),
  35146. name: "Front",
  35147. image: {
  35148. source: "./media/characters/jrain/front.svg",
  35149. extra: 3039/2865,
  35150. bottom: 399/3438
  35151. }
  35152. },
  35153. back: {
  35154. height: math.unit(6 + 8/12, "feet"),
  35155. weight: math.unit(300, "lb"),
  35156. name: "Back",
  35157. image: {
  35158. source: "./media/characters/jrain/back.svg",
  35159. extra: 3089/2938,
  35160. bottom: 172/3261
  35161. }
  35162. },
  35163. head: {
  35164. height: math.unit(2.14, "feet"),
  35165. name: "Head",
  35166. image: {
  35167. source: "./media/characters/jrain/head.svg"
  35168. }
  35169. },
  35170. maw: {
  35171. height: math.unit(1.77, "feet"),
  35172. name: "Maw",
  35173. image: {
  35174. source: "./media/characters/jrain/maw.svg"
  35175. }
  35176. },
  35177. leftHand: {
  35178. height: math.unit(1.1, "feet"),
  35179. name: "Left Hand",
  35180. image: {
  35181. source: "./media/characters/jrain/left-hand.svg"
  35182. }
  35183. },
  35184. rightHand: {
  35185. height: math.unit(1.1, "feet"),
  35186. name: "Right Hand",
  35187. image: {
  35188. source: "./media/characters/jrain/right-hand.svg"
  35189. }
  35190. },
  35191. eye: {
  35192. height: math.unit(0.35, "feet"),
  35193. name: "Eye",
  35194. image: {
  35195. source: "./media/characters/jrain/eye.svg"
  35196. }
  35197. },
  35198. },
  35199. [
  35200. {
  35201. name: "Normal",
  35202. height: math.unit(6 + 8/12, "feet"),
  35203. default: true
  35204. },
  35205. {
  35206. name: "Casually Large",
  35207. height: math.unit(25, "feet")
  35208. },
  35209. {
  35210. name: "Giant",
  35211. height: math.unit(100, "feet")
  35212. },
  35213. {
  35214. name: "Kaiju",
  35215. height: math.unit(300, "feet")
  35216. },
  35217. ]
  35218. ))
  35219. characterMakers.push(() => makeCharacter(
  35220. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35221. {
  35222. dragon: {
  35223. height: math.unit(5, "meters"),
  35224. name: "Dragon",
  35225. image: {
  35226. source: "./media/characters/sabrina/dragon.svg",
  35227. extra: 3670 / 2365,
  35228. bottom: 333 / 4003
  35229. }
  35230. },
  35231. gryphon: {
  35232. height: math.unit(3, "meters"),
  35233. name: "Gryphon",
  35234. image: {
  35235. source: "./media/characters/sabrina/gryphon.svg",
  35236. extra: 1576 / 945,
  35237. bottom: 71 / 1647
  35238. }
  35239. },
  35240. snake: {
  35241. height: math.unit(12, "meters"),
  35242. name: "Snake",
  35243. image: {
  35244. source: "./media/characters/sabrina/snake.svg",
  35245. extra: 1758 / 1320,
  35246. bottom: 186 / 1944
  35247. }
  35248. },
  35249. collar: {
  35250. height: math.unit(1.86, "meters"),
  35251. name: "Collar",
  35252. image: {
  35253. source: "./media/characters/sabrina/collar.svg"
  35254. }
  35255. },
  35256. eye: {
  35257. height: math.unit(0.53, "meters"),
  35258. name: "Eye",
  35259. image: {
  35260. source: "./media/characters/sabrina/eye.svg"
  35261. }
  35262. },
  35263. foot: {
  35264. height: math.unit(1.86, "meters"),
  35265. name: "Foot",
  35266. image: {
  35267. source: "./media/characters/sabrina/foot.svg"
  35268. }
  35269. },
  35270. hand: {
  35271. height: math.unit(1.32, "meters"),
  35272. name: "Hand",
  35273. image: {
  35274. source: "./media/characters/sabrina/hand.svg"
  35275. }
  35276. },
  35277. head: {
  35278. height: math.unit(2.44, "meters"),
  35279. name: "Head",
  35280. image: {
  35281. source: "./media/characters/sabrina/head.svg"
  35282. }
  35283. },
  35284. headAngry: {
  35285. height: math.unit(2.44, "meters"),
  35286. name: "Head (Angry))",
  35287. image: {
  35288. source: "./media/characters/sabrina/head-angry.svg"
  35289. }
  35290. },
  35291. maw: {
  35292. height: math.unit(1.65, "meters"),
  35293. name: "Maw",
  35294. image: {
  35295. source: "./media/characters/sabrina/maw.svg"
  35296. }
  35297. },
  35298. spikes: {
  35299. height: math.unit(1.69, "meters"),
  35300. name: "Spikes",
  35301. image: {
  35302. source: "./media/characters/sabrina/spikes.svg"
  35303. }
  35304. },
  35305. stomach: {
  35306. height: math.unit(1.15, "meters"),
  35307. name: "Stomach",
  35308. image: {
  35309. source: "./media/characters/sabrina/stomach.svg"
  35310. }
  35311. },
  35312. tongue: {
  35313. height: math.unit(1.27, "meters"),
  35314. name: "Tongue",
  35315. image: {
  35316. source: "./media/characters/sabrina/tongue.svg"
  35317. }
  35318. },
  35319. wingDorsal: {
  35320. height: math.unit(4.85, "meters"),
  35321. name: "Wing (Dorsal)",
  35322. image: {
  35323. source: "./media/characters/sabrina/wing-dorsal.svg"
  35324. }
  35325. },
  35326. wingVentral: {
  35327. height: math.unit(4.85, "meters"),
  35328. name: "Wing (Ventral)",
  35329. image: {
  35330. source: "./media/characters/sabrina/wing-ventral.svg"
  35331. }
  35332. },
  35333. },
  35334. [
  35335. {
  35336. name: "Normal",
  35337. height: math.unit(5, "meters"),
  35338. default: true
  35339. },
  35340. ]
  35341. ))
  35342. characterMakers.push(() => makeCharacter(
  35343. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35344. {
  35345. frontMaid: {
  35346. height: math.unit(5 + 5/12, "feet"),
  35347. weight: math.unit(130, "lb"),
  35348. name: "Front (Maid)",
  35349. image: {
  35350. source: "./media/characters/midnight-tales/front-maid.svg",
  35351. extra: 489/454,
  35352. bottom: 61/550
  35353. }
  35354. },
  35355. frontFormal: {
  35356. height: math.unit(5 + 5/12, "feet"),
  35357. weight: math.unit(130, "lb"),
  35358. name: "Front (Formal)",
  35359. image: {
  35360. source: "./media/characters/midnight-tales/front-formal.svg",
  35361. extra: 489/454,
  35362. bottom: 61/550
  35363. }
  35364. },
  35365. back: {
  35366. height: math.unit(5 + 5/12, "feet"),
  35367. weight: math.unit(130, "lb"),
  35368. name: "Back",
  35369. image: {
  35370. source: "./media/characters/midnight-tales/back.svg",
  35371. extra: 498/456,
  35372. bottom: 33/531
  35373. }
  35374. },
  35375. frontBeast: {
  35376. height: math.unit(40, "feet"),
  35377. weight: math.unit(64000, "lb"),
  35378. name: "Front (Beast)",
  35379. image: {
  35380. source: "./media/characters/midnight-tales/front-beast.svg",
  35381. extra: 927/860,
  35382. bottom: 53/980
  35383. }
  35384. },
  35385. backBeast: {
  35386. height: math.unit(40, "feet"),
  35387. weight: math.unit(64000, "lb"),
  35388. name: "Back (Beast)",
  35389. image: {
  35390. source: "./media/characters/midnight-tales/back-beast.svg",
  35391. extra: 929/855,
  35392. bottom: 16/945
  35393. }
  35394. },
  35395. footBeast: {
  35396. height: math.unit(6.7, "feet"),
  35397. name: "Foot (Beast)",
  35398. image: {
  35399. source: "./media/characters/midnight-tales/foot-beast.svg"
  35400. }
  35401. },
  35402. headBeast: {
  35403. height: math.unit(8, "feet"),
  35404. name: "Head (Beast)",
  35405. image: {
  35406. source: "./media/characters/midnight-tales/head-beast.svg"
  35407. }
  35408. },
  35409. },
  35410. [
  35411. {
  35412. name: "Normal",
  35413. height: math.unit(5 + 5 / 12, "feet"),
  35414. default: true
  35415. },
  35416. {
  35417. name: "Macro",
  35418. height: math.unit(25, "feet")
  35419. },
  35420. ]
  35421. ))
  35422. characterMakers.push(() => makeCharacter(
  35423. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35424. {
  35425. front: {
  35426. height: math.unit(5 + 10/12, "feet"),
  35427. name: "Front",
  35428. image: {
  35429. source: "./media/characters/argon/front.svg",
  35430. extra: 2009/1935,
  35431. bottom: 118/2127
  35432. }
  35433. },
  35434. back: {
  35435. height: math.unit(5 + 10/12, "feet"),
  35436. name: "Back",
  35437. image: {
  35438. source: "./media/characters/argon/back.svg",
  35439. extra: 2047/1992,
  35440. bottom: 20/2067
  35441. }
  35442. },
  35443. frontDressed: {
  35444. height: math.unit(5 + 10/12, "feet"),
  35445. name: "Front (Dressed)",
  35446. image: {
  35447. source: "./media/characters/argon/front-dressed.svg",
  35448. extra: 2009/1935,
  35449. bottom: 118/2127
  35450. }
  35451. },
  35452. },
  35453. [
  35454. {
  35455. name: "Normal",
  35456. height: math.unit(5 + 10/12, "feet"),
  35457. default: true
  35458. },
  35459. ]
  35460. ))
  35461. characterMakers.push(() => makeCharacter(
  35462. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35463. {
  35464. front: {
  35465. height: math.unit(8 + 6/12, "feet"),
  35466. weight: math.unit(1150, "lb"),
  35467. name: "Front",
  35468. image: {
  35469. source: "./media/characters/kichi/front.svg",
  35470. extra: 1267/1164,
  35471. bottom: 61/1328
  35472. }
  35473. },
  35474. back: {
  35475. height: math.unit(8 + 6/12, "feet"),
  35476. weight: math.unit(1150, "lb"),
  35477. name: "Back",
  35478. image: {
  35479. source: "./media/characters/kichi/back.svg",
  35480. extra: 1273/1166,
  35481. bottom: 33/1306
  35482. }
  35483. },
  35484. },
  35485. [
  35486. {
  35487. name: "Normal",
  35488. height: math.unit(8 + 6/12, "feet"),
  35489. default: true
  35490. },
  35491. ]
  35492. ))
  35493. characterMakers.push(() => makeCharacter(
  35494. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35495. {
  35496. front: {
  35497. height: math.unit(6, "feet"),
  35498. weight: math.unit(210, "lb"),
  35499. name: "Front",
  35500. image: {
  35501. source: "./media/characters/manetel-greyscale/front.svg",
  35502. extra: 350/312,
  35503. bottom: 8/358
  35504. }
  35505. },
  35506. },
  35507. [
  35508. {
  35509. name: "Micro",
  35510. height: math.unit(2, "inches")
  35511. },
  35512. {
  35513. name: "Normal",
  35514. height: math.unit(6, "feet"),
  35515. default: true
  35516. },
  35517. {
  35518. name: "Minimacro",
  35519. height: math.unit(17, "feet")
  35520. },
  35521. {
  35522. name: "Macro",
  35523. height: math.unit(117, "feet")
  35524. },
  35525. ]
  35526. ))
  35527. characterMakers.push(() => makeCharacter(
  35528. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35529. {
  35530. side: {
  35531. height: math.unit(5 + 1/12, "feet"),
  35532. weight: math.unit(418, "lb"),
  35533. name: "Side",
  35534. image: {
  35535. source: "./media/characters/softpurr/side.svg",
  35536. extra: 1993/1945,
  35537. bottom: 134/2127
  35538. }
  35539. },
  35540. front: {
  35541. height: math.unit(5 + 1/12, "feet"),
  35542. weight: math.unit(418, "lb"),
  35543. name: "Front",
  35544. image: {
  35545. source: "./media/characters/softpurr/front.svg",
  35546. extra: 1950/1856,
  35547. bottom: 174/2124
  35548. }
  35549. },
  35550. paw: {
  35551. height: math.unit(1, "feet"),
  35552. name: "Paw",
  35553. image: {
  35554. source: "./media/characters/softpurr/paw.svg"
  35555. }
  35556. },
  35557. },
  35558. [
  35559. {
  35560. name: "Normal",
  35561. height: math.unit(5 + 1/12, "feet"),
  35562. default: true
  35563. },
  35564. ]
  35565. ))
  35566. characterMakers.push(() => makeCharacter(
  35567. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35568. {
  35569. front: {
  35570. height: math.unit(260, "meters"),
  35571. name: "Front",
  35572. image: {
  35573. source: "./media/characters/anahita/front.svg",
  35574. extra: 665/635,
  35575. bottom: 89/754
  35576. }
  35577. },
  35578. },
  35579. [
  35580. {
  35581. name: "Macro",
  35582. height: math.unit(260, "meters"),
  35583. default: true
  35584. },
  35585. ]
  35586. ))
  35587. characterMakers.push(() => makeCharacter(
  35588. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35589. {
  35590. front: {
  35591. height: math.unit(4 + 10/12, "feet"),
  35592. weight: math.unit(160, "lb"),
  35593. name: "Front",
  35594. image: {
  35595. source: "./media/characters/chip-mouse/front.svg",
  35596. extra: 3528/3408,
  35597. bottom: 0/3528
  35598. }
  35599. },
  35600. frontNsfw: {
  35601. height: math.unit(4 + 10/12, "feet"),
  35602. weight: math.unit(160, "lb"),
  35603. name: "Front (NSFW)",
  35604. image: {
  35605. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35606. extra: 3528/3408,
  35607. bottom: 0/3528
  35608. }
  35609. },
  35610. },
  35611. [
  35612. {
  35613. name: "Normal",
  35614. height: math.unit(4 + 10/12, "feet"),
  35615. default: true
  35616. },
  35617. ]
  35618. ))
  35619. characterMakers.push(() => makeCharacter(
  35620. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35621. {
  35622. side: {
  35623. height: math.unit(10, "feet"),
  35624. weight: math.unit(14000, "lb"),
  35625. name: "Side",
  35626. image: {
  35627. source: "./media/characters/kremm/side.svg",
  35628. extra: 1390/1053,
  35629. bottom: 90/1480
  35630. }
  35631. },
  35632. gut: {
  35633. height: math.unit(5.8, "feet"),
  35634. name: "Gut",
  35635. image: {
  35636. source: "./media/characters/kremm/gut.svg"
  35637. }
  35638. },
  35639. ass: {
  35640. height: math.unit(6.1, "feet"),
  35641. name: "Ass",
  35642. image: {
  35643. source: "./media/characters/kremm/ass.svg"
  35644. }
  35645. },
  35646. jaws: {
  35647. height: math.unit(2.2, "feet"),
  35648. name: "Jaws",
  35649. image: {
  35650. source: "./media/characters/kremm/jaws.svg"
  35651. }
  35652. },
  35653. dick: {
  35654. height: math.unit(4.26, "feet"),
  35655. name: "Dick",
  35656. image: {
  35657. source: "./media/characters/kremm/dick.svg"
  35658. }
  35659. },
  35660. },
  35661. [
  35662. {
  35663. name: "Normal",
  35664. height: math.unit(10, "feet"),
  35665. default: true
  35666. },
  35667. ]
  35668. ))
  35669. characterMakers.push(() => makeCharacter(
  35670. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35671. {
  35672. front: {
  35673. height: math.unit(30, "stories"),
  35674. name: "Front",
  35675. image: {
  35676. source: "./media/characters/kai/front.svg",
  35677. extra: 1892/1718,
  35678. bottom: 162/2054
  35679. }
  35680. },
  35681. },
  35682. [
  35683. {
  35684. name: "Macro",
  35685. height: math.unit(30, "stories"),
  35686. default: true
  35687. },
  35688. ]
  35689. ))
  35690. characterMakers.push(() => makeCharacter(
  35691. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35692. {
  35693. front: {
  35694. height: math.unit(6 + 4/12, "feet"),
  35695. weight: math.unit(145, "lb"),
  35696. name: "Front",
  35697. image: {
  35698. source: "./media/characters/sykes/front.svg",
  35699. extra: 1321 / 1187,
  35700. bottom: 66 / 1387
  35701. }
  35702. },
  35703. back: {
  35704. height: math.unit(6 + 4/12, "feet"),
  35705. weight: math.unit(145, "lb"),
  35706. name: "Back",
  35707. image: {
  35708. source: "./media/characters/sykes/back.svg",
  35709. extra: 1326/1181,
  35710. bottom: 31/1357
  35711. }
  35712. },
  35713. traditionalOutfit: {
  35714. height: math.unit(6 + 4/12, "feet"),
  35715. weight: math.unit(145, "lb"),
  35716. name: "Traditional Outfit",
  35717. image: {
  35718. source: "./media/characters/sykes/traditional-outfit.svg",
  35719. extra: 1321 / 1187,
  35720. bottom: 66 / 1387
  35721. }
  35722. },
  35723. adventureOutfit: {
  35724. height: math.unit(6 + 4/12, "feet"),
  35725. weight: math.unit(145, "lb"),
  35726. name: "Adventure Outfit",
  35727. image: {
  35728. source: "./media/characters/sykes/adventure-outfit.svg",
  35729. extra: 1321 / 1187,
  35730. bottom: 66 / 1387
  35731. }
  35732. },
  35733. handLeft: {
  35734. height: math.unit(0.9, "feet"),
  35735. name: "Hand (Left)",
  35736. image: {
  35737. source: "./media/characters/sykes/hand-left.svg"
  35738. }
  35739. },
  35740. handRight: {
  35741. height: math.unit(0.839, "feet"),
  35742. name: "Hand (Right)",
  35743. image: {
  35744. source: "./media/characters/sykes/hand-right.svg"
  35745. }
  35746. },
  35747. leftFoot: {
  35748. height: math.unit(1.2, "feet"),
  35749. name: "Foot (Left)",
  35750. image: {
  35751. source: "./media/characters/sykes/foot-left.svg"
  35752. }
  35753. },
  35754. rightFoot: {
  35755. height: math.unit(1.2, "feet"),
  35756. name: "Foot (Right)",
  35757. image: {
  35758. source: "./media/characters/sykes/foot-right.svg"
  35759. }
  35760. },
  35761. maw: {
  35762. height: math.unit(1.93, "feet"),
  35763. name: "Maw",
  35764. image: {
  35765. source: "./media/characters/sykes/maw.svg"
  35766. }
  35767. },
  35768. teeth: {
  35769. height: math.unit(0.51, "feet"),
  35770. name: "Teeth",
  35771. image: {
  35772. source: "./media/characters/sykes/teeth.svg"
  35773. }
  35774. },
  35775. tongue: {
  35776. height: math.unit(2.13, "feet"),
  35777. name: "Tongue",
  35778. image: {
  35779. source: "./media/characters/sykes/tongue.svg"
  35780. }
  35781. },
  35782. uvula: {
  35783. height: math.unit(0.16, "feet"),
  35784. name: "Uvula",
  35785. image: {
  35786. source: "./media/characters/sykes/uvula.svg"
  35787. }
  35788. },
  35789. collar: {
  35790. height: math.unit(0.287, "feet"),
  35791. name: "Collar",
  35792. image: {
  35793. source: "./media/characters/sykes/collar.svg"
  35794. }
  35795. },
  35796. tail: {
  35797. height: math.unit(3.8, "feet"),
  35798. name: "Tail",
  35799. image: {
  35800. source: "./media/characters/sykes/tail.svg"
  35801. }
  35802. },
  35803. },
  35804. [
  35805. {
  35806. name: "Shrunken",
  35807. height: math.unit(5, "inches")
  35808. },
  35809. {
  35810. name: "Normal",
  35811. height: math.unit(6 + 4 / 12, "feet"),
  35812. default: true
  35813. },
  35814. {
  35815. name: "Big",
  35816. height: math.unit(15, "feet")
  35817. },
  35818. ]
  35819. ))
  35820. characterMakers.push(() => makeCharacter(
  35821. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35822. {
  35823. front: {
  35824. height: math.unit(5 + 8/12, "feet"),
  35825. weight: math.unit(190, "lb"),
  35826. name: "Front",
  35827. image: {
  35828. source: "./media/characters/oven-otter/front.svg",
  35829. extra: 1809/1740,
  35830. bottom: 181/1990
  35831. }
  35832. },
  35833. back: {
  35834. height: math.unit(5 + 8/12, "feet"),
  35835. weight: math.unit(190, "lb"),
  35836. name: "Back",
  35837. image: {
  35838. source: "./media/characters/oven-otter/back.svg",
  35839. extra: 1709/1635,
  35840. bottom: 118/1827
  35841. }
  35842. },
  35843. hand: {
  35844. height: math.unit(1.07, "feet"),
  35845. name: "Hand",
  35846. image: {
  35847. source: "./media/characters/oven-otter/hand.svg"
  35848. }
  35849. },
  35850. beans: {
  35851. height: math.unit(1.74, "feet"),
  35852. name: "Beans",
  35853. image: {
  35854. source: "./media/characters/oven-otter/beans.svg"
  35855. }
  35856. },
  35857. },
  35858. [
  35859. {
  35860. name: "Micro",
  35861. height: math.unit(0.5, "inches")
  35862. },
  35863. {
  35864. name: "Normal",
  35865. height: math.unit(5 + 8/12, "feet"),
  35866. default: true
  35867. },
  35868. {
  35869. name: "Macro",
  35870. height: math.unit(250, "feet")
  35871. },
  35872. {
  35873. name: "Really High",
  35874. height: math.unit(420, "feet")
  35875. },
  35876. ]
  35877. ))
  35878. characterMakers.push(() => makeCharacter(
  35879. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35880. {
  35881. front: {
  35882. height: math.unit(5, "meters"),
  35883. weight: math.unit(292000000000000, "kg"),
  35884. name: "Front",
  35885. image: {
  35886. source: "./media/characters/devourer/front.svg",
  35887. extra: 1800/1733,
  35888. bottom: 211/2011
  35889. }
  35890. },
  35891. maw: {
  35892. height: math.unit(1.1, "meter"),
  35893. name: "Maw",
  35894. image: {
  35895. source: "./media/characters/devourer/maw.svg"
  35896. }
  35897. },
  35898. },
  35899. [
  35900. {
  35901. name: "Small",
  35902. height: math.unit(3, "meters")
  35903. },
  35904. {
  35905. name: "Large",
  35906. height: math.unit(5, "meters"),
  35907. default: true
  35908. },
  35909. ]
  35910. ))
  35911. characterMakers.push(() => makeCharacter(
  35912. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35913. {
  35914. front: {
  35915. height: math.unit(6, "feet"),
  35916. weight: math.unit(400, "lb"),
  35917. name: "Front",
  35918. image: {
  35919. source: "./media/characters/ellarby/front.svg",
  35920. extra: 1909/1763,
  35921. bottom: 80/1989
  35922. }
  35923. },
  35924. back: {
  35925. height: math.unit(6, "feet"),
  35926. weight: math.unit(400, "lb"),
  35927. name: "Back",
  35928. image: {
  35929. source: "./media/characters/ellarby/back.svg",
  35930. extra: 1914/1784,
  35931. bottom: 172/2086
  35932. }
  35933. },
  35934. },
  35935. [
  35936. {
  35937. name: "Mischief",
  35938. height: math.unit(18, "inches")
  35939. },
  35940. {
  35941. name: "Trouble",
  35942. height: math.unit(12, "feet")
  35943. },
  35944. {
  35945. name: "Havoc",
  35946. height: math.unit(200, "feet"),
  35947. default: true
  35948. },
  35949. {
  35950. name: "Pandemonium",
  35951. height: math.unit(1, "mile")
  35952. },
  35953. {
  35954. name: "Catastrophe",
  35955. height: math.unit(100, "miles")
  35956. },
  35957. ]
  35958. ))
  35959. characterMakers.push(() => makeCharacter(
  35960. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35961. {
  35962. front: {
  35963. height: math.unit(4.7, "meters"),
  35964. weight: math.unit(6500, "kg"),
  35965. name: "Front",
  35966. image: {
  35967. source: "./media/characters/vex/front.svg",
  35968. extra: 1288/1140,
  35969. bottom: 100/1388
  35970. }
  35971. },
  35972. },
  35973. [
  35974. {
  35975. name: "Normal",
  35976. height: math.unit(4.7, "meters"),
  35977. default: true
  35978. },
  35979. ]
  35980. ))
  35981. characterMakers.push(() => makeCharacter(
  35982. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35983. {
  35984. normal: {
  35985. height: math.unit(6, "feet"),
  35986. weight: math.unit(350, "lb"),
  35987. name: "Normal",
  35988. image: {
  35989. source: "./media/characters/teshy/normal.svg",
  35990. extra: 1795/1735,
  35991. bottom: 16/1811
  35992. }
  35993. },
  35994. monsterFront: {
  35995. height: math.unit(12, "feet"),
  35996. weight: math.unit(4700, "lb"),
  35997. name: "Monster (Front)",
  35998. image: {
  35999. source: "./media/characters/teshy/monster-front.svg",
  36000. extra: 2042/2034,
  36001. bottom: 128/2170
  36002. }
  36003. },
  36004. monsterSide: {
  36005. height: math.unit(12, "feet"),
  36006. weight: math.unit(4700, "lb"),
  36007. name: "Monster (Side)",
  36008. image: {
  36009. source: "./media/characters/teshy/monster-side.svg",
  36010. extra: 2067/2056,
  36011. bottom: 70/2137
  36012. }
  36013. },
  36014. monsterBack: {
  36015. height: math.unit(12, "feet"),
  36016. weight: math.unit(4700, "lb"),
  36017. name: "Monster (Back)",
  36018. image: {
  36019. source: "./media/characters/teshy/monster-back.svg",
  36020. extra: 1921/1914,
  36021. bottom: 171/2092
  36022. }
  36023. },
  36024. },
  36025. [
  36026. {
  36027. name: "Normal",
  36028. height: math.unit(6, "feet"),
  36029. default: true
  36030. },
  36031. ]
  36032. ))
  36033. characterMakers.push(() => makeCharacter(
  36034. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36035. {
  36036. front: {
  36037. height: math.unit(6, "feet"),
  36038. name: "Front",
  36039. image: {
  36040. source: "./media/characters/ramey/front.svg",
  36041. extra: 790/787,
  36042. bottom: 27/817
  36043. }
  36044. },
  36045. },
  36046. [
  36047. {
  36048. name: "Normal",
  36049. height: math.unit(6, "feet"),
  36050. default: true
  36051. },
  36052. ]
  36053. ))
  36054. characterMakers.push(() => makeCharacter(
  36055. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36056. {
  36057. front: {
  36058. height: math.unit(5 + 5/12, "feet"),
  36059. weight: math.unit(120, "lb"),
  36060. name: "Front",
  36061. image: {
  36062. source: "./media/characters/phirae/front.svg",
  36063. extra: 2491/2436,
  36064. bottom: 38/2529
  36065. }
  36066. },
  36067. },
  36068. [
  36069. {
  36070. name: "Normal",
  36071. height: math.unit(5 + 5/12, "feet"),
  36072. default: true
  36073. },
  36074. ]
  36075. ))
  36076. characterMakers.push(() => makeCharacter(
  36077. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36078. {
  36079. front: {
  36080. height: math.unit(5 + 3/12, "feet"),
  36081. name: "Front",
  36082. image: {
  36083. source: "./media/characters/stagglas/front.svg",
  36084. extra: 962/882,
  36085. bottom: 53/1015
  36086. }
  36087. },
  36088. feral: {
  36089. height: math.unit(335, "cm"),
  36090. name: "Feral",
  36091. image: {
  36092. source: "./media/characters/stagglas/feral.svg",
  36093. extra: 1732/1090,
  36094. bottom: 48/1780
  36095. }
  36096. },
  36097. },
  36098. [
  36099. {
  36100. name: "Normal",
  36101. height: math.unit(5 + 3/12, "feet"),
  36102. default: true
  36103. },
  36104. ]
  36105. ))
  36106. characterMakers.push(() => makeCharacter(
  36107. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36108. {
  36109. front: {
  36110. height: math.unit(5 + 4/12, "feet"),
  36111. weight: math.unit(145, "lb"),
  36112. name: "Front",
  36113. image: {
  36114. source: "./media/characters/starra/front.svg",
  36115. extra: 1790/1691,
  36116. bottom: 91/1881
  36117. }
  36118. },
  36119. },
  36120. [
  36121. {
  36122. name: "Normal",
  36123. height: math.unit(5 + 4/12, "feet"),
  36124. default: true
  36125. },
  36126. ]
  36127. ))
  36128. characterMakers.push(() => makeCharacter(
  36129. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36130. {
  36131. front: {
  36132. height: math.unit(2.2, "meters"),
  36133. name: "Front",
  36134. image: {
  36135. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36136. extra: 1248/972,
  36137. bottom: 38/1286
  36138. }
  36139. },
  36140. },
  36141. [
  36142. {
  36143. name: "Normal",
  36144. height: math.unit(2.2, "meters"),
  36145. default: true
  36146. },
  36147. ]
  36148. ))
  36149. characterMakers.push(() => makeCharacter(
  36150. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36151. {
  36152. side: {
  36153. height: math.unit(8 + 2/12, "feet"),
  36154. weight: math.unit(1240, "lb"),
  36155. name: "Side",
  36156. image: {
  36157. source: "./media/characters/mika-valentine/side.svg",
  36158. extra: 2670/2501,
  36159. bottom: 250/2920
  36160. }
  36161. },
  36162. },
  36163. [
  36164. {
  36165. name: "Normal",
  36166. height: math.unit(8 + 2/12, "feet"),
  36167. default: true
  36168. },
  36169. ]
  36170. ))
  36171. characterMakers.push(() => makeCharacter(
  36172. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36173. {
  36174. front: {
  36175. height: math.unit(7 + 2/12, "feet"),
  36176. name: "Front",
  36177. image: {
  36178. source: "./media/characters/xoltol/front.svg",
  36179. extra: 2212/2124,
  36180. bottom: 84/2296
  36181. }
  36182. },
  36183. side: {
  36184. height: math.unit(7 + 2/12, "feet"),
  36185. name: "Side",
  36186. image: {
  36187. source: "./media/characters/xoltol/side.svg",
  36188. extra: 2273/2197,
  36189. bottom: 26/2299
  36190. }
  36191. },
  36192. hand: {
  36193. height: math.unit(2.5, "feet"),
  36194. name: "Hand",
  36195. image: {
  36196. source: "./media/characters/xoltol/hand.svg"
  36197. }
  36198. },
  36199. },
  36200. [
  36201. {
  36202. name: "Small-ish",
  36203. height: math.unit(5 + 11/12, "feet")
  36204. },
  36205. {
  36206. name: "Normal",
  36207. height: math.unit(7 + 2/12, "feet")
  36208. },
  36209. {
  36210. name: "\"Macro\"",
  36211. height: math.unit(14 + 9/12, "feet"),
  36212. default: true
  36213. },
  36214. {
  36215. name: "Alternate Height",
  36216. height: math.unit(20, "feet")
  36217. },
  36218. {
  36219. name: "Actually Macro",
  36220. height: math.unit(100, "feet")
  36221. },
  36222. ]
  36223. ))
  36224. characterMakers.push(() => makeCharacter(
  36225. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36226. {
  36227. front: {
  36228. height: math.unit(5 + 2/12, "feet"),
  36229. name: "Front",
  36230. image: {
  36231. source: "./media/characters/kotetsu-redwood/front.svg",
  36232. extra: 1053/942,
  36233. bottom: 60/1113
  36234. }
  36235. },
  36236. },
  36237. [
  36238. {
  36239. name: "Normal",
  36240. height: math.unit(5 + 2/12, "feet"),
  36241. default: true
  36242. },
  36243. ]
  36244. ))
  36245. characterMakers.push(() => makeCharacter(
  36246. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36247. {
  36248. front: {
  36249. height: math.unit(2.4, "meters"),
  36250. weight: math.unit(125, "kg"),
  36251. name: "Front",
  36252. image: {
  36253. source: "./media/characters/lilith/front.svg",
  36254. extra: 1590/1513,
  36255. bottom: 203/1793
  36256. }
  36257. },
  36258. },
  36259. [
  36260. {
  36261. name: "Humanoid",
  36262. height: math.unit(2.4, "meters")
  36263. },
  36264. {
  36265. name: "Normal",
  36266. height: math.unit(6, "meters"),
  36267. default: true
  36268. },
  36269. {
  36270. name: "Largest",
  36271. height: math.unit(55, "meters")
  36272. },
  36273. ]
  36274. ))
  36275. characterMakers.push(() => makeCharacter(
  36276. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36277. {
  36278. front: {
  36279. height: math.unit(8 + 4/12, "feet"),
  36280. weight: math.unit(535, "lb"),
  36281. name: "Front",
  36282. image: {
  36283. source: "./media/characters/beh'kah-bolger/front.svg",
  36284. extra: 1660/1603,
  36285. bottom: 37/1697
  36286. }
  36287. },
  36288. },
  36289. [
  36290. {
  36291. name: "Normal",
  36292. height: math.unit(8 + 4/12, "feet"),
  36293. default: true
  36294. },
  36295. {
  36296. name: "Kaiju",
  36297. height: math.unit(250, "feet")
  36298. },
  36299. {
  36300. name: "Still Growing",
  36301. height: math.unit(10, "miles")
  36302. },
  36303. {
  36304. name: "Continental",
  36305. height: math.unit(5000, "miles")
  36306. },
  36307. {
  36308. name: "Final Form",
  36309. height: math.unit(2500000, "miles")
  36310. },
  36311. ]
  36312. ))
  36313. characterMakers.push(() => makeCharacter(
  36314. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36315. {
  36316. front: {
  36317. height: math.unit(7 + 2/12, "feet"),
  36318. weight: math.unit(230, "kg"),
  36319. name: "Front",
  36320. image: {
  36321. source: "./media/characters/tatyana-milewska/front.svg",
  36322. extra: 1199/1150,
  36323. bottom: 86/1285
  36324. }
  36325. },
  36326. },
  36327. [
  36328. {
  36329. name: "Normal",
  36330. height: math.unit(7 + 2/12, "feet"),
  36331. default: true
  36332. },
  36333. {
  36334. name: "Big",
  36335. height: math.unit(12, "feet")
  36336. },
  36337. {
  36338. name: "Minimacro",
  36339. height: math.unit(20, "feet")
  36340. },
  36341. {
  36342. name: "Macro",
  36343. height: math.unit(120, "feet")
  36344. },
  36345. ]
  36346. ))
  36347. characterMakers.push(() => makeCharacter(
  36348. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36349. {
  36350. front: {
  36351. height: math.unit(7 + 8/12, "feet"),
  36352. weight: math.unit(152, "kg"),
  36353. name: "Front",
  36354. image: {
  36355. source: "./media/characters/helen-arri/front.svg",
  36356. extra: 440/423,
  36357. bottom: 14/454
  36358. }
  36359. },
  36360. back: {
  36361. height: math.unit(7 + 8/12, "feet"),
  36362. weight: math.unit(152, "kg"),
  36363. name: "Back",
  36364. image: {
  36365. source: "./media/characters/helen-arri/back.svg",
  36366. extra: 443/426,
  36367. bottom: 8/451
  36368. }
  36369. },
  36370. },
  36371. [
  36372. {
  36373. name: "Normal",
  36374. height: math.unit(7 + 8/12, "feet"),
  36375. default: true
  36376. },
  36377. {
  36378. name: "Big",
  36379. height: math.unit(14, "feet")
  36380. },
  36381. {
  36382. name: "Minimacro",
  36383. height: math.unit(24, "feet")
  36384. },
  36385. {
  36386. name: "Macro",
  36387. height: math.unit(140, "feet")
  36388. },
  36389. ]
  36390. ))
  36391. characterMakers.push(() => makeCharacter(
  36392. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36393. {
  36394. front: {
  36395. height: math.unit(6, "meters"),
  36396. name: "Front",
  36397. image: {
  36398. source: "./media/characters/ehanu-rehu/front.svg",
  36399. extra: 1800/1800,
  36400. bottom: 59/1859
  36401. }
  36402. },
  36403. },
  36404. [
  36405. {
  36406. name: "Normal",
  36407. height: math.unit(6, "meters"),
  36408. default: true
  36409. },
  36410. ]
  36411. ))
  36412. characterMakers.push(() => makeCharacter(
  36413. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36414. {
  36415. front: {
  36416. height: math.unit(7 + 3/12, "feet"),
  36417. name: "Front",
  36418. image: {
  36419. source: "./media/characters/renholder/front.svg",
  36420. extra: 3096/2960,
  36421. bottom: 250/3346
  36422. }
  36423. },
  36424. },
  36425. [
  36426. {
  36427. name: "Normal Bat",
  36428. height: math.unit(7 + 3/12, "feet"),
  36429. default: true
  36430. },
  36431. {
  36432. name: "Slightly Tall Bat",
  36433. height: math.unit(100, "feet")
  36434. },
  36435. {
  36436. name: "Big Bat",
  36437. height: math.unit(1000, "feet")
  36438. },
  36439. {
  36440. name: "City-Sized Bat",
  36441. height: math.unit(200000, "feet")
  36442. },
  36443. {
  36444. name: "Bigger Bat",
  36445. height: math.unit(10000, "miles")
  36446. },
  36447. {
  36448. name: "Solar Sized Bat",
  36449. height: math.unit(100, "AU")
  36450. },
  36451. {
  36452. name: "Galactic Bat",
  36453. height: math.unit(200000, "lightyears")
  36454. },
  36455. {
  36456. name: "Universally Known Bat",
  36457. height: math.unit(1, "universe")
  36458. },
  36459. ]
  36460. ))
  36461. characterMakers.push(() => makeCharacter(
  36462. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36463. {
  36464. front: {
  36465. height: math.unit(6 + 11/12, "feet"),
  36466. weight: math.unit(250, "lb"),
  36467. name: "Front",
  36468. image: {
  36469. source: "./media/characters/cookiecat/front.svg",
  36470. extra: 893/827,
  36471. bottom: 14/907
  36472. }
  36473. },
  36474. },
  36475. [
  36476. {
  36477. name: "Micro",
  36478. height: math.unit(3, "inches")
  36479. },
  36480. {
  36481. name: "Normal",
  36482. height: math.unit(6 + 11/12, "feet"),
  36483. default: true
  36484. },
  36485. {
  36486. name: "Macro",
  36487. height: math.unit(100, "feet")
  36488. },
  36489. {
  36490. name: "Macro+",
  36491. height: math.unit(404, "feet")
  36492. },
  36493. {
  36494. name: "Megamacro",
  36495. height: math.unit(165, "miles")
  36496. },
  36497. {
  36498. name: "Planetary",
  36499. height: math.unit(4600, "miles")
  36500. },
  36501. ]
  36502. ))
  36503. characterMakers.push(() => makeCharacter(
  36504. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36505. {
  36506. front: {
  36507. height: math.unit(10 + 3/12, "feet"),
  36508. weight: math.unit(1500, "lb"),
  36509. name: "Front",
  36510. image: {
  36511. source: "./media/characters/tux-kusanagi/front.svg",
  36512. extra: 944/840,
  36513. bottom: 39/983
  36514. }
  36515. },
  36516. back: {
  36517. height: math.unit(10 + 3/12, "feet"),
  36518. weight: math.unit(1500, "lb"),
  36519. name: "Back",
  36520. image: {
  36521. source: "./media/characters/tux-kusanagi/back.svg",
  36522. extra: 941/842,
  36523. bottom: 28/969
  36524. }
  36525. },
  36526. rump: {
  36527. height: math.unit(5.25, "feet"),
  36528. name: "Rump",
  36529. image: {
  36530. source: "./media/characters/tux-kusanagi/rump.svg"
  36531. }
  36532. },
  36533. beak: {
  36534. height: math.unit(1.54, "feet"),
  36535. name: "Beak",
  36536. image: {
  36537. source: "./media/characters/tux-kusanagi/beak.svg"
  36538. }
  36539. },
  36540. },
  36541. [
  36542. {
  36543. name: "Normal",
  36544. height: math.unit(10 + 3/12, "feet"),
  36545. default: true
  36546. },
  36547. ]
  36548. ))
  36549. characterMakers.push(() => makeCharacter(
  36550. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36551. {
  36552. front: {
  36553. height: math.unit(58, "feet"),
  36554. weight: math.unit(200, "tons"),
  36555. name: "Front",
  36556. image: {
  36557. source: "./media/characters/uzarmazari/front.svg",
  36558. extra: 1575/1455,
  36559. bottom: 152/1727
  36560. }
  36561. },
  36562. back: {
  36563. height: math.unit(58, "feet"),
  36564. weight: math.unit(200, "tons"),
  36565. name: "Back",
  36566. image: {
  36567. source: "./media/characters/uzarmazari/back.svg",
  36568. extra: 1585/1510,
  36569. bottom: 157/1742
  36570. }
  36571. },
  36572. head: {
  36573. height: math.unit(26, "feet"),
  36574. name: "Head",
  36575. image: {
  36576. source: "./media/characters/uzarmazari/head.svg"
  36577. }
  36578. },
  36579. },
  36580. [
  36581. {
  36582. name: "Normal",
  36583. height: math.unit(58, "feet"),
  36584. default: true
  36585. },
  36586. ]
  36587. ))
  36588. characterMakers.push(() => makeCharacter(
  36589. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36590. {
  36591. side: {
  36592. height: math.unit(15, "feet"),
  36593. name: "Side",
  36594. image: {
  36595. source: "./media/characters/akitu/side.svg",
  36596. extra: 1421/1321,
  36597. bottom: 157/1578
  36598. }
  36599. },
  36600. front: {
  36601. height: math.unit(15, "feet"),
  36602. name: "Front",
  36603. image: {
  36604. source: "./media/characters/akitu/front.svg",
  36605. extra: 1435/1326,
  36606. bottom: 232/1667
  36607. }
  36608. },
  36609. },
  36610. [
  36611. {
  36612. name: "Normal",
  36613. height: math.unit(15, "feet"),
  36614. default: true
  36615. },
  36616. ]
  36617. ))
  36618. characterMakers.push(() => makeCharacter(
  36619. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36620. {
  36621. front: {
  36622. height: math.unit(10 + 8/12, "feet"),
  36623. name: "Front",
  36624. image: {
  36625. source: "./media/characters/azalie-croixland/front.svg",
  36626. extra: 1972/1856,
  36627. bottom: 31/2003
  36628. }
  36629. },
  36630. },
  36631. [
  36632. {
  36633. name: "Original Height",
  36634. height: math.unit(5 + 4/12, "feet")
  36635. },
  36636. {
  36637. name: "Normal Height",
  36638. height: math.unit(10 + 8/12, "feet"),
  36639. default: true
  36640. },
  36641. ]
  36642. ))
  36643. characterMakers.push(() => makeCharacter(
  36644. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36645. {
  36646. side: {
  36647. height: math.unit(7 + 1/12, "feet"),
  36648. weight: math.unit(245, "lb"),
  36649. name: "Side",
  36650. image: {
  36651. source: "./media/characters/kavus-kazian/side.svg",
  36652. extra: 349/342,
  36653. bottom: 15/364
  36654. }
  36655. },
  36656. },
  36657. [
  36658. {
  36659. name: "Normal",
  36660. height: math.unit(7 + 1/12, "feet"),
  36661. default: true
  36662. },
  36663. ]
  36664. ))
  36665. characterMakers.push(() => makeCharacter(
  36666. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36667. {
  36668. normalFront: {
  36669. height: math.unit(5 + 11/12, "feet"),
  36670. name: "Front",
  36671. image: {
  36672. source: "./media/characters/moonlight-rose/normal-front.svg",
  36673. extra: 1980/1825,
  36674. bottom: 18/1998
  36675. },
  36676. form: "normal",
  36677. default: true
  36678. },
  36679. normalBack: {
  36680. height: math.unit(5 + 11/12, "feet"),
  36681. name: "Back",
  36682. image: {
  36683. source: "./media/characters/moonlight-rose/normal-back.svg",
  36684. extra: 2010/1839,
  36685. bottom: 10/2020
  36686. },
  36687. form: "normal"
  36688. },
  36689. demonFront: {
  36690. height: math.unit(1.5, "earths"),
  36691. name: "Front",
  36692. image: {
  36693. source: "./media/characters/moonlight-rose/demon.svg",
  36694. extra: 1400/1294,
  36695. bottom: 45/1445
  36696. },
  36697. form: "demon",
  36698. default: true
  36699. },
  36700. terraFront: {
  36701. height: math.unit(1.5, "earths"),
  36702. name: "Front",
  36703. image: {
  36704. source: "./media/characters/moonlight-rose/terra.svg"
  36705. },
  36706. form: "terra",
  36707. default: true
  36708. },
  36709. jupiterFront: {
  36710. height: math.unit(69911*2, "km"),
  36711. name: "Front",
  36712. image: {
  36713. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36714. extra: 1367/1286,
  36715. bottom: 55/1422
  36716. },
  36717. form: "jupiter",
  36718. default: true
  36719. },
  36720. neptuneFront: {
  36721. height: math.unit(24622*2, "feet"),
  36722. name: "Front",
  36723. image: {
  36724. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36725. extra: 1851/1712,
  36726. bottom: 0/1851
  36727. },
  36728. form: "neptune",
  36729. default: true
  36730. },
  36731. },
  36732. [
  36733. {
  36734. name: "\"Natural\" Height",
  36735. height: math.unit(5 + 11/12, "feet"),
  36736. form: "normal"
  36737. },
  36738. {
  36739. name: "Smallest comfortable size",
  36740. height: math.unit(40, "meters"),
  36741. form: "normal"
  36742. },
  36743. {
  36744. name: "Common size",
  36745. height: math.unit(50, "km"),
  36746. form: "normal",
  36747. default: true
  36748. },
  36749. {
  36750. name: "Normal",
  36751. height: math.unit(1.5, "earths"),
  36752. form: "demon",
  36753. default: true
  36754. },
  36755. {
  36756. name: "Universal",
  36757. height: math.unit(15, "universes"),
  36758. form: "demon"
  36759. },
  36760. {
  36761. name: "Earth",
  36762. height: math.unit(1.5, "earths"),
  36763. form: "terra",
  36764. default: true
  36765. },
  36766. {
  36767. name: "Super Earth",
  36768. height: math.unit(67.5, "earths"),
  36769. form: "terra"
  36770. },
  36771. {
  36772. name: "Doesn't fit in a solar system...",
  36773. height: math.unit(1, "galaxy"),
  36774. form: "terra"
  36775. },
  36776. {
  36777. name: "Saturn",
  36778. height: math.unit(58232*2, "km"),
  36779. form: "jupiter"
  36780. },
  36781. {
  36782. name: "Jupiter",
  36783. height: math.unit(69911*2, "km"),
  36784. form: "jupiter",
  36785. default: true
  36786. },
  36787. {
  36788. name: "HD 100546 b",
  36789. height: math.unit(482938, "km"),
  36790. form: "jupiter"
  36791. },
  36792. {
  36793. name: "Enceladus",
  36794. height: math.unit(513*2, "km"),
  36795. form: "neptune"
  36796. },
  36797. {
  36798. name: "Europe",
  36799. height: math.unit(1560*2, "km"),
  36800. form: "neptune"
  36801. },
  36802. {
  36803. name: "Neptune",
  36804. height: math.unit(24622*2, "km"),
  36805. form: "neptune",
  36806. default: true
  36807. },
  36808. {
  36809. name: "CoRoT-9b",
  36810. height: math.unit(75067*2, "km"),
  36811. form: "neptune"
  36812. },
  36813. ],
  36814. {
  36815. "normal": {
  36816. name: "Normal",
  36817. default: true
  36818. },
  36819. "demon": {
  36820. name: "Demon"
  36821. },
  36822. "terra": {
  36823. name: "Terra"
  36824. },
  36825. "jupiter": {
  36826. name: "Jupiter"
  36827. },
  36828. "neptune": {
  36829. name: "Neptune"
  36830. }
  36831. }
  36832. ))
  36833. characterMakers.push(() => makeCharacter(
  36834. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36835. {
  36836. front: {
  36837. height: math.unit(16, "feet"),
  36838. weight: math.unit(610, "kg"),
  36839. name: "Front",
  36840. image: {
  36841. source: "./media/characters/huckle/front.svg",
  36842. extra: 1731/1625,
  36843. bottom: 33/1764
  36844. }
  36845. },
  36846. back: {
  36847. height: math.unit(16, "feet"),
  36848. weight: math.unit(610, "kg"),
  36849. name: "Back",
  36850. image: {
  36851. source: "./media/characters/huckle/back.svg",
  36852. extra: 1738/1651,
  36853. bottom: 37/1775
  36854. }
  36855. },
  36856. laughing: {
  36857. height: math.unit(3.75, "feet"),
  36858. name: "Laughing",
  36859. image: {
  36860. source: "./media/characters/huckle/laughing.svg"
  36861. }
  36862. },
  36863. angry: {
  36864. height: math.unit(4.15, "feet"),
  36865. name: "Angry",
  36866. image: {
  36867. source: "./media/characters/huckle/angry.svg"
  36868. }
  36869. },
  36870. },
  36871. [
  36872. {
  36873. name: "Normal",
  36874. height: math.unit(16, "feet"),
  36875. default: true
  36876. },
  36877. {
  36878. name: "Mini Macro",
  36879. height: math.unit(463, "feet")
  36880. },
  36881. {
  36882. name: "Macro",
  36883. height: math.unit(1680, "meters")
  36884. },
  36885. {
  36886. name: "Mega Macro",
  36887. height: math.unit(175, "km")
  36888. },
  36889. {
  36890. name: "Terra Macro",
  36891. height: math.unit(32, "gigameters")
  36892. },
  36893. {
  36894. name: "Multiverse+",
  36895. height: math.unit(2.56e23, "yottameters")
  36896. },
  36897. ]
  36898. ))
  36899. characterMakers.push(() => makeCharacter(
  36900. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36901. {
  36902. front: {
  36903. height: math.unit(6 + 9/12, "feet"),
  36904. weight: math.unit(280, "lb"),
  36905. name: "Front",
  36906. image: {
  36907. source: "./media/characters/candy/front.svg",
  36908. extra: 234/217,
  36909. bottom: 11/245
  36910. }
  36911. },
  36912. },
  36913. [
  36914. {
  36915. name: "Really Small",
  36916. height: math.unit(0.1, "nm")
  36917. },
  36918. {
  36919. name: "Micro",
  36920. height: math.unit(2, "inches")
  36921. },
  36922. {
  36923. name: "Normal",
  36924. height: math.unit(6 + 9/12, "feet"),
  36925. default: true
  36926. },
  36927. {
  36928. name: "Small Macro",
  36929. height: math.unit(69, "feet")
  36930. },
  36931. {
  36932. name: "Macro",
  36933. height: math.unit(160, "feet")
  36934. },
  36935. {
  36936. name: "Megamacro",
  36937. height: math.unit(22000, "miles")
  36938. },
  36939. {
  36940. name: "Gigamacro",
  36941. height: math.unit(50000, "miles")
  36942. },
  36943. ]
  36944. ))
  36945. characterMakers.push(() => makeCharacter(
  36946. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36947. {
  36948. front: {
  36949. height: math.unit(4, "feet"),
  36950. weight: math.unit(90, "lb"),
  36951. name: "Front",
  36952. image: {
  36953. source: "./media/characters/joey-mcdonald/front.svg",
  36954. extra: 1059/852,
  36955. bottom: 33/1092
  36956. }
  36957. },
  36958. back: {
  36959. height: math.unit(4, "feet"),
  36960. weight: math.unit(90, "lb"),
  36961. name: "Back",
  36962. image: {
  36963. source: "./media/characters/joey-mcdonald/back.svg",
  36964. extra: 1077/879,
  36965. bottom: 5/1082
  36966. }
  36967. },
  36968. frontKobold: {
  36969. height: math.unit(4, "feet"),
  36970. weight: math.unit(100, "lb"),
  36971. name: "Front-kobold",
  36972. image: {
  36973. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36974. extra: 1480/1367,
  36975. bottom: 0/1480
  36976. }
  36977. },
  36978. backKobold: {
  36979. height: math.unit(4, "feet"),
  36980. weight: math.unit(100, "lb"),
  36981. name: "Back-kobold",
  36982. image: {
  36983. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36984. extra: 1449/1361,
  36985. bottom: 0/1449
  36986. }
  36987. },
  36988. },
  36989. [
  36990. {
  36991. name: "Normal",
  36992. height: math.unit(4, "feet"),
  36993. default: true
  36994. },
  36995. ]
  36996. ))
  36997. characterMakers.push(() => makeCharacter(
  36998. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36999. {
  37000. front: {
  37001. height: math.unit(12 + 6/12, "feet"),
  37002. name: "Front",
  37003. image: {
  37004. source: "./media/characters/kass-lockheed/front.svg",
  37005. extra: 354/343,
  37006. bottom: 9/363
  37007. }
  37008. },
  37009. back: {
  37010. height: math.unit(12 + 6/12, "feet"),
  37011. name: "Back",
  37012. image: {
  37013. source: "./media/characters/kass-lockheed/back.svg",
  37014. extra: 364/352,
  37015. bottom: 3/367
  37016. }
  37017. },
  37018. dick: {
  37019. height: math.unit(3.12, "feet"),
  37020. name: "Dick",
  37021. image: {
  37022. source: "./media/characters/kass-lockheed/dick.svg"
  37023. }
  37024. },
  37025. head: {
  37026. height: math.unit(2.6, "feet"),
  37027. name: "Head",
  37028. image: {
  37029. source: "./media/characters/kass-lockheed/head.svg"
  37030. }
  37031. },
  37032. bleh: {
  37033. height: math.unit(2.85, "feet"),
  37034. name: "Bleh",
  37035. image: {
  37036. source: "./media/characters/kass-lockheed/bleh.svg"
  37037. }
  37038. },
  37039. smug: {
  37040. height: math.unit(2.85, "feet"),
  37041. name: "Smug",
  37042. image: {
  37043. source: "./media/characters/kass-lockheed/smug.svg"
  37044. }
  37045. },
  37046. },
  37047. [
  37048. {
  37049. name: "Normal",
  37050. height: math.unit(12 + 6/12, "feet"),
  37051. default: true
  37052. },
  37053. ]
  37054. ))
  37055. characterMakers.push(() => makeCharacter(
  37056. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37057. {
  37058. front: {
  37059. height: math.unit(6 + 2/12, "feet"),
  37060. name: "Front",
  37061. image: {
  37062. source: "./media/characters/taylor/front.svg",
  37063. extra: 639/495,
  37064. bottom: 12/651
  37065. }
  37066. },
  37067. },
  37068. [
  37069. {
  37070. name: "Normal",
  37071. height: math.unit(6 + 2/12, "feet"),
  37072. default: true
  37073. },
  37074. {
  37075. name: "Big",
  37076. height: math.unit(15, "feet")
  37077. },
  37078. {
  37079. name: "Lorg",
  37080. height: math.unit(80, "feet")
  37081. },
  37082. {
  37083. name: "Too Lorg",
  37084. height: math.unit(120, "feet")
  37085. },
  37086. ]
  37087. ))
  37088. characterMakers.push(() => makeCharacter(
  37089. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37090. {
  37091. front: {
  37092. height: math.unit(15, "feet"),
  37093. name: "Front",
  37094. image: {
  37095. source: "./media/characters/kaizer/front.svg",
  37096. extra: 1612/1436,
  37097. bottom: 43/1655
  37098. }
  37099. },
  37100. },
  37101. [
  37102. {
  37103. name: "Normal",
  37104. height: math.unit(15, "feet"),
  37105. default: true
  37106. },
  37107. ]
  37108. ))
  37109. characterMakers.push(() => makeCharacter(
  37110. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37111. {
  37112. front: {
  37113. height: math.unit(2, "feet"),
  37114. weight: math.unit(30, "lb"),
  37115. name: "Front",
  37116. image: {
  37117. source: "./media/characters/sandy/front.svg",
  37118. extra: 1439/1307,
  37119. bottom: 194/1633
  37120. }
  37121. },
  37122. },
  37123. [
  37124. {
  37125. name: "Normal",
  37126. height: math.unit(2, "feet"),
  37127. default: true
  37128. },
  37129. ]
  37130. ))
  37131. characterMakers.push(() => makeCharacter(
  37132. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37133. {
  37134. front: {
  37135. height: math.unit(3, "feet"),
  37136. name: "Front",
  37137. image: {
  37138. source: "./media/characters/mellvi/front.svg",
  37139. extra: 1831/1630,
  37140. bottom: 58/1889
  37141. }
  37142. },
  37143. },
  37144. [
  37145. {
  37146. name: "Normal",
  37147. height: math.unit(3, "feet"),
  37148. default: true
  37149. },
  37150. ]
  37151. ))
  37152. characterMakers.push(() => makeCharacter(
  37153. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37154. {
  37155. front: {
  37156. height: math.unit(5 + 11/12, "feet"),
  37157. weight: math.unit(200, "lb"),
  37158. name: "Front",
  37159. image: {
  37160. source: "./media/characters/shirou/front.svg",
  37161. extra: 2491/2383,
  37162. bottom: 189/2680
  37163. }
  37164. },
  37165. back: {
  37166. height: math.unit(5 + 11/12, "feet"),
  37167. weight: math.unit(200, "lb"),
  37168. name: "Back",
  37169. image: {
  37170. source: "./media/characters/shirou/back.svg",
  37171. extra: 2554/2450,
  37172. bottom: 76/2630
  37173. }
  37174. },
  37175. },
  37176. [
  37177. {
  37178. name: "Normal",
  37179. height: math.unit(5 + 11/12, "feet"),
  37180. default: true
  37181. },
  37182. ]
  37183. ))
  37184. characterMakers.push(() => makeCharacter(
  37185. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37186. {
  37187. front: {
  37188. height: math.unit(6 + 3/12, "feet"),
  37189. weight: math.unit(177, "lb"),
  37190. name: "Front",
  37191. image: {
  37192. source: "./media/characters/noryu/front.svg",
  37193. extra: 973/885,
  37194. bottom: 10/983
  37195. }
  37196. },
  37197. },
  37198. [
  37199. {
  37200. name: "Normal",
  37201. height: math.unit(6 + 3/12, "feet"),
  37202. default: true
  37203. },
  37204. ]
  37205. ))
  37206. characterMakers.push(() => makeCharacter(
  37207. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37208. {
  37209. front: {
  37210. height: math.unit(5 + 6/12, "feet"),
  37211. weight: math.unit(170, "lb"),
  37212. name: "Front",
  37213. image: {
  37214. source: "./media/characters/mevolas-rubenido/front.svg",
  37215. extra: 2109/1901,
  37216. bottom: 96/2205
  37217. }
  37218. },
  37219. },
  37220. [
  37221. {
  37222. name: "Normal",
  37223. height: math.unit(5 + 6/12, "feet"),
  37224. default: true
  37225. },
  37226. ]
  37227. ))
  37228. characterMakers.push(() => makeCharacter(
  37229. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37230. {
  37231. front: {
  37232. height: math.unit(100, "feet"),
  37233. name: "Front",
  37234. image: {
  37235. source: "./media/characters/dee/front.svg",
  37236. extra: 2153/2036,
  37237. bottom: 59/2212
  37238. }
  37239. },
  37240. back: {
  37241. height: math.unit(100, "feet"),
  37242. name: "Back",
  37243. image: {
  37244. source: "./media/characters/dee/back.svg",
  37245. extra: 2183/2058,
  37246. bottom: 75/2258
  37247. }
  37248. },
  37249. foot: {
  37250. height: math.unit(19.43, "feet"),
  37251. name: "Foot",
  37252. image: {
  37253. source: "./media/characters/dee/foot.svg"
  37254. }
  37255. },
  37256. hoof: {
  37257. height: math.unit(20.6, "feet"),
  37258. name: "Hoof",
  37259. image: {
  37260. source: "./media/characters/dee/hoof.svg"
  37261. }
  37262. },
  37263. },
  37264. [
  37265. {
  37266. name: "Macro",
  37267. height: math.unit(100, "feet"),
  37268. default: true
  37269. },
  37270. ]
  37271. ))
  37272. characterMakers.push(() => makeCharacter(
  37273. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37274. {
  37275. front: {
  37276. height: math.unit(5 + 6/12, "feet"),
  37277. name: "Front",
  37278. image: {
  37279. source: "./media/characters/teh/front.svg",
  37280. extra: 1002/847,
  37281. bottom: 62/1064
  37282. }
  37283. },
  37284. },
  37285. [
  37286. {
  37287. name: "Normal",
  37288. height: math.unit(5 + 6/12, "feet"),
  37289. default: true
  37290. },
  37291. ]
  37292. ))
  37293. characterMakers.push(() => makeCharacter(
  37294. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37295. {
  37296. side: {
  37297. height: math.unit(6 + 1/12, "feet"),
  37298. weight: math.unit(204, "lb"),
  37299. name: "Side",
  37300. image: {
  37301. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37302. extra: 974/775,
  37303. bottom: 169/1143
  37304. }
  37305. },
  37306. sitting: {
  37307. height: math.unit(6 + 2/12, "feet"),
  37308. weight: math.unit(204, "lb"),
  37309. name: "Sitting",
  37310. image: {
  37311. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37312. extra: 1175/964,
  37313. bottom: 378/1553
  37314. }
  37315. },
  37316. },
  37317. [
  37318. {
  37319. name: "Normal",
  37320. height: math.unit(6 + 1/12, "feet"),
  37321. default: true
  37322. },
  37323. ]
  37324. ))
  37325. characterMakers.push(() => makeCharacter(
  37326. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37327. {
  37328. front: {
  37329. height: math.unit(6, "inches"),
  37330. name: "Front",
  37331. image: {
  37332. source: "./media/characters/tululi/front.svg",
  37333. extra: 1997/1876,
  37334. bottom: 20/2017
  37335. }
  37336. },
  37337. },
  37338. [
  37339. {
  37340. name: "Normal",
  37341. height: math.unit(6, "inches"),
  37342. default: true
  37343. },
  37344. ]
  37345. ))
  37346. characterMakers.push(() => makeCharacter(
  37347. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37348. {
  37349. front: {
  37350. height: math.unit(4 + 1/12, "feet"),
  37351. name: "Front",
  37352. image: {
  37353. source: "./media/characters/star/front.svg",
  37354. extra: 1493/1189,
  37355. bottom: 48/1541
  37356. }
  37357. },
  37358. },
  37359. [
  37360. {
  37361. name: "Normal",
  37362. height: math.unit(4 + 1/12, "feet"),
  37363. default: true
  37364. },
  37365. ]
  37366. ))
  37367. characterMakers.push(() => makeCharacter(
  37368. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37369. {
  37370. front: {
  37371. height: math.unit(6 + 3/12, "feet"),
  37372. name: "Front",
  37373. image: {
  37374. source: "./media/characters/comet/front.svg",
  37375. extra: 1681/1462,
  37376. bottom: 26/1707
  37377. }
  37378. },
  37379. },
  37380. [
  37381. {
  37382. name: "Normal",
  37383. height: math.unit(6 + 3/12, "feet"),
  37384. default: true
  37385. },
  37386. ]
  37387. ))
  37388. characterMakers.push(() => makeCharacter(
  37389. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37390. {
  37391. front: {
  37392. height: math.unit(950, "feet"),
  37393. name: "Front",
  37394. image: {
  37395. source: "./media/characters/vortex/front.svg",
  37396. extra: 1497/1434,
  37397. bottom: 56/1553
  37398. }
  37399. },
  37400. maw: {
  37401. height: math.unit(285, "feet"),
  37402. name: "Maw",
  37403. image: {
  37404. source: "./media/characters/vortex/maw.svg"
  37405. }
  37406. },
  37407. },
  37408. [
  37409. {
  37410. name: "Macro",
  37411. height: math.unit(950, "feet"),
  37412. default: true
  37413. },
  37414. ]
  37415. ))
  37416. characterMakers.push(() => makeCharacter(
  37417. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37418. {
  37419. front: {
  37420. height: math.unit(600, "feet"),
  37421. weight: math.unit(0.02, "grams"),
  37422. name: "Front",
  37423. image: {
  37424. source: "./media/characters/doodle/front.svg",
  37425. extra: 1578/1413,
  37426. bottom: 37/1615
  37427. }
  37428. },
  37429. },
  37430. [
  37431. {
  37432. name: "Macro",
  37433. height: math.unit(600, "feet"),
  37434. default: true
  37435. },
  37436. ]
  37437. ))
  37438. characterMakers.push(() => makeCharacter(
  37439. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37440. {
  37441. front: {
  37442. height: math.unit(6 + 6/12, "feet"),
  37443. name: "Front",
  37444. image: {
  37445. source: "./media/characters/jai/front.svg",
  37446. extra: 1645/1534,
  37447. bottom: 115/1760
  37448. }
  37449. },
  37450. },
  37451. [
  37452. {
  37453. name: "Normal",
  37454. height: math.unit(6 + 6/12, "feet"),
  37455. default: true
  37456. },
  37457. ]
  37458. ))
  37459. characterMakers.push(() => makeCharacter(
  37460. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37461. {
  37462. front: {
  37463. height: math.unit(6 + 8/12, "feet"),
  37464. name: "Front",
  37465. image: {
  37466. source: "./media/characters/pixel/front.svg",
  37467. extra: 1900/1735,
  37468. bottom: 63/1963
  37469. }
  37470. },
  37471. },
  37472. [
  37473. {
  37474. name: "Normal",
  37475. height: math.unit(6 + 8/12, "feet"),
  37476. default: true
  37477. },
  37478. ]
  37479. ))
  37480. characterMakers.push(() => makeCharacter(
  37481. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37482. {
  37483. back: {
  37484. height: math.unit(4 + 1/12, "feet"),
  37485. weight: math.unit(75, "lb"),
  37486. name: "Back",
  37487. image: {
  37488. source: "./media/characters/rhett/back.svg",
  37489. extra: 930/878,
  37490. bottom: 25/955
  37491. }
  37492. },
  37493. front: {
  37494. height: math.unit(4 + 1/12, "feet"),
  37495. weight: math.unit(75, "lb"),
  37496. name: "Front",
  37497. image: {
  37498. source: "./media/characters/rhett/front.svg",
  37499. extra: 1682/1586,
  37500. bottom: 92/1774
  37501. }
  37502. },
  37503. },
  37504. [
  37505. {
  37506. name: "Micro",
  37507. height: math.unit(8, "inches")
  37508. },
  37509. {
  37510. name: "Tiny",
  37511. height: math.unit(2, "feet")
  37512. },
  37513. {
  37514. name: "Normal",
  37515. height: math.unit(4 + 1/12, "feet"),
  37516. default: true
  37517. },
  37518. ]
  37519. ))
  37520. characterMakers.push(() => makeCharacter(
  37521. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37522. {
  37523. front: {
  37524. height: math.unit(3 + 3/12, "feet"),
  37525. name: "Front",
  37526. image: {
  37527. source: "./media/characters/penny/front.svg",
  37528. extra: 1406/1311,
  37529. bottom: 26/1432
  37530. }
  37531. },
  37532. },
  37533. [
  37534. {
  37535. name: "Normal",
  37536. height: math.unit(3 + 3/12, "feet"),
  37537. default: true
  37538. },
  37539. ]
  37540. ))
  37541. characterMakers.push(() => makeCharacter(
  37542. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37543. {
  37544. front: {
  37545. height: math.unit(4 + 11/12, "feet"),
  37546. name: "Front",
  37547. image: {
  37548. source: "./media/characters/monty/front.svg",
  37549. extra: 1479/1209,
  37550. bottom: 0/1479
  37551. }
  37552. },
  37553. },
  37554. [
  37555. {
  37556. name: "Normal",
  37557. height: math.unit(4 + 11/12, "feet"),
  37558. default: true
  37559. },
  37560. ]
  37561. ))
  37562. characterMakers.push(() => makeCharacter(
  37563. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37564. {
  37565. front: {
  37566. height: math.unit(8 + 4/12, "feet"),
  37567. name: "Front",
  37568. image: {
  37569. source: "./media/characters/sterling/front.svg",
  37570. extra: 1420/1236,
  37571. bottom: 27/1447
  37572. }
  37573. },
  37574. },
  37575. [
  37576. {
  37577. name: "Normal",
  37578. height: math.unit(8 + 4/12, "feet"),
  37579. default: true
  37580. },
  37581. ]
  37582. ))
  37583. characterMakers.push(() => makeCharacter(
  37584. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37585. {
  37586. front: {
  37587. height: math.unit(15, "feet"),
  37588. name: "Front",
  37589. image: {
  37590. source: "./media/characters/marble/front.svg",
  37591. extra: 973/937,
  37592. bottom: 32/1005
  37593. }
  37594. },
  37595. },
  37596. [
  37597. {
  37598. name: "Normal",
  37599. height: math.unit(15, "feet"),
  37600. default: true
  37601. },
  37602. ]
  37603. ))
  37604. characterMakers.push(() => makeCharacter(
  37605. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37606. {
  37607. front: {
  37608. height: math.unit(3, "inches"),
  37609. name: "Front",
  37610. image: {
  37611. source: "./media/characters/powder/front.svg",
  37612. extra: 1504/1334,
  37613. bottom: 518/2022
  37614. }
  37615. },
  37616. },
  37617. [
  37618. {
  37619. name: "Normal",
  37620. height: math.unit(3, "inches"),
  37621. default: true
  37622. },
  37623. ]
  37624. ))
  37625. characterMakers.push(() => makeCharacter(
  37626. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37627. {
  37628. front: {
  37629. height: math.unit(4 + 5/12, "feet"),
  37630. name: "Front",
  37631. image: {
  37632. source: "./media/characters/joey-raccoon/front.svg",
  37633. extra: 1273/1197,
  37634. bottom: 0/1273
  37635. }
  37636. },
  37637. },
  37638. [
  37639. {
  37640. name: "Normal",
  37641. height: math.unit(4 + 5/12, "feet"),
  37642. default: true
  37643. },
  37644. ]
  37645. ))
  37646. characterMakers.push(() => makeCharacter(
  37647. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37648. {
  37649. front: {
  37650. height: math.unit(8 + 4/12, "feet"),
  37651. name: "Front",
  37652. image: {
  37653. source: "./media/characters/vick/front.svg",
  37654. extra: 2187/2118,
  37655. bottom: 47/2234
  37656. }
  37657. },
  37658. },
  37659. [
  37660. {
  37661. name: "Normal",
  37662. height: math.unit(8 + 4/12, "feet"),
  37663. default: true
  37664. },
  37665. ]
  37666. ))
  37667. characterMakers.push(() => makeCharacter(
  37668. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37669. {
  37670. front: {
  37671. height: math.unit(5 + 5/12, "feet"),
  37672. name: "Front",
  37673. image: {
  37674. source: "./media/characters/mitsy/front.svg",
  37675. extra: 1842/1695,
  37676. bottom: 0/1842
  37677. }
  37678. },
  37679. },
  37680. [
  37681. {
  37682. name: "Normal",
  37683. height: math.unit(5 + 5/12, "feet"),
  37684. default: true
  37685. },
  37686. ]
  37687. ))
  37688. characterMakers.push(() => makeCharacter(
  37689. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37690. {
  37691. front: {
  37692. height: math.unit(6 + 3/12, "feet"),
  37693. name: "Front",
  37694. image: {
  37695. source: "./media/characters/silvy/front.svg",
  37696. extra: 1995/1836,
  37697. bottom: 225/2220
  37698. }
  37699. },
  37700. },
  37701. [
  37702. {
  37703. name: "Normal",
  37704. height: math.unit(6 + 3/12, "feet"),
  37705. default: true
  37706. },
  37707. ]
  37708. ))
  37709. characterMakers.push(() => makeCharacter(
  37710. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37711. {
  37712. front: {
  37713. height: math.unit(3 + 8/12, "feet"),
  37714. name: "Front",
  37715. image: {
  37716. source: "./media/characters/rodney/front.svg",
  37717. extra: 1956/1747,
  37718. bottom: 31/1987
  37719. }
  37720. },
  37721. frontDressed: {
  37722. height: math.unit(2.9, "feet"),
  37723. name: "Front (Dressed)",
  37724. image: {
  37725. source: "./media/characters/rodney/front-dressed.svg",
  37726. extra: 1382/1241,
  37727. bottom: 385/1767
  37728. }
  37729. },
  37730. },
  37731. [
  37732. {
  37733. name: "Normal",
  37734. height: math.unit(3 + 8/12, "feet"),
  37735. default: true
  37736. },
  37737. ]
  37738. ))
  37739. characterMakers.push(() => makeCharacter(
  37740. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37741. {
  37742. front: {
  37743. height: math.unit(5 + 9/12, "feet"),
  37744. weight: math.unit(194, "lbs"),
  37745. name: "Front",
  37746. image: {
  37747. source: "./media/characters/zakail-sudekai/front.svg",
  37748. extra: 2696/2533,
  37749. bottom: 248/2944
  37750. }
  37751. },
  37752. maw: {
  37753. height: math.unit(1.35, "feet"),
  37754. name: "Maw",
  37755. image: {
  37756. source: "./media/characters/zakail-sudekai/maw.svg"
  37757. }
  37758. },
  37759. },
  37760. [
  37761. {
  37762. name: "Normal",
  37763. height: math.unit(5 + 9/12, "feet"),
  37764. default: true
  37765. },
  37766. ]
  37767. ))
  37768. characterMakers.push(() => makeCharacter(
  37769. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37770. {
  37771. front: {
  37772. height: math.unit(8 + 4/12, "feet"),
  37773. weight: math.unit(1200, "lb"),
  37774. name: "Front",
  37775. image: {
  37776. source: "./media/characters/eleanor/front.svg",
  37777. extra: 1226/1192,
  37778. bottom: 52/1278
  37779. }
  37780. },
  37781. back: {
  37782. height: math.unit(8 + 4/12, "feet"),
  37783. weight: math.unit(1200, "lb"),
  37784. name: "Back",
  37785. image: {
  37786. source: "./media/characters/eleanor/back.svg",
  37787. extra: 1242/1184,
  37788. bottom: 60/1302
  37789. }
  37790. },
  37791. head: {
  37792. height: math.unit(2.62, "feet"),
  37793. name: "Head",
  37794. image: {
  37795. source: "./media/characters/eleanor/head.svg"
  37796. }
  37797. },
  37798. },
  37799. [
  37800. {
  37801. name: "Normal",
  37802. height: math.unit(8 + 4/12, "feet"),
  37803. default: true
  37804. },
  37805. ]
  37806. ))
  37807. characterMakers.push(() => makeCharacter(
  37808. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37809. {
  37810. front: {
  37811. height: math.unit(8 + 4/12, "feet"),
  37812. weight: math.unit(750, "lb"),
  37813. name: "Front",
  37814. image: {
  37815. source: "./media/characters/tanya/front.svg",
  37816. extra: 1749/1615,
  37817. bottom: 33/1782
  37818. }
  37819. },
  37820. },
  37821. [
  37822. {
  37823. name: "Normal",
  37824. height: math.unit(8 + 4/12, "feet"),
  37825. default: true
  37826. },
  37827. ]
  37828. ))
  37829. characterMakers.push(() => makeCharacter(
  37830. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37831. {
  37832. front: {
  37833. height: math.unit(5, "feet"),
  37834. weight: math.unit(225, "lb"),
  37835. name: "Front",
  37836. image: {
  37837. source: "./media/characters/cindy/front.svg",
  37838. extra: 1320/1250,
  37839. bottom: 42/1362
  37840. }
  37841. },
  37842. frontDressed: {
  37843. height: math.unit(5, "feet"),
  37844. weight: math.unit(225, "lb"),
  37845. name: "Front (Dressed)",
  37846. image: {
  37847. source: "./media/characters/cindy/front-dressed.svg",
  37848. extra: 1320/1250,
  37849. bottom: 42/1362
  37850. }
  37851. },
  37852. back: {
  37853. height: math.unit(5, "feet"),
  37854. weight: math.unit(225, "lb"),
  37855. name: "Back",
  37856. image: {
  37857. source: "./media/characters/cindy/back.svg",
  37858. extra: 1384/1346,
  37859. bottom: 14/1398
  37860. }
  37861. },
  37862. },
  37863. [
  37864. {
  37865. name: "Normal",
  37866. height: math.unit(5, "feet"),
  37867. default: true
  37868. },
  37869. ]
  37870. ))
  37871. characterMakers.push(() => makeCharacter(
  37872. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37873. {
  37874. front: {
  37875. height: math.unit(6 + 9/12, "feet"),
  37876. weight: math.unit(440, "lb"),
  37877. name: "Front",
  37878. image: {
  37879. source: "./media/characters/wilbur-owen/front.svg",
  37880. extra: 1575/1448,
  37881. bottom: 72/1647
  37882. }
  37883. },
  37884. back: {
  37885. height: math.unit(6 + 9/12, "feet"),
  37886. weight: math.unit(440, "lb"),
  37887. name: "Back",
  37888. image: {
  37889. source: "./media/characters/wilbur-owen/back.svg",
  37890. extra: 1578/1445,
  37891. bottom: 36/1614
  37892. }
  37893. },
  37894. },
  37895. [
  37896. {
  37897. name: "Normal",
  37898. height: math.unit(6 + 9/12, "feet"),
  37899. default: true
  37900. },
  37901. ]
  37902. ))
  37903. characterMakers.push(() => makeCharacter(
  37904. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37905. {
  37906. front: {
  37907. height: math.unit(6 + 5/12, "feet"),
  37908. weight: math.unit(650, "lb"),
  37909. name: "Front",
  37910. image: {
  37911. source: "./media/characters/keegan/front.svg",
  37912. extra: 2387/2198,
  37913. bottom: 33/2420
  37914. }
  37915. },
  37916. side: {
  37917. height: math.unit(6 + 5/12, "feet"),
  37918. weight: math.unit(650, "lb"),
  37919. name: "Side",
  37920. image: {
  37921. source: "./media/characters/keegan/side.svg",
  37922. extra: 2390/2202,
  37923. bottom: 47/2437
  37924. }
  37925. },
  37926. back: {
  37927. height: math.unit(6 + 5/12, "feet"),
  37928. weight: math.unit(650, "lb"),
  37929. name: "Back",
  37930. image: {
  37931. source: "./media/characters/keegan/back.svg",
  37932. extra: 2418/2268,
  37933. bottom: 15/2433
  37934. }
  37935. },
  37936. frontSfw: {
  37937. height: math.unit(6 + 5/12, "feet"),
  37938. weight: math.unit(650, "lb"),
  37939. name: "Front (SFW)",
  37940. image: {
  37941. source: "./media/characters/keegan/front-sfw.svg",
  37942. extra: 2387/2198,
  37943. bottom: 33/2420
  37944. }
  37945. },
  37946. beans: {
  37947. height: math.unit(1.85, "feet"),
  37948. name: "Beans",
  37949. image: {
  37950. source: "./media/characters/keegan/beans.svg"
  37951. }
  37952. },
  37953. },
  37954. [
  37955. {
  37956. name: "Normal",
  37957. height: math.unit(6 + 5/12, "feet"),
  37958. default: true
  37959. },
  37960. ]
  37961. ))
  37962. characterMakers.push(() => makeCharacter(
  37963. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37964. {
  37965. front: {
  37966. height: math.unit(9, "feet"),
  37967. name: "Front",
  37968. image: {
  37969. source: "./media/characters/colton/front.svg",
  37970. extra: 1589/1326,
  37971. bottom: 139/1728
  37972. }
  37973. },
  37974. },
  37975. [
  37976. {
  37977. name: "Normal",
  37978. height: math.unit(9, "feet"),
  37979. default: true
  37980. },
  37981. ]
  37982. ))
  37983. characterMakers.push(() => makeCharacter(
  37984. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37985. {
  37986. front: {
  37987. height: math.unit(2 + 9/12, "feet"),
  37988. name: "Front",
  37989. image: {
  37990. source: "./media/characters/bora/front.svg",
  37991. extra: 1265/1250,
  37992. bottom: 24/1289
  37993. }
  37994. },
  37995. },
  37996. [
  37997. {
  37998. name: "Normal",
  37999. height: math.unit(2 + 9/12, "feet"),
  38000. default: true
  38001. },
  38002. ]
  38003. ))
  38004. characterMakers.push(() => makeCharacter(
  38005. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38006. {
  38007. front: {
  38008. height: math.unit(8, "feet"),
  38009. name: "Front",
  38010. image: {
  38011. source: "./media/characters/myu-myu/front.svg",
  38012. extra: 1949/1857,
  38013. bottom: 90/2039
  38014. }
  38015. },
  38016. },
  38017. [
  38018. {
  38019. name: "Normal",
  38020. height: math.unit(8, "feet"),
  38021. default: true
  38022. },
  38023. {
  38024. name: "Big",
  38025. height: math.unit(15, "feet")
  38026. },
  38027. {
  38028. name: "BIG",
  38029. height: math.unit(25, "feet")
  38030. },
  38031. ]
  38032. ))
  38033. characterMakers.push(() => makeCharacter(
  38034. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38035. {
  38036. side: {
  38037. height: math.unit(7 + 5/12, "feet"),
  38038. weight: math.unit(2800, "lb"),
  38039. name: "Side",
  38040. image: {
  38041. source: "./media/characters/haloren/side.svg",
  38042. extra: 1793/409,
  38043. bottom: 59/1852
  38044. }
  38045. },
  38046. frontPaw: {
  38047. height: math.unit(2.36, "feet"),
  38048. name: "Front paw",
  38049. image: {
  38050. source: "./media/characters/haloren/front-paw.svg"
  38051. }
  38052. },
  38053. hindPaw: {
  38054. height: math.unit(3.18, "feet"),
  38055. name: "Hind paw",
  38056. image: {
  38057. source: "./media/characters/haloren/hind-paw.svg"
  38058. }
  38059. },
  38060. maw: {
  38061. height: math.unit(5.05, "feet"),
  38062. name: "Maw",
  38063. image: {
  38064. source: "./media/characters/haloren/maw.svg"
  38065. }
  38066. },
  38067. dick: {
  38068. height: math.unit(2.90, "feet"),
  38069. name: "Dick",
  38070. image: {
  38071. source: "./media/characters/haloren/dick.svg"
  38072. }
  38073. },
  38074. },
  38075. [
  38076. {
  38077. name: "Normal",
  38078. height: math.unit(7 + 5/12, "feet"),
  38079. default: true
  38080. },
  38081. {
  38082. name: "Enhanced",
  38083. height: math.unit(14 + 3/12, "feet")
  38084. },
  38085. ]
  38086. ))
  38087. characterMakers.push(() => makeCharacter(
  38088. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38089. {
  38090. front: {
  38091. height: math.unit(171, "cm"),
  38092. name: "Front",
  38093. image: {
  38094. source: "./media/characters/kimmy/front.svg",
  38095. extra: 1491/1435,
  38096. bottom: 53/1544
  38097. }
  38098. },
  38099. },
  38100. [
  38101. {
  38102. name: "Small",
  38103. height: math.unit(9, "cm")
  38104. },
  38105. {
  38106. name: "Normal",
  38107. height: math.unit(171, "cm"),
  38108. default: true
  38109. },
  38110. ]
  38111. ))
  38112. characterMakers.push(() => makeCharacter(
  38113. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38114. {
  38115. front: {
  38116. height: math.unit(8, "feet"),
  38117. weight: math.unit(300, "lb"),
  38118. name: "Front",
  38119. image: {
  38120. source: "./media/characters/galeboomer/front.svg",
  38121. extra: 4651/4415,
  38122. bottom: 162/4813
  38123. }
  38124. },
  38125. back: {
  38126. height: math.unit(8, "feet"),
  38127. weight: math.unit(300, "lb"),
  38128. name: "Back",
  38129. image: {
  38130. source: "./media/characters/galeboomer/back.svg",
  38131. extra: 4544/4314,
  38132. bottom: 16/4560
  38133. }
  38134. },
  38135. frontAlt: {
  38136. height: math.unit(8, "feet"),
  38137. weight: math.unit(300, "lb"),
  38138. name: "Front (Alt)",
  38139. image: {
  38140. source: "./media/characters/galeboomer/front-alt.svg",
  38141. extra: 4458/4228,
  38142. bottom: 68/4526
  38143. }
  38144. },
  38145. maw: {
  38146. height: math.unit(1.2, "feet"),
  38147. name: "Maw",
  38148. image: {
  38149. source: "./media/characters/galeboomer/maw.svg"
  38150. }
  38151. },
  38152. },
  38153. [
  38154. {
  38155. name: "Normal",
  38156. height: math.unit(8, "feet"),
  38157. default: true
  38158. },
  38159. ]
  38160. ))
  38161. characterMakers.push(() => makeCharacter(
  38162. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38163. {
  38164. front: {
  38165. height: math.unit(5 + 9/12, "feet"),
  38166. weight: math.unit(120, "lb"),
  38167. name: "Front",
  38168. image: {
  38169. source: "./media/characters/chyr/front.svg",
  38170. extra: 1323/1254,
  38171. bottom: 63/1386
  38172. }
  38173. },
  38174. back: {
  38175. height: math.unit(5 + 9/12, "feet"),
  38176. weight: math.unit(120, "lb"),
  38177. name: "Back",
  38178. image: {
  38179. source: "./media/characters/chyr/back.svg",
  38180. extra: 1323/1252,
  38181. bottom: 48/1371
  38182. }
  38183. },
  38184. },
  38185. [
  38186. {
  38187. name: "Normal",
  38188. height: math.unit(5 + 9/12, "feet"),
  38189. default: true
  38190. },
  38191. ]
  38192. ))
  38193. characterMakers.push(() => makeCharacter(
  38194. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38195. {
  38196. front: {
  38197. height: math.unit(7, "feet"),
  38198. weight: math.unit(310, "lb"),
  38199. name: "Front",
  38200. image: {
  38201. source: "./media/characters/solarus/front.svg",
  38202. extra: 2415/2021,
  38203. bottom: 103/2518
  38204. }
  38205. },
  38206. back: {
  38207. height: math.unit(7, "feet"),
  38208. weight: math.unit(310, "lb"),
  38209. name: "Back",
  38210. image: {
  38211. source: "./media/characters/solarus/back.svg",
  38212. extra: 2463/2089,
  38213. bottom: 79/2542
  38214. }
  38215. },
  38216. },
  38217. [
  38218. {
  38219. name: "Normal",
  38220. height: math.unit(7, "feet"),
  38221. default: true
  38222. },
  38223. ]
  38224. ))
  38225. characterMakers.push(() => makeCharacter(
  38226. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38227. {
  38228. front: {
  38229. height: math.unit(16, "feet"),
  38230. name: "Front",
  38231. image: {
  38232. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38233. extra: 1844/1780,
  38234. bottom: 58/1902
  38235. }
  38236. },
  38237. winterCoat: {
  38238. height: math.unit(16, "feet"),
  38239. name: "Winter Coat",
  38240. image: {
  38241. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38242. extra: 1807/1775,
  38243. bottom: 69/1876
  38244. }
  38245. },
  38246. },
  38247. [
  38248. {
  38249. name: "Normal",
  38250. height: math.unit(16, "feet"),
  38251. default: true
  38252. },
  38253. {
  38254. name: "Chicago Size",
  38255. height: math.unit(560, "feet")
  38256. },
  38257. ]
  38258. ))
  38259. characterMakers.push(() => makeCharacter(
  38260. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38261. {
  38262. front: {
  38263. height: math.unit(11 + 6/12, "feet"),
  38264. weight: math.unit(1366, "lb"),
  38265. name: "Front",
  38266. image: {
  38267. source: "./media/characters/lexor/front.svg",
  38268. extra: 1560/1481,
  38269. bottom: 211/1771
  38270. }
  38271. },
  38272. back: {
  38273. height: math.unit(11 + 6/12, "feet"),
  38274. weight: math.unit(1366, "lb"),
  38275. name: "Back",
  38276. image: {
  38277. source: "./media/characters/lexor/back.svg",
  38278. extra: 1614/1533,
  38279. bottom: 76/1690
  38280. }
  38281. },
  38282. maw: {
  38283. height: math.unit(3, "feet"),
  38284. name: "Maw",
  38285. image: {
  38286. source: "./media/characters/lexor/maw.svg"
  38287. }
  38288. },
  38289. dick: {
  38290. height: math.unit(2.59, "feet"),
  38291. name: "Dick",
  38292. image: {
  38293. source: "./media/characters/lexor/dick.svg"
  38294. }
  38295. },
  38296. },
  38297. [
  38298. {
  38299. name: "Normal",
  38300. height: math.unit(11 + 6/12, "feet"),
  38301. default: true
  38302. },
  38303. ]
  38304. ))
  38305. characterMakers.push(() => makeCharacter(
  38306. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38307. {
  38308. front: {
  38309. height: math.unit(5 + 8/12, "feet"),
  38310. name: "Front",
  38311. image: {
  38312. source: "./media/characters/magnum/front.svg",
  38313. extra: 942/855,
  38314. bottom: 26/968
  38315. }
  38316. },
  38317. },
  38318. [
  38319. {
  38320. name: "Normal",
  38321. height: math.unit(5 + 8/12, "feet"),
  38322. default: true
  38323. },
  38324. ]
  38325. ))
  38326. characterMakers.push(() => makeCharacter(
  38327. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38328. {
  38329. front: {
  38330. height: math.unit(18 + 4/12, "feet"),
  38331. weight: math.unit(1500, "kg"),
  38332. name: "Front",
  38333. image: {
  38334. source: "./media/characters/solas-sharpsman/front.svg",
  38335. extra: 1698/1589,
  38336. bottom: 0/1698
  38337. }
  38338. },
  38339. },
  38340. [
  38341. {
  38342. name: "Normal",
  38343. height: math.unit(18 + 4/12, "feet"),
  38344. default: true
  38345. },
  38346. ]
  38347. ))
  38348. characterMakers.push(() => makeCharacter(
  38349. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38350. {
  38351. front: {
  38352. height: math.unit(5 + 5/12, "feet"),
  38353. weight: math.unit(180, "lb"),
  38354. name: "Front",
  38355. image: {
  38356. source: "./media/characters/october/front.svg",
  38357. extra: 1800/1650,
  38358. bottom: 0/1800
  38359. }
  38360. },
  38361. frontNsfw: {
  38362. height: math.unit(5 + 5/12, "feet"),
  38363. weight: math.unit(180, "lb"),
  38364. name: "Front (NSFW)",
  38365. image: {
  38366. source: "./media/characters/october/front-nsfw.svg",
  38367. extra: 1392/1307,
  38368. bottom: 42/1434
  38369. }
  38370. },
  38371. },
  38372. [
  38373. {
  38374. name: "Normal",
  38375. height: math.unit(5 + 5/12, "feet"),
  38376. default: true
  38377. },
  38378. ]
  38379. ))
  38380. characterMakers.push(() => makeCharacter(
  38381. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38382. {
  38383. front: {
  38384. height: math.unit(8 + 6/12, "feet"),
  38385. name: "Front",
  38386. image: {
  38387. source: "./media/characters/essynkardi/front.svg",
  38388. extra: 1914/1846,
  38389. bottom: 22/1936
  38390. }
  38391. },
  38392. },
  38393. [
  38394. {
  38395. name: "Normal",
  38396. height: math.unit(8 + 6/12, "feet"),
  38397. default: true
  38398. },
  38399. ]
  38400. ))
  38401. characterMakers.push(() => makeCharacter(
  38402. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38403. {
  38404. front: {
  38405. height: math.unit(6 + 6/12, "feet"),
  38406. weight: math.unit(7, "lb"),
  38407. name: "Front",
  38408. image: {
  38409. source: "./media/characters/icky/front.svg",
  38410. extra: 813/782,
  38411. bottom: 66/879
  38412. }
  38413. },
  38414. back: {
  38415. height: math.unit(6 + 6/12, "feet"),
  38416. weight: math.unit(7, "lb"),
  38417. name: "Back",
  38418. image: {
  38419. source: "./media/characters/icky/back.svg",
  38420. extra: 754/735,
  38421. bottom: 56/810
  38422. }
  38423. },
  38424. },
  38425. [
  38426. {
  38427. name: "Normal",
  38428. height: math.unit(6 + 6/12, "feet"),
  38429. default: true
  38430. },
  38431. ]
  38432. ))
  38433. characterMakers.push(() => makeCharacter(
  38434. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38435. {
  38436. front: {
  38437. height: math.unit(15, "feet"),
  38438. name: "Front",
  38439. image: {
  38440. source: "./media/characters/rojas/front.svg",
  38441. extra: 1462/1408,
  38442. bottom: 95/1557
  38443. }
  38444. },
  38445. back: {
  38446. height: math.unit(15, "feet"),
  38447. name: "Back",
  38448. image: {
  38449. source: "./media/characters/rojas/back.svg",
  38450. extra: 1023/954,
  38451. bottom: 28/1051
  38452. }
  38453. },
  38454. },
  38455. [
  38456. {
  38457. name: "Normal",
  38458. height: math.unit(15, "feet"),
  38459. default: true
  38460. },
  38461. ]
  38462. ))
  38463. characterMakers.push(() => makeCharacter(
  38464. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38465. {
  38466. frontHuman: {
  38467. height: math.unit(5 + 7/12, "feet"),
  38468. name: "Front (Human)",
  38469. image: {
  38470. source: "./media/characters/alek-dryagan/front-human.svg",
  38471. extra: 1687/1667,
  38472. bottom: 69/1756
  38473. }
  38474. },
  38475. backHuman: {
  38476. height: math.unit(5 + 7/12, "feet"),
  38477. name: "Back (Human)",
  38478. image: {
  38479. source: "./media/characters/alek-dryagan/back-human.svg",
  38480. extra: 1670/1649,
  38481. bottom: 65/1735
  38482. }
  38483. },
  38484. frontDemi: {
  38485. height: math.unit(65, "feet"),
  38486. name: "Front (Demi)",
  38487. image: {
  38488. source: "./media/characters/alek-dryagan/front-demi.svg",
  38489. extra: 1669/1642,
  38490. bottom: 49/1718
  38491. }
  38492. },
  38493. backDemi: {
  38494. height: math.unit(65, "feet"),
  38495. name: "Back (Demi)",
  38496. image: {
  38497. source: "./media/characters/alek-dryagan/back-demi.svg",
  38498. extra: 1658/1637,
  38499. bottom: 40/1698
  38500. }
  38501. },
  38502. mawHuman: {
  38503. height: math.unit(0.3, "feet"),
  38504. name: "Maw (Human)",
  38505. image: {
  38506. source: "./media/characters/alek-dryagan/maw-human.svg"
  38507. }
  38508. },
  38509. mawDemi: {
  38510. height: math.unit(3.8, "feet"),
  38511. name: "Maw (Demi)",
  38512. image: {
  38513. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38514. }
  38515. },
  38516. },
  38517. [
  38518. {
  38519. name: "Normal",
  38520. height: math.unit(5 + 7/12, "feet"),
  38521. default: true
  38522. },
  38523. ]
  38524. ))
  38525. characterMakers.push(() => makeCharacter(
  38526. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38527. {
  38528. frontHuman: {
  38529. height: math.unit(5 + 2/12, "feet"),
  38530. name: "Front (Human)",
  38531. image: {
  38532. source: "./media/characters/gen/front-human.svg",
  38533. extra: 1627/1538,
  38534. bottom: 71/1698
  38535. }
  38536. },
  38537. backHuman: {
  38538. height: math.unit(5 + 2/12, "feet"),
  38539. name: "Back (Human)",
  38540. image: {
  38541. source: "./media/characters/gen/back-human.svg",
  38542. extra: 1638/1548,
  38543. bottom: 69/1707
  38544. }
  38545. },
  38546. frontDemi: {
  38547. height: math.unit(5 + 2/12, "feet"),
  38548. name: "Front (Demi)",
  38549. image: {
  38550. source: "./media/characters/gen/front-demi.svg",
  38551. extra: 1627/1538,
  38552. bottom: 71/1698
  38553. }
  38554. },
  38555. backDemi: {
  38556. height: math.unit(5 + 2/12, "feet"),
  38557. name: "Back (Demi)",
  38558. image: {
  38559. source: "./media/characters/gen/back-demi.svg",
  38560. extra: 1638/1548,
  38561. bottom: 69/1707
  38562. }
  38563. },
  38564. },
  38565. [
  38566. {
  38567. name: "Normal",
  38568. height: math.unit(5 + 2/12, "feet"),
  38569. default: true
  38570. },
  38571. ]
  38572. ))
  38573. characterMakers.push(() => makeCharacter(
  38574. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38575. {
  38576. frontImp: {
  38577. height: math.unit(1 + 11/12, "feet"),
  38578. name: "Front (Imp)",
  38579. image: {
  38580. source: "./media/characters/max-kobold/front-imp.svg",
  38581. extra: 1238/1134,
  38582. bottom: 81/1319
  38583. }
  38584. },
  38585. backImp: {
  38586. height: math.unit(1 + 11/12, "feet"),
  38587. name: "Back (Imp)",
  38588. image: {
  38589. source: "./media/characters/max-kobold/back-imp.svg",
  38590. extra: 1334/1175,
  38591. bottom: 34/1368
  38592. }
  38593. },
  38594. frontDemi: {
  38595. height: math.unit(5 + 9/12, "feet"),
  38596. name: "Front (Demi)",
  38597. image: {
  38598. source: "./media/characters/max-kobold/front-demi.svg",
  38599. extra: 1715/1685,
  38600. bottom: 54/1769
  38601. }
  38602. },
  38603. backDemi: {
  38604. height: math.unit(5 + 9/12, "feet"),
  38605. name: "Back (Demi)",
  38606. image: {
  38607. source: "./media/characters/max-kobold/back-demi.svg",
  38608. extra: 1752/1729,
  38609. bottom: 41/1793
  38610. }
  38611. },
  38612. handImp: {
  38613. height: math.unit(0.45, "feet"),
  38614. name: "Hand (Imp)",
  38615. image: {
  38616. source: "./media/characters/max-kobold/hand.svg"
  38617. }
  38618. },
  38619. pawImp: {
  38620. height: math.unit(0.46, "feet"),
  38621. name: "Paw (Imp)",
  38622. image: {
  38623. source: "./media/characters/max-kobold/paw.svg"
  38624. }
  38625. },
  38626. handDemi: {
  38627. height: math.unit(0.80, "feet"),
  38628. name: "Hand (Demi)",
  38629. image: {
  38630. source: "./media/characters/max-kobold/hand.svg"
  38631. }
  38632. },
  38633. pawDemi: {
  38634. height: math.unit(1.1, "feet"),
  38635. name: "Paw (Demi)",
  38636. image: {
  38637. source: "./media/characters/max-kobold/paw.svg"
  38638. }
  38639. },
  38640. headImp: {
  38641. height: math.unit(1.33, "feet"),
  38642. name: "Head (Imp)",
  38643. image: {
  38644. source: "./media/characters/max-kobold/head-imp.svg"
  38645. }
  38646. },
  38647. mawImp: {
  38648. height: math.unit(0.75, "feet"),
  38649. name: "Maw (Imp)",
  38650. image: {
  38651. source: "./media/characters/max-kobold/maw-imp.svg"
  38652. }
  38653. },
  38654. mawDemi: {
  38655. height: math.unit(0.42, "feet"),
  38656. name: "Maw (Demi)",
  38657. image: {
  38658. source: "./media/characters/max-kobold/maw-demi.svg"
  38659. }
  38660. },
  38661. },
  38662. [
  38663. {
  38664. name: "Normal",
  38665. height: math.unit(1 + 11/12, "feet"),
  38666. default: true
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(7 + 5/12, "feet"),
  38675. name: "Front",
  38676. image: {
  38677. source: "./media/characters/carbon/front.svg",
  38678. extra: 1754/1689,
  38679. bottom: 65/1819
  38680. }
  38681. },
  38682. back: {
  38683. height: math.unit(7 + 5/12, "feet"),
  38684. name: "Back",
  38685. image: {
  38686. source: "./media/characters/carbon/back.svg",
  38687. extra: 1762/1695,
  38688. bottom: 24/1786
  38689. }
  38690. },
  38691. frontGigantamax: {
  38692. height: math.unit(150, "feet"),
  38693. name: "Front (Gigantamax)",
  38694. image: {
  38695. source: "./media/characters/carbon/front-gigantamax.svg",
  38696. extra: 1826/1669,
  38697. bottom: 59/1885
  38698. }
  38699. },
  38700. backGigantamax: {
  38701. height: math.unit(150, "feet"),
  38702. name: "Back (Gigantamax)",
  38703. image: {
  38704. source: "./media/characters/carbon/back-gigantamax.svg",
  38705. extra: 1796/1653,
  38706. bottom: 53/1849
  38707. }
  38708. },
  38709. maw: {
  38710. height: math.unit(0.48, "feet"),
  38711. name: "Maw",
  38712. image: {
  38713. source: "./media/characters/carbon/maw.svg"
  38714. }
  38715. },
  38716. mawGigantamax: {
  38717. height: math.unit(7.5, "feet"),
  38718. name: "Maw (Gigantamax)",
  38719. image: {
  38720. source: "./media/characters/carbon/maw-gigantamax.svg"
  38721. }
  38722. },
  38723. },
  38724. [
  38725. {
  38726. name: "Normal",
  38727. height: math.unit(7 + 5/12, "feet"),
  38728. default: true
  38729. },
  38730. ]
  38731. ))
  38732. characterMakers.push(() => makeCharacter(
  38733. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38734. {
  38735. front: {
  38736. height: math.unit(6, "feet"),
  38737. name: "Front",
  38738. image: {
  38739. source: "./media/characters/maverick/front.svg",
  38740. extra: 1672/1661,
  38741. bottom: 85/1757
  38742. }
  38743. },
  38744. back: {
  38745. height: math.unit(6, "feet"),
  38746. name: "Back",
  38747. image: {
  38748. source: "./media/characters/maverick/back.svg",
  38749. extra: 1642/1631,
  38750. bottom: 38/1680
  38751. }
  38752. },
  38753. },
  38754. [
  38755. {
  38756. name: "Normal",
  38757. height: math.unit(6, "feet"),
  38758. default: true
  38759. },
  38760. ]
  38761. ))
  38762. characterMakers.push(() => makeCharacter(
  38763. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38764. {
  38765. front: {
  38766. height: math.unit(15, "feet"),
  38767. weight: math.unit(615, "lb"),
  38768. name: "Front",
  38769. image: {
  38770. source: "./media/characters/grockle/front.svg",
  38771. extra: 1535/1427,
  38772. bottom: 56/1591
  38773. }
  38774. },
  38775. },
  38776. [
  38777. {
  38778. name: "Normal",
  38779. height: math.unit(15, "feet"),
  38780. default: true
  38781. },
  38782. {
  38783. name: "Large",
  38784. height: math.unit(150, "feet")
  38785. },
  38786. {
  38787. name: "Macro",
  38788. height: math.unit(1876, "feet")
  38789. },
  38790. {
  38791. name: "Mega Macro",
  38792. height: math.unit(121940, "feet")
  38793. },
  38794. {
  38795. name: "Giga Macro",
  38796. height: math.unit(750, "km")
  38797. },
  38798. {
  38799. name: "Tera Macro",
  38800. height: math.unit(750000, "km")
  38801. },
  38802. {
  38803. name: "Galactic",
  38804. height: math.unit(1.4e5, "km")
  38805. },
  38806. {
  38807. name: "Godlike",
  38808. height: math.unit(9.8e280, "galaxies")
  38809. },
  38810. ]
  38811. ))
  38812. characterMakers.push(() => makeCharacter(
  38813. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38814. {
  38815. front: {
  38816. height: math.unit(11, "meters"),
  38817. weight: math.unit(20, "tonnes"),
  38818. name: "Front",
  38819. image: {
  38820. source: "./media/characters/alistair/front.svg",
  38821. extra: 1265/1009,
  38822. bottom: 93/1358
  38823. }
  38824. },
  38825. },
  38826. [
  38827. {
  38828. name: "Normal",
  38829. height: math.unit(11, "meters"),
  38830. default: true
  38831. },
  38832. ]
  38833. ))
  38834. characterMakers.push(() => makeCharacter(
  38835. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38836. {
  38837. front: {
  38838. height: math.unit(5 + 8/12, "feet"),
  38839. name: "Front",
  38840. image: {
  38841. source: "./media/characters/haruka/front.svg",
  38842. extra: 2012/1952,
  38843. bottom: 0/2012
  38844. }
  38845. },
  38846. },
  38847. [
  38848. {
  38849. name: "Normal",
  38850. height: math.unit(5 + 8/12, "feet"),
  38851. default: true
  38852. },
  38853. ]
  38854. ))
  38855. characterMakers.push(() => makeCharacter(
  38856. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38857. {
  38858. back: {
  38859. height: math.unit(9, "feet"),
  38860. name: "Back",
  38861. image: {
  38862. source: "./media/characters/vivian-sylveon/back.svg",
  38863. extra: 1853/1714,
  38864. bottom: 0/1853
  38865. }
  38866. },
  38867. },
  38868. [
  38869. {
  38870. name: "Normal",
  38871. height: math.unit(9, "feet"),
  38872. default: true
  38873. },
  38874. {
  38875. name: "Macro",
  38876. height: math.unit(500, "feet")
  38877. },
  38878. {
  38879. name: "Megamacro",
  38880. height: math.unit(600, "miles")
  38881. },
  38882. {
  38883. name: "Gigamacro",
  38884. height: math.unit(30000, "miles")
  38885. },
  38886. ]
  38887. ))
  38888. characterMakers.push(() => makeCharacter(
  38889. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38890. {
  38891. anthro: {
  38892. height: math.unit(5 + 10/12, "feet"),
  38893. weight: math.unit(100, "lb"),
  38894. name: "Anthro",
  38895. image: {
  38896. source: "./media/characters/daiki/anthro.svg",
  38897. extra: 1115/1027,
  38898. bottom: 69/1184
  38899. }
  38900. },
  38901. feral: {
  38902. height: math.unit(200, "feet"),
  38903. name: "Feral",
  38904. image: {
  38905. source: "./media/characters/daiki/feral.svg",
  38906. extra: 1256/313,
  38907. bottom: 39/1295
  38908. }
  38909. },
  38910. feralHead: {
  38911. height: math.unit(171, "feet"),
  38912. name: "Feral Head",
  38913. image: {
  38914. source: "./media/characters/daiki/feral-head.svg"
  38915. }
  38916. },
  38917. manaDragon: {
  38918. height: math.unit(170, "meters"),
  38919. name: "Mana-dragon",
  38920. image: {
  38921. source: "./media/characters/daiki/mana-dragon.svg",
  38922. extra: 763/420,
  38923. bottom: 97/860
  38924. }
  38925. },
  38926. },
  38927. [
  38928. {
  38929. name: "Normal",
  38930. height: math.unit(5 + 10/12, "feet"),
  38931. default: true
  38932. },
  38933. ]
  38934. ))
  38935. characterMakers.push(() => makeCharacter(
  38936. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38937. {
  38938. fullyEquippedFront: {
  38939. height: math.unit(3 + 1/12, "feet"),
  38940. weight: math.unit(24, "lb"),
  38941. name: "Fully Equipped (Front)",
  38942. image: {
  38943. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38944. extra: 687/605,
  38945. bottom: 18/705
  38946. }
  38947. },
  38948. fullyEquippedBack: {
  38949. height: math.unit(3 + 1/12, "feet"),
  38950. weight: math.unit(24, "lb"),
  38951. name: "Fully Equipped (Back)",
  38952. image: {
  38953. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38954. extra: 689/590,
  38955. bottom: 18/707
  38956. }
  38957. },
  38958. dailyWear: {
  38959. height: math.unit(3 + 1/12, "feet"),
  38960. weight: math.unit(24, "lb"),
  38961. name: "Daily Wear",
  38962. image: {
  38963. source: "./media/characters/tea-spot/daily-wear.svg",
  38964. extra: 701/620,
  38965. bottom: 21/722
  38966. }
  38967. },
  38968. maidWork: {
  38969. height: math.unit(3 + 1/12, "feet"),
  38970. weight: math.unit(24, "lb"),
  38971. name: "Maid Work",
  38972. image: {
  38973. source: "./media/characters/tea-spot/maid-work.svg",
  38974. extra: 693/609,
  38975. bottom: 15/708
  38976. }
  38977. },
  38978. },
  38979. [
  38980. {
  38981. name: "Normal",
  38982. height: math.unit(3 + 1/12, "feet"),
  38983. default: true
  38984. },
  38985. ]
  38986. ))
  38987. characterMakers.push(() => makeCharacter(
  38988. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38989. {
  38990. front: {
  38991. height: math.unit(175, "cm"),
  38992. weight: math.unit(75, "kg"),
  38993. name: "Front",
  38994. image: {
  38995. source: "./media/characters/chee/front.svg",
  38996. extra: 1796/1740,
  38997. bottom: 40/1836
  38998. }
  38999. },
  39000. },
  39001. [
  39002. {
  39003. name: "Micro-Micro",
  39004. height: math.unit(1, "nm")
  39005. },
  39006. {
  39007. name: "Micro-erst",
  39008. height: math.unit(1, "micrometer")
  39009. },
  39010. {
  39011. name: "Micro-er",
  39012. height: math.unit(1, "cm")
  39013. },
  39014. {
  39015. name: "Normal",
  39016. height: math.unit(175, "cm"),
  39017. default: true
  39018. },
  39019. {
  39020. name: "Macro",
  39021. height: math.unit(100, "m")
  39022. },
  39023. {
  39024. name: "Macro-er",
  39025. height: math.unit(1, "km")
  39026. },
  39027. {
  39028. name: "Macro-erst",
  39029. height: math.unit(10, "km")
  39030. },
  39031. {
  39032. name: "Macro-Macro",
  39033. height: math.unit(100, "km")
  39034. },
  39035. ]
  39036. ))
  39037. characterMakers.push(() => makeCharacter(
  39038. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39039. {
  39040. front: {
  39041. height: math.unit(11 + 9/12, "feet"),
  39042. weight: math.unit(935, "lb"),
  39043. name: "Front",
  39044. image: {
  39045. source: "./media/characters/kingsley/front.svg",
  39046. extra: 1803/1674,
  39047. bottom: 127/1930
  39048. }
  39049. },
  39050. frontNude: {
  39051. height: math.unit(11 + 9/12, "feet"),
  39052. weight: math.unit(935, "lb"),
  39053. name: "Front (Nude)",
  39054. image: {
  39055. source: "./media/characters/kingsley/front-nude.svg",
  39056. extra: 1803/1674,
  39057. bottom: 127/1930
  39058. }
  39059. },
  39060. },
  39061. [
  39062. {
  39063. name: "Normal",
  39064. height: math.unit(11 + 9/12, "feet"),
  39065. default: true
  39066. },
  39067. ]
  39068. ))
  39069. characterMakers.push(() => makeCharacter(
  39070. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39071. {
  39072. side: {
  39073. height: math.unit(9, "feet"),
  39074. name: "Side",
  39075. image: {
  39076. source: "./media/characters/rymel/side.svg",
  39077. extra: 792/469,
  39078. bottom: 121/913
  39079. }
  39080. },
  39081. maw: {
  39082. height: math.unit(2.4, "meters"),
  39083. name: "Maw",
  39084. image: {
  39085. source: "./media/characters/rymel/maw.svg"
  39086. }
  39087. },
  39088. },
  39089. [
  39090. {
  39091. name: "House Drake",
  39092. height: math.unit(2, "feet")
  39093. },
  39094. {
  39095. name: "Reduced",
  39096. height: math.unit(4.5, "feet")
  39097. },
  39098. {
  39099. name: "Normal",
  39100. height: math.unit(9, "feet"),
  39101. default: true
  39102. },
  39103. ]
  39104. ))
  39105. characterMakers.push(() => makeCharacter(
  39106. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39107. {
  39108. front: {
  39109. height: math.unit(1.74, "meters"),
  39110. weight: math.unit(55, "kg"),
  39111. name: "Front",
  39112. image: {
  39113. source: "./media/characters/rubus/front.svg",
  39114. extra: 1894/1742,
  39115. bottom: 44/1938
  39116. }
  39117. },
  39118. },
  39119. [
  39120. {
  39121. name: "Normal",
  39122. height: math.unit(1.74, "meters"),
  39123. default: true
  39124. },
  39125. ]
  39126. ))
  39127. characterMakers.push(() => makeCharacter(
  39128. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39129. {
  39130. front: {
  39131. height: math.unit(5 + 2/12, "feet"),
  39132. weight: math.unit(112, "lb"),
  39133. name: "Front",
  39134. image: {
  39135. source: "./media/characters/cassie-kingston/front.svg",
  39136. extra: 1438/1390,
  39137. bottom: 47/1485
  39138. }
  39139. },
  39140. },
  39141. [
  39142. {
  39143. name: "Normal",
  39144. height: math.unit(5 + 2/12, "feet"),
  39145. default: true
  39146. },
  39147. {
  39148. name: "Macro",
  39149. height: math.unit(128, "feet")
  39150. },
  39151. {
  39152. name: "Megamacro",
  39153. height: math.unit(2.56, "miles")
  39154. },
  39155. ]
  39156. ))
  39157. characterMakers.push(() => makeCharacter(
  39158. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39159. {
  39160. front: {
  39161. height: math.unit(7, "feet"),
  39162. name: "Front",
  39163. image: {
  39164. source: "./media/characters/fox/front.svg",
  39165. extra: 1798/1703,
  39166. bottom: 55/1853
  39167. }
  39168. },
  39169. back: {
  39170. height: math.unit(7, "feet"),
  39171. name: "Back",
  39172. image: {
  39173. source: "./media/characters/fox/back.svg",
  39174. extra: 1748/1649,
  39175. bottom: 32/1780
  39176. }
  39177. },
  39178. head: {
  39179. height: math.unit(1.95, "feet"),
  39180. name: "Head",
  39181. image: {
  39182. source: "./media/characters/fox/head.svg"
  39183. }
  39184. },
  39185. dick: {
  39186. height: math.unit(1.33, "feet"),
  39187. name: "Dick",
  39188. image: {
  39189. source: "./media/characters/fox/dick.svg"
  39190. }
  39191. },
  39192. foot: {
  39193. height: math.unit(1, "feet"),
  39194. name: "Foot",
  39195. image: {
  39196. source: "./media/characters/fox/foot.svg"
  39197. }
  39198. },
  39199. paw: {
  39200. height: math.unit(0.92, "feet"),
  39201. name: "Paw",
  39202. image: {
  39203. source: "./media/characters/fox/paw.svg"
  39204. }
  39205. },
  39206. },
  39207. [
  39208. {
  39209. name: "Small",
  39210. height: math.unit(3, "inches")
  39211. },
  39212. {
  39213. name: "\"Realistic\"",
  39214. height: math.unit(7, "feet")
  39215. },
  39216. {
  39217. name: "Normal",
  39218. height: math.unit(150, "feet"),
  39219. default: true
  39220. },
  39221. {
  39222. name: "BIG",
  39223. height: math.unit(1200, "feet")
  39224. },
  39225. {
  39226. name: "👀",
  39227. height: math.unit(5, "miles")
  39228. },
  39229. {
  39230. name: "👀👀👀",
  39231. height: math.unit(64, "miles")
  39232. },
  39233. ]
  39234. ))
  39235. characterMakers.push(() => makeCharacter(
  39236. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39237. {
  39238. front: {
  39239. height: math.unit(625, "feet"),
  39240. name: "Front",
  39241. image: {
  39242. source: "./media/characters/asonja-rossa/front.svg",
  39243. extra: 1833/1686,
  39244. bottom: 24/1857
  39245. }
  39246. },
  39247. back: {
  39248. height: math.unit(625, "feet"),
  39249. name: "Back",
  39250. image: {
  39251. source: "./media/characters/asonja-rossa/back.svg",
  39252. extra: 1852/1753,
  39253. bottom: 26/1878
  39254. }
  39255. },
  39256. },
  39257. [
  39258. {
  39259. name: "Macro",
  39260. height: math.unit(625, "feet"),
  39261. default: true
  39262. },
  39263. ]
  39264. ))
  39265. characterMakers.push(() => makeCharacter(
  39266. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39267. {
  39268. side: {
  39269. height: math.unit(8, "feet"),
  39270. name: "Side",
  39271. image: {
  39272. source: "./media/characters/rezukii/side.svg",
  39273. extra: 979/542,
  39274. bottom: 87/1066
  39275. }
  39276. },
  39277. sitting: {
  39278. height: math.unit(14.6, "feet"),
  39279. name: "Sitting",
  39280. image: {
  39281. source: "./media/characters/rezukii/sitting.svg",
  39282. extra: 1023/813,
  39283. bottom: 45/1068
  39284. }
  39285. },
  39286. },
  39287. [
  39288. {
  39289. name: "Tiny",
  39290. height: math.unit(2, "feet")
  39291. },
  39292. {
  39293. name: "Smol",
  39294. height: math.unit(4, "feet")
  39295. },
  39296. {
  39297. name: "Normal",
  39298. height: math.unit(8, "feet"),
  39299. default: true
  39300. },
  39301. {
  39302. name: "Big",
  39303. height: math.unit(12, "feet")
  39304. },
  39305. {
  39306. name: "Macro",
  39307. height: math.unit(30, "feet")
  39308. },
  39309. ]
  39310. ))
  39311. characterMakers.push(() => makeCharacter(
  39312. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39313. {
  39314. front: {
  39315. height: math.unit(14, "feet"),
  39316. weight: math.unit(9.5, "tonnes"),
  39317. name: "Front",
  39318. image: {
  39319. source: "./media/characters/dawnheart/front.svg",
  39320. extra: 2792/2675,
  39321. bottom: 64/2856
  39322. }
  39323. },
  39324. },
  39325. [
  39326. {
  39327. name: "Normal",
  39328. height: math.unit(14, "feet"),
  39329. default: true
  39330. },
  39331. ]
  39332. ))
  39333. characterMakers.push(() => makeCharacter(
  39334. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39335. {
  39336. front: {
  39337. height: math.unit(1.7, "m"),
  39338. name: "Front",
  39339. image: {
  39340. source: "./media/characters/gladi/front.svg",
  39341. extra: 1460/1362,
  39342. bottom: 19/1479
  39343. }
  39344. },
  39345. back: {
  39346. height: math.unit(1.7, "m"),
  39347. name: "Back",
  39348. image: {
  39349. source: "./media/characters/gladi/back.svg",
  39350. extra: 1459/1357,
  39351. bottom: 12/1471
  39352. }
  39353. },
  39354. feral: {
  39355. height: math.unit(2.05, "m"),
  39356. name: "Feral",
  39357. image: {
  39358. source: "./media/characters/gladi/feral.svg",
  39359. extra: 821/557,
  39360. bottom: 91/912
  39361. }
  39362. },
  39363. },
  39364. [
  39365. {
  39366. name: "Shortest",
  39367. height: math.unit(70, "cm")
  39368. },
  39369. {
  39370. name: "Normal",
  39371. height: math.unit(1.7, "m")
  39372. },
  39373. {
  39374. name: "Macro",
  39375. height: math.unit(10, "m"),
  39376. default: true
  39377. },
  39378. {
  39379. name: "Tallest",
  39380. height: math.unit(200, "m")
  39381. },
  39382. ]
  39383. ))
  39384. characterMakers.push(() => makeCharacter(
  39385. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39386. {
  39387. front: {
  39388. height: math.unit(5 + 7/12, "feet"),
  39389. weight: math.unit(2, "tons"),
  39390. name: "Front",
  39391. image: {
  39392. source: "./media/characters/erdno/front.svg",
  39393. extra: 1234/1129,
  39394. bottom: 35/1269
  39395. }
  39396. },
  39397. angled: {
  39398. height: math.unit(5 + 7/12, "feet"),
  39399. weight: math.unit(2, "tons"),
  39400. name: "Angled",
  39401. image: {
  39402. source: "./media/characters/erdno/angled.svg",
  39403. extra: 1185/1139,
  39404. bottom: 36/1221
  39405. }
  39406. },
  39407. side: {
  39408. height: math.unit(5 + 7/12, "feet"),
  39409. weight: math.unit(2, "tons"),
  39410. name: "Side",
  39411. image: {
  39412. source: "./media/characters/erdno/side.svg",
  39413. extra: 1191/1144,
  39414. bottom: 40/1231
  39415. }
  39416. },
  39417. back: {
  39418. height: math.unit(5 + 7/12, "feet"),
  39419. weight: math.unit(2, "tons"),
  39420. name: "Back",
  39421. image: {
  39422. source: "./media/characters/erdno/back.svg",
  39423. extra: 1202/1146,
  39424. bottom: 17/1219
  39425. }
  39426. },
  39427. frontNsfw: {
  39428. height: math.unit(5 + 7/12, "feet"),
  39429. weight: math.unit(2, "tons"),
  39430. name: "Front (NSFW)",
  39431. image: {
  39432. source: "./media/characters/erdno/front-nsfw.svg",
  39433. extra: 1234/1129,
  39434. bottom: 35/1269
  39435. }
  39436. },
  39437. angledNsfw: {
  39438. height: math.unit(5 + 7/12, "feet"),
  39439. weight: math.unit(2, "tons"),
  39440. name: "Angled (NSFW)",
  39441. image: {
  39442. source: "./media/characters/erdno/angled-nsfw.svg",
  39443. extra: 1185/1139,
  39444. bottom: 36/1221
  39445. }
  39446. },
  39447. sideNsfw: {
  39448. height: math.unit(5 + 7/12, "feet"),
  39449. weight: math.unit(2, "tons"),
  39450. name: "Side (NSFW)",
  39451. image: {
  39452. source: "./media/characters/erdno/side-nsfw.svg",
  39453. extra: 1191/1144,
  39454. bottom: 40/1231
  39455. }
  39456. },
  39457. backNsfw: {
  39458. height: math.unit(5 + 7/12, "feet"),
  39459. weight: math.unit(2, "tons"),
  39460. name: "Back (NSFW)",
  39461. image: {
  39462. source: "./media/characters/erdno/back-nsfw.svg",
  39463. extra: 1202/1146,
  39464. bottom: 17/1219
  39465. }
  39466. },
  39467. frontHyper: {
  39468. height: math.unit(5 + 7/12, "feet"),
  39469. weight: math.unit(2, "tons"),
  39470. name: "Front (Hyper)",
  39471. image: {
  39472. source: "./media/characters/erdno/front-hyper.svg",
  39473. extra: 1298/1136,
  39474. bottom: 35/1333
  39475. }
  39476. },
  39477. },
  39478. [
  39479. {
  39480. name: "Normal",
  39481. height: math.unit(5 + 7/12, "feet"),
  39482. default: true
  39483. },
  39484. {
  39485. name: "Big",
  39486. height: math.unit(5.7, "meters")
  39487. },
  39488. {
  39489. name: "Macro",
  39490. height: math.unit(5.7, "kilometers")
  39491. },
  39492. {
  39493. name: "Megamacro",
  39494. height: math.unit(5.7, "earths")
  39495. },
  39496. ]
  39497. ))
  39498. characterMakers.push(() => makeCharacter(
  39499. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39500. {
  39501. front: {
  39502. height: math.unit(5 + 10/12, "feet"),
  39503. weight: math.unit(150, "lb"),
  39504. name: "Front",
  39505. image: {
  39506. source: "./media/characters/jamie/front.svg",
  39507. extra: 1908/1768,
  39508. bottom: 19/1927
  39509. }
  39510. },
  39511. },
  39512. [
  39513. {
  39514. name: "Minimum",
  39515. height: math.unit(2, "cm")
  39516. },
  39517. {
  39518. name: "Micro",
  39519. height: math.unit(3, "inches")
  39520. },
  39521. {
  39522. name: "Normal",
  39523. height: math.unit(5 + 10/12, "feet"),
  39524. default: true
  39525. },
  39526. {
  39527. name: "Macro",
  39528. height: math.unit(150, "feet")
  39529. },
  39530. {
  39531. name: "Megamacro",
  39532. height: math.unit(10000, "m")
  39533. },
  39534. ]
  39535. ))
  39536. characterMakers.push(() => makeCharacter(
  39537. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39538. {
  39539. front: {
  39540. height: math.unit(2, "meters"),
  39541. weight: math.unit(100, "kg"),
  39542. name: "Front",
  39543. image: {
  39544. source: "./media/characters/shiron/front.svg",
  39545. extra: 2103/1985,
  39546. bottom: 98/2201
  39547. }
  39548. },
  39549. back: {
  39550. height: math.unit(2, "meters"),
  39551. weight: math.unit(100, "kg"),
  39552. name: "Back",
  39553. image: {
  39554. source: "./media/characters/shiron/back.svg",
  39555. extra: 2110/2015,
  39556. bottom: 89/2199
  39557. }
  39558. },
  39559. hand: {
  39560. height: math.unit(0.96, "feet"),
  39561. name: "Hand",
  39562. image: {
  39563. source: "./media/characters/shiron/hand.svg"
  39564. }
  39565. },
  39566. foot: {
  39567. height: math.unit(1.464, "feet"),
  39568. name: "Foot",
  39569. image: {
  39570. source: "./media/characters/shiron/foot.svg"
  39571. }
  39572. },
  39573. },
  39574. [
  39575. {
  39576. name: "Normal",
  39577. height: math.unit(2, "meters")
  39578. },
  39579. {
  39580. name: "Macro",
  39581. height: math.unit(500, "meters"),
  39582. default: true
  39583. },
  39584. {
  39585. name: "Megamacro",
  39586. height: math.unit(20, "km")
  39587. },
  39588. ]
  39589. ))
  39590. characterMakers.push(() => makeCharacter(
  39591. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39592. {
  39593. front: {
  39594. height: math.unit(6, "feet"),
  39595. name: "Front",
  39596. image: {
  39597. source: "./media/characters/sam/front.svg",
  39598. extra: 849/826,
  39599. bottom: 19/868
  39600. }
  39601. },
  39602. },
  39603. [
  39604. {
  39605. name: "Normal",
  39606. height: math.unit(6, "feet"),
  39607. default: true
  39608. },
  39609. ]
  39610. ))
  39611. characterMakers.push(() => makeCharacter(
  39612. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39613. {
  39614. front: {
  39615. height: math.unit(8 + 4/12, "feet"),
  39616. weight: math.unit(122, "kg"),
  39617. name: "Front",
  39618. image: {
  39619. source: "./media/characters/namori-kurogawa/front.svg",
  39620. extra: 1894/1576,
  39621. bottom: 34/1928
  39622. }
  39623. },
  39624. },
  39625. [
  39626. {
  39627. name: "Normal",
  39628. height: math.unit(8 + 4/12, "feet"),
  39629. default: true
  39630. },
  39631. ]
  39632. ))
  39633. characterMakers.push(() => makeCharacter(
  39634. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39635. {
  39636. front: {
  39637. height: math.unit(9, "feet"),
  39638. weight: math.unit(621, "lb"),
  39639. name: "Front",
  39640. image: {
  39641. source: "./media/characters/unmru/front.svg",
  39642. extra: 1853/1747,
  39643. bottom: 73/1926
  39644. }
  39645. },
  39646. side: {
  39647. height: math.unit(9, "feet"),
  39648. weight: math.unit(621, "lb"),
  39649. name: "Side",
  39650. image: {
  39651. source: "./media/characters/unmru/side.svg",
  39652. extra: 1781/1671,
  39653. bottom: 127/1908
  39654. }
  39655. },
  39656. back: {
  39657. height: math.unit(9, "feet"),
  39658. weight: math.unit(621, "lb"),
  39659. name: "Back",
  39660. image: {
  39661. source: "./media/characters/unmru/back.svg",
  39662. extra: 1894/1765,
  39663. bottom: 75/1969
  39664. }
  39665. },
  39666. dick: {
  39667. height: math.unit(3, "feet"),
  39668. weight: math.unit(35, "lb"),
  39669. name: "Dick",
  39670. image: {
  39671. source: "./media/characters/unmru/dick.svg"
  39672. }
  39673. },
  39674. },
  39675. [
  39676. {
  39677. name: "Normal",
  39678. height: math.unit(9, "feet")
  39679. },
  39680. {
  39681. name: "Natural",
  39682. height: math.unit(27, "feet"),
  39683. default: true
  39684. },
  39685. {
  39686. name: "Giant",
  39687. height: math.unit(90, "feet")
  39688. },
  39689. {
  39690. name: "Kaiju",
  39691. height: math.unit(270, "feet")
  39692. },
  39693. {
  39694. name: "Macro",
  39695. height: math.unit(900, "feet")
  39696. },
  39697. {
  39698. name: "Macro+",
  39699. height: math.unit(2700, "feet")
  39700. },
  39701. {
  39702. name: "Megamacro",
  39703. height: math.unit(9000, "feet")
  39704. },
  39705. {
  39706. name: "City-Crushing",
  39707. height: math.unit(27000, "feet")
  39708. },
  39709. {
  39710. name: "Mountain-Mashing",
  39711. height: math.unit(90000, "feet")
  39712. },
  39713. {
  39714. name: "Earth-Eclipsing",
  39715. height: math.unit(2.7e8, "feet")
  39716. },
  39717. {
  39718. name: "Sol-Swallowing",
  39719. height: math.unit(9e10, "feet")
  39720. },
  39721. {
  39722. name: "Majoris-Munching",
  39723. height: math.unit(2.7e13, "feet")
  39724. },
  39725. ]
  39726. ))
  39727. characterMakers.push(() => makeCharacter(
  39728. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39729. {
  39730. front: {
  39731. height: math.unit(1, "inch"),
  39732. name: "Front",
  39733. image: {
  39734. source: "./media/characters/squeaks-mouse/front.svg",
  39735. extra: 352/308,
  39736. bottom: 25/377
  39737. }
  39738. },
  39739. },
  39740. [
  39741. {
  39742. name: "Micro",
  39743. height: math.unit(1, "inch"),
  39744. default: true
  39745. },
  39746. ]
  39747. ))
  39748. characterMakers.push(() => makeCharacter(
  39749. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39750. {
  39751. side: {
  39752. height: math.unit(35, "feet"),
  39753. name: "Side",
  39754. image: {
  39755. source: "./media/characters/sayko/side.svg",
  39756. extra: 1697/1021,
  39757. bottom: 82/1779
  39758. }
  39759. },
  39760. head: {
  39761. height: math.unit(16, "feet"),
  39762. name: "Head",
  39763. image: {
  39764. source: "./media/characters/sayko/head.svg"
  39765. }
  39766. },
  39767. forepaw: {
  39768. height: math.unit(7.85, "feet"),
  39769. name: "Forepaw",
  39770. image: {
  39771. source: "./media/characters/sayko/forepaw.svg"
  39772. }
  39773. },
  39774. hindpaw: {
  39775. height: math.unit(8.8, "feet"),
  39776. name: "Hindpaw",
  39777. image: {
  39778. source: "./media/characters/sayko/hindpaw.svg"
  39779. }
  39780. },
  39781. },
  39782. [
  39783. {
  39784. name: "Normal",
  39785. height: math.unit(35, "feet"),
  39786. default: true
  39787. },
  39788. {
  39789. name: "Colossus",
  39790. height: math.unit(100, "meters")
  39791. },
  39792. {
  39793. name: "\"Small\" Deity",
  39794. height: math.unit(1, "km")
  39795. },
  39796. {
  39797. name: "\"Large\" Deity",
  39798. height: math.unit(15, "km")
  39799. },
  39800. ]
  39801. ))
  39802. characterMakers.push(() => makeCharacter(
  39803. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39804. {
  39805. front: {
  39806. height: math.unit(6, "feet"),
  39807. weight: math.unit(250, "lb"),
  39808. name: "Front",
  39809. image: {
  39810. source: "./media/characters/mukiro/front.svg",
  39811. extra: 1368/1310,
  39812. bottom: 34/1402
  39813. }
  39814. },
  39815. },
  39816. [
  39817. {
  39818. name: "Normal",
  39819. height: math.unit(6, "feet"),
  39820. default: true
  39821. },
  39822. ]
  39823. ))
  39824. characterMakers.push(() => makeCharacter(
  39825. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39826. {
  39827. front: {
  39828. height: math.unit(12 + 4/12, "feet"),
  39829. name: "Front",
  39830. image: {
  39831. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39832. extra: 1346/1311,
  39833. bottom: 65/1411
  39834. }
  39835. },
  39836. },
  39837. [
  39838. {
  39839. name: "Base",
  39840. height: math.unit(12 + 4/12, "feet"),
  39841. default: true
  39842. },
  39843. {
  39844. name: "Macro",
  39845. height: math.unit(150, "feet")
  39846. },
  39847. {
  39848. name: "Mega",
  39849. height: math.unit(2, "miles")
  39850. },
  39851. {
  39852. name: "Demi God",
  39853. height: math.unit(4, "AU")
  39854. },
  39855. {
  39856. name: "God Size",
  39857. height: math.unit(1, "universe")
  39858. },
  39859. ]
  39860. ))
  39861. characterMakers.push(() => makeCharacter(
  39862. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39863. {
  39864. front: {
  39865. height: math.unit(3 + 3/12, "feet"),
  39866. weight: math.unit(88, "lb"),
  39867. name: "Front",
  39868. image: {
  39869. source: "./media/characters/trey/front.svg",
  39870. extra: 1815/1509,
  39871. bottom: 60/1875
  39872. }
  39873. },
  39874. },
  39875. [
  39876. {
  39877. name: "Normal",
  39878. height: math.unit(3 + 3/12, "feet"),
  39879. default: true
  39880. },
  39881. ]
  39882. ))
  39883. characterMakers.push(() => makeCharacter(
  39884. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39885. {
  39886. front: {
  39887. height: math.unit(4, "meters"),
  39888. name: "Front",
  39889. image: {
  39890. source: "./media/characters/adelonda/front.svg",
  39891. extra: 1077/982,
  39892. bottom: 39/1116
  39893. }
  39894. },
  39895. back: {
  39896. height: math.unit(4, "meters"),
  39897. name: "Back",
  39898. image: {
  39899. source: "./media/characters/adelonda/back.svg",
  39900. extra: 1105/1003,
  39901. bottom: 25/1130
  39902. }
  39903. },
  39904. feral: {
  39905. height: math.unit(40/1.5, "meters"),
  39906. name: "Feral",
  39907. image: {
  39908. source: "./media/characters/adelonda/feral.svg",
  39909. extra: 597/271,
  39910. bottom: 387/984
  39911. }
  39912. },
  39913. },
  39914. [
  39915. {
  39916. name: "Normal",
  39917. height: math.unit(4, "meters"),
  39918. default: true
  39919. },
  39920. ]
  39921. ))
  39922. characterMakers.push(() => makeCharacter(
  39923. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39924. {
  39925. front: {
  39926. height: math.unit(8 + 4/12, "feet"),
  39927. weight: math.unit(670, "lb"),
  39928. name: "Front",
  39929. image: {
  39930. source: "./media/characters/acadiel/front.svg",
  39931. extra: 1901/1595,
  39932. bottom: 142/2043
  39933. }
  39934. },
  39935. },
  39936. [
  39937. {
  39938. name: "Normal",
  39939. height: math.unit(8 + 4/12, "feet"),
  39940. default: true
  39941. },
  39942. {
  39943. name: "Macro",
  39944. height: math.unit(200, "feet")
  39945. },
  39946. ]
  39947. ))
  39948. characterMakers.push(() => makeCharacter(
  39949. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39950. {
  39951. front: {
  39952. height: math.unit(6 + 2/12, "feet"),
  39953. weight: math.unit(185, "lb"),
  39954. name: "Front",
  39955. image: {
  39956. source: "./media/characters/kayne-ein/front.svg",
  39957. extra: 1780/1560,
  39958. bottom: 81/1861
  39959. }
  39960. },
  39961. },
  39962. [
  39963. {
  39964. name: "Normal",
  39965. height: math.unit(6 + 2/12, "feet"),
  39966. default: true
  39967. },
  39968. {
  39969. name: "Transformation Stage",
  39970. height: math.unit(15, "feet")
  39971. },
  39972. {
  39973. name: "Macro",
  39974. height: math.unit(150, "feet")
  39975. },
  39976. {
  39977. name: "Earth's Shadow",
  39978. height: math.unit(6200, "miles")
  39979. },
  39980. {
  39981. name: "Universal Demon",
  39982. height: math.unit(28e9, "parsecs")
  39983. },
  39984. {
  39985. name: "Multiverse God",
  39986. height: math.unit(3, "multiverses")
  39987. },
  39988. ]
  39989. ))
  39990. characterMakers.push(() => makeCharacter(
  39991. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39992. {
  39993. front: {
  39994. height: math.unit(5 + 5/12, "feet"),
  39995. name: "Front",
  39996. image: {
  39997. source: "./media/characters/fawn/front.svg",
  39998. extra: 1873/1731,
  39999. bottom: 95/1968
  40000. }
  40001. },
  40002. back: {
  40003. height: math.unit(5 + 5/12, "feet"),
  40004. name: "Back",
  40005. image: {
  40006. source: "./media/characters/fawn/back.svg",
  40007. extra: 1813/1700,
  40008. bottom: 14/1827
  40009. }
  40010. },
  40011. hoof: {
  40012. height: math.unit(1.45, "feet"),
  40013. name: "Hoof",
  40014. image: {
  40015. source: "./media/characters/fawn/hoof.svg"
  40016. }
  40017. },
  40018. },
  40019. [
  40020. {
  40021. name: "Normal",
  40022. height: math.unit(5 + 5/12, "feet"),
  40023. default: true
  40024. },
  40025. ]
  40026. ))
  40027. characterMakers.push(() => makeCharacter(
  40028. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40029. {
  40030. front: {
  40031. height: math.unit(2 + 5/12, "feet"),
  40032. name: "Front",
  40033. image: {
  40034. source: "./media/characters/orion/front.svg",
  40035. extra: 1366/1304,
  40036. bottom: 43/1409
  40037. }
  40038. },
  40039. paw: {
  40040. height: math.unit(0.52, "feet"),
  40041. name: "Paw",
  40042. image: {
  40043. source: "./media/characters/orion/paw.svg"
  40044. }
  40045. },
  40046. },
  40047. [
  40048. {
  40049. name: "Normal",
  40050. height: math.unit(2 + 5/12, "feet"),
  40051. default: true
  40052. },
  40053. ]
  40054. ))
  40055. characterMakers.push(() => makeCharacter(
  40056. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40057. {
  40058. front: {
  40059. height: math.unit(5 + 10/12, "feet"),
  40060. name: "Front",
  40061. image: {
  40062. source: "./media/characters/vera/front.svg",
  40063. extra: 1680/1575,
  40064. bottom: 49/1729
  40065. }
  40066. },
  40067. back: {
  40068. height: math.unit(5 + 10/12, "feet"),
  40069. name: "Back",
  40070. image: {
  40071. source: "./media/characters/vera/back.svg",
  40072. extra: 1700/1588,
  40073. bottom: 18/1718
  40074. }
  40075. },
  40076. arcanine: {
  40077. height: math.unit(6 + 8/12, "feet"),
  40078. name: "Arcanine",
  40079. image: {
  40080. source: "./media/characters/vera/arcanine.svg",
  40081. extra: 1590/1511,
  40082. bottom: 71/1661
  40083. }
  40084. },
  40085. maw: {
  40086. height: math.unit(0.82, "feet"),
  40087. name: "Maw",
  40088. image: {
  40089. source: "./media/characters/vera/maw.svg"
  40090. }
  40091. },
  40092. mawArcanine: {
  40093. height: math.unit(0.97, "feet"),
  40094. name: "Maw (Arcanine)",
  40095. image: {
  40096. source: "./media/characters/vera/maw-arcanine.svg"
  40097. }
  40098. },
  40099. paw: {
  40100. height: math.unit(0.75, "feet"),
  40101. name: "Paw",
  40102. image: {
  40103. source: "./media/characters/vera/paw.svg"
  40104. }
  40105. },
  40106. pawprint: {
  40107. height: math.unit(0.52, "feet"),
  40108. name: "Pawprint",
  40109. image: {
  40110. source: "./media/characters/vera/pawprint.svg"
  40111. }
  40112. },
  40113. },
  40114. [
  40115. {
  40116. name: "Normal",
  40117. height: math.unit(5 + 10/12, "feet"),
  40118. default: true
  40119. },
  40120. {
  40121. name: "Macro",
  40122. height: math.unit(75, "feet")
  40123. },
  40124. ]
  40125. ))
  40126. characterMakers.push(() => makeCharacter(
  40127. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40128. {
  40129. front: {
  40130. height: math.unit(4, "feet"),
  40131. weight: math.unit(40, "lb"),
  40132. name: "Front",
  40133. image: {
  40134. source: "./media/characters/orvan-rabbit/front.svg",
  40135. extra: 1896/1642,
  40136. bottom: 29/1925
  40137. }
  40138. },
  40139. },
  40140. [
  40141. {
  40142. name: "Normal",
  40143. height: math.unit(4, "feet"),
  40144. default: true
  40145. },
  40146. ]
  40147. ))
  40148. characterMakers.push(() => makeCharacter(
  40149. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40150. {
  40151. front: {
  40152. height: math.unit(6, "feet"),
  40153. weight: math.unit(168, "lb"),
  40154. name: "Front",
  40155. image: {
  40156. source: "./media/characters/lisa/front.svg",
  40157. extra: 2065/1867,
  40158. bottom: 46/2111
  40159. }
  40160. },
  40161. back: {
  40162. height: math.unit(6, "feet"),
  40163. weight: math.unit(168, "lb"),
  40164. name: "Back",
  40165. image: {
  40166. source: "./media/characters/lisa/back.svg",
  40167. extra: 1982/1838,
  40168. bottom: 29/2011
  40169. }
  40170. },
  40171. maw: {
  40172. height: math.unit(0.81, "feet"),
  40173. name: "Maw",
  40174. image: {
  40175. source: "./media/characters/lisa/maw.svg"
  40176. }
  40177. },
  40178. paw: {
  40179. height: math.unit(0.9, "feet"),
  40180. name: "Paw",
  40181. image: {
  40182. source: "./media/characters/lisa/paw.svg"
  40183. }
  40184. },
  40185. caribousune: {
  40186. height: math.unit(7 + 2/12, "feet"),
  40187. weight: math.unit(268, "lb"),
  40188. name: "Caribousune",
  40189. image: {
  40190. source: "./media/characters/lisa/caribousune.svg",
  40191. extra: 1843/1633,
  40192. bottom: 29/1872
  40193. }
  40194. },
  40195. frontCaribousune: {
  40196. height: math.unit(7 + 2/12, "feet"),
  40197. weight: math.unit(268, "lb"),
  40198. name: "Front (Caribousune)",
  40199. image: {
  40200. source: "./media/characters/lisa/front-caribousune.svg",
  40201. extra: 1818/1638,
  40202. bottom: 52/1870
  40203. }
  40204. },
  40205. sideCaribousune: {
  40206. height: math.unit(7 + 2/12, "feet"),
  40207. weight: math.unit(268, "lb"),
  40208. name: "Side (Caribousune)",
  40209. image: {
  40210. source: "./media/characters/lisa/side-caribousune.svg",
  40211. extra: 1851/1635,
  40212. bottom: 16/1867
  40213. }
  40214. },
  40215. backCaribousune: {
  40216. height: math.unit(7 + 2/12, "feet"),
  40217. weight: math.unit(268, "lb"),
  40218. name: "Back (Caribousune)",
  40219. image: {
  40220. source: "./media/characters/lisa/back-caribousune.svg",
  40221. extra: 1801/1604,
  40222. bottom: 44/1845
  40223. }
  40224. },
  40225. caribou: {
  40226. height: math.unit(7 + 2/12, "feet"),
  40227. weight: math.unit(268, "lb"),
  40228. name: "Caribou",
  40229. image: {
  40230. source: "./media/characters/lisa/caribou.svg",
  40231. extra: 1843/1633,
  40232. bottom: 29/1872
  40233. }
  40234. },
  40235. frontCaribou: {
  40236. height: math.unit(7 + 2/12, "feet"),
  40237. weight: math.unit(268, "lb"),
  40238. name: "Front (Caribou)",
  40239. image: {
  40240. source: "./media/characters/lisa/front-caribou.svg",
  40241. extra: 1818/1638,
  40242. bottom: 52/1870
  40243. }
  40244. },
  40245. sideCaribou: {
  40246. height: math.unit(7 + 2/12, "feet"),
  40247. weight: math.unit(268, "lb"),
  40248. name: "Side (Caribou)",
  40249. image: {
  40250. source: "./media/characters/lisa/side-caribou.svg",
  40251. extra: 1851/1635,
  40252. bottom: 16/1867
  40253. }
  40254. },
  40255. backCaribou: {
  40256. height: math.unit(7 + 2/12, "feet"),
  40257. weight: math.unit(268, "lb"),
  40258. name: "Back (Caribou)",
  40259. image: {
  40260. source: "./media/characters/lisa/back-caribou.svg",
  40261. extra: 1801/1604,
  40262. bottom: 44/1845
  40263. }
  40264. },
  40265. mawCaribou: {
  40266. height: math.unit(1.45, "feet"),
  40267. name: "Maw (Caribou)",
  40268. image: {
  40269. source: "./media/characters/lisa/maw-caribou.svg"
  40270. }
  40271. },
  40272. mawCaribousune: {
  40273. height: math.unit(1.45, "feet"),
  40274. name: "Maw (Caribousune)",
  40275. image: {
  40276. source: "./media/characters/lisa/maw-caribousune.svg"
  40277. }
  40278. },
  40279. pawCaribousune: {
  40280. height: math.unit(1.61, "feet"),
  40281. name: "Paw (Caribou)",
  40282. image: {
  40283. source: "./media/characters/lisa/paw-caribousune.svg"
  40284. }
  40285. },
  40286. },
  40287. [
  40288. {
  40289. name: "Normal",
  40290. height: math.unit(6, "feet")
  40291. },
  40292. {
  40293. name: "God Size",
  40294. height: math.unit(72, "feet"),
  40295. default: true
  40296. },
  40297. {
  40298. name: "Towering",
  40299. height: math.unit(288, "feet")
  40300. },
  40301. {
  40302. name: "City Size",
  40303. height: math.unit(48384, "feet")
  40304. },
  40305. {
  40306. name: "Continental",
  40307. height: math.unit(4200, "miles")
  40308. },
  40309. {
  40310. name: "Planet Eater",
  40311. height: math.unit(42, "earths")
  40312. },
  40313. {
  40314. name: "Star Swallower",
  40315. height: math.unit(42, "solarradii")
  40316. },
  40317. {
  40318. name: "System Swallower",
  40319. height: math.unit(84000, "AU")
  40320. },
  40321. {
  40322. name: "Galaxy Gobbler",
  40323. height: math.unit(42, "galaxies")
  40324. },
  40325. {
  40326. name: "Universe Devourer",
  40327. height: math.unit(42, "universes")
  40328. },
  40329. {
  40330. name: "Multiverse Muncher",
  40331. height: math.unit(42, "multiverses")
  40332. },
  40333. ]
  40334. ))
  40335. characterMakers.push(() => makeCharacter(
  40336. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40337. {
  40338. front: {
  40339. height: math.unit(36, "feet"),
  40340. name: "Front",
  40341. image: {
  40342. source: "./media/characters/shadow-rat/front.svg",
  40343. extra: 1845/1758,
  40344. bottom: 83/1928
  40345. }
  40346. },
  40347. },
  40348. [
  40349. {
  40350. name: "Macro",
  40351. height: math.unit(36, "feet"),
  40352. default: true
  40353. },
  40354. ]
  40355. ))
  40356. characterMakers.push(() => makeCharacter(
  40357. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40358. {
  40359. side: {
  40360. height: math.unit(8, "feet"),
  40361. weight: math.unit(2630, "lb"),
  40362. name: "Side",
  40363. image: {
  40364. source: "./media/characters/torallia/side.svg",
  40365. extra: 2164/2021,
  40366. bottom: 371/2535
  40367. }
  40368. },
  40369. },
  40370. [
  40371. {
  40372. name: "Mortal Interaction",
  40373. height: math.unit(8, "feet")
  40374. },
  40375. {
  40376. name: "Natural",
  40377. height: math.unit(24, "feet"),
  40378. default: true
  40379. },
  40380. {
  40381. name: "Giant",
  40382. height: math.unit(80, "feet")
  40383. },
  40384. {
  40385. name: "Kaiju",
  40386. height: math.unit(240, "feet")
  40387. },
  40388. {
  40389. name: "Macro",
  40390. height: math.unit(800, "feet")
  40391. },
  40392. {
  40393. name: "Macro+",
  40394. height: math.unit(2400, "feet")
  40395. },
  40396. {
  40397. name: "Macro++",
  40398. height: math.unit(8000, "feet")
  40399. },
  40400. {
  40401. name: "City-Crushing",
  40402. height: math.unit(24000, "feet")
  40403. },
  40404. {
  40405. name: "Mountain-Mashing",
  40406. height: math.unit(80000, "feet")
  40407. },
  40408. {
  40409. name: "District Demolisher",
  40410. height: math.unit(240000, "feet")
  40411. },
  40412. {
  40413. name: "Tri-County Terror",
  40414. height: math.unit(800000, "feet")
  40415. },
  40416. {
  40417. name: "State Smasher",
  40418. height: math.unit(2.4e6, "feet")
  40419. },
  40420. {
  40421. name: "Nation Nemesis",
  40422. height: math.unit(8e6, "feet")
  40423. },
  40424. {
  40425. name: "Continent Cracker",
  40426. height: math.unit(2.4e7, "feet")
  40427. },
  40428. {
  40429. name: "Planet-Pillaging",
  40430. height: math.unit(8e7, "feet")
  40431. },
  40432. {
  40433. name: "Earth-Eclipsing",
  40434. height: math.unit(2.4e8, "feet")
  40435. },
  40436. {
  40437. name: "Jovian-Jostling",
  40438. height: math.unit(8e8, "feet")
  40439. },
  40440. {
  40441. name: "Gas Giant Gulper",
  40442. height: math.unit(2.4e9, "feet")
  40443. },
  40444. {
  40445. name: "Astral Annihilator",
  40446. height: math.unit(8e9, "feet")
  40447. },
  40448. {
  40449. name: "Celestial Conqueror",
  40450. height: math.unit(2.4e10, "feet")
  40451. },
  40452. {
  40453. name: "Sol-Swallowing",
  40454. height: math.unit(8e10, "feet")
  40455. },
  40456. {
  40457. name: "Hunter of the Heavens",
  40458. height: math.unit(2.4e13, "feet")
  40459. },
  40460. ]
  40461. ))
  40462. characterMakers.push(() => makeCharacter(
  40463. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40464. {
  40465. front: {
  40466. height: math.unit(6 + 8/12, "feet"),
  40467. weight: math.unit(250, "kilograms"),
  40468. volume: math.unit(28, "liters"),
  40469. name: "Front",
  40470. image: {
  40471. source: "./media/characters/rebecca-pawlson/front.svg",
  40472. extra: 1737/1596,
  40473. bottom: 107/1844
  40474. }
  40475. },
  40476. back: {
  40477. height: math.unit(6 + 8/12, "feet"),
  40478. weight: math.unit(250, "kilograms"),
  40479. volume: math.unit(28, "liters"),
  40480. name: "Back",
  40481. image: {
  40482. source: "./media/characters/rebecca-pawlson/back.svg",
  40483. extra: 1702/1523,
  40484. bottom: 86/1788
  40485. }
  40486. },
  40487. },
  40488. [
  40489. {
  40490. name: "Normal",
  40491. height: math.unit(6 + 8/12, "feet")
  40492. },
  40493. {
  40494. name: "Mini Macro",
  40495. height: math.unit(10, "feet"),
  40496. default: true
  40497. },
  40498. {
  40499. name: "Macro",
  40500. height: math.unit(100, "feet")
  40501. },
  40502. {
  40503. name: "Mega Macro",
  40504. height: math.unit(2500, "feet")
  40505. },
  40506. {
  40507. name: "Giga Macro",
  40508. height: math.unit(50, "miles")
  40509. },
  40510. ]
  40511. ))
  40512. characterMakers.push(() => makeCharacter(
  40513. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40514. {
  40515. front: {
  40516. height: math.unit(7 + 6/12, "feet"),
  40517. weight: math.unit(600, "lb"),
  40518. name: "Front",
  40519. image: {
  40520. source: "./media/characters/moxie-nova/front.svg",
  40521. extra: 1734/1652,
  40522. bottom: 41/1775
  40523. }
  40524. },
  40525. },
  40526. [
  40527. {
  40528. name: "Normal",
  40529. height: math.unit(7 + 6/12, "feet"),
  40530. default: true
  40531. },
  40532. ]
  40533. ))
  40534. characterMakers.push(() => makeCharacter(
  40535. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40536. {
  40537. goat: {
  40538. height: math.unit(4, "feet"),
  40539. weight: math.unit(180, "lb"),
  40540. name: "Goat",
  40541. image: {
  40542. source: "./media/characters/tiffany/goat.svg",
  40543. extra: 1845/1595,
  40544. bottom: 106/1951
  40545. }
  40546. },
  40547. front: {
  40548. height: math.unit(5, "feet"),
  40549. weight: math.unit(150, "lb"),
  40550. name: "Foxcoon",
  40551. image: {
  40552. source: "./media/characters/tiffany/foxcoon.svg",
  40553. extra: 1941/1845,
  40554. bottom: 58/1999
  40555. }
  40556. },
  40557. },
  40558. [
  40559. {
  40560. name: "Normal",
  40561. height: math.unit(5, "feet"),
  40562. default: true
  40563. },
  40564. ]
  40565. ))
  40566. characterMakers.push(() => makeCharacter(
  40567. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40568. {
  40569. front: {
  40570. height: math.unit(8, "feet"),
  40571. weight: math.unit(300, "lb"),
  40572. name: "Front",
  40573. image: {
  40574. source: "./media/characters/raxinath/front.svg",
  40575. extra: 1407/1309,
  40576. bottom: 39/1446
  40577. }
  40578. },
  40579. back: {
  40580. height: math.unit(8, "feet"),
  40581. weight: math.unit(300, "lb"),
  40582. name: "Back",
  40583. image: {
  40584. source: "./media/characters/raxinath/back.svg",
  40585. extra: 1405/1315,
  40586. bottom: 9/1414
  40587. }
  40588. },
  40589. },
  40590. [
  40591. {
  40592. name: "Speck",
  40593. height: math.unit(0.5, "nm")
  40594. },
  40595. {
  40596. name: "Micro",
  40597. height: math.unit(3, "inches")
  40598. },
  40599. {
  40600. name: "Kobold",
  40601. height: math.unit(3, "feet")
  40602. },
  40603. {
  40604. name: "Normal",
  40605. height: math.unit(8, "feet"),
  40606. default: true
  40607. },
  40608. {
  40609. name: "Giant",
  40610. height: math.unit(50, "feet")
  40611. },
  40612. {
  40613. name: "Macro",
  40614. height: math.unit(1000, "feet")
  40615. },
  40616. {
  40617. name: "Megamacro",
  40618. height: math.unit(1, "mile")
  40619. },
  40620. ]
  40621. ))
  40622. characterMakers.push(() => makeCharacter(
  40623. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40624. {
  40625. front: {
  40626. height: math.unit(10, "feet"),
  40627. weight: math.unit(1442, "lb"),
  40628. name: "Front",
  40629. image: {
  40630. source: "./media/characters/mal-dragon/front.svg",
  40631. extra: 1515/1444,
  40632. bottom: 113/1628
  40633. }
  40634. },
  40635. back: {
  40636. height: math.unit(10, "feet"),
  40637. weight: math.unit(1442, "lb"),
  40638. name: "Back",
  40639. image: {
  40640. source: "./media/characters/mal-dragon/back.svg",
  40641. extra: 1527/1434,
  40642. bottom: 25/1552
  40643. }
  40644. },
  40645. },
  40646. [
  40647. {
  40648. name: "Mortal Interaction",
  40649. height: math.unit(10, "feet"),
  40650. default: true
  40651. },
  40652. {
  40653. name: "Large",
  40654. height: math.unit(30, "feet")
  40655. },
  40656. {
  40657. name: "Kaiju",
  40658. height: math.unit(300, "feet")
  40659. },
  40660. {
  40661. name: "Megamacro",
  40662. height: math.unit(10000, "feet")
  40663. },
  40664. {
  40665. name: "Continent Cracker",
  40666. height: math.unit(30000000, "feet")
  40667. },
  40668. {
  40669. name: "Sol-Swallowing",
  40670. height: math.unit(1e11, "feet")
  40671. },
  40672. {
  40673. name: "Light Universal",
  40674. height: math.unit(5, "universes")
  40675. },
  40676. {
  40677. name: "Universe Atoms",
  40678. height: math.unit(1.829e9, "universes")
  40679. },
  40680. {
  40681. name: "Light Multiversal",
  40682. height: math.unit(5, "multiverses")
  40683. },
  40684. {
  40685. name: "Multiverse Atoms",
  40686. height: math.unit(1.829e9, "multiverses")
  40687. },
  40688. {
  40689. name: "Fabric of Time",
  40690. height: math.unit(1e262, "multiverses")
  40691. },
  40692. ]
  40693. ))
  40694. characterMakers.push(() => makeCharacter(
  40695. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40696. {
  40697. front: {
  40698. height: math.unit(9, "feet"),
  40699. weight: math.unit(1050, "lb"),
  40700. name: "Front",
  40701. image: {
  40702. source: "./media/characters/tabitha/front.svg",
  40703. extra: 2083/1994,
  40704. bottom: 68/2151
  40705. }
  40706. },
  40707. },
  40708. [
  40709. {
  40710. name: "Baseline",
  40711. height: math.unit(9, "feet"),
  40712. default: true
  40713. },
  40714. {
  40715. name: "Giant",
  40716. height: math.unit(90, "feet")
  40717. },
  40718. {
  40719. name: "Macro",
  40720. height: math.unit(900, "feet")
  40721. },
  40722. {
  40723. name: "Megamacro",
  40724. height: math.unit(9000, "feet")
  40725. },
  40726. {
  40727. name: "City-Crushing",
  40728. height: math.unit(27000, "feet")
  40729. },
  40730. {
  40731. name: "Mountain-Mashing",
  40732. height: math.unit(90000, "feet")
  40733. },
  40734. {
  40735. name: "Nation Nemesis",
  40736. height: math.unit(9e6, "feet")
  40737. },
  40738. {
  40739. name: "Continent Cracker",
  40740. height: math.unit(27e6, "feet")
  40741. },
  40742. {
  40743. name: "Earth-Eclipsing",
  40744. height: math.unit(2.7e8, "feet")
  40745. },
  40746. {
  40747. name: "Gas Giant Gulper",
  40748. height: math.unit(2.7e9, "feet")
  40749. },
  40750. {
  40751. name: "Sol-Swallowing",
  40752. height: math.unit(9e10, "feet")
  40753. },
  40754. {
  40755. name: "Galaxy Gulper",
  40756. height: math.unit(9, "galaxies")
  40757. },
  40758. {
  40759. name: "Cosmos Churner",
  40760. height: math.unit(9, "universes")
  40761. },
  40762. ]
  40763. ))
  40764. characterMakers.push(() => makeCharacter(
  40765. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40766. {
  40767. front: {
  40768. height: math.unit(160, "cm"),
  40769. weight: math.unit(55, "kg"),
  40770. name: "Front",
  40771. image: {
  40772. source: "./media/characters/tow/front.svg",
  40773. extra: 1751/1722,
  40774. bottom: 74/1825
  40775. }
  40776. },
  40777. },
  40778. [
  40779. {
  40780. name: "Norm",
  40781. height: math.unit(160, "cm")
  40782. },
  40783. {
  40784. name: "Casual",
  40785. height: math.unit(3200, "m"),
  40786. default: true
  40787. },
  40788. {
  40789. name: "Show-Off",
  40790. height: math.unit(160, "km")
  40791. },
  40792. ]
  40793. ))
  40794. characterMakers.push(() => makeCharacter(
  40795. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40796. {
  40797. front: {
  40798. height: math.unit(7 + 11/12, "feet"),
  40799. weight: math.unit(342.8, "lb"),
  40800. name: "Front",
  40801. image: {
  40802. source: "./media/characters/vivian-orca-dragon/front.svg",
  40803. extra: 1890/1865,
  40804. bottom: 28/1918
  40805. }
  40806. },
  40807. },
  40808. [
  40809. {
  40810. name: "Micro",
  40811. height: math.unit(5, "inches")
  40812. },
  40813. {
  40814. name: "Normal",
  40815. height: math.unit(7 + 11/12, "feet"),
  40816. default: true
  40817. },
  40818. {
  40819. name: "Macro",
  40820. height: math.unit(395 + 7/12, "feet")
  40821. },
  40822. ]
  40823. ))
  40824. characterMakers.push(() => makeCharacter(
  40825. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40826. {
  40827. side: {
  40828. height: math.unit(10, "feet"),
  40829. weight: math.unit(1442, "lb"),
  40830. name: "Side",
  40831. image: {
  40832. source: "./media/characters/lotherakon/side.svg",
  40833. extra: 1604/1497,
  40834. bottom: 89/1693
  40835. }
  40836. },
  40837. },
  40838. [
  40839. {
  40840. name: "Mortal Interaction",
  40841. height: math.unit(10, "feet")
  40842. },
  40843. {
  40844. name: "Large",
  40845. height: math.unit(30, "feet"),
  40846. default: true
  40847. },
  40848. {
  40849. name: "Giant",
  40850. height: math.unit(100, "feet")
  40851. },
  40852. {
  40853. name: "Kaiju",
  40854. height: math.unit(300, "feet")
  40855. },
  40856. {
  40857. name: "Macro",
  40858. height: math.unit(1000, "feet")
  40859. },
  40860. {
  40861. name: "Macro+",
  40862. height: math.unit(3000, "feet")
  40863. },
  40864. {
  40865. name: "Megamacro",
  40866. height: math.unit(10000, "feet")
  40867. },
  40868. {
  40869. name: "City-Crushing",
  40870. height: math.unit(30000, "feet")
  40871. },
  40872. {
  40873. name: "Continent Cracker",
  40874. height: math.unit(30e6, "feet")
  40875. },
  40876. {
  40877. name: "Earth Eclipsing",
  40878. height: math.unit(3e8, "feet")
  40879. },
  40880. {
  40881. name: "Gas Giant Gulper",
  40882. height: math.unit(3e9, "feet")
  40883. },
  40884. {
  40885. name: "Sol-Swallowing",
  40886. height: math.unit(1e11, "feet")
  40887. },
  40888. {
  40889. name: "System Swallower",
  40890. height: math.unit(3e14, "feet")
  40891. },
  40892. {
  40893. name: "Galaxy Gulper",
  40894. height: math.unit(10, "galaxies")
  40895. },
  40896. {
  40897. name: "Light Universal",
  40898. height: math.unit(5, "universes")
  40899. },
  40900. {
  40901. name: "Universe Palm",
  40902. height: math.unit(20, "universes")
  40903. },
  40904. {
  40905. name: "Light Multiversal",
  40906. height: math.unit(5, "multiverses")
  40907. },
  40908. {
  40909. name: "Multiverse Palm",
  40910. height: math.unit(20, "multiverses")
  40911. },
  40912. {
  40913. name: "Inferno Incarnate",
  40914. height: math.unit(1e7, "multiverses")
  40915. },
  40916. ]
  40917. ))
  40918. characterMakers.push(() => makeCharacter(
  40919. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40920. {
  40921. front: {
  40922. height: math.unit(8, "feet"),
  40923. weight: math.unit(1200, "lb"),
  40924. name: "Front",
  40925. image: {
  40926. source: "./media/characters/malithee/front.svg",
  40927. extra: 1675/1640,
  40928. bottom: 162/1837
  40929. }
  40930. },
  40931. },
  40932. [
  40933. {
  40934. name: "Mortal Interaction",
  40935. height: math.unit(8, "feet"),
  40936. default: true
  40937. },
  40938. {
  40939. name: "Large",
  40940. height: math.unit(24, "feet")
  40941. },
  40942. {
  40943. name: "Kaiju",
  40944. height: math.unit(240, "feet")
  40945. },
  40946. {
  40947. name: "Megamacro",
  40948. height: math.unit(8000, "feet")
  40949. },
  40950. {
  40951. name: "Continent Cracker",
  40952. height: math.unit(24e6, "feet")
  40953. },
  40954. {
  40955. name: "Earth-Eclipsing",
  40956. height: math.unit(2.4e8, "feet")
  40957. },
  40958. {
  40959. name: "Sol-Swallowing",
  40960. height: math.unit(8e10, "feet")
  40961. },
  40962. {
  40963. name: "Galaxy Gulper",
  40964. height: math.unit(8, "galaxies")
  40965. },
  40966. {
  40967. name: "Light Universal",
  40968. height: math.unit(4, "universes")
  40969. },
  40970. {
  40971. name: "Universe Atoms",
  40972. height: math.unit(1.829e9, "universes")
  40973. },
  40974. {
  40975. name: "Light Multiversal",
  40976. height: math.unit(4, "multiverses")
  40977. },
  40978. {
  40979. name: "Multiverse Atoms",
  40980. height: math.unit(1.829e9, "multiverses")
  40981. },
  40982. {
  40983. name: "Nigh-Omnipresence",
  40984. height: math.unit(8e261, "multiverses")
  40985. },
  40986. ]
  40987. ))
  40988. characterMakers.push(() => makeCharacter(
  40989. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40990. {
  40991. front: {
  40992. height: math.unit(10, "feet"),
  40993. weight: math.unit(1500, "lb"),
  40994. name: "Front",
  40995. image: {
  40996. source: "./media/characters/miles-thestia/front.svg",
  40997. extra: 1812/1727,
  40998. bottom: 86/1898
  40999. }
  41000. },
  41001. back: {
  41002. height: math.unit(10, "feet"),
  41003. weight: math.unit(1500, "lb"),
  41004. name: "Back",
  41005. image: {
  41006. source: "./media/characters/miles-thestia/back.svg",
  41007. extra: 1799/1690,
  41008. bottom: 47/1846
  41009. }
  41010. },
  41011. frontNsfw: {
  41012. height: math.unit(10, "feet"),
  41013. weight: math.unit(1500, "lb"),
  41014. name: "Front (NSFW)",
  41015. image: {
  41016. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41017. extra: 1812/1727,
  41018. bottom: 86/1898
  41019. }
  41020. },
  41021. },
  41022. [
  41023. {
  41024. name: "Mini-Macro",
  41025. height: math.unit(10, "feet"),
  41026. default: true
  41027. },
  41028. ]
  41029. ))
  41030. characterMakers.push(() => makeCharacter(
  41031. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41032. {
  41033. front: {
  41034. height: math.unit(25, "feet"),
  41035. name: "Front",
  41036. image: {
  41037. source: "./media/characters/titan-s-wulf/front.svg",
  41038. extra: 1560/1484,
  41039. bottom: 76/1636
  41040. }
  41041. },
  41042. },
  41043. [
  41044. {
  41045. name: "Smallest",
  41046. height: math.unit(25, "feet"),
  41047. default: true
  41048. },
  41049. {
  41050. name: "Normal",
  41051. height: math.unit(200, "feet")
  41052. },
  41053. {
  41054. name: "Macro",
  41055. height: math.unit(200000, "feet")
  41056. },
  41057. {
  41058. name: "Multiversal Original",
  41059. height: math.unit(10000, "multiverses")
  41060. },
  41061. ]
  41062. ))
  41063. characterMakers.push(() => makeCharacter(
  41064. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41065. {
  41066. front: {
  41067. height: math.unit(8, "feet"),
  41068. weight: math.unit(553, "lb"),
  41069. name: "Front",
  41070. image: {
  41071. source: "./media/characters/tawendeh/front.svg",
  41072. extra: 2365/2268,
  41073. bottom: 83/2448
  41074. }
  41075. },
  41076. frontClothed: {
  41077. height: math.unit(8, "feet"),
  41078. weight: math.unit(553, "lb"),
  41079. name: "Front (Clothed)",
  41080. image: {
  41081. source: "./media/characters/tawendeh/front-clothed.svg",
  41082. extra: 2365/2268,
  41083. bottom: 83/2448
  41084. }
  41085. },
  41086. back: {
  41087. height: math.unit(8, "feet"),
  41088. weight: math.unit(553, "lb"),
  41089. name: "Back",
  41090. image: {
  41091. source: "./media/characters/tawendeh/back.svg",
  41092. extra: 2397/2294,
  41093. bottom: 42/2439
  41094. }
  41095. },
  41096. },
  41097. [
  41098. {
  41099. name: "Mortal Interaction",
  41100. height: math.unit(8, "feet"),
  41101. default: true
  41102. },
  41103. {
  41104. name: "Giant",
  41105. height: math.unit(80, "feet")
  41106. },
  41107. {
  41108. name: "Macro",
  41109. height: math.unit(800, "feet")
  41110. },
  41111. {
  41112. name: "Megamacro",
  41113. height: math.unit(8000, "feet")
  41114. },
  41115. {
  41116. name: "City-Crushing",
  41117. height: math.unit(24000, "feet")
  41118. },
  41119. {
  41120. name: "Mountain-Mashing",
  41121. height: math.unit(80000, "feet")
  41122. },
  41123. {
  41124. name: "Nation Nemesis",
  41125. height: math.unit(8e6, "feet")
  41126. },
  41127. {
  41128. name: "Continent Cracker",
  41129. height: math.unit(24e6, "feet")
  41130. },
  41131. {
  41132. name: "Earth-Eclipsing",
  41133. height: math.unit(2.4e8, "feet")
  41134. },
  41135. {
  41136. name: "Gas Giant Gulper",
  41137. height: math.unit(2.4e9, "feet")
  41138. },
  41139. {
  41140. name: "Sol-Swallowing",
  41141. height: math.unit(8e10, "feet")
  41142. },
  41143. {
  41144. name: "Galaxy Gulper",
  41145. height: math.unit(8, "galaxies")
  41146. },
  41147. {
  41148. name: "Cosmos Churner",
  41149. height: math.unit(8, "universes")
  41150. },
  41151. {
  41152. name: "Omnipotent Otter",
  41153. height: math.unit(80, "universes")
  41154. },
  41155. ]
  41156. ))
  41157. characterMakers.push(() => makeCharacter(
  41158. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41159. {
  41160. front: {
  41161. height: math.unit(2.6, "meters"),
  41162. weight: math.unit(900, "kg"),
  41163. name: "Front",
  41164. image: {
  41165. source: "./media/characters/neesha/front.svg",
  41166. extra: 1803/1653,
  41167. bottom: 128/1931
  41168. }
  41169. },
  41170. },
  41171. [
  41172. {
  41173. name: "Normal",
  41174. height: math.unit(2.6, "meters"),
  41175. default: true
  41176. },
  41177. {
  41178. name: "Macro",
  41179. height: math.unit(50, "meters")
  41180. },
  41181. ]
  41182. ))
  41183. characterMakers.push(() => makeCharacter(
  41184. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41185. {
  41186. front: {
  41187. height: math.unit(5, "feet"),
  41188. weight: math.unit(185, "lb"),
  41189. name: "Front",
  41190. image: {
  41191. source: "./media/characters/kyera/front.svg",
  41192. extra: 1875/1790,
  41193. bottom: 96/1971
  41194. }
  41195. },
  41196. },
  41197. [
  41198. {
  41199. name: "Normal",
  41200. height: math.unit(5, "feet"),
  41201. default: true
  41202. },
  41203. ]
  41204. ))
  41205. characterMakers.push(() => makeCharacter(
  41206. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41207. {
  41208. front: {
  41209. height: math.unit(7 + 6/12, "feet"),
  41210. weight: math.unit(540, "lb"),
  41211. name: "Front",
  41212. image: {
  41213. source: "./media/characters/yuko/front.svg",
  41214. extra: 1282/1222,
  41215. bottom: 101/1383
  41216. }
  41217. },
  41218. frontClothed: {
  41219. height: math.unit(7 + 6/12, "feet"),
  41220. weight: math.unit(540, "lb"),
  41221. name: "Front (Clothed)",
  41222. image: {
  41223. source: "./media/characters/yuko/front-clothed.svg",
  41224. extra: 1282/1222,
  41225. bottom: 101/1383
  41226. }
  41227. },
  41228. },
  41229. [
  41230. {
  41231. name: "Normal",
  41232. height: math.unit(7 + 6/12, "feet"),
  41233. default: true
  41234. },
  41235. {
  41236. name: "Macro",
  41237. height: math.unit(26 + 9/12, "feet")
  41238. },
  41239. {
  41240. name: "Megamacro",
  41241. height: math.unit(300, "feet")
  41242. },
  41243. {
  41244. name: "Gigamacro",
  41245. height: math.unit(5000, "feet")
  41246. },
  41247. {
  41248. name: "Planetary",
  41249. height: math.unit(10000, "miles")
  41250. },
  41251. ]
  41252. ))
  41253. characterMakers.push(() => makeCharacter(
  41254. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41255. {
  41256. front: {
  41257. height: math.unit(8 + 2/12, "feet"),
  41258. weight: math.unit(600, "lb"),
  41259. name: "Front",
  41260. image: {
  41261. source: "./media/characters/deam-nitrel/front.svg",
  41262. extra: 1308/1234,
  41263. bottom: 125/1433
  41264. }
  41265. },
  41266. },
  41267. [
  41268. {
  41269. name: "Normal",
  41270. height: math.unit(8 + 2/12, "feet"),
  41271. default: true
  41272. },
  41273. ]
  41274. ))
  41275. characterMakers.push(() => makeCharacter(
  41276. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41277. {
  41278. front: {
  41279. height: math.unit(6.1, "feet"),
  41280. weight: math.unit(180, "lb"),
  41281. name: "Front",
  41282. image: {
  41283. source: "./media/characters/skyress/front.svg",
  41284. extra: 1045/915,
  41285. bottom: 28/1073
  41286. }
  41287. },
  41288. maw: {
  41289. height: math.unit(1, "feet"),
  41290. name: "Maw",
  41291. image: {
  41292. source: "./media/characters/skyress/maw.svg"
  41293. }
  41294. },
  41295. },
  41296. [
  41297. {
  41298. name: "Normal",
  41299. height: math.unit(6.1, "feet"),
  41300. default: true
  41301. },
  41302. {
  41303. name: "Macro",
  41304. height: math.unit(200, "feet")
  41305. },
  41306. ]
  41307. ))
  41308. characterMakers.push(() => makeCharacter(
  41309. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41310. {
  41311. front: {
  41312. height: math.unit(4 + 2/12, "feet"),
  41313. weight: math.unit(40, "kg"),
  41314. name: "Front",
  41315. image: {
  41316. source: "./media/characters/amethyst-jones/front.svg",
  41317. extra: 1220/1150,
  41318. bottom: 101/1321
  41319. }
  41320. },
  41321. },
  41322. [
  41323. {
  41324. name: "Normal",
  41325. height: math.unit(4 + 2/12, "feet"),
  41326. default: true
  41327. },
  41328. ]
  41329. ))
  41330. characterMakers.push(() => makeCharacter(
  41331. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41332. {
  41333. front: {
  41334. height: math.unit(1.7, "m"),
  41335. weight: math.unit(135, "lb"),
  41336. name: "Front",
  41337. image: {
  41338. source: "./media/characters/jade/front.svg",
  41339. extra: 1818/1767,
  41340. bottom: 32/1850
  41341. }
  41342. },
  41343. back: {
  41344. height: math.unit(1.7, "m"),
  41345. weight: math.unit(135, "lb"),
  41346. name: "Back",
  41347. image: {
  41348. source: "./media/characters/jade/back.svg",
  41349. extra: 1869/1809,
  41350. bottom: 35/1904
  41351. }
  41352. },
  41353. hand: {
  41354. height: math.unit(0.24, "m"),
  41355. name: "Hand",
  41356. image: {
  41357. source: "./media/characters/jade/hand.svg"
  41358. }
  41359. },
  41360. foot: {
  41361. height: math.unit(0.263, "m"),
  41362. name: "Foot",
  41363. image: {
  41364. source: "./media/characters/jade/foot.svg"
  41365. }
  41366. },
  41367. dick: {
  41368. height: math.unit(0.47, "m"),
  41369. name: "Dick",
  41370. image: {
  41371. source: "./media/characters/jade/dick.svg"
  41372. }
  41373. },
  41374. },
  41375. [
  41376. {
  41377. name: "Micro",
  41378. height: math.unit(22, "cm")
  41379. },
  41380. {
  41381. name: "Normal",
  41382. height: math.unit(1.7, "m"),
  41383. default: true
  41384. },
  41385. {
  41386. name: "Macro",
  41387. height: math.unit(152, "m")
  41388. },
  41389. ]
  41390. ))
  41391. characterMakers.push(() => makeCharacter(
  41392. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41393. {
  41394. front: {
  41395. height: math.unit(100, "miles"),
  41396. weight: math.unit(20000, "tons"),
  41397. name: "Front",
  41398. image: {
  41399. source: "./media/characters/cookie/front.svg",
  41400. extra: 1125/1070,
  41401. bottom: 30/1155
  41402. }
  41403. },
  41404. },
  41405. [
  41406. {
  41407. name: "Big",
  41408. height: math.unit(50, "feet")
  41409. },
  41410. {
  41411. name: "Macro",
  41412. height: math.unit(100, "miles"),
  41413. default: true
  41414. },
  41415. {
  41416. name: "Megamacro",
  41417. height: math.unit(90000, "miles")
  41418. },
  41419. ]
  41420. ))
  41421. characterMakers.push(() => makeCharacter(
  41422. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41423. {
  41424. front: {
  41425. height: math.unit(6, "feet"),
  41426. weight: math.unit(145, "lb"),
  41427. name: "Front",
  41428. image: {
  41429. source: "./media/characters/farzian/front.svg",
  41430. extra: 1902/1693,
  41431. bottom: 108/2010
  41432. }
  41433. },
  41434. },
  41435. [
  41436. {
  41437. name: "Macro",
  41438. height: math.unit(500, "feet"),
  41439. default: true
  41440. },
  41441. ]
  41442. ))
  41443. characterMakers.push(() => makeCharacter(
  41444. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41445. {
  41446. front: {
  41447. height: math.unit(3 + 6/12, "feet"),
  41448. weight: math.unit(50, "lb"),
  41449. name: "Front",
  41450. image: {
  41451. source: "./media/characters/kimberly-tilson/front.svg",
  41452. extra: 1400/1322,
  41453. bottom: 36/1436
  41454. }
  41455. },
  41456. back: {
  41457. height: math.unit(3 + 6/12, "feet"),
  41458. weight: math.unit(50, "lb"),
  41459. name: "Back",
  41460. image: {
  41461. source: "./media/characters/kimberly-tilson/back.svg",
  41462. extra: 1370/1307,
  41463. bottom: 20/1390
  41464. }
  41465. },
  41466. },
  41467. [
  41468. {
  41469. name: "Normal",
  41470. height: math.unit(3 + 6/12, "feet"),
  41471. default: true
  41472. },
  41473. ]
  41474. ))
  41475. characterMakers.push(() => makeCharacter(
  41476. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41477. {
  41478. front: {
  41479. height: math.unit(1148, "feet"),
  41480. weight: math.unit(34057, "lb"),
  41481. name: "Front",
  41482. image: {
  41483. source: "./media/characters/harthos/front.svg",
  41484. extra: 1391/1339,
  41485. bottom: 13/1404
  41486. }
  41487. },
  41488. },
  41489. [
  41490. {
  41491. name: "Macro",
  41492. height: math.unit(1148, "feet"),
  41493. default: true
  41494. },
  41495. ]
  41496. ))
  41497. characterMakers.push(() => makeCharacter(
  41498. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41499. {
  41500. front: {
  41501. height: math.unit(15, "feet"),
  41502. name: "Front",
  41503. image: {
  41504. source: "./media/characters/hypatia/front.svg",
  41505. extra: 1653/1591,
  41506. bottom: 79/1732
  41507. }
  41508. },
  41509. },
  41510. [
  41511. {
  41512. name: "Normal",
  41513. height: math.unit(15, "feet")
  41514. },
  41515. {
  41516. name: "Small",
  41517. height: math.unit(300, "feet")
  41518. },
  41519. {
  41520. name: "Macro",
  41521. height: math.unit(2500, "feet"),
  41522. default: true
  41523. },
  41524. {
  41525. name: "Mega Macro",
  41526. height: math.unit(1500, "miles")
  41527. },
  41528. {
  41529. name: "Giga Macro",
  41530. height: math.unit(1.5e6, "miles")
  41531. },
  41532. ]
  41533. ))
  41534. characterMakers.push(() => makeCharacter(
  41535. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41536. {
  41537. front: {
  41538. height: math.unit(6, "feet"),
  41539. weight: math.unit(200, "lb"),
  41540. name: "Front",
  41541. image: {
  41542. source: "./media/characters/wulver/front.svg",
  41543. extra: 1724/1632,
  41544. bottom: 130/1854
  41545. }
  41546. },
  41547. frontNsfw: {
  41548. height: math.unit(6, "feet"),
  41549. weight: math.unit(200, "lb"),
  41550. name: "Front (NSFW)",
  41551. image: {
  41552. source: "./media/characters/wulver/front-nsfw.svg",
  41553. extra: 1724/1632,
  41554. bottom: 130/1854
  41555. }
  41556. },
  41557. },
  41558. [
  41559. {
  41560. name: "Human-Sized",
  41561. height: math.unit(6, "feet")
  41562. },
  41563. {
  41564. name: "Normal",
  41565. height: math.unit(4, "meters"),
  41566. default: true
  41567. },
  41568. {
  41569. name: "Large",
  41570. height: math.unit(6, "m")
  41571. },
  41572. ]
  41573. ))
  41574. characterMakers.push(() => makeCharacter(
  41575. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41576. {
  41577. front: {
  41578. height: math.unit(7, "feet"),
  41579. name: "Front",
  41580. image: {
  41581. source: "./media/characters/maru/front.svg",
  41582. extra: 1595/1570,
  41583. bottom: 0/1595
  41584. }
  41585. },
  41586. },
  41587. [
  41588. {
  41589. name: "Normal",
  41590. height: math.unit(7, "feet"),
  41591. default: true
  41592. },
  41593. {
  41594. name: "Macro",
  41595. height: math.unit(700, "feet")
  41596. },
  41597. {
  41598. name: "Mega Macro",
  41599. height: math.unit(25, "miles")
  41600. },
  41601. ]
  41602. ))
  41603. characterMakers.push(() => makeCharacter(
  41604. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41605. {
  41606. front: {
  41607. height: math.unit(6, "feet"),
  41608. weight: math.unit(170, "lb"),
  41609. name: "Front",
  41610. image: {
  41611. source: "./media/characters/xenon/front.svg",
  41612. extra: 1376/1305,
  41613. bottom: 56/1432
  41614. }
  41615. },
  41616. back: {
  41617. height: math.unit(6, "feet"),
  41618. weight: math.unit(170, "lb"),
  41619. name: "Back",
  41620. image: {
  41621. source: "./media/characters/xenon/back.svg",
  41622. extra: 1328/1259,
  41623. bottom: 95/1423
  41624. }
  41625. },
  41626. maw: {
  41627. height: math.unit(0.52, "feet"),
  41628. name: "Maw",
  41629. image: {
  41630. source: "./media/characters/xenon/maw.svg"
  41631. }
  41632. },
  41633. handLeft: {
  41634. height: math.unit(0.82 * 169 / 153, "feet"),
  41635. name: "Hand (Left)",
  41636. image: {
  41637. source: "./media/characters/xenon/hand-left.svg"
  41638. }
  41639. },
  41640. handRight: {
  41641. height: math.unit(0.82, "feet"),
  41642. name: "Hand (Right)",
  41643. image: {
  41644. source: "./media/characters/xenon/hand-right.svg"
  41645. }
  41646. },
  41647. footLeft: {
  41648. height: math.unit(1.13, "feet"),
  41649. name: "Foot (Left)",
  41650. image: {
  41651. source: "./media/characters/xenon/foot-left.svg"
  41652. }
  41653. },
  41654. footRight: {
  41655. height: math.unit(1.13 * 194 / 196, "feet"),
  41656. name: "Foot (Right)",
  41657. image: {
  41658. source: "./media/characters/xenon/foot-right.svg"
  41659. }
  41660. },
  41661. },
  41662. [
  41663. {
  41664. name: "Micro",
  41665. height: math.unit(0.8, "inches")
  41666. },
  41667. {
  41668. name: "Normal",
  41669. height: math.unit(6, "feet")
  41670. },
  41671. {
  41672. name: "Macro",
  41673. height: math.unit(50, "feet"),
  41674. default: true
  41675. },
  41676. {
  41677. name: "Macro+",
  41678. height: math.unit(250, "feet")
  41679. },
  41680. {
  41681. name: "Megamacro",
  41682. height: math.unit(1500, "feet")
  41683. },
  41684. ]
  41685. ))
  41686. characterMakers.push(() => makeCharacter(
  41687. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41688. {
  41689. front: {
  41690. height: math.unit(7 + 5/12, "feet"),
  41691. name: "Front",
  41692. image: {
  41693. source: "./media/characters/zane/front.svg",
  41694. extra: 1260/1203,
  41695. bottom: 94/1354
  41696. }
  41697. },
  41698. back: {
  41699. height: math.unit(5.05, "feet"),
  41700. name: "Back",
  41701. image: {
  41702. source: "./media/characters/zane/back.svg",
  41703. extra: 893/829,
  41704. bottom: 30/923
  41705. }
  41706. },
  41707. werewolf: {
  41708. height: math.unit(11, "feet"),
  41709. name: "Werewolf",
  41710. image: {
  41711. source: "./media/characters/zane/werewolf.svg",
  41712. extra: 1383/1323,
  41713. bottom: 89/1472
  41714. }
  41715. },
  41716. foot: {
  41717. height: math.unit(1.46, "feet"),
  41718. name: "Foot",
  41719. image: {
  41720. source: "./media/characters/zane/foot.svg"
  41721. }
  41722. },
  41723. footFront: {
  41724. height: math.unit(0.784, "feet"),
  41725. name: "Foot (Front)",
  41726. image: {
  41727. source: "./media/characters/zane/foot-front.svg"
  41728. }
  41729. },
  41730. dick: {
  41731. height: math.unit(1.95, "feet"),
  41732. name: "Dick",
  41733. image: {
  41734. source: "./media/characters/zane/dick.svg"
  41735. }
  41736. },
  41737. dickWerewolf: {
  41738. height: math.unit(3.77, "feet"),
  41739. name: "Dick (Werewolf)",
  41740. image: {
  41741. source: "./media/characters/zane/dick.svg"
  41742. }
  41743. },
  41744. },
  41745. [
  41746. {
  41747. name: "Normal",
  41748. height: math.unit(7 + 5/12, "feet"),
  41749. default: true
  41750. },
  41751. ]
  41752. ))
  41753. characterMakers.push(() => makeCharacter(
  41754. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41755. {
  41756. front: {
  41757. height: math.unit(6 + 2/12, "feet"),
  41758. weight: math.unit(284, "lb"),
  41759. name: "Front",
  41760. image: {
  41761. source: "./media/characters/benni-desparque/front.svg",
  41762. extra: 1353/1126,
  41763. bottom: 69/1422
  41764. }
  41765. },
  41766. },
  41767. [
  41768. {
  41769. name: "Civilian",
  41770. height: math.unit(6 + 2/12, "feet")
  41771. },
  41772. {
  41773. name: "Normal",
  41774. height: math.unit(98, "feet"),
  41775. default: true
  41776. },
  41777. {
  41778. name: "Kaiju Fighter",
  41779. height: math.unit(268, "feet")
  41780. },
  41781. ]
  41782. ))
  41783. characterMakers.push(() => makeCharacter(
  41784. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41785. {
  41786. front: {
  41787. height: math.unit(5, "feet"),
  41788. weight: math.unit(105, "lb"),
  41789. name: "Front",
  41790. image: {
  41791. source: "./media/characters/maxine/front.svg",
  41792. extra: 1386/1250,
  41793. bottom: 71/1457
  41794. }
  41795. },
  41796. },
  41797. [
  41798. {
  41799. name: "Normal",
  41800. height: math.unit(5, "feet"),
  41801. default: true
  41802. },
  41803. ]
  41804. ))
  41805. characterMakers.push(() => makeCharacter(
  41806. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41807. {
  41808. front: {
  41809. height: math.unit(11 + 7/12, "feet"),
  41810. weight: math.unit(9576, "lb"),
  41811. name: "Front",
  41812. image: {
  41813. source: "./media/characters/scaly/front.svg",
  41814. extra: 888/867,
  41815. bottom: 36/924
  41816. }
  41817. },
  41818. },
  41819. [
  41820. {
  41821. name: "Normal",
  41822. height: math.unit(11 + 7/12, "feet"),
  41823. default: true
  41824. },
  41825. ]
  41826. ))
  41827. characterMakers.push(() => makeCharacter(
  41828. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41829. {
  41830. front: {
  41831. height: math.unit(6 + 3/12, "feet"),
  41832. name: "Front",
  41833. image: {
  41834. source: "./media/characters/saelria/front.svg",
  41835. extra: 1243/1138,
  41836. bottom: 46/1289
  41837. }
  41838. },
  41839. },
  41840. [
  41841. {
  41842. name: "Micro",
  41843. height: math.unit(6, "inches"),
  41844. },
  41845. {
  41846. name: "Normal",
  41847. height: math.unit(6 + 3/12, "feet"),
  41848. default: true
  41849. },
  41850. {
  41851. name: "Macro",
  41852. height: math.unit(25, "feet")
  41853. },
  41854. ]
  41855. ))
  41856. characterMakers.push(() => makeCharacter(
  41857. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41858. {
  41859. front: {
  41860. height: math.unit(80, "meters"),
  41861. weight: math.unit(7000, "tonnes"),
  41862. name: "Front",
  41863. image: {
  41864. source: "./media/characters/tef/front.svg",
  41865. extra: 2036/1991,
  41866. bottom: 54/2090
  41867. }
  41868. },
  41869. back: {
  41870. height: math.unit(80, "meters"),
  41871. weight: math.unit(7000, "tonnes"),
  41872. name: "Back",
  41873. image: {
  41874. source: "./media/characters/tef/back.svg",
  41875. extra: 2036/1991,
  41876. bottom: 54/2090
  41877. }
  41878. },
  41879. },
  41880. [
  41881. {
  41882. name: "Macro",
  41883. height: math.unit(80, "meters"),
  41884. default: true
  41885. },
  41886. ]
  41887. ))
  41888. characterMakers.push(() => makeCharacter(
  41889. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41890. {
  41891. front: {
  41892. height: math.unit(13, "feet"),
  41893. weight: math.unit(6, "tons"),
  41894. name: "Front",
  41895. image: {
  41896. source: "./media/characters/rover/front.svg",
  41897. extra: 1233/1156,
  41898. bottom: 50/1283
  41899. }
  41900. },
  41901. back: {
  41902. height: math.unit(13, "feet"),
  41903. weight: math.unit(6, "tons"),
  41904. name: "Back",
  41905. image: {
  41906. source: "./media/characters/rover/back.svg",
  41907. extra: 1327/1258,
  41908. bottom: 39/1366
  41909. }
  41910. },
  41911. },
  41912. [
  41913. {
  41914. name: "Normal",
  41915. height: math.unit(13, "feet"),
  41916. default: true
  41917. },
  41918. {
  41919. name: "Macro",
  41920. height: math.unit(1300, "feet")
  41921. },
  41922. {
  41923. name: "Megamacro",
  41924. height: math.unit(1300, "miles")
  41925. },
  41926. {
  41927. name: "Gigamacro",
  41928. height: math.unit(1300000, "miles")
  41929. },
  41930. ]
  41931. ))
  41932. characterMakers.push(() => makeCharacter(
  41933. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41934. {
  41935. front: {
  41936. height: math.unit(6, "feet"),
  41937. weight: math.unit(150, "lb"),
  41938. name: "Front",
  41939. image: {
  41940. source: "./media/characters/ariz/front.svg",
  41941. extra: 1401/1346,
  41942. bottom: 5/1406
  41943. }
  41944. },
  41945. },
  41946. [
  41947. {
  41948. name: "Normal",
  41949. height: math.unit(10, "feet"),
  41950. default: true
  41951. },
  41952. ]
  41953. ))
  41954. characterMakers.push(() => makeCharacter(
  41955. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41956. {
  41957. front: {
  41958. height: math.unit(6, "feet"),
  41959. weight: math.unit(140, "lb"),
  41960. name: "Front",
  41961. image: {
  41962. source: "./media/characters/sigrun/front.svg",
  41963. extra: 1418/1359,
  41964. bottom: 27/1445
  41965. }
  41966. },
  41967. },
  41968. [
  41969. {
  41970. name: "Macro",
  41971. height: math.unit(35, "feet"),
  41972. default: true
  41973. },
  41974. ]
  41975. ))
  41976. characterMakers.push(() => makeCharacter(
  41977. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41978. {
  41979. front: {
  41980. height: math.unit(6, "feet"),
  41981. weight: math.unit(150, "lb"),
  41982. name: "Front",
  41983. image: {
  41984. source: "./media/characters/numin/front.svg",
  41985. extra: 1433/1388,
  41986. bottom: 12/1445
  41987. }
  41988. },
  41989. },
  41990. [
  41991. {
  41992. name: "Macro",
  41993. height: math.unit(21.5, "km"),
  41994. default: true
  41995. },
  41996. ]
  41997. ))
  41998. characterMakers.push(() => makeCharacter(
  41999. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42000. {
  42001. front: {
  42002. height: math.unit(6, "feet"),
  42003. weight: math.unit(463, "lb"),
  42004. name: "Front",
  42005. image: {
  42006. source: "./media/characters/melwa/front.svg",
  42007. extra: 1307/1248,
  42008. bottom: 93/1400
  42009. }
  42010. },
  42011. },
  42012. [
  42013. {
  42014. name: "Macro",
  42015. height: math.unit(50, "meters"),
  42016. default: true
  42017. },
  42018. ]
  42019. ))
  42020. characterMakers.push(() => makeCharacter(
  42021. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42022. {
  42023. front: {
  42024. height: math.unit(325, "feet"),
  42025. name: "Front",
  42026. image: {
  42027. source: "./media/characters/zorkaiju/front.svg",
  42028. extra: 1955/1814,
  42029. bottom: 40/1995
  42030. }
  42031. },
  42032. frontExtended: {
  42033. height: math.unit(325, "feet"),
  42034. name: "Front (Extended)",
  42035. image: {
  42036. source: "./media/characters/zorkaiju/front-extended.svg",
  42037. extra: 1955/1814,
  42038. bottom: 40/1995
  42039. }
  42040. },
  42041. side: {
  42042. height: math.unit(325, "feet"),
  42043. name: "Side",
  42044. image: {
  42045. source: "./media/characters/zorkaiju/side.svg",
  42046. extra: 1495/1396,
  42047. bottom: 17/1512
  42048. }
  42049. },
  42050. sideExtended: {
  42051. height: math.unit(325, "feet"),
  42052. name: "Side (Extended)",
  42053. image: {
  42054. source: "./media/characters/zorkaiju/side-extended.svg",
  42055. extra: 1495/1396,
  42056. bottom: 17/1512
  42057. }
  42058. },
  42059. back: {
  42060. height: math.unit(325, "feet"),
  42061. name: "Back",
  42062. image: {
  42063. source: "./media/characters/zorkaiju/back.svg",
  42064. extra: 1959/1821,
  42065. bottom: 31/1990
  42066. }
  42067. },
  42068. backExtended: {
  42069. height: math.unit(325, "feet"),
  42070. name: "Back (Extended)",
  42071. image: {
  42072. source: "./media/characters/zorkaiju/back-extended.svg",
  42073. extra: 1959/1821,
  42074. bottom: 31/1990
  42075. }
  42076. },
  42077. hand: {
  42078. height: math.unit(58.4, "feet"),
  42079. name: "Hand",
  42080. image: {
  42081. source: "./media/characters/zorkaiju/hand.svg"
  42082. }
  42083. },
  42084. handExtended: {
  42085. height: math.unit(61.4, "feet"),
  42086. name: "Hand (Extended)",
  42087. image: {
  42088. source: "./media/characters/zorkaiju/hand-extended.svg"
  42089. }
  42090. },
  42091. foot: {
  42092. height: math.unit(95, "feet"),
  42093. name: "Foot",
  42094. image: {
  42095. source: "./media/characters/zorkaiju/foot.svg"
  42096. }
  42097. },
  42098. leftArm: {
  42099. height: math.unit(59, "feet"),
  42100. name: "Left Arm",
  42101. image: {
  42102. source: "./media/characters/zorkaiju/left-arm.svg"
  42103. }
  42104. },
  42105. rightArm: {
  42106. height: math.unit(59, "feet"),
  42107. name: "Right Arm",
  42108. image: {
  42109. source: "./media/characters/zorkaiju/right-arm.svg"
  42110. }
  42111. },
  42112. leftArmExtended: {
  42113. height: math.unit(59 * 1.033546, "feet"),
  42114. name: "Left Arm (Extended)",
  42115. image: {
  42116. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42117. }
  42118. },
  42119. rightArmExtended: {
  42120. height: math.unit(59 * 1.0496, "feet"),
  42121. name: "Right Arm (Extended)",
  42122. image: {
  42123. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42124. }
  42125. },
  42126. tail: {
  42127. height: math.unit(104, "feet"),
  42128. name: "Tail",
  42129. image: {
  42130. source: "./media/characters/zorkaiju/tail.svg"
  42131. }
  42132. },
  42133. tailExtended: {
  42134. height: math.unit(104, "feet"),
  42135. name: "Tail (Extended)",
  42136. image: {
  42137. source: "./media/characters/zorkaiju/tail-extended.svg"
  42138. }
  42139. },
  42140. tailBottom: {
  42141. height: math.unit(104, "feet"),
  42142. name: "Tail Bottom",
  42143. image: {
  42144. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42145. }
  42146. },
  42147. crystal: {
  42148. height: math.unit(27.54, "feet"),
  42149. name: "Crystal",
  42150. image: {
  42151. source: "./media/characters/zorkaiju/crystal.svg"
  42152. }
  42153. },
  42154. },
  42155. [
  42156. {
  42157. name: "Kaiju",
  42158. height: math.unit(325, "feet"),
  42159. default: true
  42160. },
  42161. ]
  42162. ))
  42163. characterMakers.push(() => makeCharacter(
  42164. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42165. {
  42166. front: {
  42167. height: math.unit(6 + 1/12, "feet"),
  42168. weight: math.unit(115, "lb"),
  42169. name: "Front",
  42170. image: {
  42171. source: "./media/characters/bailey-belfry/front.svg",
  42172. extra: 1240/1121,
  42173. bottom: 101/1341
  42174. }
  42175. },
  42176. },
  42177. [
  42178. {
  42179. name: "Normal",
  42180. height: math.unit(6 + 1/12, "feet"),
  42181. default: true
  42182. },
  42183. ]
  42184. ))
  42185. characterMakers.push(() => makeCharacter(
  42186. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42187. {
  42188. side: {
  42189. height: math.unit(4, "meters"),
  42190. weight: math.unit(250, "kg"),
  42191. name: "Side",
  42192. image: {
  42193. source: "./media/characters/blacky/side.svg",
  42194. extra: 1027/919,
  42195. bottom: 43/1070
  42196. }
  42197. },
  42198. maw: {
  42199. height: math.unit(1, "meters"),
  42200. name: "Maw",
  42201. image: {
  42202. source: "./media/characters/blacky/maw.svg"
  42203. }
  42204. },
  42205. paw: {
  42206. height: math.unit(1, "meters"),
  42207. name: "Paw",
  42208. image: {
  42209. source: "./media/characters/blacky/paw.svg"
  42210. }
  42211. },
  42212. },
  42213. [
  42214. {
  42215. name: "Normal",
  42216. height: math.unit(4, "meters"),
  42217. default: true
  42218. },
  42219. ]
  42220. ))
  42221. characterMakers.push(() => makeCharacter(
  42222. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42223. {
  42224. front: {
  42225. height: math.unit(170, "cm"),
  42226. weight: math.unit(66, "kg"),
  42227. name: "Front",
  42228. image: {
  42229. source: "./media/characters/thux-ei/front.svg",
  42230. extra: 1109/1011,
  42231. bottom: 8/1117
  42232. }
  42233. },
  42234. },
  42235. [
  42236. {
  42237. name: "Normal",
  42238. height: math.unit(170, "cm"),
  42239. default: true
  42240. },
  42241. ]
  42242. ))
  42243. characterMakers.push(() => makeCharacter(
  42244. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42245. {
  42246. front: {
  42247. height: math.unit(5, "feet"),
  42248. weight: math.unit(120, "lb"),
  42249. name: "Front",
  42250. image: {
  42251. source: "./media/characters/roxanne-voltaire/front.svg",
  42252. extra: 1901/1779,
  42253. bottom: 53/1954
  42254. }
  42255. },
  42256. },
  42257. [
  42258. {
  42259. name: "Normal",
  42260. height: math.unit(5, "feet"),
  42261. default: true
  42262. },
  42263. {
  42264. name: "Giant",
  42265. height: math.unit(50, "feet")
  42266. },
  42267. {
  42268. name: "Titan",
  42269. height: math.unit(500, "feet")
  42270. },
  42271. {
  42272. name: "Macro",
  42273. height: math.unit(5000, "feet")
  42274. },
  42275. {
  42276. name: "Megamacro",
  42277. height: math.unit(50000, "feet")
  42278. },
  42279. {
  42280. name: "Gigamacro",
  42281. height: math.unit(500000, "feet")
  42282. },
  42283. {
  42284. name: "Teramacro",
  42285. height: math.unit(5e6, "feet")
  42286. },
  42287. ]
  42288. ))
  42289. characterMakers.push(() => makeCharacter(
  42290. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42291. {
  42292. front: {
  42293. height: math.unit(6 + 2/12, "feet"),
  42294. name: "Front",
  42295. image: {
  42296. source: "./media/characters/squeaks/front.svg",
  42297. extra: 1823/1768,
  42298. bottom: 138/1961
  42299. }
  42300. },
  42301. },
  42302. [
  42303. {
  42304. name: "Micro",
  42305. height: math.unit(0.5, "inches")
  42306. },
  42307. {
  42308. name: "Normal",
  42309. height: math.unit(6 + 2/12, "feet"),
  42310. default: true
  42311. },
  42312. {
  42313. name: "Macro",
  42314. height: math.unit(600, "feet")
  42315. },
  42316. ]
  42317. ))
  42318. characterMakers.push(() => makeCharacter(
  42319. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42320. {
  42321. front: {
  42322. height: math.unit(1.72, "meters"),
  42323. name: "Front",
  42324. image: {
  42325. source: "./media/characters/archinger/front.svg",
  42326. extra: 1861/1675,
  42327. bottom: 125/1986
  42328. }
  42329. },
  42330. back: {
  42331. height: math.unit(1.72, "meters"),
  42332. name: "Back",
  42333. image: {
  42334. source: "./media/characters/archinger/back.svg",
  42335. extra: 1844/1701,
  42336. bottom: 104/1948
  42337. }
  42338. },
  42339. cock: {
  42340. height: math.unit(0.59, "feet"),
  42341. name: "Cock",
  42342. image: {
  42343. source: "./media/characters/archinger/cock.svg"
  42344. }
  42345. },
  42346. },
  42347. [
  42348. {
  42349. name: "Normal",
  42350. height: math.unit(1.72, "meters"),
  42351. default: true
  42352. },
  42353. {
  42354. name: "Macro",
  42355. height: math.unit(84, "meters")
  42356. },
  42357. {
  42358. name: "Macro+",
  42359. height: math.unit(112, "meters")
  42360. },
  42361. {
  42362. name: "Macro++",
  42363. height: math.unit(960, "meters")
  42364. },
  42365. {
  42366. name: "Macro+++",
  42367. height: math.unit(4, "km")
  42368. },
  42369. {
  42370. name: "Macro++++",
  42371. height: math.unit(48, "km")
  42372. },
  42373. {
  42374. name: "Macro+++++",
  42375. height: math.unit(4500, "km")
  42376. },
  42377. ]
  42378. ))
  42379. characterMakers.push(() => makeCharacter(
  42380. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42381. {
  42382. front: {
  42383. height: math.unit(5 + 5/12, "feet"),
  42384. name: "Front",
  42385. image: {
  42386. source: "./media/characters/alsnapz/front.svg",
  42387. extra: 1157/1065,
  42388. bottom: 42/1199
  42389. }
  42390. },
  42391. },
  42392. [
  42393. {
  42394. name: "Normal",
  42395. height: math.unit(5 + 5/12, "feet"),
  42396. default: true
  42397. },
  42398. ]
  42399. ))
  42400. characterMakers.push(() => makeCharacter(
  42401. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42402. {
  42403. side: {
  42404. height: math.unit(3.2, "earths"),
  42405. name: "Side",
  42406. image: {
  42407. source: "./media/characters/mag/side.svg",
  42408. extra: 1331/1008,
  42409. bottom: 52/1383
  42410. }
  42411. },
  42412. wing: {
  42413. height: math.unit(1.94, "earths"),
  42414. name: "Wing",
  42415. image: {
  42416. source: "./media/characters/mag/wing.svg"
  42417. }
  42418. },
  42419. dick: {
  42420. height: math.unit(1.8, "earths"),
  42421. name: "Dick",
  42422. image: {
  42423. source: "./media/characters/mag/dick.svg"
  42424. }
  42425. },
  42426. ass: {
  42427. height: math.unit(1.33, "earths"),
  42428. name: "Ass",
  42429. image: {
  42430. source: "./media/characters/mag/ass.svg"
  42431. }
  42432. },
  42433. head: {
  42434. height: math.unit(1.1, "earths"),
  42435. name: "Head",
  42436. image: {
  42437. source: "./media/characters/mag/head.svg"
  42438. }
  42439. },
  42440. maw: {
  42441. height: math.unit(1.62, "earths"),
  42442. name: "Maw",
  42443. image: {
  42444. source: "./media/characters/mag/maw.svg"
  42445. }
  42446. },
  42447. },
  42448. [
  42449. {
  42450. name: "Small",
  42451. height: math.unit(162, "feet")
  42452. },
  42453. {
  42454. name: "Normal",
  42455. height: math.unit(3.2, "earths"),
  42456. default: true
  42457. },
  42458. ]
  42459. ))
  42460. characterMakers.push(() => makeCharacter(
  42461. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42462. {
  42463. front: {
  42464. height: math.unit(512, "feet"),
  42465. weight: math.unit(63509, "tonnes"),
  42466. name: "Front",
  42467. image: {
  42468. source: "./media/characters/vorrel-harroc/front.svg",
  42469. extra: 1075/1063,
  42470. bottom: 62/1137
  42471. }
  42472. },
  42473. },
  42474. [
  42475. {
  42476. name: "Normal",
  42477. height: math.unit(10, "feet")
  42478. },
  42479. {
  42480. name: "Macro",
  42481. height: math.unit(512, "feet"),
  42482. default: true
  42483. },
  42484. {
  42485. name: "Megamacro",
  42486. height: math.unit(256, "miles")
  42487. },
  42488. {
  42489. name: "Gigamacro",
  42490. height: math.unit(4096, "miles")
  42491. },
  42492. ]
  42493. ))
  42494. characterMakers.push(() => makeCharacter(
  42495. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42496. {
  42497. side: {
  42498. height: math.unit(50, "feet"),
  42499. name: "Side",
  42500. image: {
  42501. source: "./media/characters/froimar/side.svg",
  42502. extra: 855/638,
  42503. bottom: 99/954
  42504. }
  42505. },
  42506. },
  42507. [
  42508. {
  42509. name: "Macro",
  42510. height: math.unit(50, "feet"),
  42511. default: true
  42512. },
  42513. ]
  42514. ))
  42515. characterMakers.push(() => makeCharacter(
  42516. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42517. {
  42518. front: {
  42519. height: math.unit(210, "miles"),
  42520. name: "Front",
  42521. image: {
  42522. source: "./media/characters/timothy/front.svg",
  42523. extra: 1007/943,
  42524. bottom: 62/1069
  42525. }
  42526. },
  42527. frontSkirt: {
  42528. height: math.unit(210, "miles"),
  42529. name: "Front (Skirt)",
  42530. image: {
  42531. source: "./media/characters/timothy/front-skirt.svg",
  42532. extra: 1007/943,
  42533. bottom: 62/1069
  42534. }
  42535. },
  42536. frontCoat: {
  42537. height: math.unit(210, "miles"),
  42538. name: "Front (Coat)",
  42539. image: {
  42540. source: "./media/characters/timothy/front-coat.svg",
  42541. extra: 1007/943,
  42542. bottom: 62/1069
  42543. }
  42544. },
  42545. },
  42546. [
  42547. {
  42548. name: "Macro",
  42549. height: math.unit(210, "miles"),
  42550. default: true
  42551. },
  42552. {
  42553. name: "Megamacro",
  42554. height: math.unit(210000, "miles")
  42555. },
  42556. ]
  42557. ))
  42558. characterMakers.push(() => makeCharacter(
  42559. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42560. {
  42561. front: {
  42562. height: math.unit(188, "feet"),
  42563. name: "Front",
  42564. image: {
  42565. source: "./media/characters/pyotr/front.svg",
  42566. extra: 1912/1826,
  42567. bottom: 18/1930
  42568. }
  42569. },
  42570. },
  42571. [
  42572. {
  42573. name: "Macro",
  42574. height: math.unit(188, "feet"),
  42575. default: true
  42576. },
  42577. {
  42578. name: "Megamacro",
  42579. height: math.unit(8, "miles")
  42580. },
  42581. ]
  42582. ))
  42583. characterMakers.push(() => makeCharacter(
  42584. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42585. {
  42586. side: {
  42587. height: math.unit(10, "feet"),
  42588. weight: math.unit(4500, "lb"),
  42589. name: "Side",
  42590. image: {
  42591. source: "./media/characters/ackart/side.svg",
  42592. extra: 1776/1668,
  42593. bottom: 116/1892
  42594. }
  42595. },
  42596. },
  42597. [
  42598. {
  42599. name: "Normal",
  42600. height: math.unit(10, "feet"),
  42601. default: true
  42602. },
  42603. ]
  42604. ))
  42605. characterMakers.push(() => makeCharacter(
  42606. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42607. {
  42608. side: {
  42609. height: math.unit(21, "feet"),
  42610. name: "Side",
  42611. image: {
  42612. source: "./media/characters/nolow/side.svg",
  42613. extra: 1484/1434,
  42614. bottom: 85/1569
  42615. }
  42616. },
  42617. sideErect: {
  42618. height: math.unit(21, "feet"),
  42619. name: "Side-erect",
  42620. image: {
  42621. source: "./media/characters/nolow/side-erect.svg",
  42622. extra: 1484/1434,
  42623. bottom: 85/1569
  42624. }
  42625. },
  42626. },
  42627. [
  42628. {
  42629. name: "Regular",
  42630. height: math.unit(12, "feet")
  42631. },
  42632. {
  42633. name: "Big Chee",
  42634. height: math.unit(21, "feet"),
  42635. default: true
  42636. },
  42637. ]
  42638. ))
  42639. characterMakers.push(() => makeCharacter(
  42640. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42641. {
  42642. front: {
  42643. height: math.unit(7, "feet"),
  42644. weight: math.unit(250, "lb"),
  42645. name: "Front",
  42646. image: {
  42647. source: "./media/characters/nines/front.svg",
  42648. extra: 1741/1607,
  42649. bottom: 41/1782
  42650. }
  42651. },
  42652. side: {
  42653. height: math.unit(7, "feet"),
  42654. weight: math.unit(250, "lb"),
  42655. name: "Side",
  42656. image: {
  42657. source: "./media/characters/nines/side.svg",
  42658. extra: 1854/1735,
  42659. bottom: 93/1947
  42660. }
  42661. },
  42662. back: {
  42663. height: math.unit(7, "feet"),
  42664. weight: math.unit(250, "lb"),
  42665. name: "Back",
  42666. image: {
  42667. source: "./media/characters/nines/back.svg",
  42668. extra: 1748/1615,
  42669. bottom: 20/1768
  42670. }
  42671. },
  42672. },
  42673. [
  42674. {
  42675. name: "Megamacro",
  42676. height: math.unit(99, "km"),
  42677. default: true
  42678. },
  42679. ]
  42680. ))
  42681. characterMakers.push(() => makeCharacter(
  42682. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42683. {
  42684. front: {
  42685. height: math.unit(5 + 10/12, "feet"),
  42686. weight: math.unit(210, "lb"),
  42687. name: "Front",
  42688. image: {
  42689. source: "./media/characters/zenith/front.svg",
  42690. extra: 1531/1452,
  42691. bottom: 198/1729
  42692. }
  42693. },
  42694. back: {
  42695. height: math.unit(5 + 10/12, "feet"),
  42696. weight: math.unit(210, "lb"),
  42697. name: "Back",
  42698. image: {
  42699. source: "./media/characters/zenith/back.svg",
  42700. extra: 1571/1487,
  42701. bottom: 75/1646
  42702. }
  42703. },
  42704. },
  42705. [
  42706. {
  42707. name: "Normal",
  42708. height: math.unit(5 + 10/12, "feet"),
  42709. default: true
  42710. }
  42711. ]
  42712. ))
  42713. characterMakers.push(() => makeCharacter(
  42714. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42715. {
  42716. front: {
  42717. height: math.unit(4, "feet"),
  42718. weight: math.unit(60, "lb"),
  42719. name: "Front",
  42720. image: {
  42721. source: "./media/characters/jasper/front.svg",
  42722. extra: 1450/1379,
  42723. bottom: 19/1469
  42724. }
  42725. },
  42726. },
  42727. [
  42728. {
  42729. name: "Normal",
  42730. height: math.unit(4, "feet"),
  42731. default: true
  42732. },
  42733. ]
  42734. ))
  42735. characterMakers.push(() => makeCharacter(
  42736. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42737. {
  42738. front: {
  42739. height: math.unit(6 + 5/12, "feet"),
  42740. weight: math.unit(290, "lb"),
  42741. name: "Front",
  42742. image: {
  42743. source: "./media/characters/tiberius-thyben/front.svg",
  42744. extra: 757/739,
  42745. bottom: 39/796
  42746. }
  42747. },
  42748. },
  42749. [
  42750. {
  42751. name: "Micro",
  42752. height: math.unit(1.5, "inches")
  42753. },
  42754. {
  42755. name: "Normal",
  42756. height: math.unit(6 + 5/12, "feet"),
  42757. default: true
  42758. },
  42759. {
  42760. name: "Macro",
  42761. height: math.unit(300, "feet")
  42762. },
  42763. ]
  42764. ))
  42765. characterMakers.push(() => makeCharacter(
  42766. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42767. {
  42768. front: {
  42769. height: math.unit(5 + 6/12, "feet"),
  42770. weight: math.unit(60, "kg"),
  42771. name: "Front",
  42772. image: {
  42773. source: "./media/characters/sabre/front.svg",
  42774. extra: 738/671,
  42775. bottom: 27/765
  42776. }
  42777. },
  42778. },
  42779. [
  42780. {
  42781. name: "Teeny",
  42782. height: math.unit(2, "inches")
  42783. },
  42784. {
  42785. name: "Smol",
  42786. height: math.unit(8, "inches")
  42787. },
  42788. {
  42789. name: "Normal",
  42790. height: math.unit(5 + 6/12, "feet"),
  42791. default: true
  42792. },
  42793. {
  42794. name: "Mini-Macro",
  42795. height: math.unit(15, "feet")
  42796. },
  42797. {
  42798. name: "Macro",
  42799. height: math.unit(50, "feet")
  42800. },
  42801. ]
  42802. ))
  42803. characterMakers.push(() => makeCharacter(
  42804. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42805. {
  42806. front: {
  42807. height: math.unit(6 + 4/12, "feet"),
  42808. weight: math.unit(170, "lb"),
  42809. name: "Front",
  42810. image: {
  42811. source: "./media/characters/charlie/front.svg",
  42812. extra: 1348/1228,
  42813. bottom: 15/1363
  42814. }
  42815. },
  42816. },
  42817. [
  42818. {
  42819. name: "Macro",
  42820. height: math.unit(1700, "meters"),
  42821. default: true
  42822. },
  42823. {
  42824. name: "MegaMacro",
  42825. height: math.unit(20400, "meters")
  42826. },
  42827. ]
  42828. ))
  42829. characterMakers.push(() => makeCharacter(
  42830. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42831. {
  42832. front: {
  42833. height: math.unit(6 + 3/12, "feet"),
  42834. weight: math.unit(185, "lb"),
  42835. name: "Front",
  42836. image: {
  42837. source: "./media/characters/susan-grant/front.svg",
  42838. extra: 1351/1327,
  42839. bottom: 26/1377
  42840. }
  42841. },
  42842. },
  42843. [
  42844. {
  42845. name: "Normal",
  42846. height: math.unit(6 + 3/12, "feet"),
  42847. default: true
  42848. },
  42849. {
  42850. name: "Macro",
  42851. height: math.unit(225, "feet")
  42852. },
  42853. {
  42854. name: "Macro+",
  42855. height: math.unit(900, "feet")
  42856. },
  42857. {
  42858. name: "MegaMacro",
  42859. height: math.unit(14400, "feet")
  42860. },
  42861. ]
  42862. ))
  42863. characterMakers.push(() => makeCharacter(
  42864. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42865. {
  42866. front: {
  42867. height: math.unit(5 + 4/12, "feet"),
  42868. weight: math.unit(110, "lb"),
  42869. name: "Front",
  42870. image: {
  42871. source: "./media/characters/axel-isanov/front.svg",
  42872. extra: 1096/1065,
  42873. bottom: 13/1109
  42874. }
  42875. },
  42876. },
  42877. [
  42878. {
  42879. name: "Normal",
  42880. height: math.unit(5 + 4/12, "feet"),
  42881. default: true
  42882. },
  42883. ]
  42884. ))
  42885. characterMakers.push(() => makeCharacter(
  42886. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42887. {
  42888. front: {
  42889. height: math.unit(9, "feet"),
  42890. weight: math.unit(467, "lb"),
  42891. name: "Front",
  42892. image: {
  42893. source: "./media/characters/necahual/front.svg",
  42894. extra: 920/873,
  42895. bottom: 26/946
  42896. }
  42897. },
  42898. back: {
  42899. height: math.unit(9, "feet"),
  42900. weight: math.unit(467, "lb"),
  42901. name: "Back",
  42902. image: {
  42903. source: "./media/characters/necahual/back.svg",
  42904. extra: 930/884,
  42905. bottom: 16/946
  42906. }
  42907. },
  42908. frontUnderwear: {
  42909. height: math.unit(9, "feet"),
  42910. weight: math.unit(467, "lb"),
  42911. name: "Front (Underwear)",
  42912. image: {
  42913. source: "./media/characters/necahual/front-underwear.svg",
  42914. extra: 920/873,
  42915. bottom: 26/946
  42916. }
  42917. },
  42918. frontDressed: {
  42919. height: math.unit(9, "feet"),
  42920. weight: math.unit(467, "lb"),
  42921. name: "Front (Dressed)",
  42922. image: {
  42923. source: "./media/characters/necahual/front-dressed.svg",
  42924. extra: 920/873,
  42925. bottom: 26/946
  42926. }
  42927. },
  42928. },
  42929. [
  42930. {
  42931. name: "Comprsesed",
  42932. height: math.unit(9, "feet")
  42933. },
  42934. {
  42935. name: "Natural",
  42936. height: math.unit(15, "feet"),
  42937. default: true
  42938. },
  42939. {
  42940. name: "Boosted",
  42941. height: math.unit(50, "feet")
  42942. },
  42943. {
  42944. name: "Boosted+",
  42945. height: math.unit(150, "feet")
  42946. },
  42947. {
  42948. name: "Max",
  42949. height: math.unit(500, "feet")
  42950. },
  42951. ]
  42952. ))
  42953. characterMakers.push(() => makeCharacter(
  42954. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42955. {
  42956. front: {
  42957. height: math.unit(22 + 1/12, "feet"),
  42958. weight: math.unit(3200, "lb"),
  42959. name: "Front",
  42960. image: {
  42961. source: "./media/characters/theo-acacia/front.svg",
  42962. extra: 1796/1741,
  42963. bottom: 83/1879
  42964. }
  42965. },
  42966. frontUnderwear: {
  42967. height: math.unit(22 + 1/12, "feet"),
  42968. weight: math.unit(3200, "lb"),
  42969. name: "Front (Underwear)",
  42970. image: {
  42971. source: "./media/characters/theo-acacia/front-underwear.svg",
  42972. extra: 1796/1741,
  42973. bottom: 83/1879
  42974. }
  42975. },
  42976. frontNude: {
  42977. height: math.unit(22 + 1/12, "feet"),
  42978. weight: math.unit(3200, "lb"),
  42979. name: "Front (Nude)",
  42980. image: {
  42981. source: "./media/characters/theo-acacia/front-nude.svg",
  42982. extra: 1796/1741,
  42983. bottom: 83/1879
  42984. }
  42985. },
  42986. },
  42987. [
  42988. {
  42989. name: "Normal",
  42990. height: math.unit(22 + 1/12, "feet"),
  42991. default: true
  42992. },
  42993. ]
  42994. ))
  42995. characterMakers.push(() => makeCharacter(
  42996. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42997. {
  42998. front: {
  42999. height: math.unit(20, "feet"),
  43000. name: "Front",
  43001. image: {
  43002. source: "./media/characters/astra/front.svg",
  43003. extra: 1850/1714,
  43004. bottom: 106/1956
  43005. }
  43006. },
  43007. frontUndressed: {
  43008. height: math.unit(20, "feet"),
  43009. name: "Front (Undressed)",
  43010. image: {
  43011. source: "./media/characters/astra/front-undressed.svg",
  43012. extra: 1926/1749,
  43013. bottom: 0/1926
  43014. }
  43015. },
  43016. hand: {
  43017. height: math.unit(1.53, "feet"),
  43018. name: "Hand",
  43019. image: {
  43020. source: "./media/characters/astra/hand.svg"
  43021. }
  43022. },
  43023. paw: {
  43024. height: math.unit(1.53, "feet"),
  43025. name: "Paw",
  43026. image: {
  43027. source: "./media/characters/astra/paw.svg"
  43028. }
  43029. },
  43030. },
  43031. [
  43032. {
  43033. name: "Smallest",
  43034. height: math.unit(20, "feet")
  43035. },
  43036. {
  43037. name: "Normal",
  43038. height: math.unit(1e9, "miles"),
  43039. default: true
  43040. },
  43041. {
  43042. name: "Larger",
  43043. height: math.unit(5, "multiverses")
  43044. },
  43045. {
  43046. name: "Largest",
  43047. height: math.unit(1e9, "multiverses")
  43048. },
  43049. ]
  43050. ))
  43051. characterMakers.push(() => makeCharacter(
  43052. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43053. {
  43054. front: {
  43055. height: math.unit(8, "feet"),
  43056. name: "Front",
  43057. image: {
  43058. source: "./media/characters/breanna/front.svg",
  43059. extra: 1912/1632,
  43060. bottom: 33/1945
  43061. }
  43062. },
  43063. },
  43064. [
  43065. {
  43066. name: "Smallest",
  43067. height: math.unit(8, "feet")
  43068. },
  43069. {
  43070. name: "Normal",
  43071. height: math.unit(1, "mile"),
  43072. default: true
  43073. },
  43074. {
  43075. name: "Maximum",
  43076. height: math.unit(1500000000000, "lightyears")
  43077. },
  43078. ]
  43079. ))
  43080. characterMakers.push(() => makeCharacter(
  43081. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43082. {
  43083. front: {
  43084. height: math.unit(5 + 11/12, "feet"),
  43085. weight: math.unit(155, "lb"),
  43086. name: "Front",
  43087. image: {
  43088. source: "./media/characters/cai/front.svg",
  43089. extra: 1823/1702,
  43090. bottom: 32/1855
  43091. }
  43092. },
  43093. back: {
  43094. height: math.unit(5 + 11/12, "feet"),
  43095. weight: math.unit(155, "lb"),
  43096. name: "Back",
  43097. image: {
  43098. source: "./media/characters/cai/back.svg",
  43099. extra: 1809/1708,
  43100. bottom: 31/1840
  43101. }
  43102. },
  43103. },
  43104. [
  43105. {
  43106. name: "Normal",
  43107. height: math.unit(5 + 11/12, "feet"),
  43108. default: true
  43109. },
  43110. {
  43111. name: "Big",
  43112. height: math.unit(15, "feet")
  43113. },
  43114. {
  43115. name: "Macro",
  43116. height: math.unit(200, "feet")
  43117. },
  43118. ]
  43119. ))
  43120. characterMakers.push(() => makeCharacter(
  43121. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43122. {
  43123. front: {
  43124. height: math.unit(5 + 6/12, "feet"),
  43125. weight: math.unit(160, "lb"),
  43126. name: "Front",
  43127. image: {
  43128. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43129. extra: 1227/1174,
  43130. bottom: 37/1264
  43131. }
  43132. },
  43133. },
  43134. [
  43135. {
  43136. name: "Macro",
  43137. height: math.unit(444, "meters"),
  43138. default: true
  43139. },
  43140. ]
  43141. ))
  43142. characterMakers.push(() => makeCharacter(
  43143. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43144. {
  43145. front: {
  43146. height: math.unit(18 + 7/12, "feet"),
  43147. name: "Front",
  43148. image: {
  43149. source: "./media/characters/rex/front.svg",
  43150. extra: 1941/1807,
  43151. bottom: 66/2007
  43152. }
  43153. },
  43154. back: {
  43155. height: math.unit(18 + 7/12, "feet"),
  43156. name: "Back",
  43157. image: {
  43158. source: "./media/characters/rex/back.svg",
  43159. extra: 1937/1822,
  43160. bottom: 42/1979
  43161. }
  43162. },
  43163. boot: {
  43164. height: math.unit(3.45, "feet"),
  43165. name: "Boot",
  43166. image: {
  43167. source: "./media/characters/rex/boot.svg"
  43168. }
  43169. },
  43170. paw: {
  43171. height: math.unit(4.17, "feet"),
  43172. name: "Paw",
  43173. image: {
  43174. source: "./media/characters/rex/paw.svg"
  43175. }
  43176. },
  43177. head: {
  43178. height: math.unit(6.728, "feet"),
  43179. name: "Head",
  43180. image: {
  43181. source: "./media/characters/rex/head.svg"
  43182. }
  43183. },
  43184. },
  43185. [
  43186. {
  43187. name: "Nano",
  43188. height: math.unit(18 + 7/12, "feet")
  43189. },
  43190. {
  43191. name: "Micro",
  43192. height: math.unit(1.5, "megameters")
  43193. },
  43194. {
  43195. name: "Normal",
  43196. height: math.unit(440, "megameters"),
  43197. default: true
  43198. },
  43199. {
  43200. name: "Macro",
  43201. height: math.unit(2.5, "gigameters")
  43202. },
  43203. {
  43204. name: "Gigamacro",
  43205. height: math.unit(2, "galaxies")
  43206. },
  43207. ]
  43208. ))
  43209. characterMakers.push(() => makeCharacter(
  43210. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43211. {
  43212. side: {
  43213. height: math.unit(32, "feet"),
  43214. weight: math.unit(250000, "lb"),
  43215. name: "Side",
  43216. image: {
  43217. source: "./media/characters/silverwing/side.svg",
  43218. extra: 1100/1019,
  43219. bottom: 204/1304
  43220. }
  43221. },
  43222. },
  43223. [
  43224. {
  43225. name: "Normal",
  43226. height: math.unit(32, "feet"),
  43227. default: true
  43228. },
  43229. ]
  43230. ))
  43231. characterMakers.push(() => makeCharacter(
  43232. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43233. {
  43234. front: {
  43235. height: math.unit(6 + 6/12, "feet"),
  43236. weight: math.unit(350, "lb"),
  43237. name: "Front",
  43238. image: {
  43239. source: "./media/characters/tristan-hawthorne/front.svg",
  43240. extra: 1159/1124,
  43241. bottom: 37/1196
  43242. },
  43243. form: "labrador",
  43244. default: true
  43245. },
  43246. skunkFront: {
  43247. height: math.unit(4 + 6/12, "feet"),
  43248. weight: math.unit(120, "lb"),
  43249. name: "Front",
  43250. image: {
  43251. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43252. extra: 1609/1551,
  43253. bottom: 169/1778
  43254. },
  43255. form: "skunk",
  43256. default: true
  43257. },
  43258. },
  43259. [
  43260. {
  43261. name: "Normal",
  43262. height: math.unit(6 + 6/12, "feet"),
  43263. form: "labrador",
  43264. default: true
  43265. },
  43266. {
  43267. name: "Normal",
  43268. height: math.unit(4 + 6/12, "feet"),
  43269. form: "skunk",
  43270. default: true
  43271. },
  43272. ],
  43273. {
  43274. "labrador": {
  43275. name: "Labrador",
  43276. default: true
  43277. },
  43278. "skunk": {
  43279. name: "Skunk"
  43280. }
  43281. }
  43282. ))
  43283. characterMakers.push(() => makeCharacter(
  43284. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43285. {
  43286. front: {
  43287. height: math.unit(5 + 11/12, "feet"),
  43288. weight: math.unit(190, "lb"),
  43289. name: "Front",
  43290. image: {
  43291. source: "./media/characters/mizu/front.svg",
  43292. extra: 1988/1788,
  43293. bottom: 14/2002
  43294. }
  43295. },
  43296. },
  43297. [
  43298. {
  43299. name: "Normal",
  43300. height: math.unit(5 + 11/12, "feet"),
  43301. default: true
  43302. },
  43303. ]
  43304. ))
  43305. characterMakers.push(() => makeCharacter(
  43306. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43307. {
  43308. front: {
  43309. height: math.unit(1.7, "feet"),
  43310. weight: math.unit(50, "lb"),
  43311. name: "Front",
  43312. image: {
  43313. source: "./media/characters/dechroma/front.svg",
  43314. extra: 1095/859,
  43315. bottom: 64/1159
  43316. }
  43317. },
  43318. },
  43319. [
  43320. {
  43321. name: "Normal",
  43322. height: math.unit(1.7, "feet"),
  43323. default: true
  43324. },
  43325. ]
  43326. ))
  43327. characterMakers.push(() => makeCharacter(
  43328. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43329. {
  43330. side: {
  43331. height: math.unit(30, "feet"),
  43332. name: "Side",
  43333. image: {
  43334. source: "./media/characters/veluren-thanazel/side.svg",
  43335. extra: 1611/633,
  43336. bottom: 118/1729
  43337. }
  43338. },
  43339. front: {
  43340. height: math.unit(30, "feet"),
  43341. name: "Front",
  43342. image: {
  43343. source: "./media/characters/veluren-thanazel/front.svg",
  43344. extra: 1486/636,
  43345. bottom: 238/1724
  43346. }
  43347. },
  43348. head: {
  43349. height: math.unit(21.4, "feet"),
  43350. name: "Head",
  43351. image: {
  43352. source: "./media/characters/veluren-thanazel/head.svg"
  43353. }
  43354. },
  43355. genitals: {
  43356. height: math.unit(19.4, "feet"),
  43357. name: "Genitals",
  43358. image: {
  43359. source: "./media/characters/veluren-thanazel/genitals.svg"
  43360. }
  43361. },
  43362. },
  43363. [
  43364. {
  43365. name: "Social",
  43366. height: math.unit(6, "feet")
  43367. },
  43368. {
  43369. name: "Play",
  43370. height: math.unit(12, "feet")
  43371. },
  43372. {
  43373. name: "True",
  43374. height: math.unit(30, "feet"),
  43375. default: true
  43376. },
  43377. ]
  43378. ))
  43379. characterMakers.push(() => makeCharacter(
  43380. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43381. {
  43382. front: {
  43383. height: math.unit(7 + 6/12, "feet"),
  43384. weight: math.unit(500, "kg"),
  43385. name: "Front",
  43386. image: {
  43387. source: "./media/characters/arcturas/front.svg",
  43388. extra: 1700/1500,
  43389. bottom: 145/1845
  43390. }
  43391. },
  43392. },
  43393. [
  43394. {
  43395. name: "Normal",
  43396. height: math.unit(7 + 6/12, "feet"),
  43397. default: true
  43398. },
  43399. ]
  43400. ))
  43401. characterMakers.push(() => makeCharacter(
  43402. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43403. {
  43404. side: {
  43405. height: math.unit(6, "feet"),
  43406. weight: math.unit(2, "tons"),
  43407. name: "Side",
  43408. image: {
  43409. source: "./media/characters/vitaen/side.svg",
  43410. extra: 1157/617,
  43411. bottom: 122/1279
  43412. }
  43413. },
  43414. },
  43415. [
  43416. {
  43417. name: "Normal",
  43418. height: math.unit(6, "feet"),
  43419. default: true
  43420. },
  43421. ]
  43422. ))
  43423. characterMakers.push(() => makeCharacter(
  43424. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43425. {
  43426. front: {
  43427. height: math.unit(19, "feet"),
  43428. name: "Front",
  43429. image: {
  43430. source: "./media/characters/fia-dreamweaver/front.svg",
  43431. extra: 1630/1504,
  43432. bottom: 25/1655
  43433. }
  43434. },
  43435. },
  43436. [
  43437. {
  43438. name: "Normal",
  43439. height: math.unit(19, "feet"),
  43440. default: true
  43441. },
  43442. ]
  43443. ))
  43444. characterMakers.push(() => makeCharacter(
  43445. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43446. {
  43447. front: {
  43448. height: math.unit(5 + 4/12, "feet"),
  43449. name: "Front",
  43450. image: {
  43451. source: "./media/characters/artan/front.svg",
  43452. extra: 1618/1535,
  43453. bottom: 46/1664
  43454. }
  43455. },
  43456. back: {
  43457. height: math.unit(5 + 4/12, "feet"),
  43458. name: "Back",
  43459. image: {
  43460. source: "./media/characters/artan/back.svg",
  43461. extra: 1618/1543,
  43462. bottom: 31/1649
  43463. }
  43464. },
  43465. },
  43466. [
  43467. {
  43468. name: "Normal",
  43469. height: math.unit(5 + 4/12, "feet"),
  43470. default: true
  43471. },
  43472. ]
  43473. ))
  43474. characterMakers.push(() => makeCharacter(
  43475. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43476. {
  43477. side: {
  43478. height: math.unit(182, "cm"),
  43479. weight: math.unit(1000, "lb"),
  43480. name: "Side",
  43481. image: {
  43482. source: "./media/characters/silver-dragon/side.svg",
  43483. extra: 710/287,
  43484. bottom: 88/798
  43485. }
  43486. },
  43487. },
  43488. [
  43489. {
  43490. name: "Normal",
  43491. height: math.unit(182, "cm"),
  43492. default: true
  43493. },
  43494. ]
  43495. ))
  43496. characterMakers.push(() => makeCharacter(
  43497. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43498. {
  43499. side: {
  43500. height: math.unit(6 + 6/12, "feet"),
  43501. weight: math.unit(1.5, "tons"),
  43502. name: "Side",
  43503. image: {
  43504. source: "./media/characters/zephyr/side.svg",
  43505. extra: 1433/586,
  43506. bottom: 109/1542
  43507. }
  43508. },
  43509. },
  43510. [
  43511. {
  43512. name: "Normal",
  43513. height: math.unit(6 + 6/12, "feet"),
  43514. default: true
  43515. },
  43516. ]
  43517. ))
  43518. characterMakers.push(() => makeCharacter(
  43519. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43520. {
  43521. side: {
  43522. height: math.unit(1, "feet"),
  43523. name: "Side",
  43524. image: {
  43525. source: "./media/characters/vixye/side.svg",
  43526. extra: 632/541,
  43527. bottom: 0/632
  43528. }
  43529. },
  43530. },
  43531. [
  43532. {
  43533. name: "Normal",
  43534. height: math.unit(1, "feet"),
  43535. default: true
  43536. },
  43537. {
  43538. name: "True",
  43539. height: math.unit(1e15, "multiverses")
  43540. },
  43541. ]
  43542. ))
  43543. characterMakers.push(() => makeCharacter(
  43544. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43545. {
  43546. front: {
  43547. height: math.unit(8 + 2/12, "feet"),
  43548. weight: math.unit(650, "lb"),
  43549. name: "Front",
  43550. image: {
  43551. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43552. extra: 1174/1137,
  43553. bottom: 82/1256
  43554. }
  43555. },
  43556. back: {
  43557. height: math.unit(8 + 2/12, "feet"),
  43558. weight: math.unit(650, "lb"),
  43559. name: "Back",
  43560. image: {
  43561. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43562. extra: 1204/1157,
  43563. bottom: 46/1250
  43564. }
  43565. },
  43566. },
  43567. [
  43568. {
  43569. name: "Wildform",
  43570. height: math.unit(8 + 2/12, "feet"),
  43571. default: true
  43572. },
  43573. ]
  43574. ))
  43575. characterMakers.push(() => makeCharacter(
  43576. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43577. {
  43578. front: {
  43579. height: math.unit(18, "feet"),
  43580. name: "Front",
  43581. image: {
  43582. source: "./media/characters/cyphin/front.svg",
  43583. extra: 970/886,
  43584. bottom: 42/1012
  43585. }
  43586. },
  43587. back: {
  43588. height: math.unit(18, "feet"),
  43589. name: "Back",
  43590. image: {
  43591. source: "./media/characters/cyphin/back.svg",
  43592. extra: 1009/894,
  43593. bottom: 24/1033
  43594. }
  43595. },
  43596. head: {
  43597. height: math.unit(5.05, "feet"),
  43598. name: "Head",
  43599. image: {
  43600. source: "./media/characters/cyphin/head.svg"
  43601. }
  43602. },
  43603. tailbud: {
  43604. height: math.unit(5, "feet"),
  43605. name: "Tailbud",
  43606. image: {
  43607. source: "./media/characters/cyphin/tailbud.svg"
  43608. }
  43609. },
  43610. },
  43611. [
  43612. ]
  43613. ))
  43614. characterMakers.push(() => makeCharacter(
  43615. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43616. {
  43617. side: {
  43618. height: math.unit(10, "feet"),
  43619. weight: math.unit(6, "tons"),
  43620. name: "Side",
  43621. image: {
  43622. source: "./media/characters/raijin/side.svg",
  43623. extra: 1529/613,
  43624. bottom: 337/1866
  43625. }
  43626. },
  43627. },
  43628. [
  43629. {
  43630. name: "Normal",
  43631. height: math.unit(10, "feet"),
  43632. default: true
  43633. },
  43634. ]
  43635. ))
  43636. characterMakers.push(() => makeCharacter(
  43637. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43638. {
  43639. side: {
  43640. height: math.unit(9, "feet"),
  43641. name: "Side",
  43642. image: {
  43643. source: "./media/characters/nilghais/side.svg",
  43644. extra: 1047/744,
  43645. bottom: 91/1138
  43646. }
  43647. },
  43648. head: {
  43649. height: math.unit(3.14, "feet"),
  43650. name: "Head",
  43651. image: {
  43652. source: "./media/characters/nilghais/head.svg"
  43653. }
  43654. },
  43655. mouth: {
  43656. height: math.unit(4.6, "feet"),
  43657. name: "Mouth",
  43658. image: {
  43659. source: "./media/characters/nilghais/mouth.svg"
  43660. }
  43661. },
  43662. wings: {
  43663. height: math.unit(24, "feet"),
  43664. name: "Wings",
  43665. image: {
  43666. source: "./media/characters/nilghais/wings.svg"
  43667. }
  43668. },
  43669. ass: {
  43670. height: math.unit(6.12, "feet"),
  43671. name: "Ass",
  43672. image: {
  43673. source: "./media/characters/nilghais/ass.svg"
  43674. }
  43675. },
  43676. },
  43677. [
  43678. {
  43679. name: "Normal",
  43680. height: math.unit(9, "feet"),
  43681. default: true
  43682. },
  43683. ]
  43684. ))
  43685. characterMakers.push(() => makeCharacter(
  43686. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43687. {
  43688. regular: {
  43689. height: math.unit(16 + 2/12, "feet"),
  43690. weight: math.unit(2300, "lb"),
  43691. name: "Regular",
  43692. image: {
  43693. source: "./media/characters/zolgar/regular.svg",
  43694. extra: 1246/1004,
  43695. bottom: 124/1370
  43696. }
  43697. },
  43698. boxers: {
  43699. height: math.unit(16 + 2/12, "feet"),
  43700. weight: math.unit(2300, "lb"),
  43701. name: "Boxers",
  43702. image: {
  43703. source: "./media/characters/zolgar/boxers.svg",
  43704. extra: 1246/1004,
  43705. bottom: 124/1370
  43706. }
  43707. },
  43708. armored: {
  43709. height: math.unit(16 + 2/12, "feet"),
  43710. weight: math.unit(2300, "lb"),
  43711. name: "Armored",
  43712. image: {
  43713. source: "./media/characters/zolgar/armored.svg",
  43714. extra: 1246/1004,
  43715. bottom: 124/1370
  43716. }
  43717. },
  43718. goth: {
  43719. height: math.unit(16 + 2/12, "feet"),
  43720. weight: math.unit(2300, "lb"),
  43721. name: "Goth",
  43722. image: {
  43723. source: "./media/characters/zolgar/goth.svg",
  43724. extra: 1246/1004,
  43725. bottom: 124/1370
  43726. }
  43727. },
  43728. },
  43729. [
  43730. {
  43731. name: "Shrunken Down",
  43732. height: math.unit(9 + 2/12, "feet")
  43733. },
  43734. {
  43735. name: "Normal",
  43736. height: math.unit(16 + 2/12, "feet"),
  43737. default: true
  43738. },
  43739. ]
  43740. ))
  43741. characterMakers.push(() => makeCharacter(
  43742. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43743. {
  43744. front: {
  43745. height: math.unit(6, "feet"),
  43746. weight: math.unit(168, "lb"),
  43747. name: "Front",
  43748. image: {
  43749. source: "./media/characters/luca/front.svg",
  43750. extra: 841/667,
  43751. bottom: 102/943
  43752. }
  43753. },
  43754. },
  43755. [
  43756. {
  43757. name: "Normal",
  43758. height: math.unit(6, "feet"),
  43759. default: true
  43760. },
  43761. ]
  43762. ))
  43763. characterMakers.push(() => makeCharacter(
  43764. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43765. {
  43766. side: {
  43767. height: math.unit(7 + 3/12, "feet"),
  43768. weight: math.unit(312, "lb"),
  43769. name: "Side",
  43770. image: {
  43771. source: "./media/characters/zezo/side.svg",
  43772. extra: 1192/1067,
  43773. bottom: 63/1255
  43774. }
  43775. },
  43776. },
  43777. [
  43778. {
  43779. name: "Normal",
  43780. height: math.unit(7 + 3/12, "feet"),
  43781. default: true
  43782. },
  43783. ]
  43784. ))
  43785. characterMakers.push(() => makeCharacter(
  43786. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43787. {
  43788. front: {
  43789. height: math.unit(5 + 5/12, "feet"),
  43790. weight: math.unit(170, "lb"),
  43791. name: "Front",
  43792. image: {
  43793. source: "./media/characters/mayso/front.svg",
  43794. extra: 1215/1108,
  43795. bottom: 16/1231
  43796. }
  43797. },
  43798. },
  43799. [
  43800. {
  43801. name: "Normal",
  43802. height: math.unit(5 + 5/12, "feet"),
  43803. default: true
  43804. },
  43805. ]
  43806. ))
  43807. characterMakers.push(() => makeCharacter(
  43808. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43809. {
  43810. front: {
  43811. height: math.unit(4 + 3/12, "feet"),
  43812. weight: math.unit(80, "lb"),
  43813. name: "Front",
  43814. image: {
  43815. source: "./media/characters/hess/front.svg",
  43816. extra: 1200/1123,
  43817. bottom: 16/1216
  43818. }
  43819. },
  43820. },
  43821. [
  43822. {
  43823. name: "Normal",
  43824. height: math.unit(4 + 3/12, "feet"),
  43825. default: true
  43826. },
  43827. ]
  43828. ))
  43829. characterMakers.push(() => makeCharacter(
  43830. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43831. {
  43832. front: {
  43833. height: math.unit(1.9, "meters"),
  43834. name: "Front",
  43835. image: {
  43836. source: "./media/characters/ashgar/front.svg",
  43837. extra: 1177/1146,
  43838. bottom: 99/1276
  43839. }
  43840. },
  43841. back: {
  43842. height: math.unit(1.9, "meters"),
  43843. name: "Back",
  43844. image: {
  43845. source: "./media/characters/ashgar/back.svg",
  43846. extra: 1201/1183,
  43847. bottom: 53/1254
  43848. }
  43849. },
  43850. feral: {
  43851. height: math.unit(1.4, "meters"),
  43852. name: "Feral",
  43853. image: {
  43854. source: "./media/characters/ashgar/feral.svg",
  43855. extra: 370/345,
  43856. bottom: 45/415
  43857. }
  43858. },
  43859. },
  43860. [
  43861. {
  43862. name: "Normal",
  43863. height: math.unit(1.9, "meters"),
  43864. default: true
  43865. },
  43866. ]
  43867. ))
  43868. characterMakers.push(() => makeCharacter(
  43869. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43870. {
  43871. regular: {
  43872. height: math.unit(6, "feet"),
  43873. weight: math.unit(220, "lb"),
  43874. name: "Regular",
  43875. image: {
  43876. source: "./media/characters/phillip/regular.svg",
  43877. extra: 1373/1277,
  43878. bottom: 75/1448
  43879. }
  43880. },
  43881. dressed: {
  43882. height: math.unit(6, "feet"),
  43883. weight: math.unit(220, "lb"),
  43884. name: "Dressed",
  43885. image: {
  43886. source: "./media/characters/phillip/dressed.svg",
  43887. extra: 1373/1277,
  43888. bottom: 75/1448
  43889. }
  43890. },
  43891. paw: {
  43892. height: math.unit(1.44, "feet"),
  43893. name: "Paw",
  43894. image: {
  43895. source: "./media/characters/phillip/paw.svg"
  43896. }
  43897. },
  43898. },
  43899. [
  43900. {
  43901. name: "Normal",
  43902. height: math.unit(6, "feet"),
  43903. default: true
  43904. },
  43905. ]
  43906. ))
  43907. characterMakers.push(() => makeCharacter(
  43908. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43909. {
  43910. side: {
  43911. height: math.unit(42, "feet"),
  43912. name: "Side",
  43913. image: {
  43914. source: "./media/characters/uvula/side.svg",
  43915. extra: 683/586,
  43916. bottom: 60/743
  43917. }
  43918. },
  43919. front: {
  43920. height: math.unit(42, "feet"),
  43921. name: "Front",
  43922. image: {
  43923. source: "./media/characters/uvula/front.svg",
  43924. extra: 705/613,
  43925. bottom: 54/759
  43926. }
  43927. },
  43928. maw: {
  43929. height: math.unit(23.5, "feet"),
  43930. name: "Maw",
  43931. image: {
  43932. source: "./media/characters/uvula/maw.svg"
  43933. }
  43934. },
  43935. },
  43936. [
  43937. {
  43938. name: "Original Size",
  43939. height: math.unit(14, "inches")
  43940. },
  43941. {
  43942. name: "Human Size",
  43943. height: math.unit(6, "feet")
  43944. },
  43945. {
  43946. name: "Big",
  43947. height: math.unit(42, "feet"),
  43948. default: true
  43949. },
  43950. {
  43951. name: "Bigger",
  43952. height: math.unit(100, "feet")
  43953. },
  43954. ]
  43955. ))
  43956. characterMakers.push(() => makeCharacter(
  43957. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43958. {
  43959. front: {
  43960. height: math.unit(5 + 11/12, "feet"),
  43961. name: "Front",
  43962. image: {
  43963. source: "./media/characters/lannah/front.svg",
  43964. extra: 1208/1113,
  43965. bottom: 97/1305
  43966. }
  43967. },
  43968. },
  43969. [
  43970. {
  43971. name: "Normal",
  43972. height: math.unit(5 + 11/12, "feet"),
  43973. default: true
  43974. },
  43975. ]
  43976. ))
  43977. characterMakers.push(() => makeCharacter(
  43978. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43979. {
  43980. front: {
  43981. height: math.unit(6 + 3/12, "feet"),
  43982. weight: math.unit(3.5, "tons"),
  43983. name: "Front",
  43984. image: {
  43985. source: "./media/characters/emberflame/front.svg",
  43986. extra: 1198/672,
  43987. bottom: 82/1280
  43988. }
  43989. },
  43990. side: {
  43991. height: math.unit(6 + 3/12, "feet"),
  43992. weight: math.unit(3.5, "tons"),
  43993. name: "Side",
  43994. image: {
  43995. source: "./media/characters/emberflame/side.svg",
  43996. extra: 938/527,
  43997. bottom: 56/994
  43998. }
  43999. },
  44000. },
  44001. [
  44002. {
  44003. name: "Normal",
  44004. height: math.unit(6 + 3/12, "feet"),
  44005. default: true
  44006. },
  44007. ]
  44008. ))
  44009. characterMakers.push(() => makeCharacter(
  44010. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44011. {
  44012. side: {
  44013. height: math.unit(17.5, "feet"),
  44014. weight: math.unit(35, "tons"),
  44015. name: "Side",
  44016. image: {
  44017. source: "./media/characters/sophie-ambrose/side.svg",
  44018. extra: 1573/1242,
  44019. bottom: 71/1644
  44020. }
  44021. },
  44022. maw: {
  44023. height: math.unit(7.4, "feet"),
  44024. name: "Maw",
  44025. image: {
  44026. source: "./media/characters/sophie-ambrose/maw.svg"
  44027. }
  44028. },
  44029. },
  44030. [
  44031. {
  44032. name: "Normal",
  44033. height: math.unit(17.5, "feet"),
  44034. default: true
  44035. },
  44036. ]
  44037. ))
  44038. characterMakers.push(() => makeCharacter(
  44039. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44040. {
  44041. front: {
  44042. height: math.unit(280, "feet"),
  44043. weight: math.unit(550, "tons"),
  44044. name: "Front",
  44045. image: {
  44046. source: "./media/characters/king-mugi/front.svg",
  44047. extra: 1102/947,
  44048. bottom: 104/1206
  44049. }
  44050. },
  44051. },
  44052. [
  44053. {
  44054. name: "King Mugi",
  44055. height: math.unit(280, "feet"),
  44056. default: true
  44057. },
  44058. ]
  44059. ))
  44060. characterMakers.push(() => makeCharacter(
  44061. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44062. {
  44063. front: {
  44064. height: math.unit(64, "meters"),
  44065. name: "Front",
  44066. image: {
  44067. source: "./media/characters/nova-fox/front.svg",
  44068. extra: 1310/1246,
  44069. bottom: 65/1375
  44070. }
  44071. },
  44072. },
  44073. [
  44074. {
  44075. name: "Macro",
  44076. height: math.unit(64, "meters"),
  44077. default: true
  44078. },
  44079. ]
  44080. ))
  44081. characterMakers.push(() => makeCharacter(
  44082. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44083. {
  44084. front: {
  44085. height: math.unit(6 + 3/12, "feet"),
  44086. weight: math.unit(170, "lb"),
  44087. name: "Front",
  44088. image: {
  44089. source: "./media/characters/sam-bat/front.svg",
  44090. extra: 1601/1411,
  44091. bottom: 125/1726
  44092. }
  44093. },
  44094. back: {
  44095. height: math.unit(6 + 3/12, "feet"),
  44096. weight: math.unit(170, "lb"),
  44097. name: "Back",
  44098. image: {
  44099. source: "./media/characters/sam-bat/back.svg",
  44100. extra: 1577/1405,
  44101. bottom: 58/1635
  44102. }
  44103. },
  44104. },
  44105. [
  44106. {
  44107. name: "Normal",
  44108. height: math.unit(6 + 3/12, "feet"),
  44109. default: true
  44110. },
  44111. ]
  44112. ))
  44113. characterMakers.push(() => makeCharacter(
  44114. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44115. {
  44116. front: {
  44117. height: math.unit(59, "feet"),
  44118. weight: math.unit(40000, "lb"),
  44119. name: "Front",
  44120. image: {
  44121. source: "./media/characters/inari/front.svg",
  44122. extra: 1884/1350,
  44123. bottom: 95/1979
  44124. }
  44125. },
  44126. },
  44127. [
  44128. {
  44129. name: "Gigantamax",
  44130. height: math.unit(59, "feet"),
  44131. default: true
  44132. },
  44133. ]
  44134. ))
  44135. characterMakers.push(() => makeCharacter(
  44136. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44137. {
  44138. front: {
  44139. height: math.unit(5 + 8/12, "feet"),
  44140. name: "Front",
  44141. image: {
  44142. source: "./media/characters/elizabeth/front.svg",
  44143. extra: 1395/1298,
  44144. bottom: 54/1449
  44145. }
  44146. },
  44147. mouth: {
  44148. height: math.unit(1.97, "feet"),
  44149. name: "Mouth",
  44150. image: {
  44151. source: "./media/characters/elizabeth/mouth.svg"
  44152. }
  44153. },
  44154. foot: {
  44155. height: math.unit(1.17, "feet"),
  44156. name: "Foot",
  44157. image: {
  44158. source: "./media/characters/elizabeth/foot.svg"
  44159. }
  44160. },
  44161. },
  44162. [
  44163. {
  44164. name: "Normal",
  44165. height: math.unit(5 + 8/12, "feet"),
  44166. default: true
  44167. },
  44168. {
  44169. name: "Minimacro",
  44170. height: math.unit(18, "feet")
  44171. },
  44172. {
  44173. name: "Macro",
  44174. height: math.unit(180, "feet")
  44175. },
  44176. ]
  44177. ))
  44178. characterMakers.push(() => makeCharacter(
  44179. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44180. {
  44181. front: {
  44182. height: math.unit(5 + 2/12, "feet"),
  44183. name: "Front",
  44184. image: {
  44185. source: "./media/characters/october-gossamer/front.svg",
  44186. extra: 505/454,
  44187. bottom: 7/512
  44188. }
  44189. },
  44190. back: {
  44191. height: math.unit(5 + 2/12, "feet"),
  44192. name: "Back",
  44193. image: {
  44194. source: "./media/characters/october-gossamer/back.svg",
  44195. extra: 501/454,
  44196. bottom: 11/512
  44197. }
  44198. },
  44199. },
  44200. [
  44201. {
  44202. name: "Normal",
  44203. height: math.unit(5 + 2/12, "feet"),
  44204. default: true
  44205. },
  44206. ]
  44207. ))
  44208. characterMakers.push(() => makeCharacter(
  44209. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44210. {
  44211. front: {
  44212. height: math.unit(5, "feet"),
  44213. name: "Front",
  44214. image: {
  44215. source: "./media/characters/epiglottis/front.svg",
  44216. extra: 923/849,
  44217. bottom: 17/940
  44218. }
  44219. },
  44220. },
  44221. [
  44222. {
  44223. name: "Original Size",
  44224. height: math.unit(10, "inches")
  44225. },
  44226. {
  44227. name: "Human Size",
  44228. height: math.unit(5, "feet"),
  44229. default: true
  44230. },
  44231. {
  44232. name: "Big",
  44233. height: math.unit(25, "feet")
  44234. },
  44235. {
  44236. name: "Bigger",
  44237. height: math.unit(50, "feet")
  44238. },
  44239. {
  44240. name: "oh lawd",
  44241. height: math.unit(75, "feet")
  44242. },
  44243. ]
  44244. ))
  44245. characterMakers.push(() => makeCharacter(
  44246. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44247. {
  44248. front: {
  44249. height: math.unit(2 + 4/12, "feet"),
  44250. weight: math.unit(60, "lb"),
  44251. name: "Front",
  44252. image: {
  44253. source: "./media/characters/lerm/front.svg",
  44254. extra: 796/790,
  44255. bottom: 79/875
  44256. }
  44257. },
  44258. },
  44259. [
  44260. {
  44261. name: "Normal",
  44262. height: math.unit(2 + 4/12, "feet"),
  44263. default: true
  44264. },
  44265. ]
  44266. ))
  44267. characterMakers.push(() => makeCharacter(
  44268. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44269. {
  44270. front: {
  44271. height: math.unit(5.5, "feet"),
  44272. weight: math.unit(130, "lb"),
  44273. name: "Front",
  44274. image: {
  44275. source: "./media/characters/xena-nebadon/front.svg",
  44276. extra: 1828/1730,
  44277. bottom: 79/1907
  44278. }
  44279. },
  44280. },
  44281. [
  44282. {
  44283. name: "Tiny Puppy",
  44284. height: math.unit(3, "inches")
  44285. },
  44286. {
  44287. name: "Normal",
  44288. height: math.unit(5.5, "feet"),
  44289. default: true
  44290. },
  44291. {
  44292. name: "Lotta Lady",
  44293. height: math.unit(12, "feet")
  44294. },
  44295. {
  44296. name: "Pretty Big",
  44297. height: math.unit(100, "feet")
  44298. },
  44299. {
  44300. name: "Big",
  44301. height: math.unit(500, "feet")
  44302. },
  44303. {
  44304. name: "Skyscraper Toys",
  44305. height: math.unit(2500, "feet")
  44306. },
  44307. {
  44308. name: "Plane Catcher",
  44309. height: math.unit(8, "miles")
  44310. },
  44311. {
  44312. name: "Planet Toys",
  44313. height: math.unit(15, "earths")
  44314. },
  44315. {
  44316. name: "Stardust",
  44317. height: math.unit(0.25, "galaxies")
  44318. },
  44319. {
  44320. name: "Snacks",
  44321. height: math.unit(70, "universes")
  44322. },
  44323. ]
  44324. ))
  44325. characterMakers.push(() => makeCharacter(
  44326. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44327. {
  44328. front: {
  44329. height: math.unit(1.6, "meters"),
  44330. weight: math.unit(60, "kg"),
  44331. name: "Front",
  44332. image: {
  44333. source: "./media/characters/bounty/front.svg",
  44334. extra: 1426/1308,
  44335. bottom: 15/1441
  44336. }
  44337. },
  44338. back: {
  44339. height: math.unit(1.6, "meters"),
  44340. weight: math.unit(60, "kg"),
  44341. name: "Back",
  44342. image: {
  44343. source: "./media/characters/bounty/back.svg",
  44344. extra: 1417/1307,
  44345. bottom: 8/1425
  44346. }
  44347. },
  44348. },
  44349. [
  44350. {
  44351. name: "Normal",
  44352. height: math.unit(1.6, "meters"),
  44353. default: true
  44354. },
  44355. {
  44356. name: "Macro",
  44357. height: math.unit(300, "meters")
  44358. },
  44359. ]
  44360. ))
  44361. characterMakers.push(() => makeCharacter(
  44362. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44363. {
  44364. front: {
  44365. height: math.unit(2 + 8/12, "feet"),
  44366. weight: math.unit(15, "lb"),
  44367. name: "Front",
  44368. image: {
  44369. source: "./media/characters/mochi/front.svg",
  44370. extra: 1022/852,
  44371. bottom: 435/1457
  44372. }
  44373. },
  44374. back: {
  44375. height: math.unit(2 + 8/12, "feet"),
  44376. weight: math.unit(15, "lb"),
  44377. name: "Back",
  44378. image: {
  44379. source: "./media/characters/mochi/back.svg",
  44380. extra: 1335/1119,
  44381. bottom: 39/1374
  44382. }
  44383. },
  44384. bird: {
  44385. height: math.unit(2 + 8/12, "feet"),
  44386. weight: math.unit(15, "lb"),
  44387. name: "Bird",
  44388. image: {
  44389. source: "./media/characters/mochi/bird.svg",
  44390. extra: 1251/1113,
  44391. bottom: 178/1429
  44392. }
  44393. },
  44394. kaiju: {
  44395. height: math.unit(154, "feet"),
  44396. weight: math.unit(1e7, "lb"),
  44397. name: "Kaiju",
  44398. image: {
  44399. source: "./media/characters/mochi/kaiju.svg",
  44400. extra: 460/324,
  44401. bottom: 40/500
  44402. }
  44403. },
  44404. head: {
  44405. height: math.unit(1.21, "feet"),
  44406. name: "Head",
  44407. image: {
  44408. source: "./media/characters/mochi/head.svg"
  44409. }
  44410. },
  44411. alternateTail: {
  44412. height: math.unit(2 + 8/12, "feet"),
  44413. weight: math.unit(45, "lb"),
  44414. name: "Alternate Tail",
  44415. image: {
  44416. source: "./media/characters/mochi/alternate-tail.svg",
  44417. extra: 139/76,
  44418. bottom: 45/184
  44419. }
  44420. },
  44421. },
  44422. [
  44423. {
  44424. name: "Micro",
  44425. height: math.unit(2, "inches")
  44426. },
  44427. {
  44428. name: "Normal",
  44429. height: math.unit(2 + 8/12, "feet"),
  44430. default: true
  44431. },
  44432. {
  44433. name: "Macro",
  44434. height: math.unit(106, "feet")
  44435. },
  44436. ]
  44437. ))
  44438. characterMakers.push(() => makeCharacter(
  44439. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44440. {
  44441. front: {
  44442. height: math.unit(5.67, "feet"),
  44443. weight: math.unit(135, "lb"),
  44444. name: "Front",
  44445. image: {
  44446. source: "./media/characters/sarel/front.svg",
  44447. extra: 865/788,
  44448. bottom: 97/962
  44449. }
  44450. },
  44451. back: {
  44452. height: math.unit(5.67, "feet"),
  44453. weight: math.unit(135, "lb"),
  44454. name: "Back",
  44455. image: {
  44456. source: "./media/characters/sarel/back.svg",
  44457. extra: 857/777,
  44458. bottom: 32/889
  44459. }
  44460. },
  44461. chozoan: {
  44462. height: math.unit(5.67, "feet"),
  44463. weight: math.unit(135, "lb"),
  44464. name: "Chozoan",
  44465. image: {
  44466. source: "./media/characters/sarel/chozoan.svg",
  44467. extra: 865/788,
  44468. bottom: 97/962
  44469. }
  44470. },
  44471. current: {
  44472. height: math.unit(5.67, "feet"),
  44473. weight: math.unit(135, "lb"),
  44474. name: "Current",
  44475. image: {
  44476. source: "./media/characters/sarel/current.svg",
  44477. extra: 865/788,
  44478. bottom: 97/962
  44479. }
  44480. },
  44481. head: {
  44482. height: math.unit(1.77, "feet"),
  44483. name: "Head",
  44484. image: {
  44485. source: "./media/characters/sarel/head.svg"
  44486. }
  44487. },
  44488. claws: {
  44489. height: math.unit(1.8, "feet"),
  44490. name: "Claws",
  44491. image: {
  44492. source: "./media/characters/sarel/claws.svg"
  44493. }
  44494. },
  44495. clawsAlt: {
  44496. height: math.unit(1.8, "feet"),
  44497. name: "Claws-alt",
  44498. image: {
  44499. source: "./media/characters/sarel/claws-alt.svg"
  44500. }
  44501. },
  44502. },
  44503. [
  44504. {
  44505. name: "Normal",
  44506. height: math.unit(5.67, "feet"),
  44507. default: true
  44508. },
  44509. ]
  44510. ))
  44511. characterMakers.push(() => makeCharacter(
  44512. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44513. {
  44514. front: {
  44515. height: math.unit(5500, "feet"),
  44516. name: "Front",
  44517. image: {
  44518. source: "./media/characters/alyonia/front.svg",
  44519. extra: 1200/1135,
  44520. bottom: 29/1229
  44521. }
  44522. },
  44523. back: {
  44524. height: math.unit(5500, "feet"),
  44525. name: "Back",
  44526. image: {
  44527. source: "./media/characters/alyonia/back.svg",
  44528. extra: 1205/1138,
  44529. bottom: 10/1215
  44530. }
  44531. },
  44532. },
  44533. [
  44534. {
  44535. name: "Small",
  44536. height: math.unit(10, "feet")
  44537. },
  44538. {
  44539. name: "Macro",
  44540. height: math.unit(500, "feet")
  44541. },
  44542. {
  44543. name: "Mega Macro",
  44544. height: math.unit(5500, "feet"),
  44545. default: true
  44546. },
  44547. {
  44548. name: "Mega Macro+",
  44549. height: math.unit(500000, "feet")
  44550. },
  44551. {
  44552. name: "Giga Macro",
  44553. height: math.unit(3000, "miles")
  44554. },
  44555. {
  44556. name: "Tera Macro",
  44557. height: math.unit(2.8e6, "miles")
  44558. },
  44559. {
  44560. name: "Galactic",
  44561. height: math.unit(120000, "lightyears")
  44562. },
  44563. ]
  44564. ))
  44565. characterMakers.push(() => makeCharacter(
  44566. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44567. {
  44568. werewolf: {
  44569. height: math.unit(8, "feet"),
  44570. weight: math.unit(425, "lb"),
  44571. name: "Werewolf",
  44572. image: {
  44573. source: "./media/characters/autumn/werewolf.svg",
  44574. extra: 2154/2031,
  44575. bottom: 160/2314
  44576. }
  44577. },
  44578. human: {
  44579. height: math.unit(5 + 8/12, "feet"),
  44580. weight: math.unit(150, "lb"),
  44581. name: "Human",
  44582. image: {
  44583. source: "./media/characters/autumn/human.svg",
  44584. extra: 1200/1149,
  44585. bottom: 30/1230
  44586. }
  44587. },
  44588. },
  44589. [
  44590. {
  44591. name: "Normal",
  44592. height: math.unit(8, "feet"),
  44593. default: true
  44594. },
  44595. ]
  44596. ))
  44597. characterMakers.push(() => makeCharacter(
  44598. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44599. {
  44600. front: {
  44601. height: math.unit(8 + 5/12, "feet"),
  44602. weight: math.unit(825, "lb"),
  44603. name: "Front",
  44604. image: {
  44605. source: "./media/characters/cobalt-charizard/front.svg",
  44606. extra: 1268/1155,
  44607. bottom: 122/1390
  44608. }
  44609. },
  44610. side: {
  44611. height: math.unit(8 + 5/12, "feet"),
  44612. weight: math.unit(825, "lb"),
  44613. name: "Side",
  44614. image: {
  44615. source: "./media/characters/cobalt-charizard/side.svg",
  44616. extra: 1348/1257,
  44617. bottom: 58/1406
  44618. }
  44619. },
  44620. gMax: {
  44621. height: math.unit(134 + 11/12, "feet"),
  44622. name: "G-Max",
  44623. image: {
  44624. source: "./media/characters/cobalt-charizard/g-max.svg",
  44625. extra: 1835/1541,
  44626. bottom: 151/1986
  44627. }
  44628. },
  44629. },
  44630. [
  44631. {
  44632. name: "Normal",
  44633. height: math.unit(8 + 5/12, "feet"),
  44634. default: true
  44635. },
  44636. ]
  44637. ))
  44638. characterMakers.push(() => makeCharacter(
  44639. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44640. {
  44641. front: {
  44642. height: math.unit(6 + 3/12, "feet"),
  44643. weight: math.unit(210, "lb"),
  44644. name: "Front",
  44645. image: {
  44646. source: "./media/characters/stella/front.svg",
  44647. extra: 3549/3335,
  44648. bottom: 51/3600
  44649. }
  44650. },
  44651. },
  44652. [
  44653. {
  44654. name: "Normal",
  44655. height: math.unit(6 + 3/12, "feet"),
  44656. default: true
  44657. },
  44658. ]
  44659. ))
  44660. characterMakers.push(() => makeCharacter(
  44661. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44662. {
  44663. front: {
  44664. height: math.unit(5, "feet"),
  44665. weight: math.unit(90, "lb"),
  44666. name: "Front",
  44667. image: {
  44668. source: "./media/characters/riley-bishop/front.svg",
  44669. extra: 1450/1428,
  44670. bottom: 152/1602
  44671. }
  44672. },
  44673. },
  44674. [
  44675. {
  44676. name: "Normal",
  44677. height: math.unit(5, "feet"),
  44678. default: true
  44679. },
  44680. ]
  44681. ))
  44682. characterMakers.push(() => makeCharacter(
  44683. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44684. {
  44685. side: {
  44686. height: math.unit(8 + 2/12, "feet"),
  44687. weight: math.unit(500, "kg"),
  44688. name: "Side",
  44689. image: {
  44690. source: "./media/characters/theo-arcanine/side.svg",
  44691. extra: 1342/1074,
  44692. bottom: 111/1453
  44693. }
  44694. },
  44695. },
  44696. [
  44697. {
  44698. name: "Normal",
  44699. height: math.unit(8 + 2/12, "feet"),
  44700. default: true
  44701. },
  44702. ]
  44703. ))
  44704. characterMakers.push(() => makeCharacter(
  44705. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44706. {
  44707. front: {
  44708. height: math.unit(4, "feet"),
  44709. name: "Front",
  44710. image: {
  44711. source: "./media/characters/kali/front.svg",
  44712. extra: 1921/1357,
  44713. bottom: 70/1991
  44714. }
  44715. },
  44716. },
  44717. [
  44718. {
  44719. name: "Normal",
  44720. height: math.unit(4, "feet"),
  44721. default: true
  44722. },
  44723. {
  44724. name: "Macro",
  44725. height: math.unit(32, "meters")
  44726. },
  44727. {
  44728. name: "Macro+",
  44729. height: math.unit(150, "meters")
  44730. },
  44731. {
  44732. name: "Megamacro",
  44733. height: math.unit(7500, "meters")
  44734. },
  44735. {
  44736. name: "Megamacro+",
  44737. height: math.unit(80, "kilometers")
  44738. },
  44739. ]
  44740. ))
  44741. characterMakers.push(() => makeCharacter(
  44742. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44743. {
  44744. side: {
  44745. height: math.unit(5 + 11/12, "feet"),
  44746. weight: math.unit(236, "lb"),
  44747. name: "Side",
  44748. image: {
  44749. source: "./media/characters/gapp/side.svg",
  44750. extra: 775/340,
  44751. bottom: 58/833
  44752. }
  44753. },
  44754. mouth: {
  44755. height: math.unit(2.98, "feet"),
  44756. name: "Mouth",
  44757. image: {
  44758. source: "./media/characters/gapp/mouth.svg"
  44759. }
  44760. },
  44761. },
  44762. [
  44763. {
  44764. name: "Normal",
  44765. height: math.unit(5 + 1/12, "feet"),
  44766. default: true
  44767. },
  44768. ]
  44769. ))
  44770. characterMakers.push(() => makeCharacter(
  44771. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44772. {
  44773. front: {
  44774. height: math.unit(6, "feet"),
  44775. name: "Front",
  44776. image: {
  44777. source: "./media/characters/persephone/front.svg",
  44778. extra: 1895/1717,
  44779. bottom: 96/1991
  44780. }
  44781. },
  44782. back: {
  44783. height: math.unit(6, "feet"),
  44784. name: "Back",
  44785. image: {
  44786. source: "./media/characters/persephone/back.svg",
  44787. extra: 1868/1679,
  44788. bottom: 26/1894
  44789. }
  44790. },
  44791. casual: {
  44792. height: math.unit(6, "feet"),
  44793. name: "Casual",
  44794. image: {
  44795. source: "./media/characters/persephone/casual.svg",
  44796. extra: 1713/1541,
  44797. bottom: 76/1789
  44798. }
  44799. },
  44800. },
  44801. [
  44802. {
  44803. name: "Human Size",
  44804. height: math.unit(6, "feet")
  44805. },
  44806. {
  44807. name: "Big Steppy",
  44808. height: math.unit(600, "meters"),
  44809. default: true
  44810. },
  44811. {
  44812. name: "Galaxy Brain",
  44813. height: math.unit(1, "zettameter")
  44814. },
  44815. ]
  44816. ))
  44817. characterMakers.push(() => makeCharacter(
  44818. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44819. {
  44820. front: {
  44821. height: math.unit(1.85, "meters"),
  44822. name: "Front",
  44823. image: {
  44824. source: "./media/characters/riley-foxthing/front.svg",
  44825. extra: 1495/1354,
  44826. bottom: 122/1617
  44827. }
  44828. },
  44829. frontAlt: {
  44830. height: math.unit(1.85, "meters"),
  44831. name: "Front (Alt)",
  44832. image: {
  44833. source: "./media/characters/riley-foxthing/front-alt.svg",
  44834. extra: 1572/1389,
  44835. bottom: 116/1688
  44836. }
  44837. },
  44838. },
  44839. [
  44840. {
  44841. name: "Normal Sized",
  44842. height: math.unit(1.85, "meters"),
  44843. default: true
  44844. },
  44845. {
  44846. name: "Quite Sizable",
  44847. height: math.unit(5, "meters")
  44848. },
  44849. {
  44850. name: "Rather Large",
  44851. height: math.unit(20, "meters")
  44852. },
  44853. {
  44854. name: "Macro",
  44855. height: math.unit(450, "meters")
  44856. },
  44857. {
  44858. name: "Giga",
  44859. height: math.unit(5, "km")
  44860. },
  44861. ]
  44862. ))
  44863. characterMakers.push(() => makeCharacter(
  44864. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44865. {
  44866. front: {
  44867. height: math.unit(6, "feet"),
  44868. weight: math.unit(200, "lb"),
  44869. name: "Front",
  44870. image: {
  44871. source: "./media/characters/blizzard/front.svg",
  44872. extra: 1136/990,
  44873. bottom: 136/1272
  44874. }
  44875. },
  44876. back: {
  44877. height: math.unit(6, "feet"),
  44878. weight: math.unit(200, "lb"),
  44879. name: "Back",
  44880. image: {
  44881. source: "./media/characters/blizzard/back.svg",
  44882. extra: 1175/1034,
  44883. bottom: 97/1272
  44884. }
  44885. },
  44886. sitting: {
  44887. height: math.unit(3.725, "feet"),
  44888. weight: math.unit(200, "lb"),
  44889. name: "Sitting",
  44890. image: {
  44891. source: "./media/characters/blizzard/sitting.svg",
  44892. extra: 581/485,
  44893. bottom: 90/671
  44894. }
  44895. },
  44896. frontWizard: {
  44897. height: math.unit(7.9, "feet"),
  44898. weight: math.unit(200, "lb"),
  44899. name: "Front (Wizard)",
  44900. image: {
  44901. source: "./media/characters/blizzard/front-wizard.svg"
  44902. }
  44903. },
  44904. backWizard: {
  44905. height: math.unit(7.9, "feet"),
  44906. weight: math.unit(200, "lb"),
  44907. name: "Back (Wizard)",
  44908. image: {
  44909. source: "./media/characters/blizzard/back-wizard.svg"
  44910. }
  44911. },
  44912. frontNsfw: {
  44913. height: math.unit(6, "feet"),
  44914. weight: math.unit(200, "lb"),
  44915. name: "Front (NSFW)",
  44916. image: {
  44917. source: "./media/characters/blizzard/front-nsfw.svg",
  44918. extra: 1136/990,
  44919. bottom: 136/1272
  44920. }
  44921. },
  44922. backNsfw: {
  44923. height: math.unit(6, "feet"),
  44924. weight: math.unit(200, "lb"),
  44925. name: "Back (NSFW)",
  44926. image: {
  44927. source: "./media/characters/blizzard/back-nsfw.svg",
  44928. extra: 1175/1034,
  44929. bottom: 97/1272
  44930. }
  44931. },
  44932. sittingNsfw: {
  44933. height: math.unit(3.725, "feet"),
  44934. weight: math.unit(200, "lb"),
  44935. name: "Sitting (NSFW)",
  44936. image: {
  44937. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44938. extra: 581/485,
  44939. bottom: 90/671
  44940. }
  44941. },
  44942. wizardFrontNsfw: {
  44943. height: math.unit(7.9, "feet"),
  44944. weight: math.unit(200, "lb"),
  44945. name: "Wizard (Front, NSFW)",
  44946. image: {
  44947. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44948. }
  44949. },
  44950. },
  44951. [
  44952. {
  44953. name: "Normal",
  44954. height: math.unit(6, "feet"),
  44955. default: true
  44956. },
  44957. ]
  44958. ))
  44959. characterMakers.push(() => makeCharacter(
  44960. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44961. {
  44962. front: {
  44963. height: math.unit(5 + 2/12, "feet"),
  44964. name: "Front",
  44965. image: {
  44966. source: "./media/characters/lumi/front.svg",
  44967. extra: 1328/1268,
  44968. bottom: 103/1431
  44969. }
  44970. },
  44971. back: {
  44972. height: math.unit(5 + 2/12, "feet"),
  44973. name: "Back",
  44974. image: {
  44975. source: "./media/characters/lumi/back.svg",
  44976. extra: 1381/1327,
  44977. bottom: 43/1424
  44978. }
  44979. },
  44980. },
  44981. [
  44982. {
  44983. name: "Normal",
  44984. height: math.unit(5 + 2/12, "feet"),
  44985. default: true
  44986. },
  44987. ]
  44988. ))
  44989. characterMakers.push(() => makeCharacter(
  44990. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44991. {
  44992. front: {
  44993. height: math.unit(5 + 9/12, "feet"),
  44994. name: "Front",
  44995. image: {
  44996. source: "./media/characters/aliya-cotton/front.svg",
  44997. extra: 577/564,
  44998. bottom: 29/606
  44999. }
  45000. },
  45001. },
  45002. [
  45003. {
  45004. name: "Normal",
  45005. height: math.unit(5 + 9/12, "feet"),
  45006. default: true
  45007. },
  45008. ]
  45009. ))
  45010. characterMakers.push(() => makeCharacter(
  45011. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45012. {
  45013. front: {
  45014. height: math.unit(2.7, "meters"),
  45015. weight: math.unit(25000, "lb"),
  45016. name: "Front",
  45017. image: {
  45018. source: "./media/characters/noah-luxray/front.svg",
  45019. extra: 1644/825,
  45020. bottom: 339/1983
  45021. }
  45022. },
  45023. side: {
  45024. height: math.unit(2.97, "meters"),
  45025. weight: math.unit(25000, "lb"),
  45026. name: "Side",
  45027. image: {
  45028. source: "./media/characters/noah-luxray/side.svg",
  45029. extra: 1319/650,
  45030. bottom: 163/1482
  45031. }
  45032. },
  45033. dick: {
  45034. height: math.unit(7.4, "feet"),
  45035. weight: math.unit(2500, "lb"),
  45036. name: "Dick",
  45037. image: {
  45038. source: "./media/characters/noah-luxray/dick.svg"
  45039. }
  45040. },
  45041. dickAlt: {
  45042. height: math.unit(10.83, "feet"),
  45043. weight: math.unit(2500, "lb"),
  45044. name: "Dick-alt",
  45045. image: {
  45046. source: "./media/characters/noah-luxray/dick-alt.svg"
  45047. }
  45048. },
  45049. },
  45050. [
  45051. {
  45052. name: "BIG",
  45053. height: math.unit(2.7, "meters"),
  45054. default: true
  45055. },
  45056. ]
  45057. ))
  45058. characterMakers.push(() => makeCharacter(
  45059. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45060. {
  45061. standing: {
  45062. height: math.unit(183, "cm"),
  45063. weight: math.unit(68, "kg"),
  45064. name: "Standing",
  45065. image: {
  45066. source: "./media/characters/arion/standing.svg",
  45067. extra: 1869/1807,
  45068. bottom: 93/1962
  45069. }
  45070. },
  45071. reclining: {
  45072. height: math.unit(70.5, "cm"),
  45073. weight: math.unit(68, "lb"),
  45074. name: "Reclining",
  45075. image: {
  45076. source: "./media/characters/arion/reclining.svg",
  45077. extra: 937/870,
  45078. bottom: 63/1000
  45079. }
  45080. },
  45081. },
  45082. [
  45083. {
  45084. name: "Colossus Size, Low",
  45085. height: math.unit(33, "meters"),
  45086. default: true
  45087. },
  45088. {
  45089. name: "Colossus Size, Mid",
  45090. height: math.unit(52, "meters")
  45091. },
  45092. {
  45093. name: "Colossus Size, High",
  45094. height: math.unit(60, "meters")
  45095. },
  45096. {
  45097. name: "Titan Size, Low",
  45098. height: math.unit(91, "meters"),
  45099. },
  45100. {
  45101. name: "Titan Size, Mid",
  45102. height: math.unit(122, "meters")
  45103. },
  45104. {
  45105. name: "Titan Size, High",
  45106. height: math.unit(162, "meters")
  45107. },
  45108. ]
  45109. ))
  45110. characterMakers.push(() => makeCharacter(
  45111. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45112. {
  45113. front: {
  45114. height: math.unit(53, "meters"),
  45115. name: "Front",
  45116. image: {
  45117. source: "./media/characters/stellar-marbey/front.svg",
  45118. extra: 1913/1805,
  45119. bottom: 92/2005
  45120. }
  45121. },
  45122. back: {
  45123. height: math.unit(53, "meters"),
  45124. name: "Back",
  45125. image: {
  45126. source: "./media/characters/stellar-marbey/back.svg",
  45127. extra: 1960/1851,
  45128. bottom: 28/1988
  45129. }
  45130. },
  45131. mouth: {
  45132. height: math.unit(3.5, "meters"),
  45133. name: "Mouth",
  45134. image: {
  45135. source: "./media/characters/stellar-marbey/mouth.svg"
  45136. }
  45137. },
  45138. },
  45139. [
  45140. {
  45141. name: "Macro",
  45142. height: math.unit(53, "meters"),
  45143. default: true
  45144. },
  45145. ]
  45146. ))
  45147. characterMakers.push(() => makeCharacter(
  45148. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45149. {
  45150. front: {
  45151. height: math.unit(8 + 1/12, "feet"),
  45152. weight: math.unit(233, "lb"),
  45153. name: "Front",
  45154. image: {
  45155. source: "./media/characters/matsu/front.svg",
  45156. extra: 832/772,
  45157. bottom: 40/872
  45158. }
  45159. },
  45160. back: {
  45161. height: math.unit(8 + 1/12, "feet"),
  45162. weight: math.unit(233, "lb"),
  45163. name: "Back",
  45164. image: {
  45165. source: "./media/characters/matsu/back.svg",
  45166. extra: 839/780,
  45167. bottom: 47/886
  45168. }
  45169. },
  45170. },
  45171. [
  45172. {
  45173. name: "Normal",
  45174. height: math.unit(8 + 1/12, "feet"),
  45175. default: true
  45176. },
  45177. ]
  45178. ))
  45179. characterMakers.push(() => makeCharacter(
  45180. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45181. {
  45182. front: {
  45183. height: math.unit(4, "feet"),
  45184. weight: math.unit(148, "lb"),
  45185. name: "Front",
  45186. image: {
  45187. source: "./media/characters/thiz/front.svg",
  45188. extra: 1913/1748,
  45189. bottom: 62/1975
  45190. }
  45191. },
  45192. },
  45193. [
  45194. {
  45195. name: "Normal",
  45196. height: math.unit(4, "feet"),
  45197. default: true
  45198. },
  45199. ]
  45200. ))
  45201. characterMakers.push(() => makeCharacter(
  45202. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45203. {
  45204. front: {
  45205. height: math.unit(7 + 6/12, "feet"),
  45206. weight: math.unit(267, "lb"),
  45207. name: "Front",
  45208. image: {
  45209. source: "./media/characters/marcel/front.svg",
  45210. extra: 1221/1096,
  45211. bottom: 76/1297
  45212. }
  45213. },
  45214. },
  45215. [
  45216. {
  45217. name: "Normal",
  45218. height: math.unit(7 + 6/12, "feet"),
  45219. default: true
  45220. },
  45221. ]
  45222. ))
  45223. characterMakers.push(() => makeCharacter(
  45224. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45225. {
  45226. side: {
  45227. height: math.unit(42, "meters"),
  45228. name: "Side",
  45229. image: {
  45230. source: "./media/characters/flake/side.svg",
  45231. extra: 1525/1306,
  45232. bottom: 209/1734
  45233. }
  45234. },
  45235. },
  45236. [
  45237. {
  45238. name: "Normal",
  45239. height: math.unit(42, "meters"),
  45240. default: true
  45241. },
  45242. ]
  45243. ))
  45244. characterMakers.push(() => makeCharacter(
  45245. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45246. {
  45247. dressed: {
  45248. height: math.unit(6 + 4/12, "feet"),
  45249. weight: math.unit(520, "lb"),
  45250. name: "Dressed",
  45251. image: {
  45252. source: "./media/characters/someonne/dressed.svg",
  45253. extra: 1020/1010,
  45254. bottom: 178/1198
  45255. }
  45256. },
  45257. undressed: {
  45258. height: math.unit(6 + 4/12, "feet"),
  45259. weight: math.unit(520, "lb"),
  45260. name: "Undressed",
  45261. image: {
  45262. source: "./media/characters/someonne/undressed.svg",
  45263. extra: 1019/1014,
  45264. bottom: 169/1188
  45265. }
  45266. },
  45267. },
  45268. [
  45269. {
  45270. name: "Normal",
  45271. height: math.unit(6 + 4/12, "feet"),
  45272. default: true
  45273. },
  45274. ]
  45275. ))
  45276. characterMakers.push(() => makeCharacter(
  45277. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45278. {
  45279. front: {
  45280. height: math.unit(3, "feet"),
  45281. weight: math.unit(30, "lb"),
  45282. name: "Front",
  45283. image: {
  45284. source: "./media/characters/till/front.svg",
  45285. extra: 892/823,
  45286. bottom: 55/947
  45287. }
  45288. },
  45289. },
  45290. [
  45291. {
  45292. name: "Normal",
  45293. height: math.unit(3, "feet"),
  45294. default: true
  45295. },
  45296. ]
  45297. ))
  45298. characterMakers.push(() => makeCharacter(
  45299. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45300. {
  45301. front: {
  45302. height: math.unit(9 + 8/12, "feet"),
  45303. weight: math.unit(800, "lb"),
  45304. name: "Front",
  45305. image: {
  45306. source: "./media/characters/sydney-heki/front.svg",
  45307. extra: 1360/1300,
  45308. bottom: 22/1382
  45309. }
  45310. },
  45311. back: {
  45312. height: math.unit(9 + 8/12, "feet"),
  45313. weight: math.unit(800, "lb"),
  45314. name: "Back",
  45315. image: {
  45316. source: "./media/characters/sydney-heki/back.svg",
  45317. extra: 1356/1293,
  45318. bottom: 12/1368
  45319. }
  45320. },
  45321. frontDressed: {
  45322. height: math.unit(9 + 8/12, "feet"),
  45323. weight: math.unit(800, "lb"),
  45324. name: "Front-dressed",
  45325. image: {
  45326. source: "./media/characters/sydney-heki/front-dressed.svg",
  45327. extra: 1360/1300,
  45328. bottom: 22/1382
  45329. }
  45330. },
  45331. },
  45332. [
  45333. {
  45334. name: "Normal",
  45335. height: math.unit(9 + 8/12, "feet"),
  45336. default: true
  45337. },
  45338. {
  45339. name: "Macro",
  45340. height: math.unit(500, "feet")
  45341. },
  45342. {
  45343. name: "Megamacro",
  45344. height: math.unit(3.6, "miles")
  45345. },
  45346. ]
  45347. ))
  45348. characterMakers.push(() => makeCharacter(
  45349. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45350. {
  45351. front: {
  45352. height: math.unit(200, "cm"),
  45353. weight: math.unit(250, "lb"),
  45354. name: "Front",
  45355. image: {
  45356. source: "./media/characters/fowler-karlsson/front.svg",
  45357. extra: 897/845,
  45358. bottom: 123/1020
  45359. }
  45360. },
  45361. back: {
  45362. height: math.unit(200, "cm"),
  45363. weight: math.unit(250, "lb"),
  45364. name: "Back",
  45365. image: {
  45366. source: "./media/characters/fowler-karlsson/back.svg",
  45367. extra: 999/944,
  45368. bottom: 26/1025
  45369. }
  45370. },
  45371. dick: {
  45372. height: math.unit(1.92, "feet"),
  45373. weight: math.unit(150, "lb"),
  45374. name: "Dick",
  45375. image: {
  45376. source: "./media/characters/fowler-karlsson/dick.svg"
  45377. }
  45378. },
  45379. },
  45380. [
  45381. {
  45382. name: "Normal",
  45383. height: math.unit(200, "cm"),
  45384. default: true
  45385. },
  45386. {
  45387. name: "Smaller Macro",
  45388. height: math.unit(90, "m")
  45389. },
  45390. {
  45391. name: "Macro",
  45392. height: math.unit(150, "m")
  45393. },
  45394. {
  45395. name: "Bigger Macro",
  45396. height: math.unit(300, "m")
  45397. },
  45398. ]
  45399. ))
  45400. characterMakers.push(() => makeCharacter(
  45401. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45402. {
  45403. side: {
  45404. height: math.unit(8 + 2/12, "feet"),
  45405. weight: math.unit(1, "tonne"),
  45406. name: "Side",
  45407. image: {
  45408. source: "./media/characters/rylide/side.svg",
  45409. extra: 1318/1034,
  45410. bottom: 106/1424
  45411. }
  45412. },
  45413. sitting: {
  45414. height: math.unit(303, "cm"),
  45415. weight: math.unit(1, "tonne"),
  45416. name: "Sitting",
  45417. image: {
  45418. source: "./media/characters/rylide/sitting.svg",
  45419. extra: 1303/1103,
  45420. bottom: 36/1339
  45421. }
  45422. },
  45423. },
  45424. [
  45425. {
  45426. name: "Normal",
  45427. height: math.unit(8 + 2/12, "feet"),
  45428. default: true
  45429. },
  45430. ]
  45431. ))
  45432. characterMakers.push(() => makeCharacter(
  45433. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45434. {
  45435. front: {
  45436. height: math.unit(5 + 10/12, "feet"),
  45437. weight: math.unit(160, "lb"),
  45438. name: "Front",
  45439. image: {
  45440. source: "./media/characters/pudask/front.svg",
  45441. extra: 1616/1590,
  45442. bottom: 161/1777
  45443. }
  45444. },
  45445. },
  45446. [
  45447. {
  45448. name: "Ferret Height",
  45449. height: math.unit(2 + 5/12, "feet")
  45450. },
  45451. {
  45452. name: "Canon Height",
  45453. height: math.unit(5 + 10/12, "feet"),
  45454. default: true
  45455. },
  45456. ]
  45457. ))
  45458. characterMakers.push(() => makeCharacter(
  45459. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45460. {
  45461. front: {
  45462. height: math.unit(3 + 6/12, "feet"),
  45463. weight: math.unit(60, "lb"),
  45464. name: "Front",
  45465. image: {
  45466. source: "./media/characters/ramita/front.svg",
  45467. extra: 1402/1232,
  45468. bottom: 62/1464
  45469. }
  45470. },
  45471. dressed: {
  45472. height: math.unit(3 + 6/12, "feet"),
  45473. weight: math.unit(60, "lb"),
  45474. name: "Dressed",
  45475. image: {
  45476. source: "./media/characters/ramita/dressed.svg",
  45477. extra: 1534/1249,
  45478. bottom: 50/1584
  45479. }
  45480. },
  45481. },
  45482. [
  45483. {
  45484. name: "Normal",
  45485. height: math.unit(3 + 6/12, "feet"),
  45486. default: true
  45487. },
  45488. ]
  45489. ))
  45490. characterMakers.push(() => makeCharacter(
  45491. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45492. {
  45493. front: {
  45494. height: math.unit(8, "feet"),
  45495. name: "Front",
  45496. image: {
  45497. source: "./media/characters/ark/front.svg",
  45498. extra: 772/693,
  45499. bottom: 45/817
  45500. }
  45501. },
  45502. },
  45503. [
  45504. {
  45505. name: "Normal",
  45506. height: math.unit(8, "feet"),
  45507. default: true
  45508. },
  45509. ]
  45510. ))
  45511. characterMakers.push(() => makeCharacter(
  45512. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45513. {
  45514. front: {
  45515. height: math.unit(6, "feet"),
  45516. weight: math.unit(250, "lb"),
  45517. volume: math.unit(5/8, "gallons"),
  45518. name: "Front",
  45519. image: {
  45520. source: "./media/characters/ludwig-horn/front.svg",
  45521. extra: 1782/1635,
  45522. bottom: 96/1878
  45523. }
  45524. },
  45525. back: {
  45526. height: math.unit(6, "feet"),
  45527. weight: math.unit(250, "lb"),
  45528. volume: math.unit(5/8, "gallons"),
  45529. name: "Back",
  45530. image: {
  45531. source: "./media/characters/ludwig-horn/back.svg",
  45532. extra: 1874/1729,
  45533. bottom: 27/1901
  45534. }
  45535. },
  45536. dick: {
  45537. height: math.unit(1.05, "feet"),
  45538. weight: math.unit(15, "lb"),
  45539. volume: math.unit(5/8, "gallons"),
  45540. name: "Dick",
  45541. image: {
  45542. source: "./media/characters/ludwig-horn/dick.svg"
  45543. }
  45544. },
  45545. },
  45546. [
  45547. {
  45548. name: "Small",
  45549. height: math.unit(6, "feet")
  45550. },
  45551. {
  45552. name: "Typical",
  45553. height: math.unit(12, "feet"),
  45554. default: true
  45555. },
  45556. {
  45557. name: "Building",
  45558. height: math.unit(80, "feet")
  45559. },
  45560. {
  45561. name: "Town",
  45562. height: math.unit(800, "feet")
  45563. },
  45564. {
  45565. name: "Kingdom",
  45566. height: math.unit(80000, "feet")
  45567. },
  45568. {
  45569. name: "Planet",
  45570. height: math.unit(8000000, "feet")
  45571. },
  45572. {
  45573. name: "Universe",
  45574. height: math.unit(8000000000, "feet")
  45575. },
  45576. {
  45577. name: "Transcended",
  45578. height: math.unit(8e27, "feet")
  45579. },
  45580. ]
  45581. ))
  45582. characterMakers.push(() => makeCharacter(
  45583. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45584. {
  45585. front: {
  45586. height: math.unit(5, "feet"),
  45587. weight: math.unit(50, "kg"),
  45588. name: "Front",
  45589. image: {
  45590. source: "./media/characters/biot-avery/front.svg",
  45591. extra: 1295/1232,
  45592. bottom: 86/1381
  45593. }
  45594. },
  45595. },
  45596. [
  45597. {
  45598. name: "Normal",
  45599. height: math.unit(5, "feet"),
  45600. default: true
  45601. },
  45602. ]
  45603. ))
  45604. characterMakers.push(() => makeCharacter(
  45605. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45606. {
  45607. front: {
  45608. height: math.unit(6, "feet"),
  45609. name: "Front",
  45610. image: {
  45611. source: "./media/characters/kitsune-kiro/front.svg",
  45612. extra: 1270/1158,
  45613. bottom: 42/1312
  45614. }
  45615. },
  45616. frontAlt: {
  45617. height: math.unit(6, "feet"),
  45618. name: "Front-alt",
  45619. image: {
  45620. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45621. extra: 1130/1081,
  45622. bottom: 36/1166
  45623. }
  45624. },
  45625. },
  45626. [
  45627. {
  45628. name: "Smol",
  45629. height: math.unit(3, "feet")
  45630. },
  45631. {
  45632. name: "Normal",
  45633. height: math.unit(6, "feet"),
  45634. default: true
  45635. },
  45636. ]
  45637. ))
  45638. characterMakers.push(() => makeCharacter(
  45639. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45640. {
  45641. front: {
  45642. height: math.unit(6, "feet"),
  45643. weight: math.unit(125, "lb"),
  45644. name: "Front",
  45645. image: {
  45646. source: "./media/characters/jack-thatcher/front.svg",
  45647. extra: 1474/1370,
  45648. bottom: 26/1500
  45649. }
  45650. },
  45651. back: {
  45652. height: math.unit(6, "feet"),
  45653. weight: math.unit(125, "lb"),
  45654. name: "Back",
  45655. image: {
  45656. source: "./media/characters/jack-thatcher/back.svg",
  45657. extra: 1489/1384,
  45658. bottom: 18/1507
  45659. }
  45660. },
  45661. },
  45662. [
  45663. {
  45664. name: "Normal",
  45665. height: math.unit(6, "feet"),
  45666. default: true
  45667. },
  45668. {
  45669. name: "Macro",
  45670. height: math.unit(75, "feet")
  45671. },
  45672. {
  45673. name: "Macro-er",
  45674. height: math.unit(250, "feet")
  45675. },
  45676. ]
  45677. ))
  45678. characterMakers.push(() => makeCharacter(
  45679. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45680. {
  45681. front: {
  45682. height: math.unit(7, "feet"),
  45683. weight: math.unit(110, "kg"),
  45684. name: "Front",
  45685. image: {
  45686. source: "./media/characters/max-hyper/front.svg",
  45687. extra: 1969/1881,
  45688. bottom: 49/2018
  45689. }
  45690. },
  45691. },
  45692. [
  45693. {
  45694. name: "Normal",
  45695. height: math.unit(7, "feet"),
  45696. default: true
  45697. },
  45698. ]
  45699. ))
  45700. characterMakers.push(() => makeCharacter(
  45701. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45702. {
  45703. front: {
  45704. height: math.unit(5 + 5/12, "feet"),
  45705. weight: math.unit(160, "lb"),
  45706. name: "Front",
  45707. image: {
  45708. source: "./media/characters/spook/front.svg",
  45709. extra: 794/791,
  45710. bottom: 54/848
  45711. }
  45712. },
  45713. back: {
  45714. height: math.unit(5 + 5/12, "feet"),
  45715. weight: math.unit(160, "lb"),
  45716. name: "Back",
  45717. image: {
  45718. source: "./media/characters/spook/back.svg",
  45719. extra: 812/798,
  45720. bottom: 32/844
  45721. }
  45722. },
  45723. },
  45724. [
  45725. {
  45726. name: "Normal",
  45727. height: math.unit(5 + 5/12, "feet"),
  45728. default: true
  45729. },
  45730. ]
  45731. ))
  45732. characterMakers.push(() => makeCharacter(
  45733. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45734. {
  45735. front: {
  45736. height: math.unit(18, "feet"),
  45737. name: "Front",
  45738. image: {
  45739. source: "./media/characters/xeaduulix/front.svg",
  45740. extra: 1380/1166,
  45741. bottom: 110/1490
  45742. }
  45743. },
  45744. back: {
  45745. height: math.unit(18, "feet"),
  45746. name: "Back",
  45747. image: {
  45748. source: "./media/characters/xeaduulix/back.svg",
  45749. extra: 1592/1170,
  45750. bottom: 128/1720
  45751. }
  45752. },
  45753. frontNsfw: {
  45754. height: math.unit(18, "feet"),
  45755. name: "Front (NSFW)",
  45756. image: {
  45757. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45758. extra: 1380/1166,
  45759. bottom: 110/1490
  45760. }
  45761. },
  45762. backNsfw: {
  45763. height: math.unit(18, "feet"),
  45764. name: "Back (NSFW)",
  45765. image: {
  45766. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45767. extra: 1592/1170,
  45768. bottom: 128/1720
  45769. }
  45770. },
  45771. },
  45772. [
  45773. {
  45774. name: "Normal",
  45775. height: math.unit(18, "feet"),
  45776. default: true
  45777. },
  45778. ]
  45779. ))
  45780. characterMakers.push(() => makeCharacter(
  45781. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45782. {
  45783. spreadWings: {
  45784. height: math.unit(20, "feet"),
  45785. name: "Spread Wings",
  45786. image: {
  45787. source: "./media/characters/fledge/spread-wings.svg",
  45788. extra: 693/635,
  45789. bottom: 26/719
  45790. }
  45791. },
  45792. front: {
  45793. height: math.unit(20, "feet"),
  45794. name: "Front",
  45795. image: {
  45796. source: "./media/characters/fledge/front.svg",
  45797. extra: 684/637,
  45798. bottom: 18/702
  45799. }
  45800. },
  45801. frontAlt: {
  45802. height: math.unit(20, "feet"),
  45803. name: "Front (Alt)",
  45804. image: {
  45805. source: "./media/characters/fledge/front-alt.svg",
  45806. extra: 708/664,
  45807. bottom: 13/721
  45808. }
  45809. },
  45810. back: {
  45811. height: math.unit(20, "feet"),
  45812. name: "Back",
  45813. image: {
  45814. source: "./media/characters/fledge/back.svg",
  45815. extra: 718/634,
  45816. bottom: 22/740
  45817. }
  45818. },
  45819. head: {
  45820. height: math.unit(5.55, "feet"),
  45821. name: "Head",
  45822. image: {
  45823. source: "./media/characters/fledge/head.svg"
  45824. }
  45825. },
  45826. headAlt: {
  45827. height: math.unit(5.1, "feet"),
  45828. name: "Head (Alt)",
  45829. image: {
  45830. source: "./media/characters/fledge/head-alt.svg"
  45831. }
  45832. },
  45833. },
  45834. [
  45835. {
  45836. name: "Small",
  45837. height: math.unit(6 + 2/12, "feet")
  45838. },
  45839. {
  45840. name: "Big",
  45841. height: math.unit(20, "feet"),
  45842. default: true
  45843. },
  45844. {
  45845. name: "Giant",
  45846. height: math.unit(100, "feet")
  45847. },
  45848. {
  45849. name: "Macro",
  45850. height: math.unit(200, "feet")
  45851. },
  45852. ]
  45853. ))
  45854. characterMakers.push(() => makeCharacter(
  45855. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45856. {
  45857. front: {
  45858. height: math.unit(1, "meter"),
  45859. name: "Front",
  45860. image: {
  45861. source: "./media/characters/atlas-morenai/front.svg",
  45862. extra: 1275/1043,
  45863. bottom: 19/1294
  45864. }
  45865. },
  45866. back: {
  45867. height: math.unit(1, "meter"),
  45868. name: "Back",
  45869. image: {
  45870. source: "./media/characters/atlas-morenai/back.svg",
  45871. extra: 1141/1001,
  45872. bottom: 25/1166
  45873. }
  45874. },
  45875. },
  45876. [
  45877. {
  45878. name: "Normal",
  45879. height: math.unit(1, "meter"),
  45880. default: true
  45881. },
  45882. {
  45883. name: "Magic-Infused",
  45884. height: math.unit(5, "meters")
  45885. },
  45886. ]
  45887. ))
  45888. characterMakers.push(() => makeCharacter(
  45889. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45890. {
  45891. front: {
  45892. height: math.unit(5, "meters"),
  45893. name: "Front",
  45894. image: {
  45895. source: "./media/characters/cintia/front.svg",
  45896. extra: 1312/1228,
  45897. bottom: 38/1350
  45898. }
  45899. },
  45900. back: {
  45901. height: math.unit(5, "meters"),
  45902. name: "Back",
  45903. image: {
  45904. source: "./media/characters/cintia/back.svg",
  45905. extra: 1260/1166,
  45906. bottom: 98/1358
  45907. }
  45908. },
  45909. frontDick: {
  45910. height: math.unit(5, "meters"),
  45911. name: "Front (Dick)",
  45912. image: {
  45913. source: "./media/characters/cintia/front-dick.svg",
  45914. extra: 1312/1228,
  45915. bottom: 38/1350
  45916. }
  45917. },
  45918. backDick: {
  45919. height: math.unit(5, "meters"),
  45920. name: "Back (Dick)",
  45921. image: {
  45922. source: "./media/characters/cintia/back-dick.svg",
  45923. extra: 1260/1166,
  45924. bottom: 98/1358
  45925. }
  45926. },
  45927. bust: {
  45928. height: math.unit(1.97, "meters"),
  45929. name: "Bust",
  45930. image: {
  45931. source: "./media/characters/cintia/bust.svg",
  45932. extra: 617/565,
  45933. bottom: 0/617
  45934. }
  45935. },
  45936. },
  45937. [
  45938. {
  45939. name: "Normal",
  45940. height: math.unit(5, "meters"),
  45941. default: true
  45942. },
  45943. ]
  45944. ))
  45945. characterMakers.push(() => makeCharacter(
  45946. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45947. {
  45948. side: {
  45949. height: math.unit(100, "feet"),
  45950. name: "Side",
  45951. image: {
  45952. source: "./media/characters/denora/side.svg",
  45953. extra: 875/803,
  45954. bottom: 9/884
  45955. }
  45956. },
  45957. },
  45958. [
  45959. {
  45960. name: "Standard",
  45961. height: math.unit(100, "feet"),
  45962. default: true
  45963. },
  45964. {
  45965. name: "Grand",
  45966. height: math.unit(1000, "feet")
  45967. },
  45968. {
  45969. name: "Conquering",
  45970. height: math.unit(10000, "feet")
  45971. },
  45972. ]
  45973. ))
  45974. characterMakers.push(() => makeCharacter(
  45975. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45976. {
  45977. dressed: {
  45978. height: math.unit(8 + 5/12, "feet"),
  45979. weight: math.unit(700, "lb"),
  45980. name: "Dressed",
  45981. image: {
  45982. source: "./media/characters/kiva/dressed.svg",
  45983. extra: 1102/1055,
  45984. bottom: 60/1162
  45985. }
  45986. },
  45987. nude: {
  45988. height: math.unit(8 + 5/12, "feet"),
  45989. weight: math.unit(700, "lb"),
  45990. name: "Nude",
  45991. image: {
  45992. source: "./media/characters/kiva/nude.svg",
  45993. extra: 1102/1055,
  45994. bottom: 60/1162
  45995. }
  45996. },
  45997. },
  45998. [
  45999. {
  46000. name: "Base Height",
  46001. height: math.unit(8 + 5/12, "feet"),
  46002. default: true
  46003. },
  46004. {
  46005. name: "Macro",
  46006. height: math.unit(100, "feet")
  46007. },
  46008. {
  46009. name: "Max",
  46010. height: math.unit(3280, "feet")
  46011. },
  46012. ]
  46013. ))
  46014. characterMakers.push(() => makeCharacter(
  46015. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46016. {
  46017. front: {
  46018. height: math.unit(6 + 8/12, "feet"),
  46019. weight: math.unit(250, "lb"),
  46020. name: "Front",
  46021. image: {
  46022. source: "./media/characters/ztragon/front.svg",
  46023. extra: 1825/1684,
  46024. bottom: 98/1923
  46025. }
  46026. },
  46027. },
  46028. [
  46029. {
  46030. name: "Normal",
  46031. height: math.unit(6 + 8/12, "feet"),
  46032. default: true
  46033. },
  46034. {
  46035. name: "Macro",
  46036. height: math.unit(80, "feet")
  46037. },
  46038. ]
  46039. ))
  46040. characterMakers.push(() => makeCharacter(
  46041. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46042. {
  46043. front: {
  46044. height: math.unit(10.4, "feet"),
  46045. weight: math.unit(2, "tons"),
  46046. name: "Front",
  46047. image: {
  46048. source: "./media/characters/yesenia/front.svg",
  46049. extra: 1479/1474,
  46050. bottom: 233/1712
  46051. }
  46052. },
  46053. },
  46054. [
  46055. {
  46056. name: "Normal",
  46057. height: math.unit(10.4, "feet"),
  46058. default: true
  46059. },
  46060. ]
  46061. ))
  46062. characterMakers.push(() => makeCharacter(
  46063. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46064. {
  46065. normal: {
  46066. height: math.unit(6 + 1/12, "feet"),
  46067. weight: math.unit(180, "lb"),
  46068. name: "Normal",
  46069. image: {
  46070. source: "./media/characters/leanne-lycheborne/normal.svg",
  46071. extra: 1748/1660,
  46072. bottom: 98/1846
  46073. }
  46074. },
  46075. were: {
  46076. height: math.unit(12, "feet"),
  46077. weight: math.unit(1600, "lb"),
  46078. name: "Were",
  46079. image: {
  46080. source: "./media/characters/leanne-lycheborne/were.svg",
  46081. extra: 1485/1432,
  46082. bottom: 66/1551
  46083. }
  46084. },
  46085. },
  46086. [
  46087. {
  46088. name: "Normal",
  46089. height: math.unit(6 + 1/12, "feet"),
  46090. default: true
  46091. },
  46092. ]
  46093. ))
  46094. characterMakers.push(() => makeCharacter(
  46095. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46096. {
  46097. side: {
  46098. height: math.unit(13, "feet"),
  46099. name: "Side",
  46100. image: {
  46101. source: "./media/characters/kira-tyler/side.svg",
  46102. extra: 693/393,
  46103. bottom: 58/751
  46104. }
  46105. },
  46106. },
  46107. [
  46108. {
  46109. name: "Normal",
  46110. height: math.unit(13, "feet"),
  46111. default: true
  46112. },
  46113. ]
  46114. ))
  46115. characterMakers.push(() => makeCharacter(
  46116. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46117. {
  46118. front: {
  46119. height: math.unit(10.3, "feet"),
  46120. weight: math.unit(150, "lb"),
  46121. name: "Front",
  46122. image: {
  46123. source: "./media/characters/blaze/front.svg",
  46124. extra: 1378/1286,
  46125. bottom: 172/1550
  46126. }
  46127. },
  46128. },
  46129. [
  46130. {
  46131. name: "Normal",
  46132. height: math.unit(10.3, "feet"),
  46133. default: true
  46134. },
  46135. ]
  46136. ))
  46137. characterMakers.push(() => makeCharacter(
  46138. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46139. {
  46140. side: {
  46141. height: math.unit(2, "meters"),
  46142. weight: math.unit(400, "kg"),
  46143. name: "Side",
  46144. image: {
  46145. source: "./media/characters/anu/side.svg",
  46146. extra: 506/394,
  46147. bottom: 18/524
  46148. }
  46149. },
  46150. },
  46151. [
  46152. {
  46153. name: "Humanoid",
  46154. height: math.unit(2, "meters")
  46155. },
  46156. {
  46157. name: "Normal",
  46158. height: math.unit(5, "meters"),
  46159. default: true
  46160. },
  46161. ]
  46162. ))
  46163. characterMakers.push(() => makeCharacter(
  46164. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46165. {
  46166. front: {
  46167. height: math.unit(5 + 5/12, "feet"),
  46168. weight: math.unit(170, "lb"),
  46169. name: "Front",
  46170. image: {
  46171. source: "./media/characters/synx-the-lynx/front.svg",
  46172. extra: 1893/1745,
  46173. bottom: 17/1910
  46174. }
  46175. },
  46176. side: {
  46177. height: math.unit(5 + 5/12, "feet"),
  46178. weight: math.unit(170, "lb"),
  46179. name: "Side",
  46180. image: {
  46181. source: "./media/characters/synx-the-lynx/side.svg",
  46182. extra: 1884/1740,
  46183. bottom: 39/1923
  46184. }
  46185. },
  46186. back: {
  46187. height: math.unit(5 + 5/12, "feet"),
  46188. weight: math.unit(170, "lb"),
  46189. name: "Back",
  46190. image: {
  46191. source: "./media/characters/synx-the-lynx/back.svg",
  46192. extra: 1903/1755,
  46193. bottom: 14/1917
  46194. }
  46195. },
  46196. },
  46197. [
  46198. {
  46199. name: "Normal",
  46200. height: math.unit(5 + 5/12, "feet"),
  46201. default: true
  46202. },
  46203. ]
  46204. ))
  46205. characterMakers.push(() => makeCharacter(
  46206. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46207. {
  46208. back: {
  46209. height: math.unit(15, "feet"),
  46210. name: "Back",
  46211. image: {
  46212. source: "./media/characters/nadezda-fex/back.svg",
  46213. extra: 1695/1481,
  46214. bottom: 25/1720
  46215. }
  46216. },
  46217. },
  46218. [
  46219. {
  46220. name: "Normal",
  46221. height: math.unit(15, "feet"),
  46222. default: true
  46223. },
  46224. {
  46225. name: "Macro",
  46226. height: math.unit(2.5, "miles")
  46227. },
  46228. {
  46229. name: "Goddess",
  46230. height: math.unit(2, "multiverses")
  46231. },
  46232. ]
  46233. ))
  46234. characterMakers.push(() => makeCharacter(
  46235. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46236. {
  46237. front: {
  46238. height: math.unit(216, "cm"),
  46239. name: "Front",
  46240. image: {
  46241. source: "./media/characters/lev/front.svg",
  46242. extra: 1728/1670,
  46243. bottom: 82/1810
  46244. }
  46245. },
  46246. back: {
  46247. height: math.unit(216, "cm"),
  46248. name: "Back",
  46249. image: {
  46250. source: "./media/characters/lev/back.svg",
  46251. extra: 1738/1675,
  46252. bottom: 24/1762
  46253. }
  46254. },
  46255. dressed: {
  46256. height: math.unit(216, "cm"),
  46257. name: "Dressed",
  46258. image: {
  46259. source: "./media/characters/lev/dressed.svg",
  46260. extra: 1397/1351,
  46261. bottom: 73/1470
  46262. }
  46263. },
  46264. head: {
  46265. height: math.unit(0.51, "meter"),
  46266. name: "Head",
  46267. image: {
  46268. source: "./media/characters/lev/head.svg"
  46269. }
  46270. },
  46271. },
  46272. [
  46273. {
  46274. name: "Normal",
  46275. height: math.unit(216, "cm"),
  46276. default: true
  46277. },
  46278. {
  46279. name: "Relatively Macro",
  46280. height: math.unit(80, "meters")
  46281. },
  46282. {
  46283. name: "Megamacro",
  46284. height: math.unit(21600, "meters")
  46285. },
  46286. {
  46287. name: "Megamacro+",
  46288. height: math.unit(64800, "meters")
  46289. },
  46290. ]
  46291. ))
  46292. characterMakers.push(() => makeCharacter(
  46293. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46294. {
  46295. front: {
  46296. height: math.unit(2, "meters"),
  46297. weight: math.unit(80, "kg"),
  46298. name: "Front",
  46299. image: {
  46300. source: "./media/characters/moka/front.svg",
  46301. extra: 1337/1255,
  46302. bottom: 58/1395
  46303. }
  46304. },
  46305. },
  46306. [
  46307. {
  46308. name: "Micro",
  46309. height: math.unit(15, "cm")
  46310. },
  46311. {
  46312. name: "Normal",
  46313. height: math.unit(2, "meters"),
  46314. default: true
  46315. },
  46316. {
  46317. name: "Macro",
  46318. height: math.unit(20, "meters"),
  46319. },
  46320. ]
  46321. ))
  46322. characterMakers.push(() => makeCharacter(
  46323. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46324. {
  46325. front: {
  46326. height: math.unit(9, "feet"),
  46327. weight: math.unit(240, "lb"),
  46328. name: "Front",
  46329. image: {
  46330. source: "./media/characters/kuzco/front.svg",
  46331. extra: 1593/1487,
  46332. bottom: 32/1625
  46333. }
  46334. },
  46335. side: {
  46336. height: math.unit(9, "feet"),
  46337. weight: math.unit(240, "lb"),
  46338. name: "Side",
  46339. image: {
  46340. source: "./media/characters/kuzco/side.svg",
  46341. extra: 1575/1485,
  46342. bottom: 30/1605
  46343. }
  46344. },
  46345. back: {
  46346. height: math.unit(9, "feet"),
  46347. weight: math.unit(240, "lb"),
  46348. name: "Back",
  46349. image: {
  46350. source: "./media/characters/kuzco/back.svg",
  46351. extra: 1603/1514,
  46352. bottom: 14/1617
  46353. }
  46354. },
  46355. },
  46356. [
  46357. {
  46358. name: "Normal",
  46359. height: math.unit(9, "feet"),
  46360. default: true
  46361. },
  46362. ]
  46363. ))
  46364. characterMakers.push(() => makeCharacter(
  46365. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46366. {
  46367. side: {
  46368. height: math.unit(2, "meters"),
  46369. weight: math.unit(300, "kg"),
  46370. name: "Side",
  46371. image: {
  46372. source: "./media/characters/ceruleus/side.svg",
  46373. extra: 1068/974,
  46374. bottom: 126/1194
  46375. }
  46376. },
  46377. },
  46378. [
  46379. {
  46380. name: "Normal",
  46381. height: math.unit(16, "meters"),
  46382. default: true
  46383. },
  46384. ]
  46385. ))
  46386. characterMakers.push(() => makeCharacter(
  46387. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46388. {
  46389. front: {
  46390. height: math.unit(9, "feet"),
  46391. weight: math.unit(500, "kg"),
  46392. name: "Front",
  46393. image: {
  46394. source: "./media/characters/acouya/front.svg",
  46395. extra: 1660/1473,
  46396. bottom: 28/1688
  46397. }
  46398. },
  46399. },
  46400. [
  46401. {
  46402. name: "Normal",
  46403. height: math.unit(9, "feet"),
  46404. default: true
  46405. },
  46406. ]
  46407. ))
  46408. characterMakers.push(() => makeCharacter(
  46409. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46410. {
  46411. front: {
  46412. height: math.unit(5 + 6/12, "feet"),
  46413. weight: math.unit(195, "lb"),
  46414. name: "Front",
  46415. image: {
  46416. source: "./media/characters/vant/front.svg",
  46417. extra: 1396/1320,
  46418. bottom: 20/1416
  46419. }
  46420. },
  46421. back: {
  46422. height: math.unit(5 + 6/12, "feet"),
  46423. weight: math.unit(195, "lb"),
  46424. name: "Back",
  46425. image: {
  46426. source: "./media/characters/vant/back.svg",
  46427. extra: 1396/1320,
  46428. bottom: 20/1416
  46429. }
  46430. },
  46431. maw: {
  46432. height: math.unit(0.75, "feet"),
  46433. name: "Maw",
  46434. image: {
  46435. source: "./media/characters/vant/maw.svg"
  46436. }
  46437. },
  46438. paw: {
  46439. height: math.unit(1.07, "feet"),
  46440. name: "Paw",
  46441. image: {
  46442. source: "./media/characters/vant/paw.svg"
  46443. }
  46444. },
  46445. },
  46446. [
  46447. {
  46448. name: "Micro",
  46449. height: math.unit(0.25, "inches")
  46450. },
  46451. {
  46452. name: "Normal",
  46453. height: math.unit(5 + 6/12, "feet"),
  46454. default: true
  46455. },
  46456. {
  46457. name: "Macro",
  46458. height: math.unit(75, "feet")
  46459. },
  46460. ]
  46461. ))
  46462. characterMakers.push(() => makeCharacter(
  46463. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46464. {
  46465. front: {
  46466. height: math.unit(30, "meters"),
  46467. weight: math.unit(363, "tons"),
  46468. name: "Front",
  46469. image: {
  46470. source: "./media/characters/ahra/front.svg",
  46471. extra: 1914/1814,
  46472. bottom: 46/1960
  46473. }
  46474. },
  46475. },
  46476. [
  46477. {
  46478. name: "Macro",
  46479. height: math.unit(30, "meters"),
  46480. default: true
  46481. },
  46482. ]
  46483. ))
  46484. characterMakers.push(() => makeCharacter(
  46485. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46486. {
  46487. undressed: {
  46488. height: math.unit(2, "m"),
  46489. weight: math.unit(250, "kg"),
  46490. name: "Undressed",
  46491. image: {
  46492. source: "./media/characters/coriander/undressed.svg",
  46493. extra: 1757/1606,
  46494. bottom: 107/1864
  46495. }
  46496. },
  46497. dressed: {
  46498. height: math.unit(2, "m"),
  46499. weight: math.unit(250, "kg"),
  46500. name: "Dressed",
  46501. image: {
  46502. source: "./media/characters/coriander/dressed.svg",
  46503. extra: 1757/1606,
  46504. bottom: 107/1864
  46505. }
  46506. },
  46507. },
  46508. [
  46509. {
  46510. name: "Normal",
  46511. height: math.unit(4, "meters"),
  46512. default: true
  46513. },
  46514. {
  46515. name: "XL",
  46516. height: math.unit(6, "meters")
  46517. },
  46518. {
  46519. name: "XXL",
  46520. height: math.unit(8, "meters")
  46521. },
  46522. ]
  46523. ))
  46524. characterMakers.push(() => makeCharacter(
  46525. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46526. {
  46527. front: {
  46528. height: math.unit(6, "feet"),
  46529. name: "Front",
  46530. image: {
  46531. source: "./media/characters/syrinx/front.svg",
  46532. extra: 1557/1259,
  46533. bottom: 171/1728
  46534. }
  46535. },
  46536. },
  46537. [
  46538. {
  46539. name: "Normal",
  46540. height: math.unit(6 + 3/12, "feet"),
  46541. default: true
  46542. },
  46543. ]
  46544. ))
  46545. characterMakers.push(() => makeCharacter(
  46546. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46547. {
  46548. front: {
  46549. height: math.unit(11 + 6/12, "feet"),
  46550. weight: math.unit(1.5, "tons"),
  46551. name: "Front",
  46552. image: {
  46553. source: "./media/characters/bor/front.svg",
  46554. extra: 1189/1109,
  46555. bottom: 170/1359
  46556. }
  46557. },
  46558. },
  46559. [
  46560. {
  46561. name: "Normal",
  46562. height: math.unit(11 + 6/12, "feet"),
  46563. default: true
  46564. },
  46565. {
  46566. name: "Macro",
  46567. height: math.unit(32 + 9/12, "feet")
  46568. },
  46569. ]
  46570. ))
  46571. characterMakers.push(() => makeCharacter(
  46572. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46573. {
  46574. anthro: {
  46575. height: math.unit(9, "feet"),
  46576. weight: math.unit(2076, "lb"),
  46577. name: "Anthro",
  46578. image: {
  46579. source: "./media/characters/abacus/anthro.svg",
  46580. extra: 1540/1494,
  46581. bottom: 233/1773
  46582. }
  46583. },
  46584. pigeon: {
  46585. height: math.unit(1, "feet"),
  46586. name: "Pigeon",
  46587. image: {
  46588. source: "./media/characters/abacus/pigeon.svg",
  46589. extra: 528/525,
  46590. bottom: 46/574
  46591. }
  46592. },
  46593. },
  46594. [
  46595. {
  46596. name: "Normal",
  46597. height: math.unit(9, "feet"),
  46598. default: true
  46599. },
  46600. ]
  46601. ))
  46602. characterMakers.push(() => makeCharacter(
  46603. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46604. {
  46605. side: {
  46606. height: math.unit(6, "feet"),
  46607. name: "Side",
  46608. image: {
  46609. source: "./media/characters/delkhan/side.svg",
  46610. extra: 1884/1786,
  46611. bottom: 308/2192
  46612. }
  46613. },
  46614. head: {
  46615. height: math.unit(3.38, "feet"),
  46616. name: "Head",
  46617. image: {
  46618. source: "./media/characters/delkhan/head.svg"
  46619. }
  46620. },
  46621. },
  46622. [
  46623. {
  46624. name: "Normal",
  46625. height: math.unit(72, "feet"),
  46626. default: true
  46627. },
  46628. {
  46629. name: "Giant",
  46630. height: math.unit(172, "feet")
  46631. },
  46632. ]
  46633. ))
  46634. characterMakers.push(() => makeCharacter(
  46635. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46636. {
  46637. standing: {
  46638. height: math.unit(6, "feet"),
  46639. name: "Standing",
  46640. image: {
  46641. source: "./media/characters/euchidat/standing.svg",
  46642. extra: 1612/1553,
  46643. bottom: 116/1728
  46644. }
  46645. },
  46646. leaning: {
  46647. height: math.unit(6, "feet"),
  46648. name: "Leaning",
  46649. image: {
  46650. source: "./media/characters/euchidat/leaning.svg",
  46651. extra: 1719/1674,
  46652. bottom: 27/1746
  46653. }
  46654. },
  46655. },
  46656. [
  46657. {
  46658. name: "Normal",
  46659. height: math.unit(175, "feet"),
  46660. default: true
  46661. },
  46662. {
  46663. name: "Megamacro",
  46664. height: math.unit(190, "miles")
  46665. },
  46666. {
  46667. name: "Gigamacro",
  46668. height: math.unit(190000, "miles")
  46669. },
  46670. ]
  46671. ))
  46672. characterMakers.push(() => makeCharacter(
  46673. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46674. {
  46675. front: {
  46676. height: math.unit(6, "feet"),
  46677. weight: math.unit(150, "lb"),
  46678. name: "Front",
  46679. image: {
  46680. source: "./media/characters/rebecca-stack/front.svg",
  46681. extra: 1256/1201,
  46682. bottom: 18/1274
  46683. }
  46684. },
  46685. },
  46686. [
  46687. {
  46688. name: "Normal",
  46689. height: math.unit(5 + 8/12, "feet"),
  46690. default: true
  46691. },
  46692. {
  46693. name: "Demolitionist",
  46694. height: math.unit(200, "feet")
  46695. },
  46696. {
  46697. name: "Out of Control",
  46698. height: math.unit(2, "miles")
  46699. },
  46700. {
  46701. name: "Giga",
  46702. height: math.unit(7200, "miles")
  46703. },
  46704. ]
  46705. ))
  46706. characterMakers.push(() => makeCharacter(
  46707. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46708. {
  46709. front: {
  46710. height: math.unit(6, "feet"),
  46711. weight: math.unit(150, "lb"),
  46712. name: "Front",
  46713. image: {
  46714. source: "./media/characters/jenny-cartwright/front.svg",
  46715. extra: 1384/1376,
  46716. bottom: 58/1442
  46717. }
  46718. },
  46719. },
  46720. [
  46721. {
  46722. name: "Normal",
  46723. height: math.unit(6 + 7/12, "feet"),
  46724. default: true
  46725. },
  46726. {
  46727. name: "Librarian",
  46728. height: math.unit(55, "feet")
  46729. },
  46730. {
  46731. name: "Sightseer",
  46732. height: math.unit(50, "miles")
  46733. },
  46734. {
  46735. name: "Giga",
  46736. height: math.unit(30000, "miles")
  46737. },
  46738. ]
  46739. ))
  46740. characterMakers.push(() => makeCharacter(
  46741. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46742. {
  46743. nude: {
  46744. height: math.unit(8, "feet"),
  46745. weight: math.unit(225, "lb"),
  46746. name: "Nude",
  46747. image: {
  46748. source: "./media/characters/marvy/nude.svg",
  46749. extra: 1900/1683,
  46750. bottom: 89/1989
  46751. }
  46752. },
  46753. dressed: {
  46754. height: math.unit(8, "feet"),
  46755. weight: math.unit(225, "lb"),
  46756. name: "Dressed",
  46757. image: {
  46758. source: "./media/characters/marvy/dressed.svg",
  46759. extra: 1900/1683,
  46760. bottom: 89/1989
  46761. }
  46762. },
  46763. head: {
  46764. height: math.unit(2.85, "feet"),
  46765. name: "Head",
  46766. image: {
  46767. source: "./media/characters/marvy/head.svg"
  46768. }
  46769. },
  46770. },
  46771. [
  46772. {
  46773. name: "Normal",
  46774. height: math.unit(8, "feet"),
  46775. default: true
  46776. },
  46777. ]
  46778. ))
  46779. characterMakers.push(() => makeCharacter(
  46780. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46781. {
  46782. front: {
  46783. height: math.unit(8, "feet"),
  46784. weight: math.unit(250, "lb"),
  46785. name: "Front",
  46786. image: {
  46787. source: "./media/characters/leah/front.svg",
  46788. extra: 1257/1149,
  46789. bottom: 109/1366
  46790. }
  46791. },
  46792. },
  46793. [
  46794. {
  46795. name: "Normal",
  46796. height: math.unit(8, "feet"),
  46797. default: true
  46798. },
  46799. {
  46800. name: "Minimacro",
  46801. height: math.unit(40, "feet")
  46802. },
  46803. {
  46804. name: "Macro",
  46805. height: math.unit(124, "feet")
  46806. },
  46807. {
  46808. name: "Megamacro",
  46809. height: math.unit(850, "feet")
  46810. },
  46811. ]
  46812. ))
  46813. characterMakers.push(() => makeCharacter(
  46814. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46815. {
  46816. side: {
  46817. height: math.unit(13 + 6/12, "feet"),
  46818. weight: math.unit(3200, "lb"),
  46819. name: "Side",
  46820. image: {
  46821. source: "./media/characters/alvir/side.svg",
  46822. extra: 896/589,
  46823. bottom: 26/922
  46824. }
  46825. },
  46826. },
  46827. [
  46828. {
  46829. name: "Normal",
  46830. height: math.unit(13 + 6/12, "feet"),
  46831. default: true
  46832. },
  46833. ]
  46834. ))
  46835. characterMakers.push(() => makeCharacter(
  46836. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46837. {
  46838. front: {
  46839. height: math.unit(5 + 4/12, "feet"),
  46840. weight: math.unit(236, "lb"),
  46841. name: "Front",
  46842. image: {
  46843. source: "./media/characters/zaina-khalil/front.svg",
  46844. extra: 1533/1485,
  46845. bottom: 94/1627
  46846. }
  46847. },
  46848. side: {
  46849. height: math.unit(5 + 4/12, "feet"),
  46850. weight: math.unit(236, "lb"),
  46851. name: "Side",
  46852. image: {
  46853. source: "./media/characters/zaina-khalil/side.svg",
  46854. extra: 1537/1498,
  46855. bottom: 66/1603
  46856. }
  46857. },
  46858. back: {
  46859. height: math.unit(5 + 4/12, "feet"),
  46860. weight: math.unit(236, "lb"),
  46861. name: "Back",
  46862. image: {
  46863. source: "./media/characters/zaina-khalil/back.svg",
  46864. extra: 1546/1494,
  46865. bottom: 89/1635
  46866. }
  46867. },
  46868. },
  46869. [
  46870. {
  46871. name: "Normal",
  46872. height: math.unit(5 + 4/12, "feet"),
  46873. default: true
  46874. },
  46875. ]
  46876. ))
  46877. characterMakers.push(() => makeCharacter(
  46878. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46879. {
  46880. side: {
  46881. height: math.unit(12, "feet"),
  46882. weight: math.unit(4000, "lb"),
  46883. name: "Side",
  46884. image: {
  46885. source: "./media/characters/terry/side.svg",
  46886. extra: 1518/1439,
  46887. bottom: 149/1667
  46888. }
  46889. },
  46890. },
  46891. [
  46892. {
  46893. name: "Normal",
  46894. height: math.unit(12, "feet"),
  46895. default: true
  46896. },
  46897. ]
  46898. ))
  46899. characterMakers.push(() => makeCharacter(
  46900. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46901. {
  46902. front: {
  46903. height: math.unit(12, "feet"),
  46904. weight: math.unit(1500, "lb"),
  46905. name: "Front",
  46906. image: {
  46907. source: "./media/characters/kahea/front.svg",
  46908. extra: 1722/1617,
  46909. bottom: 179/1901
  46910. }
  46911. },
  46912. },
  46913. [
  46914. {
  46915. name: "Normal",
  46916. height: math.unit(12, "feet"),
  46917. default: true
  46918. },
  46919. ]
  46920. ))
  46921. characterMakers.push(() => makeCharacter(
  46922. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46923. {
  46924. demonFront: {
  46925. height: math.unit(36, "feet"),
  46926. name: "Front",
  46927. image: {
  46928. source: "./media/characters/alex-xuria/demon-front.svg",
  46929. extra: 1705/1673,
  46930. bottom: 198/1903
  46931. },
  46932. form: "demon",
  46933. default: true
  46934. },
  46935. demonBack: {
  46936. height: math.unit(36, "feet"),
  46937. name: "Back",
  46938. image: {
  46939. source: "./media/characters/alex-xuria/demon-back.svg",
  46940. extra: 1725/1693,
  46941. bottom: 70/1795
  46942. },
  46943. form: "demon"
  46944. },
  46945. demonHead: {
  46946. height: math.unit(2.14, "meters"),
  46947. name: "Head",
  46948. image: {
  46949. source: "./media/characters/alex-xuria/demon-head.svg"
  46950. },
  46951. form: "demon"
  46952. },
  46953. demonHand: {
  46954. height: math.unit(1.61, "meters"),
  46955. name: "Hand",
  46956. image: {
  46957. source: "./media/characters/alex-xuria/demon-hand.svg"
  46958. },
  46959. form: "demon"
  46960. },
  46961. demonPaw: {
  46962. height: math.unit(1.35, "meters"),
  46963. name: "Paw",
  46964. image: {
  46965. source: "./media/characters/alex-xuria/demon-paw.svg"
  46966. },
  46967. form: "demon"
  46968. },
  46969. demonFoot: {
  46970. height: math.unit(2.2, "meters"),
  46971. name: "Foot",
  46972. image: {
  46973. source: "./media/characters/alex-xuria/demon-foot.svg"
  46974. },
  46975. form: "demon"
  46976. },
  46977. demonCock: {
  46978. height: math.unit(1.74, "meters"),
  46979. name: "Cock",
  46980. image: {
  46981. source: "./media/characters/alex-xuria/demon-cock.svg"
  46982. },
  46983. form: "demon"
  46984. },
  46985. demonTailClosed: {
  46986. height: math.unit(1.47, "meters"),
  46987. name: "Tail (Closed)",
  46988. image: {
  46989. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46990. },
  46991. form: "demon"
  46992. },
  46993. demonTailOpen: {
  46994. height: math.unit(2.85, "meters"),
  46995. name: "Tail (Open)",
  46996. image: {
  46997. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46998. },
  46999. form: "demon"
  47000. },
  47001. incubusFront: {
  47002. height: math.unit(12, "feet"),
  47003. name: "Front",
  47004. image: {
  47005. source: "./media/characters/alex-xuria/incubus-front.svg",
  47006. extra: 1754/1677,
  47007. bottom: 125/1879
  47008. },
  47009. form: "incubus",
  47010. default: true
  47011. },
  47012. incubusBack: {
  47013. height: math.unit(12, "feet"),
  47014. name: "Back",
  47015. image: {
  47016. source: "./media/characters/alex-xuria/incubus-back.svg",
  47017. extra: 1702/1647,
  47018. bottom: 30/1732
  47019. },
  47020. form: "incubus"
  47021. },
  47022. incubusHead: {
  47023. height: math.unit(3.45, "feet"),
  47024. name: "Head",
  47025. image: {
  47026. source: "./media/characters/alex-xuria/incubus-head.svg"
  47027. },
  47028. form: "incubus"
  47029. },
  47030. rabbitFront: {
  47031. height: math.unit(6, "feet"),
  47032. name: "Front",
  47033. image: {
  47034. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47035. extra: 1369/1349,
  47036. bottom: 45/1414
  47037. },
  47038. form: "rabbit",
  47039. default: true
  47040. },
  47041. rabbitSide: {
  47042. height: math.unit(6, "feet"),
  47043. name: "Side",
  47044. image: {
  47045. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47046. extra: 1370/1356,
  47047. bottom: 37/1407
  47048. },
  47049. form: "rabbit"
  47050. },
  47051. rabbitBack: {
  47052. height: math.unit(6, "feet"),
  47053. name: "Back",
  47054. image: {
  47055. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47056. extra: 1375/1358,
  47057. bottom: 43/1418
  47058. },
  47059. form: "rabbit"
  47060. },
  47061. },
  47062. [
  47063. {
  47064. name: "Normal",
  47065. height: math.unit(6, "feet"),
  47066. default: true,
  47067. form: "rabbit"
  47068. },
  47069. {
  47070. name: "Incubus",
  47071. height: math.unit(12, "feet"),
  47072. default: true,
  47073. form: "incubus"
  47074. },
  47075. {
  47076. name: "Demon",
  47077. height: math.unit(36, "feet"),
  47078. default: true,
  47079. form: "demon"
  47080. }
  47081. ],
  47082. {
  47083. "demon": {
  47084. name: "Demon",
  47085. default: true
  47086. },
  47087. "incubus": {
  47088. name: "Incubus",
  47089. },
  47090. "rabbit": {
  47091. name: "Rabbit"
  47092. }
  47093. }
  47094. ))
  47095. characterMakers.push(() => makeCharacter(
  47096. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47097. {
  47098. front: {
  47099. height: math.unit(7 + 5/12, "feet"),
  47100. weight: math.unit(510, "lb"),
  47101. name: "Front",
  47102. image: {
  47103. source: "./media/characters/syrup/front.svg",
  47104. extra: 932/916,
  47105. bottom: 26/958
  47106. }
  47107. },
  47108. },
  47109. [
  47110. {
  47111. name: "Normal",
  47112. height: math.unit(7 + 5/12, "feet"),
  47113. default: true
  47114. },
  47115. {
  47116. name: "Big",
  47117. height: math.unit(50, "feet")
  47118. },
  47119. {
  47120. name: "Macro",
  47121. height: math.unit(300, "feet")
  47122. },
  47123. {
  47124. name: "Megamacro",
  47125. height: math.unit(1, "mile")
  47126. },
  47127. ]
  47128. ))
  47129. characterMakers.push(() => makeCharacter(
  47130. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47131. {
  47132. front: {
  47133. height: math.unit(6 + 9/12, "feet"),
  47134. name: "Front",
  47135. image: {
  47136. source: "./media/characters/zeimne/front.svg",
  47137. extra: 1969/1806,
  47138. bottom: 53/2022
  47139. }
  47140. },
  47141. },
  47142. [
  47143. {
  47144. name: "Normal",
  47145. height: math.unit(6 + 9/12, "feet"),
  47146. default: true
  47147. },
  47148. {
  47149. name: "Giant",
  47150. height: math.unit(550, "feet")
  47151. },
  47152. {
  47153. name: "Mega",
  47154. height: math.unit(3, "miles")
  47155. },
  47156. {
  47157. name: "Giga",
  47158. height: math.unit(250, "miles")
  47159. },
  47160. {
  47161. name: "Tera",
  47162. height: math.unit(1, "AU")
  47163. },
  47164. ]
  47165. ))
  47166. characterMakers.push(() => makeCharacter(
  47167. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47168. {
  47169. front: {
  47170. height: math.unit(5 + 2/12, "feet"),
  47171. name: "Front",
  47172. image: {
  47173. source: "./media/characters/grar/front.svg",
  47174. extra: 1331/1119,
  47175. bottom: 60/1391
  47176. }
  47177. },
  47178. back: {
  47179. height: math.unit(5 + 2/12, "feet"),
  47180. name: "Back",
  47181. image: {
  47182. source: "./media/characters/grar/back.svg",
  47183. extra: 1385/1169,
  47184. bottom: 23/1408
  47185. }
  47186. },
  47187. },
  47188. [
  47189. {
  47190. name: "Normal",
  47191. height: math.unit(5 + 2/12, "feet"),
  47192. default: true
  47193. },
  47194. ]
  47195. ))
  47196. characterMakers.push(() => makeCharacter(
  47197. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47198. {
  47199. front: {
  47200. height: math.unit(13 + 7/12, "feet"),
  47201. weight: math.unit(2200, "lb"),
  47202. name: "Front",
  47203. image: {
  47204. source: "./media/characters/endraya/front.svg",
  47205. extra: 1289/1215,
  47206. bottom: 50/1339
  47207. }
  47208. },
  47209. nude: {
  47210. height: math.unit(13 + 7/12, "feet"),
  47211. weight: math.unit(2200, "lb"),
  47212. name: "Nude",
  47213. image: {
  47214. source: "./media/characters/endraya/nude.svg",
  47215. extra: 1247/1171,
  47216. bottom: 40/1287
  47217. }
  47218. },
  47219. head: {
  47220. height: math.unit(2.6, "feet"),
  47221. name: "Head",
  47222. image: {
  47223. source: "./media/characters/endraya/head.svg"
  47224. }
  47225. },
  47226. slit: {
  47227. height: math.unit(3.4, "feet"),
  47228. name: "Slit",
  47229. image: {
  47230. source: "./media/characters/endraya/slit.svg"
  47231. }
  47232. },
  47233. },
  47234. [
  47235. {
  47236. name: "Normal",
  47237. height: math.unit(13 + 7/12, "feet"),
  47238. default: true
  47239. },
  47240. {
  47241. name: "Macro",
  47242. height: math.unit(200, "feet")
  47243. },
  47244. ]
  47245. ))
  47246. characterMakers.push(() => makeCharacter(
  47247. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47248. {
  47249. front: {
  47250. height: math.unit(1.81, "meters"),
  47251. weight: math.unit(69, "kg"),
  47252. name: "Front",
  47253. image: {
  47254. source: "./media/characters/rodryana/front.svg",
  47255. extra: 2002/1921,
  47256. bottom: 53/2055
  47257. }
  47258. },
  47259. back: {
  47260. height: math.unit(1.81, "meters"),
  47261. weight: math.unit(69, "kg"),
  47262. name: "Back",
  47263. image: {
  47264. source: "./media/characters/rodryana/back.svg",
  47265. extra: 1993/1926,
  47266. bottom: 48/2041
  47267. }
  47268. },
  47269. maw: {
  47270. height: math.unit(0.19769417475, "meters"),
  47271. name: "Maw",
  47272. image: {
  47273. source: "./media/characters/rodryana/maw.svg"
  47274. }
  47275. },
  47276. slit: {
  47277. height: math.unit(0.31631067961, "meters"),
  47278. name: "Slit",
  47279. image: {
  47280. source: "./media/characters/rodryana/slit.svg"
  47281. }
  47282. },
  47283. },
  47284. [
  47285. {
  47286. name: "Normal",
  47287. height: math.unit(1.81, "meters")
  47288. },
  47289. {
  47290. name: "Mini Macro",
  47291. height: math.unit(181, "meters")
  47292. },
  47293. {
  47294. name: "Macro",
  47295. height: math.unit(452, "meters"),
  47296. default: true
  47297. },
  47298. {
  47299. name: "Mega Macro",
  47300. height: math.unit(1.375, "km")
  47301. },
  47302. {
  47303. name: "Giga Macro",
  47304. height: math.unit(13.575, "km")
  47305. },
  47306. ]
  47307. ))
  47308. characterMakers.push(() => makeCharacter(
  47309. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47310. {
  47311. front: {
  47312. height: math.unit(6, "feet"),
  47313. weight: math.unit(1000, "lb"),
  47314. name: "Front",
  47315. image: {
  47316. source: "./media/characters/asaya/front.svg",
  47317. extra: 1460/1200,
  47318. bottom: 71/1531
  47319. }
  47320. },
  47321. },
  47322. [
  47323. {
  47324. name: "Normal",
  47325. height: math.unit(8, "km"),
  47326. default: true
  47327. },
  47328. ]
  47329. ))
  47330. characterMakers.push(() => makeCharacter(
  47331. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47332. {
  47333. front: {
  47334. height: math.unit(3.5, "meters"),
  47335. name: "Front",
  47336. image: {
  47337. source: "./media/characters/sarzu-and-israz/front.svg",
  47338. extra: 1570/1558,
  47339. bottom: 150/1720
  47340. },
  47341. },
  47342. back: {
  47343. height: math.unit(3.5, "meters"),
  47344. name: "Back",
  47345. image: {
  47346. source: "./media/characters/sarzu-and-israz/back.svg",
  47347. extra: 1523/1509,
  47348. bottom: 132/1655
  47349. },
  47350. },
  47351. frontFemale: {
  47352. height: math.unit(3.5, "meters"),
  47353. name: "Front (Female)",
  47354. image: {
  47355. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47356. extra: 1570/1558,
  47357. bottom: 150/1720
  47358. },
  47359. },
  47360. frontHerm: {
  47361. height: math.unit(3.5, "meters"),
  47362. name: "Front (Herm)",
  47363. image: {
  47364. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47365. extra: 1570/1558,
  47366. bottom: 150/1720
  47367. },
  47368. },
  47369. },
  47370. [
  47371. {
  47372. name: "Normal",
  47373. height: math.unit(3.5, "meters"),
  47374. default: true,
  47375. },
  47376. {
  47377. name: "Macro",
  47378. height: math.unit(65.5, "meters"),
  47379. },
  47380. ],
  47381. ))
  47382. characterMakers.push(() => makeCharacter(
  47383. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47384. {
  47385. front: {
  47386. height: math.unit(6, "feet"),
  47387. weight: math.unit(250, "lb"),
  47388. name: "Front",
  47389. image: {
  47390. source: "./media/characters/zenimma/front.svg",
  47391. extra: 1346/1320,
  47392. bottom: 58/1404
  47393. }
  47394. },
  47395. back: {
  47396. height: math.unit(6, "feet"),
  47397. weight: math.unit(250, "lb"),
  47398. name: "Back",
  47399. image: {
  47400. source: "./media/characters/zenimma/back.svg",
  47401. extra: 1324/1308,
  47402. bottom: 44/1368
  47403. }
  47404. },
  47405. dick: {
  47406. height: math.unit(1.44, "feet"),
  47407. name: "Dick",
  47408. image: {
  47409. source: "./media/characters/zenimma/dick.svg"
  47410. }
  47411. },
  47412. },
  47413. [
  47414. {
  47415. name: "Canon Height",
  47416. height: math.unit(66, "miles"),
  47417. default: true
  47418. },
  47419. ]
  47420. ))
  47421. characterMakers.push(() => makeCharacter(
  47422. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47423. {
  47424. nude: {
  47425. height: math.unit(6, "feet"),
  47426. weight: math.unit(150, "lb"),
  47427. name: "Nude",
  47428. image: {
  47429. source: "./media/characters/shavon/nude.svg",
  47430. extra: 1242/1096,
  47431. bottom: 98/1340
  47432. }
  47433. },
  47434. dressed: {
  47435. height: math.unit(6, "feet"),
  47436. weight: math.unit(150, "lb"),
  47437. name: "Dressed",
  47438. image: {
  47439. source: "./media/characters/shavon/dressed.svg",
  47440. extra: 1242/1096,
  47441. bottom: 98/1340
  47442. }
  47443. },
  47444. },
  47445. [
  47446. {
  47447. name: "Macro",
  47448. height: math.unit(255, "feet"),
  47449. default: true
  47450. },
  47451. ]
  47452. ))
  47453. characterMakers.push(() => makeCharacter(
  47454. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47455. {
  47456. front: {
  47457. height: math.unit(6, "feet"),
  47458. name: "Front",
  47459. image: {
  47460. source: "./media/characters/steph/front.svg",
  47461. extra: 1430/1330,
  47462. bottom: 54/1484
  47463. }
  47464. },
  47465. },
  47466. [
  47467. {
  47468. name: "Normal",
  47469. height: math.unit(6, "feet"),
  47470. default: true
  47471. },
  47472. ]
  47473. ))
  47474. characterMakers.push(() => makeCharacter(
  47475. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47476. {
  47477. front: {
  47478. height: math.unit(9, "feet"),
  47479. weight: math.unit(400, "lb"),
  47480. name: "Front",
  47481. image: {
  47482. source: "./media/characters/kil'aman/front.svg",
  47483. extra: 1210/1159,
  47484. bottom: 109/1319
  47485. }
  47486. },
  47487. head: {
  47488. height: math.unit(2.14, "feet"),
  47489. name: "Head",
  47490. image: {
  47491. source: "./media/characters/kil'aman/head.svg"
  47492. }
  47493. },
  47494. maw: {
  47495. height: math.unit(1.21, "feet"),
  47496. name: "Maw",
  47497. image: {
  47498. source: "./media/characters/kil'aman/maw.svg"
  47499. }
  47500. },
  47501. foot: {
  47502. height: math.unit(1.7, "feet"),
  47503. name: "Foot",
  47504. image: {
  47505. source: "./media/characters/kil'aman/foot.svg"
  47506. }
  47507. },
  47508. dick: {
  47509. height: math.unit(2.1, "feet"),
  47510. name: "Dick",
  47511. image: {
  47512. source: "./media/characters/kil'aman/dick.svg"
  47513. }
  47514. },
  47515. },
  47516. [
  47517. {
  47518. name: "Normal",
  47519. height: math.unit(9, "feet")
  47520. },
  47521. {
  47522. name: "Canon Height",
  47523. height: math.unit(10, "miles"),
  47524. default: true
  47525. },
  47526. {
  47527. name: "Maximum",
  47528. height: math.unit(6e9, "miles")
  47529. },
  47530. ]
  47531. ))
  47532. characterMakers.push(() => makeCharacter(
  47533. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47534. {
  47535. front: {
  47536. height: math.unit(90, "feet"),
  47537. weight: math.unit(675000, "lb"),
  47538. name: "Front",
  47539. image: {
  47540. source: "./media/characters/qadan/front.svg",
  47541. extra: 1012/1004,
  47542. bottom: 78/1090
  47543. }
  47544. },
  47545. back: {
  47546. height: math.unit(90, "feet"),
  47547. weight: math.unit(675000, "lb"),
  47548. name: "Back",
  47549. image: {
  47550. source: "./media/characters/qadan/back.svg",
  47551. extra: 1042/1031,
  47552. bottom: 55/1097
  47553. }
  47554. },
  47555. armored: {
  47556. height: math.unit(90, "feet"),
  47557. weight: math.unit(675000, "lb"),
  47558. name: "Armored",
  47559. image: {
  47560. source: "./media/characters/qadan/armored.svg",
  47561. extra: 1047/1037,
  47562. bottom: 48/1095
  47563. }
  47564. },
  47565. },
  47566. [
  47567. {
  47568. name: "Normal",
  47569. height: math.unit(90, "feet"),
  47570. default: true
  47571. },
  47572. ]
  47573. ))
  47574. characterMakers.push(() => makeCharacter(
  47575. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47576. {
  47577. front: {
  47578. height: math.unit(6, "feet"),
  47579. weight: math.unit(225, "lb"),
  47580. name: "Front",
  47581. image: {
  47582. source: "./media/characters/brooke/front.svg",
  47583. extra: 1050/1010,
  47584. bottom: 66/1116
  47585. }
  47586. },
  47587. back: {
  47588. height: math.unit(6, "feet"),
  47589. weight: math.unit(225, "lb"),
  47590. name: "Back",
  47591. image: {
  47592. source: "./media/characters/brooke/back.svg",
  47593. extra: 1053/1013,
  47594. bottom: 41/1094
  47595. }
  47596. },
  47597. dressed: {
  47598. height: math.unit(6, "feet"),
  47599. weight: math.unit(225, "lb"),
  47600. name: "Dressed",
  47601. image: {
  47602. source: "./media/characters/brooke/dressed.svg",
  47603. extra: 1050/1010,
  47604. bottom: 66/1116
  47605. }
  47606. },
  47607. },
  47608. [
  47609. {
  47610. name: "Canon Height",
  47611. height: math.unit(500, "miles"),
  47612. default: true
  47613. },
  47614. ]
  47615. ))
  47616. characterMakers.push(() => makeCharacter(
  47617. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47618. {
  47619. front: {
  47620. height: math.unit(6 + 2/12, "feet"),
  47621. weight: math.unit(210, "lb"),
  47622. name: "Front",
  47623. image: {
  47624. source: "./media/characters/wubs/front.svg",
  47625. extra: 1345/1325,
  47626. bottom: 70/1415
  47627. }
  47628. },
  47629. back: {
  47630. height: math.unit(6 + 2/12, "feet"),
  47631. weight: math.unit(210, "lb"),
  47632. name: "Back",
  47633. image: {
  47634. source: "./media/characters/wubs/back.svg",
  47635. extra: 1296/1275,
  47636. bottom: 58/1354
  47637. }
  47638. },
  47639. },
  47640. [
  47641. {
  47642. name: "Normal",
  47643. height: math.unit(6 + 2/12, "feet"),
  47644. default: true
  47645. },
  47646. {
  47647. name: "Macro",
  47648. height: math.unit(1000, "feet")
  47649. },
  47650. {
  47651. name: "Megamacro",
  47652. height: math.unit(1, "mile")
  47653. },
  47654. ]
  47655. ))
  47656. characterMakers.push(() => makeCharacter(
  47657. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47658. {
  47659. front: {
  47660. height: math.unit(4, "feet"),
  47661. weight: math.unit(120, "lb"),
  47662. name: "Front",
  47663. image: {
  47664. source: "./media/characters/blue/front.svg",
  47665. extra: 1636/1525,
  47666. bottom: 43/1679
  47667. }
  47668. },
  47669. back: {
  47670. height: math.unit(4, "feet"),
  47671. weight: math.unit(120, "lb"),
  47672. name: "Back",
  47673. image: {
  47674. source: "./media/characters/blue/back.svg",
  47675. extra: 1660/1560,
  47676. bottom: 57/1717
  47677. }
  47678. },
  47679. paws: {
  47680. height: math.unit(0.826, "feet"),
  47681. name: "Paws",
  47682. image: {
  47683. source: "./media/characters/blue/paws.svg"
  47684. }
  47685. },
  47686. },
  47687. [
  47688. {
  47689. name: "Micro",
  47690. height: math.unit(3, "inches")
  47691. },
  47692. {
  47693. name: "Normal",
  47694. height: math.unit(4, "feet"),
  47695. default: true
  47696. },
  47697. {
  47698. name: "Femenine Form",
  47699. height: math.unit(14, "feet")
  47700. },
  47701. {
  47702. name: "Werebat Form",
  47703. height: math.unit(18, "feet")
  47704. },
  47705. ]
  47706. ))
  47707. characterMakers.push(() => makeCharacter(
  47708. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47709. {
  47710. female: {
  47711. height: math.unit(7 + 4/12, "feet"),
  47712. weight: math.unit(243, "lb"),
  47713. name: "Female",
  47714. image: {
  47715. source: "./media/characters/kaya/female.svg",
  47716. extra: 975/898,
  47717. bottom: 34/1009
  47718. }
  47719. },
  47720. herm: {
  47721. height: math.unit(7 + 4/12, "feet"),
  47722. weight: math.unit(243, "lb"),
  47723. name: "Herm",
  47724. image: {
  47725. source: "./media/characters/kaya/herm.svg",
  47726. extra: 975/898,
  47727. bottom: 34/1009
  47728. }
  47729. },
  47730. },
  47731. [
  47732. {
  47733. name: "Normal",
  47734. height: math.unit(7 + 4/12, "feet"),
  47735. default: true
  47736. },
  47737. ]
  47738. ))
  47739. characterMakers.push(() => makeCharacter(
  47740. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47741. {
  47742. female: {
  47743. height: math.unit(9 + 4/12, "feet"),
  47744. weight: math.unit(398, "lb"),
  47745. name: "Female",
  47746. image: {
  47747. source: "./media/characters/kassandra/female.svg",
  47748. extra: 908/839,
  47749. bottom: 61/969
  47750. }
  47751. },
  47752. intersex: {
  47753. height: math.unit(9 + 4/12, "feet"),
  47754. weight: math.unit(398, "lb"),
  47755. name: "Intersex",
  47756. image: {
  47757. source: "./media/characters/kassandra/intersex.svg",
  47758. extra: 908/839,
  47759. bottom: 61/969
  47760. }
  47761. },
  47762. },
  47763. [
  47764. {
  47765. name: "Normal",
  47766. height: math.unit(9 + 4/12, "feet"),
  47767. default: true
  47768. },
  47769. ]
  47770. ))
  47771. characterMakers.push(() => makeCharacter(
  47772. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47773. {
  47774. front: {
  47775. height: math.unit(3, "meters"),
  47776. name: "Front",
  47777. image: {
  47778. source: "./media/characters/amy/front.svg",
  47779. extra: 1380/1343,
  47780. bottom: 70/1450
  47781. }
  47782. },
  47783. back: {
  47784. height: math.unit(3, "meters"),
  47785. name: "Back",
  47786. image: {
  47787. source: "./media/characters/amy/back.svg",
  47788. extra: 1380/1347,
  47789. bottom: 66/1446
  47790. }
  47791. },
  47792. },
  47793. [
  47794. {
  47795. name: "Normal",
  47796. height: math.unit(3, "meters"),
  47797. default: true
  47798. },
  47799. ]
  47800. ))
  47801. characterMakers.push(() => makeCharacter(
  47802. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47803. {
  47804. side: {
  47805. height: math.unit(47, "cm"),
  47806. weight: math.unit(10.8, "kg"),
  47807. name: "Side",
  47808. image: {
  47809. source: "./media/characters/alphaschakal/side.svg",
  47810. extra: 1058/568,
  47811. bottom: 62/1120
  47812. }
  47813. },
  47814. back: {
  47815. height: math.unit(78, "cm"),
  47816. weight: math.unit(10.8, "kg"),
  47817. name: "Back",
  47818. image: {
  47819. source: "./media/characters/alphaschakal/back.svg",
  47820. extra: 1102/942,
  47821. bottom: 185/1287
  47822. }
  47823. },
  47824. head: {
  47825. height: math.unit(28, "cm"),
  47826. name: "Head",
  47827. image: {
  47828. source: "./media/characters/alphaschakal/head.svg",
  47829. extra: 696/508,
  47830. bottom: 0/696
  47831. }
  47832. },
  47833. paw: {
  47834. height: math.unit(16, "cm"),
  47835. name: "Paw",
  47836. image: {
  47837. source: "./media/characters/alphaschakal/paw.svg"
  47838. }
  47839. },
  47840. },
  47841. [
  47842. {
  47843. name: "Normal",
  47844. height: math.unit(47, "cm"),
  47845. default: true
  47846. },
  47847. {
  47848. name: "Macro",
  47849. height: math.unit(340, "cm")
  47850. },
  47851. ]
  47852. ))
  47853. characterMakers.push(() => makeCharacter(
  47854. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47855. {
  47856. front: {
  47857. height: math.unit(36, "earths"),
  47858. name: "Front",
  47859. image: {
  47860. source: "./media/characters/ecobyss/front.svg",
  47861. extra: 1282/1215,
  47862. bottom: 11/1293
  47863. }
  47864. },
  47865. back: {
  47866. height: math.unit(36, "earths"),
  47867. name: "Back",
  47868. image: {
  47869. source: "./media/characters/ecobyss/back.svg",
  47870. extra: 1291/1222,
  47871. bottom: 8/1299
  47872. }
  47873. },
  47874. },
  47875. [
  47876. {
  47877. name: "Normal",
  47878. height: math.unit(36, "earths"),
  47879. default: true
  47880. },
  47881. ]
  47882. ))
  47883. characterMakers.push(() => makeCharacter(
  47884. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47885. {
  47886. front: {
  47887. height: math.unit(12, "feet"),
  47888. name: "Front",
  47889. image: {
  47890. source: "./media/characters/vasuk/front.svg",
  47891. extra: 1326/1207,
  47892. bottom: 64/1390
  47893. }
  47894. },
  47895. },
  47896. [
  47897. {
  47898. name: "Normal",
  47899. height: math.unit(12, "feet"),
  47900. default: true
  47901. },
  47902. ]
  47903. ))
  47904. characterMakers.push(() => makeCharacter(
  47905. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47906. {
  47907. side: {
  47908. height: math.unit(100, "feet"),
  47909. name: "Side",
  47910. image: {
  47911. source: "./media/characters/linneaus/side.svg",
  47912. extra: 987/807,
  47913. bottom: 47/1034
  47914. }
  47915. },
  47916. },
  47917. [
  47918. {
  47919. name: "Macro",
  47920. height: math.unit(100, "feet"),
  47921. default: true
  47922. },
  47923. ]
  47924. ))
  47925. characterMakers.push(() => makeCharacter(
  47926. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47927. {
  47928. front: {
  47929. height: math.unit(8, "feet"),
  47930. weight: math.unit(1200, "lb"),
  47931. name: "Front",
  47932. image: {
  47933. source: "./media/characters/nyterious-daligdig/front.svg",
  47934. extra: 1284/1094,
  47935. bottom: 84/1368
  47936. }
  47937. },
  47938. back: {
  47939. height: math.unit(8, "feet"),
  47940. weight: math.unit(1200, "lb"),
  47941. name: "Back",
  47942. image: {
  47943. source: "./media/characters/nyterious-daligdig/back.svg",
  47944. extra: 1301/1121,
  47945. bottom: 129/1430
  47946. }
  47947. },
  47948. mouth: {
  47949. height: math.unit(1.464, "feet"),
  47950. name: "Mouth",
  47951. image: {
  47952. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47953. }
  47954. },
  47955. },
  47956. [
  47957. {
  47958. name: "Small",
  47959. height: math.unit(8, "feet"),
  47960. default: true
  47961. },
  47962. {
  47963. name: "Normal",
  47964. height: math.unit(15, "feet")
  47965. },
  47966. {
  47967. name: "Macro",
  47968. height: math.unit(90, "feet")
  47969. },
  47970. ]
  47971. ))
  47972. characterMakers.push(() => makeCharacter(
  47973. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47974. {
  47975. front: {
  47976. height: math.unit(7 + 4/12, "feet"),
  47977. weight: math.unit(252, "lb"),
  47978. name: "Front",
  47979. image: {
  47980. source: "./media/characters/bandel/front.svg",
  47981. extra: 1946/1775,
  47982. bottom: 26/1972
  47983. }
  47984. },
  47985. back: {
  47986. height: math.unit(7 + 4/12, "feet"),
  47987. weight: math.unit(252, "lb"),
  47988. name: "Back",
  47989. image: {
  47990. source: "./media/characters/bandel/back.svg",
  47991. extra: 1940/1770,
  47992. bottom: 25/1965
  47993. }
  47994. },
  47995. maw: {
  47996. height: math.unit(2.15, "feet"),
  47997. name: "Maw",
  47998. image: {
  47999. source: "./media/characters/bandel/maw.svg"
  48000. }
  48001. },
  48002. stomach: {
  48003. height: math.unit(1.95, "feet"),
  48004. name: "Stomach",
  48005. image: {
  48006. source: "./media/characters/bandel/stomach.svg"
  48007. }
  48008. },
  48009. },
  48010. [
  48011. {
  48012. name: "Normal",
  48013. height: math.unit(7 + 4/12, "feet"),
  48014. default: true
  48015. },
  48016. ]
  48017. ))
  48018. characterMakers.push(() => makeCharacter(
  48019. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48020. {
  48021. front: {
  48022. height: math.unit(10 + 5/12, "feet"),
  48023. weight: math.unit(773.5, "kg"),
  48024. name: "Front",
  48025. image: {
  48026. source: "./media/characters/zed/front.svg",
  48027. extra: 987/941,
  48028. bottom: 52/1039
  48029. }
  48030. },
  48031. },
  48032. [
  48033. {
  48034. name: "Short",
  48035. height: math.unit(5 + 4/12, "feet")
  48036. },
  48037. {
  48038. name: "Average",
  48039. height: math.unit(10 + 5/12, "feet"),
  48040. default: true
  48041. },
  48042. {
  48043. name: "Mini-Macro",
  48044. height: math.unit(24 + 9/12, "feet")
  48045. },
  48046. {
  48047. name: "Macro",
  48048. height: math.unit(249, "feet")
  48049. },
  48050. {
  48051. name: "Mega-Macro",
  48052. height: math.unit(12490, "feet")
  48053. },
  48054. {
  48055. name: "Giga-Macro",
  48056. height: math.unit(24.9, "miles")
  48057. },
  48058. {
  48059. name: "Tera-Macro",
  48060. height: math.unit(24900, "miles")
  48061. },
  48062. {
  48063. name: "Cosmic Scale",
  48064. height: math.unit(38.9, "lightyears")
  48065. },
  48066. {
  48067. name: "Universal Scale",
  48068. height: math.unit(138e12, "lightyears")
  48069. },
  48070. ]
  48071. ))
  48072. characterMakers.push(() => makeCharacter(
  48073. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48074. {
  48075. front: {
  48076. height: math.unit(1561, "inches"),
  48077. name: "Front",
  48078. image: {
  48079. source: "./media/characters/ivan/front.svg",
  48080. extra: 1126/1071,
  48081. bottom: 26/1152
  48082. }
  48083. },
  48084. back: {
  48085. height: math.unit(1561, "inches"),
  48086. name: "Back",
  48087. image: {
  48088. source: "./media/characters/ivan/back.svg",
  48089. extra: 1134/1079,
  48090. bottom: 30/1164
  48091. }
  48092. },
  48093. },
  48094. [
  48095. {
  48096. name: "Normal",
  48097. height: math.unit(1561, "inches"),
  48098. default: true
  48099. },
  48100. ]
  48101. ))
  48102. characterMakers.push(() => makeCharacter(
  48103. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48104. {
  48105. front: {
  48106. height: math.unit(5 + 7/12, "feet"),
  48107. weight: math.unit(150, "lb"),
  48108. name: "Front",
  48109. image: {
  48110. source: "./media/characters/robin-arctic-hare/front.svg",
  48111. extra: 1148/974,
  48112. bottom: 20/1168
  48113. }
  48114. },
  48115. },
  48116. [
  48117. {
  48118. name: "Normal",
  48119. height: math.unit(5 + 7/12, "feet"),
  48120. default: true
  48121. },
  48122. ]
  48123. ))
  48124. characterMakers.push(() => makeCharacter(
  48125. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48126. {
  48127. side: {
  48128. height: math.unit(5, "feet"),
  48129. name: "Side",
  48130. image: {
  48131. source: "./media/characters/birch/side.svg",
  48132. extra: 985/796,
  48133. bottom: 111/1096
  48134. }
  48135. },
  48136. },
  48137. [
  48138. {
  48139. name: "Normal",
  48140. height: math.unit(5, "feet"),
  48141. default: true
  48142. },
  48143. ]
  48144. ))
  48145. characterMakers.push(() => makeCharacter(
  48146. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48147. {
  48148. front: {
  48149. height: math.unit(4, "feet"),
  48150. name: "Front",
  48151. image: {
  48152. source: "./media/characters/rasp/front.svg",
  48153. extra: 561/478,
  48154. bottom: 74/635
  48155. }
  48156. },
  48157. },
  48158. [
  48159. {
  48160. name: "Normal",
  48161. height: math.unit(4, "feet"),
  48162. default: true
  48163. },
  48164. ]
  48165. ))
  48166. characterMakers.push(() => makeCharacter(
  48167. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48168. {
  48169. front: {
  48170. height: math.unit(4 + 6/12, "feet"),
  48171. name: "Front",
  48172. image: {
  48173. source: "./media/characters/agatha/front.svg",
  48174. extra: 947/933,
  48175. bottom: 42/989
  48176. }
  48177. },
  48178. back: {
  48179. height: math.unit(4 + 6/12, "feet"),
  48180. name: "Back",
  48181. image: {
  48182. source: "./media/characters/agatha/back.svg",
  48183. extra: 935/922,
  48184. bottom: 48/983
  48185. }
  48186. },
  48187. },
  48188. [
  48189. {
  48190. name: "Normal",
  48191. height: math.unit(4 + 6 /12, "feet"),
  48192. default: true
  48193. },
  48194. {
  48195. name: "Max Size",
  48196. height: math.unit(500, "feet")
  48197. },
  48198. ]
  48199. ))
  48200. characterMakers.push(() => makeCharacter(
  48201. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48202. {
  48203. side: {
  48204. height: math.unit(30, "feet"),
  48205. name: "Side",
  48206. image: {
  48207. source: "./media/characters/roggy/side.svg",
  48208. extra: 909/643,
  48209. bottom: 63/972
  48210. }
  48211. },
  48212. lounging: {
  48213. height: math.unit(20, "feet"),
  48214. name: "Lounging",
  48215. image: {
  48216. source: "./media/characters/roggy/lounging.svg",
  48217. extra: 643/479,
  48218. bottom: 145/788
  48219. }
  48220. },
  48221. handpaw: {
  48222. height: math.unit(13.1, "feet"),
  48223. name: "Handpaw",
  48224. image: {
  48225. source: "./media/characters/roggy/handpaw.svg"
  48226. }
  48227. },
  48228. footpaw: {
  48229. height: math.unit(15.8, "feet"),
  48230. name: "Footpaw",
  48231. image: {
  48232. source: "./media/characters/roggy/footpaw.svg"
  48233. }
  48234. },
  48235. },
  48236. [
  48237. {
  48238. name: "Menacing",
  48239. height: math.unit(30, "feet"),
  48240. default: true
  48241. },
  48242. ]
  48243. ))
  48244. characterMakers.push(() => makeCharacter(
  48245. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48246. {
  48247. front: {
  48248. height: math.unit(5 + 7/12, "feet"),
  48249. weight: math.unit(135, "lb"),
  48250. name: "Front",
  48251. image: {
  48252. source: "./media/characters/naomi/front.svg",
  48253. extra: 1209/1154,
  48254. bottom: 129/1338
  48255. }
  48256. },
  48257. back: {
  48258. height: math.unit(5 + 7/12, "feet"),
  48259. weight: math.unit(135, "lb"),
  48260. name: "Back",
  48261. image: {
  48262. source: "./media/characters/naomi/back.svg",
  48263. extra: 1252/1190,
  48264. bottom: 23/1275
  48265. }
  48266. },
  48267. },
  48268. [
  48269. {
  48270. name: "Normal",
  48271. height: math.unit(5 + 7 /12, "feet"),
  48272. default: true
  48273. },
  48274. ]
  48275. ))
  48276. characterMakers.push(() => makeCharacter(
  48277. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48278. {
  48279. side: {
  48280. height: math.unit(35, "meters"),
  48281. name: "Side",
  48282. image: {
  48283. source: "./media/characters/kimpi/side.svg",
  48284. extra: 419/382,
  48285. bottom: 63/482
  48286. }
  48287. },
  48288. hand: {
  48289. height: math.unit(8.96, "meters"),
  48290. name: "Hand",
  48291. image: {
  48292. source: "./media/characters/kimpi/hand.svg"
  48293. }
  48294. },
  48295. },
  48296. [
  48297. {
  48298. name: "Normal",
  48299. height: math.unit(35, "meters"),
  48300. default: true
  48301. },
  48302. ]
  48303. ))
  48304. characterMakers.push(() => makeCharacter(
  48305. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48306. {
  48307. front: {
  48308. height: math.unit(4 + 4/12, "feet"),
  48309. name: "Front",
  48310. image: {
  48311. source: "./media/characters/pepper-purrloin/front.svg",
  48312. extra: 1141/1024,
  48313. bottom: 21/1162
  48314. }
  48315. },
  48316. },
  48317. [
  48318. {
  48319. name: "Normal",
  48320. height: math.unit(4 + 4/12, "feet"),
  48321. default: true
  48322. },
  48323. ]
  48324. ))
  48325. characterMakers.push(() => makeCharacter(
  48326. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48327. {
  48328. front: {
  48329. height: math.unit(6 + 2/12, "feet"),
  48330. name: "Front",
  48331. image: {
  48332. source: "./media/characters/raphael/front.svg",
  48333. extra: 1101/962,
  48334. bottom: 59/1160
  48335. }
  48336. },
  48337. },
  48338. [
  48339. {
  48340. name: "Normal",
  48341. height: math.unit(6 + 2/12, "feet"),
  48342. default: true
  48343. },
  48344. ]
  48345. ))
  48346. characterMakers.push(() => makeCharacter(
  48347. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48348. {
  48349. front: {
  48350. height: math.unit(6, "feet"),
  48351. weight: math.unit(150, "lb"),
  48352. name: "Front",
  48353. image: {
  48354. source: "./media/characters/victor-williams/front.svg",
  48355. extra: 1894/1825,
  48356. bottom: 67/1961
  48357. }
  48358. },
  48359. },
  48360. [
  48361. {
  48362. name: "Normal",
  48363. height: math.unit(6, "feet"),
  48364. default: true
  48365. },
  48366. ]
  48367. ))
  48368. characterMakers.push(() => makeCharacter(
  48369. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48370. {
  48371. front: {
  48372. height: math.unit(5 + 8/12, "feet"),
  48373. weight: math.unit(150, "lb"),
  48374. name: "Front",
  48375. image: {
  48376. source: "./media/characters/rachel/front.svg",
  48377. extra: 1902/1787,
  48378. bottom: 46/1948
  48379. }
  48380. },
  48381. },
  48382. [
  48383. {
  48384. name: "Base Height",
  48385. height: math.unit(5 + 8/12, "feet"),
  48386. default: true
  48387. },
  48388. {
  48389. name: "Macro",
  48390. height: math.unit(200, "feet")
  48391. },
  48392. {
  48393. name: "Mega Macro",
  48394. height: math.unit(1, "mile")
  48395. },
  48396. {
  48397. name: "Giga Macro",
  48398. height: math.unit(1500, "miles")
  48399. },
  48400. {
  48401. name: "Tera Macro",
  48402. height: math.unit(8000, "miles")
  48403. },
  48404. {
  48405. name: "Tera Macro+",
  48406. height: math.unit(2e5, "miles")
  48407. },
  48408. ]
  48409. ))
  48410. characterMakers.push(() => makeCharacter(
  48411. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48412. {
  48413. front: {
  48414. height: math.unit(6.5, "feet"),
  48415. name: "Front",
  48416. image: {
  48417. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48418. extra: 860/819,
  48419. bottom: 307/1167
  48420. }
  48421. },
  48422. back: {
  48423. height: math.unit(6.5, "feet"),
  48424. name: "Back",
  48425. image: {
  48426. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48427. extra: 880/837,
  48428. bottom: 395/1275
  48429. }
  48430. },
  48431. sleeping: {
  48432. height: math.unit(2.79, "feet"),
  48433. name: "Sleeping",
  48434. image: {
  48435. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48436. extra: 465/383,
  48437. bottom: 263/728
  48438. }
  48439. },
  48440. maw: {
  48441. height: math.unit(2.52, "feet"),
  48442. name: "Maw",
  48443. image: {
  48444. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48445. }
  48446. },
  48447. },
  48448. [
  48449. {
  48450. name: "Normal",
  48451. height: math.unit(6.5, "feet"),
  48452. default: true
  48453. },
  48454. ]
  48455. ))
  48456. characterMakers.push(() => makeCharacter(
  48457. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48458. {
  48459. front: {
  48460. height: math.unit(5, "feet"),
  48461. name: "Front",
  48462. image: {
  48463. source: "./media/characters/nova-nerium/front.svg",
  48464. extra: 1548/1392,
  48465. bottom: 374/1922
  48466. }
  48467. },
  48468. back: {
  48469. height: math.unit(5, "feet"),
  48470. name: "Back",
  48471. image: {
  48472. source: "./media/characters/nova-nerium/back.svg",
  48473. extra: 1658/1468,
  48474. bottom: 257/1915
  48475. }
  48476. },
  48477. },
  48478. [
  48479. {
  48480. name: "Normal",
  48481. height: math.unit(5, "feet"),
  48482. default: true
  48483. },
  48484. ]
  48485. ))
  48486. characterMakers.push(() => makeCharacter(
  48487. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48488. {
  48489. front: {
  48490. height: math.unit(5 + 4/12, "feet"),
  48491. name: "Front",
  48492. image: {
  48493. source: "./media/characters/ashe-pyriph/front.svg",
  48494. extra: 1935/1747,
  48495. bottom: 60/1995
  48496. }
  48497. },
  48498. },
  48499. [
  48500. {
  48501. name: "Normal",
  48502. height: math.unit(5 + 4/12, "feet"),
  48503. default: true
  48504. },
  48505. ]
  48506. ))
  48507. characterMakers.push(() => makeCharacter(
  48508. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48509. {
  48510. front: {
  48511. height: math.unit(8.7, "feet"),
  48512. name: "Front",
  48513. image: {
  48514. source: "./media/characters/flicker-wisp/front.svg",
  48515. extra: 1835/1613,
  48516. bottom: 449/2284
  48517. }
  48518. },
  48519. side: {
  48520. height: math.unit(8.7, "feet"),
  48521. name: "Side",
  48522. image: {
  48523. source: "./media/characters/flicker-wisp/side.svg",
  48524. extra: 1841/1642,
  48525. bottom: 336/2177
  48526. },
  48527. default: true
  48528. },
  48529. maw: {
  48530. height: math.unit(3.35, "feet"),
  48531. name: "Maw",
  48532. image: {
  48533. source: "./media/characters/flicker-wisp/maw.svg",
  48534. extra: 2338/1506,
  48535. bottom: 0/2338
  48536. }
  48537. },
  48538. ovipositor: {
  48539. height: math.unit(4.95, "feet"),
  48540. name: "Ovipositor",
  48541. image: {
  48542. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48543. }
  48544. },
  48545. egg: {
  48546. height: math.unit(0.385, "feet"),
  48547. weight: math.unit(2, "lb"),
  48548. name: "Egg",
  48549. image: {
  48550. source: "./media/characters/flicker-wisp/egg.svg"
  48551. }
  48552. },
  48553. },
  48554. [
  48555. {
  48556. name: "Normal",
  48557. height: math.unit(8.7, "feet"),
  48558. default: true
  48559. },
  48560. ]
  48561. ))
  48562. characterMakers.push(() => makeCharacter(
  48563. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48564. {
  48565. side: {
  48566. height: math.unit(11, "feet"),
  48567. name: "Side",
  48568. image: {
  48569. source: "./media/characters/faefnul/side.svg",
  48570. extra: 1100/1007,
  48571. bottom: 0/1100
  48572. }
  48573. },
  48574. },
  48575. [
  48576. {
  48577. name: "Normal",
  48578. height: math.unit(11, "feet"),
  48579. default: true
  48580. },
  48581. ]
  48582. ))
  48583. characterMakers.push(() => makeCharacter(
  48584. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48585. {
  48586. front: {
  48587. height: math.unit(6 + 2/12, "feet"),
  48588. name: "Front",
  48589. image: {
  48590. source: "./media/characters/shady/front.svg",
  48591. extra: 502/461,
  48592. bottom: 9/511
  48593. }
  48594. },
  48595. kneeling: {
  48596. height: math.unit(4.6, "feet"),
  48597. name: "Kneeling",
  48598. image: {
  48599. source: "./media/characters/shady/kneeling.svg",
  48600. extra: 1328/1219,
  48601. bottom: 117/1445
  48602. }
  48603. },
  48604. maw: {
  48605. height: math.unit(2, "feet"),
  48606. name: "Maw",
  48607. image: {
  48608. source: "./media/characters/shady/maw.svg"
  48609. }
  48610. },
  48611. },
  48612. [
  48613. {
  48614. name: "Nano",
  48615. height: math.unit(1, "mm")
  48616. },
  48617. {
  48618. name: "Micro",
  48619. height: math.unit(12, "mm")
  48620. },
  48621. {
  48622. name: "Tiny",
  48623. height: math.unit(3, "inches")
  48624. },
  48625. {
  48626. name: "Normal",
  48627. height: math.unit(6 + 2/12, "feet"),
  48628. default: true
  48629. },
  48630. {
  48631. name: "Big",
  48632. height: math.unit(15, "feet")
  48633. },
  48634. {
  48635. name: "Macro",
  48636. height: math.unit(150, "feet")
  48637. },
  48638. {
  48639. name: "Titanic",
  48640. height: math.unit(500, "feet")
  48641. },
  48642. ]
  48643. ))
  48644. characterMakers.push(() => makeCharacter(
  48645. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48646. {
  48647. front: {
  48648. height: math.unit(12, "feet"),
  48649. name: "Front",
  48650. image: {
  48651. source: "./media/characters/fenrir/front.svg",
  48652. extra: 968/875,
  48653. bottom: 22/990
  48654. }
  48655. },
  48656. },
  48657. [
  48658. {
  48659. name: "Big",
  48660. height: math.unit(12, "feet"),
  48661. default: true
  48662. },
  48663. ]
  48664. ))
  48665. characterMakers.push(() => makeCharacter(
  48666. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48667. {
  48668. front: {
  48669. height: math.unit(5 + 4/12, "feet"),
  48670. name: "Front",
  48671. image: {
  48672. source: "./media/characters/makar/front.svg",
  48673. extra: 1181/1112,
  48674. bottom: 78/1259
  48675. }
  48676. },
  48677. },
  48678. [
  48679. {
  48680. name: "Normal",
  48681. height: math.unit(5 + 4/12, "feet"),
  48682. default: true
  48683. },
  48684. ]
  48685. ))
  48686. characterMakers.push(() => makeCharacter(
  48687. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48688. {
  48689. front: {
  48690. height: math.unit(5 + 7/12, "feet"),
  48691. name: "Front",
  48692. image: {
  48693. source: "./media/characters/callow/front.svg",
  48694. extra: 1482/1304,
  48695. bottom: 23/1505
  48696. }
  48697. },
  48698. back: {
  48699. height: math.unit(5 + 7/12, "feet"),
  48700. name: "Back",
  48701. image: {
  48702. source: "./media/characters/callow/back.svg",
  48703. extra: 1484/1296,
  48704. bottom: 25/1509
  48705. }
  48706. },
  48707. },
  48708. [
  48709. {
  48710. name: "Micro",
  48711. height: math.unit(3, "inches"),
  48712. default: true
  48713. },
  48714. {
  48715. name: "Normal",
  48716. height: math.unit(5 + 7/12, "feet")
  48717. },
  48718. ]
  48719. ))
  48720. characterMakers.push(() => makeCharacter(
  48721. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48722. {
  48723. front: {
  48724. height: math.unit(6 + 2/12, "feet"),
  48725. name: "Front",
  48726. image: {
  48727. source: "./media/characters/natel/front.svg",
  48728. extra: 1833/1692,
  48729. bottom: 166/1999
  48730. }
  48731. },
  48732. },
  48733. [
  48734. {
  48735. name: "Normal",
  48736. height: math.unit(6 + 2/12, "feet"),
  48737. default: true
  48738. },
  48739. ]
  48740. ))
  48741. characterMakers.push(() => makeCharacter(
  48742. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48743. {
  48744. front: {
  48745. height: math.unit(1.75, "meters"),
  48746. name: "Front",
  48747. image: {
  48748. source: "./media/characters/misu/front.svg",
  48749. extra: 1690/1558,
  48750. bottom: 234/1924
  48751. }
  48752. },
  48753. back: {
  48754. height: math.unit(1.75, "meters"),
  48755. name: "Back",
  48756. image: {
  48757. source: "./media/characters/misu/back.svg",
  48758. extra: 1762/1618,
  48759. bottom: 146/1908
  48760. }
  48761. },
  48762. frontNude: {
  48763. height: math.unit(1.75, "meters"),
  48764. name: "Front (Nude)",
  48765. image: {
  48766. source: "./media/characters/misu/front-nude.svg",
  48767. extra: 1690/1558,
  48768. bottom: 234/1924
  48769. }
  48770. },
  48771. backNude: {
  48772. height: math.unit(1.75, "meters"),
  48773. name: "Back (Nude)",
  48774. image: {
  48775. source: "./media/characters/misu/back-nude.svg",
  48776. extra: 1762/1618,
  48777. bottom: 146/1908
  48778. }
  48779. },
  48780. frontErect: {
  48781. height: math.unit(1.75, "meters"),
  48782. name: "Front (Erect)",
  48783. image: {
  48784. source: "./media/characters/misu/front-erect.svg",
  48785. extra: 1690/1558,
  48786. bottom: 234/1924
  48787. }
  48788. },
  48789. maw: {
  48790. height: math.unit(0.47, "meters"),
  48791. name: "Maw",
  48792. image: {
  48793. source: "./media/characters/misu/maw.svg"
  48794. }
  48795. },
  48796. head: {
  48797. height: math.unit(0.35, "meters"),
  48798. name: "Head",
  48799. image: {
  48800. source: "./media/characters/misu/head.svg"
  48801. }
  48802. },
  48803. rear: {
  48804. height: math.unit(0.47, "meters"),
  48805. name: "Rear",
  48806. image: {
  48807. source: "./media/characters/misu/rear.svg"
  48808. }
  48809. },
  48810. },
  48811. [
  48812. {
  48813. name: "Normal",
  48814. height: math.unit(1.75, "meters")
  48815. },
  48816. {
  48817. name: "Not good for the people",
  48818. height: math.unit(42, "meters")
  48819. },
  48820. {
  48821. name: "Not good for the neighborhood",
  48822. height: math.unit(135, "meters")
  48823. },
  48824. {
  48825. name: "Bit bigger problem",
  48826. height: math.unit(380, "meters"),
  48827. default: true
  48828. },
  48829. {
  48830. name: "Not good for the city",
  48831. height: math.unit(1.5, "km")
  48832. },
  48833. {
  48834. name: "Not good for the county",
  48835. height: math.unit(5.5, "km")
  48836. },
  48837. {
  48838. name: "Not good for the state",
  48839. height: math.unit(25, "km")
  48840. },
  48841. {
  48842. name: "Not good for the country",
  48843. height: math.unit(125, "km")
  48844. },
  48845. {
  48846. name: "Not good for the continent",
  48847. height: math.unit(2100, "km")
  48848. },
  48849. {
  48850. name: "Not good for the planet",
  48851. height: math.unit(35000, "km")
  48852. },
  48853. {
  48854. name: "Just no",
  48855. height: math.unit(8.5e18, "km")
  48856. },
  48857. ]
  48858. ))
  48859. characterMakers.push(() => makeCharacter(
  48860. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48861. {
  48862. front: {
  48863. height: math.unit(6.5, "feet"),
  48864. name: "Front",
  48865. image: {
  48866. source: "./media/characters/poppy/front.svg",
  48867. extra: 1878/1812,
  48868. bottom: 43/1921
  48869. }
  48870. },
  48871. feet: {
  48872. height: math.unit(1.06, "feet"),
  48873. name: "Feet",
  48874. image: {
  48875. source: "./media/characters/poppy/feet.svg",
  48876. extra: 1083/1083,
  48877. bottom: 87/1170
  48878. }
  48879. },
  48880. },
  48881. [
  48882. {
  48883. name: "Human",
  48884. height: math.unit(6.5, "feet")
  48885. },
  48886. {
  48887. name: "Default",
  48888. height: math.unit(300, "feet"),
  48889. default: true
  48890. },
  48891. {
  48892. name: "Huge",
  48893. height: math.unit(850, "feet")
  48894. },
  48895. {
  48896. name: "Mega",
  48897. height: math.unit(8000, "feet")
  48898. },
  48899. {
  48900. name: "Giga",
  48901. height: math.unit(300, "miles")
  48902. },
  48903. ]
  48904. ))
  48905. characterMakers.push(() => makeCharacter(
  48906. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48907. {
  48908. bipedal: {
  48909. height: math.unit(7, "feet"),
  48910. name: "Bipedal",
  48911. image: {
  48912. source: "./media/characters/zener/bipedal.svg",
  48913. extra: 874/805,
  48914. bottom: 109/983
  48915. }
  48916. },
  48917. quadrupedal: {
  48918. height: math.unit(4.64, "feet"),
  48919. name: "Quadrupedal",
  48920. image: {
  48921. source: "./media/characters/zener/quadrupedal.svg",
  48922. extra: 638/507,
  48923. bottom: 190/828
  48924. }
  48925. },
  48926. cock: {
  48927. height: math.unit(18, "inches"),
  48928. name: "Cock",
  48929. image: {
  48930. source: "./media/characters/zener/cock.svg"
  48931. }
  48932. },
  48933. },
  48934. [
  48935. {
  48936. name: "Normal",
  48937. height: math.unit(7, "feet"),
  48938. default: true
  48939. },
  48940. ]
  48941. ))
  48942. characterMakers.push(() => makeCharacter(
  48943. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48944. {
  48945. nude: {
  48946. height: math.unit(5 + 6/12, "feet"),
  48947. name: "Nude",
  48948. image: {
  48949. source: "./media/characters/charlie-dog/nude.svg",
  48950. extra: 768/734,
  48951. bottom: 26/794
  48952. }
  48953. },
  48954. dressed: {
  48955. height: math.unit(5 + 6/12, "feet"),
  48956. name: "Dressed",
  48957. image: {
  48958. source: "./media/characters/charlie-dog/dressed.svg",
  48959. extra: 768/734,
  48960. bottom: 26/794
  48961. }
  48962. },
  48963. },
  48964. [
  48965. {
  48966. name: "Normal",
  48967. height: math.unit(5 + 6/12, "feet"),
  48968. default: true
  48969. },
  48970. ]
  48971. ))
  48972. characterMakers.push(() => makeCharacter(
  48973. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48974. {
  48975. front: {
  48976. height: math.unit(6 + 4/12, "feet"),
  48977. name: "Front",
  48978. image: {
  48979. source: "./media/characters/ir'istrasz/front.svg",
  48980. extra: 1014/977,
  48981. bottom: 65/1079
  48982. }
  48983. },
  48984. back: {
  48985. height: math.unit(6 + 4/12, "feet"),
  48986. name: "Back",
  48987. image: {
  48988. source: "./media/characters/ir'istrasz/back.svg",
  48989. extra: 1024/992,
  48990. bottom: 34/1058
  48991. }
  48992. },
  48993. },
  48994. [
  48995. {
  48996. name: "Normal",
  48997. height: math.unit(6 + 4/12, "feet"),
  48998. default: true
  48999. },
  49000. ]
  49001. ))
  49002. characterMakers.push(() => makeCharacter(
  49003. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49004. {
  49005. front: {
  49006. height: math.unit(5 + 8/12, "feet"),
  49007. name: "Front",
  49008. image: {
  49009. source: "./media/characters/dee-ditto/front.svg",
  49010. extra: 1874/1785,
  49011. bottom: 68/1942
  49012. }
  49013. },
  49014. back: {
  49015. height: math.unit(5 + 8/12, "feet"),
  49016. name: "Back",
  49017. image: {
  49018. source: "./media/characters/dee-ditto/back.svg",
  49019. extra: 1870/1783,
  49020. bottom: 77/1947
  49021. }
  49022. },
  49023. },
  49024. [
  49025. {
  49026. name: "Normal",
  49027. height: math.unit(5 + 8/12, "feet"),
  49028. default: true
  49029. },
  49030. ]
  49031. ))
  49032. characterMakers.push(() => makeCharacter(
  49033. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49034. {
  49035. front: {
  49036. height: math.unit(7 + 6/12, "feet"),
  49037. name: "Front",
  49038. image: {
  49039. source: "./media/characters/fey/front.svg",
  49040. extra: 995/979,
  49041. bottom: 30/1025
  49042. }
  49043. },
  49044. back: {
  49045. height: math.unit(7 + 6/12, "feet"),
  49046. name: "Back",
  49047. image: {
  49048. source: "./media/characters/fey/back.svg",
  49049. extra: 1079/1008,
  49050. bottom: 5/1084
  49051. }
  49052. },
  49053. dressed: {
  49054. height: math.unit(7 + 6/12, "feet"),
  49055. name: "Dressed",
  49056. image: {
  49057. source: "./media/characters/fey/dressed.svg",
  49058. extra: 995/979,
  49059. bottom: 30/1025
  49060. }
  49061. },
  49062. },
  49063. [
  49064. {
  49065. name: "Normal",
  49066. height: math.unit(7 + 6/12, "feet"),
  49067. default: true
  49068. },
  49069. ]
  49070. ))
  49071. characterMakers.push(() => makeCharacter(
  49072. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49073. {
  49074. standing: {
  49075. height: math.unit(17, "feet"),
  49076. name: "Standing",
  49077. image: {
  49078. source: "./media/characters/aster/standing.svg",
  49079. extra: 1798/1598,
  49080. bottom: 117/1915
  49081. }
  49082. },
  49083. },
  49084. [
  49085. {
  49086. name: "Normal",
  49087. height: math.unit(17, "feet"),
  49088. default: true
  49089. },
  49090. {
  49091. name: "Homewrecker",
  49092. height: math.unit(95, "feet")
  49093. },
  49094. {
  49095. name: "Planet Devourer",
  49096. height: math.unit(1008000, "miles")
  49097. },
  49098. ]
  49099. ))
  49100. characterMakers.push(() => makeCharacter(
  49101. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49102. {
  49103. front: {
  49104. height: math.unit(6 + 5/12, "feet"),
  49105. weight: math.unit(265, "lb"),
  49106. name: "Front",
  49107. image: {
  49108. source: "./media/characters/devon-childs/front.svg",
  49109. extra: 1795/1721,
  49110. bottom: 41/1836
  49111. }
  49112. },
  49113. side: {
  49114. height: math.unit(6 + 5/12, "feet"),
  49115. weight: math.unit(265, "lb"),
  49116. name: "Side",
  49117. image: {
  49118. source: "./media/characters/devon-childs/side.svg",
  49119. extra: 1812/1738,
  49120. bottom: 30/1842
  49121. }
  49122. },
  49123. back: {
  49124. height: math.unit(6 + 5/12, "feet"),
  49125. weight: math.unit(265, "lb"),
  49126. name: "Back",
  49127. image: {
  49128. source: "./media/characters/devon-childs/back.svg",
  49129. extra: 1808/1735,
  49130. bottom: 23/1831
  49131. }
  49132. },
  49133. hand: {
  49134. height: math.unit(1.464, "feet"),
  49135. name: "Hand",
  49136. image: {
  49137. source: "./media/characters/devon-childs/hand.svg"
  49138. }
  49139. },
  49140. foot: {
  49141. height: math.unit(1.6, "feet"),
  49142. name: "Foot",
  49143. image: {
  49144. source: "./media/characters/devon-childs/foot.svg"
  49145. }
  49146. },
  49147. },
  49148. [
  49149. {
  49150. name: "Micro",
  49151. height: math.unit(7, "cm")
  49152. },
  49153. {
  49154. name: "Normal",
  49155. height: math.unit(6 + 5/12, "feet"),
  49156. default: true
  49157. },
  49158. {
  49159. name: "Macro",
  49160. height: math.unit(154, "feet")
  49161. },
  49162. ]
  49163. ))
  49164. characterMakers.push(() => makeCharacter(
  49165. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49166. {
  49167. front: {
  49168. height: math.unit(6, "feet"),
  49169. weight: math.unit(180, "lb"),
  49170. name: "Front",
  49171. image: {
  49172. source: "./media/characters/lydemox-vir/front.svg",
  49173. extra: 1632/1435,
  49174. bottom: 58/1690
  49175. }
  49176. },
  49177. frontSFW: {
  49178. height: math.unit(6, "feet"),
  49179. weight: math.unit(180, "lb"),
  49180. name: "Front (SFW)",
  49181. image: {
  49182. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49183. extra: 1632/1435,
  49184. bottom: 58/1690
  49185. }
  49186. },
  49187. back: {
  49188. height: math.unit(6, "feet"),
  49189. weight: math.unit(180, "lb"),
  49190. name: "Back",
  49191. image: {
  49192. source: "./media/characters/lydemox-vir/back.svg",
  49193. extra: 1593/1408,
  49194. bottom: 31/1624
  49195. }
  49196. },
  49197. paw: {
  49198. height: math.unit(1.85, "feet"),
  49199. name: "Paw",
  49200. image: {
  49201. source: "./media/characters/lydemox-vir/paw.svg"
  49202. }
  49203. },
  49204. dick: {
  49205. height: math.unit(1.8, "feet"),
  49206. name: "Dick",
  49207. image: {
  49208. source: "./media/characters/lydemox-vir/dick.svg"
  49209. }
  49210. },
  49211. },
  49212. [
  49213. {
  49214. name: "Macro",
  49215. height: math.unit(100, "feet"),
  49216. default: true
  49217. },
  49218. {
  49219. name: "Teramacro",
  49220. height: math.unit(1, "earth")
  49221. },
  49222. {
  49223. name: "Planetary",
  49224. height: math.unit(20, "earths")
  49225. },
  49226. ]
  49227. ))
  49228. characterMakers.push(() => makeCharacter(
  49229. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49230. {
  49231. front: {
  49232. height: math.unit(15 + 8/12, "feet"),
  49233. weight: math.unit(1237, "kg"),
  49234. name: "Front",
  49235. image: {
  49236. source: "./media/characters/mia/front.svg",
  49237. extra: 1573/1446,
  49238. bottom: 58/1631
  49239. }
  49240. },
  49241. },
  49242. [
  49243. {
  49244. name: "Small",
  49245. height: math.unit(9 + 5/12, "feet")
  49246. },
  49247. {
  49248. name: "Normal",
  49249. height: math.unit(15 + 8/12, "feet"),
  49250. default: true
  49251. },
  49252. ]
  49253. ))
  49254. characterMakers.push(() => makeCharacter(
  49255. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49256. {
  49257. front: {
  49258. height: math.unit(10 + 6/12, "feet"),
  49259. weight: math.unit(1.3, "tons"),
  49260. name: "Front",
  49261. image: {
  49262. source: "./media/characters/mr-graves/front.svg",
  49263. extra: 1779/1695,
  49264. bottom: 198/1977
  49265. }
  49266. },
  49267. },
  49268. [
  49269. {
  49270. name: "Normal",
  49271. height: math.unit(10 + 6 /12, "feet"),
  49272. default: true
  49273. },
  49274. ]
  49275. ))
  49276. characterMakers.push(() => makeCharacter(
  49277. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49278. {
  49279. dressedFront: {
  49280. height: math.unit(5 + 8/12, "feet"),
  49281. weight: math.unit(125, "lb"),
  49282. name: "Dressed (Front)",
  49283. image: {
  49284. source: "./media/characters/jess/dressed-front.svg",
  49285. extra: 1176/1152,
  49286. bottom: 42/1218
  49287. }
  49288. },
  49289. dressedSide: {
  49290. height: math.unit(5 + 8/12, "feet"),
  49291. weight: math.unit(125, "lb"),
  49292. name: "Dressed (Side)",
  49293. image: {
  49294. source: "./media/characters/jess/dressed-side.svg",
  49295. extra: 1204/1190,
  49296. bottom: 6/1210
  49297. }
  49298. },
  49299. nudeFront: {
  49300. height: math.unit(5 + 8/12, "feet"),
  49301. weight: math.unit(125, "lb"),
  49302. name: "Nude (Front)",
  49303. image: {
  49304. source: "./media/characters/jess/nude-front.svg",
  49305. extra: 1176/1152,
  49306. bottom: 42/1218
  49307. }
  49308. },
  49309. nudeSide: {
  49310. height: math.unit(5 + 8/12, "feet"),
  49311. weight: math.unit(125, "lb"),
  49312. name: "Nude (Side)",
  49313. image: {
  49314. source: "./media/characters/jess/nude-side.svg",
  49315. extra: 1204/1190,
  49316. bottom: 6/1210
  49317. }
  49318. },
  49319. organsFront: {
  49320. height: math.unit(2.83799342105, "feet"),
  49321. name: "Organs (Front)",
  49322. image: {
  49323. source: "./media/characters/jess/organs-front.svg"
  49324. }
  49325. },
  49326. organsSide: {
  49327. height: math.unit(2.64225290474, "feet"),
  49328. name: "Organs (Side)",
  49329. image: {
  49330. source: "./media/characters/jess/organs-side.svg"
  49331. }
  49332. },
  49333. digestiveTractFront: {
  49334. height: math.unit(2.8106580871, "feet"),
  49335. name: "Digestive Tract (Front)",
  49336. image: {
  49337. source: "./media/characters/jess/digestive-tract-front.svg"
  49338. }
  49339. },
  49340. digestiveTractSide: {
  49341. height: math.unit(2.54365045014, "feet"),
  49342. name: "Digestive Tract (Side)",
  49343. image: {
  49344. source: "./media/characters/jess/digestive-tract-side.svg"
  49345. }
  49346. },
  49347. respiratorySystemFront: {
  49348. height: math.unit(1.11196233456, "feet"),
  49349. name: "Respiratory System (Front)",
  49350. image: {
  49351. source: "./media/characters/jess/respiratory-system-front.svg"
  49352. }
  49353. },
  49354. respiratorySystemSide: {
  49355. height: math.unit(0.89327966297, "feet"),
  49356. name: "Respiratory System (Side)",
  49357. image: {
  49358. source: "./media/characters/jess/respiratory-system-side.svg"
  49359. }
  49360. },
  49361. urinaryTractFront: {
  49362. height: math.unit(1.16126356186, "feet"),
  49363. name: "Urinary Tract (Front)",
  49364. image: {
  49365. source: "./media/characters/jess/urinary-tract-front.svg"
  49366. }
  49367. },
  49368. urinaryTractSide: {
  49369. height: math.unit(1.20910039627, "feet"),
  49370. name: "Urinary Tract (Side)",
  49371. image: {
  49372. source: "./media/characters/jess/urinary-tract-side.svg"
  49373. }
  49374. },
  49375. reproductiveOrgansFront: {
  49376. height: math.unit(0.48422591566, "feet"),
  49377. name: "Reproductive Organs (Front)",
  49378. image: {
  49379. source: "./media/characters/jess/reproductive-organs-front.svg"
  49380. }
  49381. },
  49382. reproductiveOrgansSide: {
  49383. height: math.unit(0.61553314481, "feet"),
  49384. name: "Reproductive Organs (Side)",
  49385. image: {
  49386. source: "./media/characters/jess/reproductive-organs-side.svg"
  49387. }
  49388. },
  49389. breastsFront: {
  49390. height: math.unit(0.47690395121, "feet"),
  49391. name: "Breasts (Front)",
  49392. image: {
  49393. source: "./media/characters/jess/breasts-front.svg"
  49394. }
  49395. },
  49396. breastsSide: {
  49397. height: math.unit(0.30556998307, "feet"),
  49398. name: "Breasts (Side)",
  49399. image: {
  49400. source: "./media/characters/jess/breasts-side.svg"
  49401. }
  49402. },
  49403. heartFront: {
  49404. height: math.unit(0.53011022622, "feet"),
  49405. name: "Heart (Front)",
  49406. image: {
  49407. source: "./media/characters/jess/heart-front.svg"
  49408. }
  49409. },
  49410. heartSide: {
  49411. height: math.unit(0.51790695213, "feet"),
  49412. name: "Heart (Side)",
  49413. image: {
  49414. source: "./media/characters/jess/heart-side.svg"
  49415. }
  49416. },
  49417. earsAndNoseFront: {
  49418. height: math.unit(0.29385483995, "feet"),
  49419. name: "Ears and Nose (Front)",
  49420. image: {
  49421. source: "./media/characters/jess/ears-and-nose-front.svg"
  49422. }
  49423. },
  49424. earsAndNoseSide: {
  49425. height: math.unit(0.18109658741, "feet"),
  49426. name: "Ears and Nose (Side)",
  49427. image: {
  49428. source: "./media/characters/jess/ears-and-nose-side.svg"
  49429. }
  49430. },
  49431. },
  49432. [
  49433. {
  49434. name: "Normal",
  49435. height: math.unit(5 + 8/12, "feet"),
  49436. default: true
  49437. },
  49438. ]
  49439. ))
  49440. characterMakers.push(() => makeCharacter(
  49441. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49442. {
  49443. front: {
  49444. height: math.unit(6, "feet"),
  49445. weight: math.unit(6.64467e-7, "grams"),
  49446. name: "Front",
  49447. image: {
  49448. source: "./media/characters/wimpering/front.svg",
  49449. extra: 597/587,
  49450. bottom: 34/631
  49451. }
  49452. },
  49453. },
  49454. [
  49455. {
  49456. name: "Micro",
  49457. height: math.unit(0.4, "mm"),
  49458. default: true
  49459. },
  49460. ]
  49461. ))
  49462. characterMakers.push(() => makeCharacter(
  49463. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49464. {
  49465. front: {
  49466. height: math.unit(5 + 2/12, "feet"),
  49467. weight: math.unit(110, "lb"),
  49468. name: "Front",
  49469. image: {
  49470. source: "./media/characters/keltre/front.svg",
  49471. extra: 1099/1057,
  49472. bottom: 22/1121
  49473. }
  49474. },
  49475. back: {
  49476. height: math.unit(5 + 2/12, "feet"),
  49477. weight: math.unit(110, "lb"),
  49478. name: "Back",
  49479. image: {
  49480. source: "./media/characters/keltre/back.svg",
  49481. extra: 1095/1053,
  49482. bottom: 17/1112
  49483. }
  49484. },
  49485. dressed: {
  49486. height: math.unit(5 + 2/12, "feet"),
  49487. weight: math.unit(110, "lb"),
  49488. name: "Dressed",
  49489. image: {
  49490. source: "./media/characters/keltre/dressed.svg",
  49491. extra: 1099/1057,
  49492. bottom: 22/1121
  49493. }
  49494. },
  49495. winter: {
  49496. height: math.unit(5 + 2/12, "feet"),
  49497. weight: math.unit(110, "lb"),
  49498. name: "Winter",
  49499. image: {
  49500. source: "./media/characters/keltre/winter.svg",
  49501. extra: 1099/1057,
  49502. bottom: 22/1121
  49503. }
  49504. },
  49505. head: {
  49506. height: math.unit(1.61 * 0.86, "feet"),
  49507. name: "Head",
  49508. image: {
  49509. source: "./media/characters/keltre/head.svg",
  49510. extra: 534/421,
  49511. bottom: 0/534
  49512. }
  49513. },
  49514. hand: {
  49515. height: math.unit(1.3 * 0.86, "feet"),
  49516. name: "Hand",
  49517. image: {
  49518. source: "./media/characters/keltre/hand.svg"
  49519. }
  49520. },
  49521. foot: {
  49522. height: math.unit(1.8 * 0.86, "feet"),
  49523. name: "Foot",
  49524. image: {
  49525. source: "./media/characters/keltre/foot.svg"
  49526. }
  49527. },
  49528. },
  49529. [
  49530. {
  49531. name: "Fine",
  49532. height: math.unit(1, "inch")
  49533. },
  49534. {
  49535. name: "Dimnutive",
  49536. height: math.unit(4, "inches")
  49537. },
  49538. {
  49539. name: "Tiny",
  49540. height: math.unit(1, "foot")
  49541. },
  49542. {
  49543. name: "Small",
  49544. height: math.unit(3, "feet")
  49545. },
  49546. {
  49547. name: "Normal",
  49548. height: math.unit(5 + 2/12, "feet"),
  49549. default: true
  49550. },
  49551. ]
  49552. ))
  49553. characterMakers.push(() => makeCharacter(
  49554. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49555. {
  49556. front: {
  49557. height: math.unit(6 + 2/12, "feet"),
  49558. name: "Front",
  49559. image: {
  49560. source: "./media/characters/nox/front.svg",
  49561. extra: 1917/1830,
  49562. bottom: 74/1991
  49563. }
  49564. },
  49565. back: {
  49566. height: math.unit(6 + 2/12, "feet"),
  49567. name: "Back",
  49568. image: {
  49569. source: "./media/characters/nox/back.svg",
  49570. extra: 1896/1815,
  49571. bottom: 21/1917
  49572. }
  49573. },
  49574. head: {
  49575. height: math.unit(1.1, "feet"),
  49576. name: "Head",
  49577. image: {
  49578. source: "./media/characters/nox/head.svg",
  49579. extra: 874/704,
  49580. bottom: 0/874
  49581. }
  49582. },
  49583. tattoo: {
  49584. height: math.unit(0.729, "feet"),
  49585. name: "Tattoo",
  49586. image: {
  49587. source: "./media/characters/nox/tattoo.svg"
  49588. }
  49589. },
  49590. },
  49591. [
  49592. {
  49593. name: "Normal",
  49594. height: math.unit(6 + 2/12, "feet")
  49595. },
  49596. {
  49597. name: "Gigamacro",
  49598. height: math.unit(2, "earths"),
  49599. default: true
  49600. },
  49601. {
  49602. name: "Cosmic",
  49603. height: math.unit(867, "yottameters")
  49604. },
  49605. ]
  49606. ))
  49607. characterMakers.push(() => makeCharacter(
  49608. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49609. {
  49610. front: {
  49611. height: math.unit(6, "feet"),
  49612. weight: math.unit(150, "lb"),
  49613. name: "Front",
  49614. image: {
  49615. source: "./media/characters/caspian/front.svg",
  49616. extra: 1443/1359,
  49617. bottom: 0/1443
  49618. }
  49619. },
  49620. back: {
  49621. height: math.unit(6, "feet"),
  49622. weight: math.unit(150, "lb"),
  49623. name: "Back",
  49624. image: {
  49625. source: "./media/characters/caspian/back.svg",
  49626. extra: 1379/1309,
  49627. bottom: 0/1379
  49628. }
  49629. },
  49630. head: {
  49631. height: math.unit(0.9, "feet"),
  49632. name: "Head",
  49633. image: {
  49634. source: "./media/characters/caspian/head.svg",
  49635. extra: 692/492,
  49636. bottom: 0/692
  49637. }
  49638. },
  49639. headAlt: {
  49640. height: math.unit(0.95, "feet"),
  49641. name: "Head (Alt)",
  49642. image: {
  49643. source: "./media/characters/caspian/head-alt.svg",
  49644. extra: 668/508,
  49645. bottom: 0/668
  49646. }
  49647. },
  49648. hand: {
  49649. height: math.unit(0.8, "feet"),
  49650. name: "Hand",
  49651. image: {
  49652. source: "./media/characters/caspian/hand.svg"
  49653. }
  49654. },
  49655. paw: {
  49656. height: math.unit(0.95, "feet"),
  49657. name: "Paw",
  49658. image: {
  49659. source: "./media/characters/caspian/paw.svg"
  49660. }
  49661. },
  49662. },
  49663. [
  49664. {
  49665. name: "Normal",
  49666. height: math.unit(162, "feet"),
  49667. default: true
  49668. },
  49669. ]
  49670. ))
  49671. characterMakers.push(() => makeCharacter(
  49672. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49673. {
  49674. front: {
  49675. height: math.unit(6, "feet"),
  49676. name: "Front",
  49677. image: {
  49678. source: "./media/characters/myra-aisling/front.svg",
  49679. extra: 1268/1166,
  49680. bottom: 73/1341
  49681. }
  49682. },
  49683. back: {
  49684. height: math.unit(6, "feet"),
  49685. name: "Back",
  49686. image: {
  49687. source: "./media/characters/myra-aisling/back.svg",
  49688. extra: 1249/1149,
  49689. bottom: 79/1328
  49690. }
  49691. },
  49692. dressed: {
  49693. height: math.unit(6, "feet"),
  49694. name: "Dressed",
  49695. image: {
  49696. source: "./media/characters/myra-aisling/dressed.svg",
  49697. extra: 1290/1189,
  49698. bottom: 47/1337
  49699. }
  49700. },
  49701. hand: {
  49702. height: math.unit(1.1, "feet"),
  49703. name: "Hand",
  49704. image: {
  49705. source: "./media/characters/myra-aisling/hand.svg"
  49706. }
  49707. },
  49708. paw: {
  49709. height: math.unit(1.23, "feet"),
  49710. name: "Paw",
  49711. image: {
  49712. source: "./media/characters/myra-aisling/paw.svg"
  49713. }
  49714. },
  49715. },
  49716. [
  49717. {
  49718. name: "Normal",
  49719. height: math.unit(160, "feet"),
  49720. default: true
  49721. },
  49722. ]
  49723. ))
  49724. characterMakers.push(() => makeCharacter(
  49725. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49726. {
  49727. front: {
  49728. height: math.unit(6, "feet"),
  49729. name: "Front",
  49730. image: {
  49731. source: "./media/characters/tenley-sidero/front.svg",
  49732. extra: 1365/1276,
  49733. bottom: 47/1412
  49734. }
  49735. },
  49736. back: {
  49737. height: math.unit(6, "feet"),
  49738. name: "Back",
  49739. image: {
  49740. source: "./media/characters/tenley-sidero/back.svg",
  49741. extra: 1383/1283,
  49742. bottom: 35/1418
  49743. }
  49744. },
  49745. dressed: {
  49746. height: math.unit(6, "feet"),
  49747. name: "Dressed",
  49748. image: {
  49749. source: "./media/characters/tenley-sidero/dressed.svg",
  49750. extra: 1364/1275,
  49751. bottom: 42/1406
  49752. }
  49753. },
  49754. head: {
  49755. height: math.unit(1.47, "feet"),
  49756. name: "Head",
  49757. image: {
  49758. source: "./media/characters/tenley-sidero/head.svg",
  49759. extra: 610/490,
  49760. bottom: 0/610
  49761. }
  49762. },
  49763. },
  49764. [
  49765. {
  49766. name: "Normal",
  49767. height: math.unit(154, "feet"),
  49768. default: true
  49769. },
  49770. ]
  49771. ))
  49772. characterMakers.push(() => makeCharacter(
  49773. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49774. {
  49775. front: {
  49776. height: math.unit(5, "inches"),
  49777. name: "Front",
  49778. image: {
  49779. source: "./media/characters/mallory/front.svg",
  49780. extra: 1919/1678,
  49781. bottom: 29/1948
  49782. }
  49783. },
  49784. hand: {
  49785. height: math.unit(0.73, "inches"),
  49786. name: "Hand",
  49787. image: {
  49788. source: "./media/characters/mallory/hand.svg"
  49789. }
  49790. },
  49791. paw: {
  49792. height: math.unit(0.68, "inches"),
  49793. name: "Paw",
  49794. image: {
  49795. source: "./media/characters/mallory/paw.svg"
  49796. }
  49797. },
  49798. },
  49799. [
  49800. {
  49801. name: "Small",
  49802. height: math.unit(5, "inches"),
  49803. default: true
  49804. },
  49805. ]
  49806. ))
  49807. characterMakers.push(() => makeCharacter(
  49808. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49809. {
  49810. naked: {
  49811. height: math.unit(6, "feet"),
  49812. name: "Naked",
  49813. image: {
  49814. source: "./media/characters/mab/naked.svg",
  49815. extra: 1855/1757,
  49816. bottom: 208/2063
  49817. }
  49818. },
  49819. outside: {
  49820. height: math.unit(6, "feet"),
  49821. name: "Outside",
  49822. image: {
  49823. source: "./media/characters/mab/outside.svg",
  49824. extra: 1855/1757,
  49825. bottom: 208/2063
  49826. }
  49827. },
  49828. party: {
  49829. height: math.unit(6, "feet"),
  49830. name: "Party",
  49831. image: {
  49832. source: "./media/characters/mab/party.svg",
  49833. extra: 1855/1757,
  49834. bottom: 208/2063
  49835. }
  49836. },
  49837. },
  49838. [
  49839. {
  49840. name: "Normal",
  49841. height: math.unit(165, "feet"),
  49842. default: true
  49843. },
  49844. ]
  49845. ))
  49846. characterMakers.push(() => makeCharacter(
  49847. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49848. {
  49849. feral: {
  49850. height: math.unit(12, "feet"),
  49851. weight: math.unit(20000, "lb"),
  49852. name: "Side",
  49853. image: {
  49854. source: "./media/characters/winter/feral.svg",
  49855. extra: 1286/943,
  49856. bottom: 112/1398
  49857. },
  49858. form: "feral",
  49859. default: true
  49860. },
  49861. feralNsfw: {
  49862. height: math.unit(12, "feet"),
  49863. weight: math.unit(20000, "lb"),
  49864. name: "Side (NSFW)",
  49865. image: {
  49866. source: "./media/characters/winter/feral-nsfw.svg",
  49867. extra: 1286/943,
  49868. bottom: 112/1398
  49869. },
  49870. form: "feral"
  49871. },
  49872. dick: {
  49873. height: math.unit(3.79, "feet"),
  49874. name: "Dick",
  49875. image: {
  49876. source: "./media/characters/winter/dick.svg"
  49877. },
  49878. form: "feral"
  49879. },
  49880. anthro: {
  49881. height: math.unit(12, "feet"),
  49882. weight: math.unit(10, "tons"),
  49883. name: "Anthro",
  49884. image: {
  49885. source: "./media/characters/winter/anthro.svg",
  49886. extra: 1701/1553,
  49887. bottom: 64/1765
  49888. },
  49889. form: "anthro",
  49890. default: true
  49891. },
  49892. },
  49893. [
  49894. {
  49895. name: "Big",
  49896. height: math.unit(12, "feet"),
  49897. default: true,
  49898. form: "feral"
  49899. },
  49900. {
  49901. name: "Big",
  49902. height: math.unit(12, "feet"),
  49903. default: true,
  49904. form: "anthro"
  49905. },
  49906. ],
  49907. {
  49908. "feral": {
  49909. name: "Feral",
  49910. default: true
  49911. },
  49912. "anthro": {
  49913. name: "Anthro"
  49914. }
  49915. }
  49916. ))
  49917. characterMakers.push(() => makeCharacter(
  49918. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49919. {
  49920. front: {
  49921. height: math.unit(4.1, "inches"),
  49922. name: "Front",
  49923. image: {
  49924. source: "./media/characters/alto/front.svg",
  49925. extra: 736/627,
  49926. bottom: 90/826
  49927. }
  49928. },
  49929. },
  49930. [
  49931. {
  49932. name: "Normal",
  49933. height: math.unit(4.1, "inches"),
  49934. default: true
  49935. },
  49936. ]
  49937. ))
  49938. characterMakers.push(() => makeCharacter(
  49939. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49940. {
  49941. sitting: {
  49942. height: math.unit(3, "feet"),
  49943. name: "Sitting",
  49944. image: {
  49945. source: "./media/characters/ratstrid-v/sitting.svg",
  49946. extra: 355/310,
  49947. bottom: 136/491
  49948. }
  49949. },
  49950. },
  49951. [
  49952. {
  49953. name: "Normal",
  49954. height: math.unit(3, "feet"),
  49955. default: true
  49956. },
  49957. ]
  49958. ))
  49959. characterMakers.push(() => makeCharacter(
  49960. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49961. {
  49962. back: {
  49963. height: math.unit(6, "feet"),
  49964. weight: math.unit(350, "lb"),
  49965. name: "Back",
  49966. image: {
  49967. source: "./media/characters/siz/back.svg",
  49968. extra: 1449/1274,
  49969. bottom: 13/1462
  49970. }
  49971. },
  49972. },
  49973. [
  49974. {
  49975. name: "Over-Overcompressed",
  49976. height: math.unit(8, "feet")
  49977. },
  49978. {
  49979. name: "Overcompressed",
  49980. height: math.unit(32, "feet")
  49981. },
  49982. {
  49983. name: "Compressed",
  49984. height: math.unit(128, "feet"),
  49985. default: true
  49986. },
  49987. {
  49988. name: "Half-Compressed",
  49989. height: math.unit(512, "feet")
  49990. },
  49991. {
  49992. name: "Quarter-Compressed",
  49993. height: math.unit(2048, "feet")
  49994. },
  49995. {
  49996. name: "Uncompressed?",
  49997. height: math.unit(8192, "feet")
  49998. },
  49999. ]
  50000. ))
  50001. characterMakers.push(() => makeCharacter(
  50002. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50003. {
  50004. front: {
  50005. height: math.unit(5 + 9/12, "feet"),
  50006. weight: math.unit(150, "lb"),
  50007. name: "Front",
  50008. image: {
  50009. source: "./media/characters/ven/front.svg",
  50010. extra: 1372/1320,
  50011. bottom: 73/1445
  50012. }
  50013. },
  50014. side: {
  50015. height: math.unit(5 + 9/12, "feet"),
  50016. weight: math.unit(1150, "lb"),
  50017. name: "Side",
  50018. image: {
  50019. source: "./media/characters/ven/side.svg",
  50020. extra: 1119/1070,
  50021. bottom: 42/1161
  50022. },
  50023. default: true
  50024. },
  50025. },
  50026. [
  50027. {
  50028. name: "Normal",
  50029. height: math.unit(5 + 9/12, "feet"),
  50030. default: true
  50031. },
  50032. ]
  50033. ))
  50034. characterMakers.push(() => makeCharacter(
  50035. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50036. {
  50037. front: {
  50038. height: math.unit(12, "feet"),
  50039. weight: math.unit(1000, "kg"),
  50040. name: "Front",
  50041. image: {
  50042. source: "./media/characters/maple/front.svg",
  50043. extra: 1193/1081,
  50044. bottom: 22/1215
  50045. }
  50046. },
  50047. },
  50048. [
  50049. {
  50050. name: "Compressed",
  50051. height: math.unit(7, "feet")
  50052. },
  50053. {
  50054. name: "Normal",
  50055. height: math.unit(12, "feet"),
  50056. default: true
  50057. },
  50058. ]
  50059. ))
  50060. characterMakers.push(() => makeCharacter(
  50061. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50062. {
  50063. front: {
  50064. height: math.unit(9, "feet"),
  50065. weight: math.unit(1500, "lb"),
  50066. name: "Front",
  50067. image: {
  50068. source: "./media/characters/nora/front.svg",
  50069. extra: 1348/1286,
  50070. bottom: 218/1566
  50071. }
  50072. },
  50073. erect: {
  50074. height: math.unit(9, "feet"),
  50075. weight: math.unit(11500, "lb"),
  50076. name: "Erect",
  50077. image: {
  50078. source: "./media/characters/nora/erect.svg",
  50079. extra: 1488/1433,
  50080. bottom: 133/1621
  50081. }
  50082. },
  50083. },
  50084. [
  50085. {
  50086. name: "Normal",
  50087. height: math.unit(9, "feet"),
  50088. default: true
  50089. },
  50090. ]
  50091. ))
  50092. characterMakers.push(() => makeCharacter(
  50093. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50094. {
  50095. front: {
  50096. height: math.unit(25, "feet"),
  50097. weight: math.unit(27500, "lb"),
  50098. name: "Front",
  50099. image: {
  50100. source: "./media/characters/north-caudin/front.svg",
  50101. extra: 1184/1082,
  50102. bottom: 23/1207
  50103. }
  50104. },
  50105. },
  50106. [
  50107. {
  50108. name: "Compressed",
  50109. height: math.unit(10, "feet")
  50110. },
  50111. {
  50112. name: "Normal",
  50113. height: math.unit(25, "feet"),
  50114. default: true
  50115. },
  50116. ]
  50117. ))
  50118. characterMakers.push(() => makeCharacter(
  50119. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50120. {
  50121. front: {
  50122. height: math.unit(9, "feet"),
  50123. weight: math.unit(1250, "lb"),
  50124. name: "Front",
  50125. image: {
  50126. source: "./media/characters/merrian/front.svg",
  50127. extra: 2393/2304,
  50128. bottom: 40/2433
  50129. }
  50130. },
  50131. },
  50132. [
  50133. {
  50134. name: "Normal",
  50135. height: math.unit(9, "feet"),
  50136. default: true
  50137. },
  50138. ]
  50139. ))
  50140. characterMakers.push(() => makeCharacter(
  50141. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50142. {
  50143. front: {
  50144. height: math.unit(9, "feet"),
  50145. weight: math.unit(1000, "lb"),
  50146. name: "Front",
  50147. image: {
  50148. source: "./media/characters/hazel/front.svg",
  50149. extra: 2351/2298,
  50150. bottom: 38/2389
  50151. }
  50152. },
  50153. },
  50154. [
  50155. {
  50156. name: "Normal",
  50157. height: math.unit(9, "feet"),
  50158. default: true
  50159. },
  50160. ]
  50161. ))
  50162. characterMakers.push(() => makeCharacter(
  50163. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50164. {
  50165. front: {
  50166. height: math.unit(13, "feet"),
  50167. weight: math.unit(3200, "lb"),
  50168. name: "Front",
  50169. image: {
  50170. source: "./media/characters/emma/front.svg",
  50171. extra: 2263/2029,
  50172. bottom: 68/2331
  50173. }
  50174. },
  50175. },
  50176. [
  50177. {
  50178. name: "Normal",
  50179. height: math.unit(13, "feet"),
  50180. default: true
  50181. },
  50182. ]
  50183. ))
  50184. characterMakers.push(() => makeCharacter(
  50185. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50186. {
  50187. front: {
  50188. height: math.unit(11 + 9/12, "feet"),
  50189. weight: math.unit(2500, "lb"),
  50190. name: "Front",
  50191. image: {
  50192. source: "./media/characters/ilumina/front.svg",
  50193. extra: 2248/2209,
  50194. bottom: 164/2412
  50195. }
  50196. },
  50197. },
  50198. [
  50199. {
  50200. name: "Normal",
  50201. height: math.unit(11 + 9/12, "feet"),
  50202. default: true
  50203. },
  50204. ]
  50205. ))
  50206. characterMakers.push(() => makeCharacter(
  50207. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50208. {
  50209. front: {
  50210. height: math.unit(8 + 10/12, "feet"),
  50211. weight: math.unit(1350, "lb"),
  50212. name: "Front",
  50213. image: {
  50214. source: "./media/characters/moonshine/front.svg",
  50215. extra: 2395/2288,
  50216. bottom: 40/2435
  50217. }
  50218. },
  50219. },
  50220. [
  50221. {
  50222. name: "Normal",
  50223. height: math.unit(8 + 10/12, "feet"),
  50224. default: true
  50225. },
  50226. ]
  50227. ))
  50228. characterMakers.push(() => makeCharacter(
  50229. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50230. {
  50231. front: {
  50232. height: math.unit(14, "feet"),
  50233. weight: math.unit(3400, "lb"),
  50234. name: "Front",
  50235. image: {
  50236. source: "./media/characters/aletia/front.svg",
  50237. extra: 1185/1052,
  50238. bottom: 21/1206
  50239. }
  50240. },
  50241. },
  50242. [
  50243. {
  50244. name: "Compressed",
  50245. height: math.unit(8, "feet")
  50246. },
  50247. {
  50248. name: "Normal",
  50249. height: math.unit(14, "feet"),
  50250. default: true
  50251. },
  50252. ]
  50253. ))
  50254. characterMakers.push(() => makeCharacter(
  50255. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50256. {
  50257. front: {
  50258. height: math.unit(17, "feet"),
  50259. weight: math.unit(6500, "lb"),
  50260. name: "Front",
  50261. image: {
  50262. source: "./media/characters/deidra/front.svg",
  50263. extra: 1201/1081,
  50264. bottom: 16/1217
  50265. }
  50266. },
  50267. },
  50268. [
  50269. {
  50270. name: "Compressed",
  50271. height: math.unit(9 + 6/12, "feet")
  50272. },
  50273. {
  50274. name: "Normal",
  50275. height: math.unit(17, "feet"),
  50276. default: true
  50277. },
  50278. ]
  50279. ))
  50280. characterMakers.push(() => makeCharacter(
  50281. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50282. {
  50283. front: {
  50284. height: math.unit(7 + 4/12, "feet"),
  50285. weight: math.unit(280, "lb"),
  50286. name: "Front",
  50287. image: {
  50288. source: "./media/characters/freki-yrmori/front.svg",
  50289. extra: 1286/1182,
  50290. bottom: 29/1315
  50291. }
  50292. },
  50293. maw: {
  50294. height: math.unit(0.9, "feet"),
  50295. name: "Maw",
  50296. image: {
  50297. source: "./media/characters/freki-yrmori/maw.svg"
  50298. }
  50299. },
  50300. },
  50301. [
  50302. {
  50303. name: "Normal",
  50304. height: math.unit(7 + 4/12, "feet"),
  50305. default: true
  50306. },
  50307. {
  50308. name: "Macro",
  50309. height: math.unit(38.5, "meters")
  50310. },
  50311. ]
  50312. ))
  50313. characterMakers.push(() => makeCharacter(
  50314. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50315. {
  50316. side: {
  50317. height: math.unit(47.2, "meters"),
  50318. weight: math.unit(10000, "tons"),
  50319. name: "Side",
  50320. image: {
  50321. source: "./media/characters/aetherios/side.svg",
  50322. extra: 2363/642,
  50323. bottom: 221/2584
  50324. }
  50325. },
  50326. top: {
  50327. height: math.unit(240, "meters"),
  50328. weight: math.unit(10000, "tons"),
  50329. name: "Top",
  50330. image: {
  50331. source: "./media/characters/aetherios/top.svg"
  50332. }
  50333. },
  50334. bottom: {
  50335. height: math.unit(240, "meters"),
  50336. weight: math.unit(10000, "tons"),
  50337. name: "Bottom",
  50338. image: {
  50339. source: "./media/characters/aetherios/bottom.svg"
  50340. }
  50341. },
  50342. head: {
  50343. height: math.unit(38.6, "meters"),
  50344. name: "Head",
  50345. image: {
  50346. source: "./media/characters/aetherios/head.svg",
  50347. extra: 1335/1112,
  50348. bottom: 0/1335
  50349. }
  50350. },
  50351. front: {
  50352. height: math.unit(29, "meters"),
  50353. name: "Front",
  50354. image: {
  50355. source: "./media/characters/aetherios/front.svg",
  50356. extra: 1266/953,
  50357. bottom: 158/1424
  50358. }
  50359. },
  50360. maw: {
  50361. height: math.unit(16.37, "meters"),
  50362. name: "Maw",
  50363. image: {
  50364. source: "./media/characters/aetherios/maw.svg",
  50365. extra: 748/637,
  50366. bottom: 0/748
  50367. },
  50368. extraAttributes: {
  50369. preyCapacity: {
  50370. name: "Capacity",
  50371. power: 3,
  50372. type: "volume",
  50373. base: math.unit(1000, "people")
  50374. },
  50375. tongueSize: {
  50376. name: "Tongue Size",
  50377. power: 2,
  50378. type: "area",
  50379. base: math.unit(21, "m^2")
  50380. }
  50381. }
  50382. },
  50383. forepaw: {
  50384. height: math.unit(18, "meters"),
  50385. name: "Forepaw",
  50386. image: {
  50387. source: "./media/characters/aetherios/forepaw.svg"
  50388. }
  50389. },
  50390. hindpaw: {
  50391. height: math.unit(23, "meters"),
  50392. name: "Hindpaw",
  50393. image: {
  50394. source: "./media/characters/aetherios/hindpaw.svg"
  50395. }
  50396. },
  50397. genitals: {
  50398. height: math.unit(42, "meters"),
  50399. name: "Genitals",
  50400. image: {
  50401. source: "./media/characters/aetherios/genitals.svg"
  50402. }
  50403. },
  50404. },
  50405. [
  50406. {
  50407. name: "Normal",
  50408. height: math.unit(47.2, "meters"),
  50409. default: true
  50410. },
  50411. {
  50412. name: "Macro",
  50413. height: math.unit(160, "meters")
  50414. },
  50415. {
  50416. name: "Mega",
  50417. height: math.unit(1.87, "km")
  50418. },
  50419. {
  50420. name: "Giga",
  50421. height: math.unit(40000, "km")
  50422. },
  50423. {
  50424. name: "Stellar",
  50425. height: math.unit(158000000, "km")
  50426. },
  50427. {
  50428. name: "Cosmic",
  50429. height: math.unit(9.46e12, "km")
  50430. },
  50431. ]
  50432. ))
  50433. characterMakers.push(() => makeCharacter(
  50434. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50435. {
  50436. front: {
  50437. height: math.unit(5 + 4/12, "feet"),
  50438. weight: math.unit(80, "lb"),
  50439. name: "Front",
  50440. image: {
  50441. source: "./media/characters/mizu-gieeg/front.svg",
  50442. extra: 850/709,
  50443. bottom: 52/902
  50444. }
  50445. },
  50446. back: {
  50447. height: math.unit(5 + 4/12, "feet"),
  50448. weight: math.unit(80, "lb"),
  50449. name: "Back",
  50450. image: {
  50451. source: "./media/characters/mizu-gieeg/back.svg",
  50452. extra: 882/745,
  50453. bottom: 25/907
  50454. }
  50455. },
  50456. },
  50457. [
  50458. {
  50459. name: "Normal",
  50460. height: math.unit(5 + 4/12, "feet"),
  50461. default: true
  50462. },
  50463. ]
  50464. ))
  50465. characterMakers.push(() => makeCharacter(
  50466. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50467. {
  50468. front: {
  50469. height: math.unit(6, "feet"),
  50470. name: "Front",
  50471. image: {
  50472. source: "./media/characters/roselle-st-papier/front.svg",
  50473. extra: 1430/1280,
  50474. bottom: 37/1467
  50475. }
  50476. },
  50477. back: {
  50478. height: math.unit(6, "feet"),
  50479. name: "Back",
  50480. image: {
  50481. source: "./media/characters/roselle-st-papier/back.svg",
  50482. extra: 1491/1296,
  50483. bottom: 23/1514
  50484. }
  50485. },
  50486. ear: {
  50487. height: math.unit(1.26, "feet"),
  50488. name: "Ear",
  50489. image: {
  50490. source: "./media/characters/roselle-st-papier/ear.svg"
  50491. }
  50492. },
  50493. },
  50494. [
  50495. {
  50496. name: "Normal",
  50497. height: math.unit(150, "feet"),
  50498. default: true
  50499. },
  50500. ]
  50501. ))
  50502. characterMakers.push(() => makeCharacter(
  50503. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50504. {
  50505. front: {
  50506. height: math.unit(1, "inches"),
  50507. name: "Front",
  50508. image: {
  50509. source: "./media/characters/valargent/front.svg",
  50510. extra: 1825/1694,
  50511. bottom: 62/1887
  50512. }
  50513. },
  50514. back: {
  50515. height: math.unit(1, "inches"),
  50516. name: "Back",
  50517. image: {
  50518. source: "./media/characters/valargent/back.svg",
  50519. extra: 1775/1682,
  50520. bottom: 88/1863
  50521. }
  50522. },
  50523. },
  50524. [
  50525. {
  50526. name: "Micro",
  50527. height: math.unit(1, "inch"),
  50528. default: true
  50529. },
  50530. ]
  50531. ))
  50532. characterMakers.push(() => makeCharacter(
  50533. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50534. {
  50535. front: {
  50536. height: math.unit(3.4, "meters"),
  50537. name: "Front",
  50538. image: {
  50539. source: "./media/characters/zarina/front.svg",
  50540. extra: 1733/1425,
  50541. bottom: 93/1826
  50542. }
  50543. },
  50544. squatting: {
  50545. height: math.unit(2.14, "meters"),
  50546. name: "Squatting",
  50547. image: {
  50548. source: "./media/characters/zarina/squatting.svg",
  50549. extra: 1073/788,
  50550. bottom: 63/1136
  50551. }
  50552. },
  50553. back: {
  50554. height: math.unit(2.14, "meters"),
  50555. name: "Back",
  50556. image: {
  50557. source: "./media/characters/zarina/back.svg",
  50558. extra: 1128/885,
  50559. bottom: 0/1128
  50560. }
  50561. },
  50562. },
  50563. [
  50564. {
  50565. name: "Normal",
  50566. height: math.unit(3.4, "meters"),
  50567. default: true
  50568. },
  50569. {
  50570. name: "Big",
  50571. height: math.unit(5, "meters")
  50572. },
  50573. {
  50574. name: "Macro",
  50575. height: math.unit(110, "meters")
  50576. },
  50577. ]
  50578. ))
  50579. characterMakers.push(() => makeCharacter(
  50580. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50581. {
  50582. front: {
  50583. height: math.unit(7, "feet"),
  50584. name: "Front",
  50585. image: {
  50586. source: "./media/characters/ventus-astro-fox/front.svg",
  50587. extra: 1792/1623,
  50588. bottom: 28/1820
  50589. }
  50590. },
  50591. back: {
  50592. height: math.unit(7, "feet"),
  50593. name: "Back",
  50594. image: {
  50595. source: "./media/characters/ventus-astro-fox/back.svg",
  50596. extra: 1789/1620,
  50597. bottom: 31/1820
  50598. }
  50599. },
  50600. outfit: {
  50601. height: math.unit(7, "feet"),
  50602. name: "Outfit",
  50603. image: {
  50604. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50605. extra: 1054/925,
  50606. bottom: 15/1069
  50607. }
  50608. },
  50609. head: {
  50610. height: math.unit(1.12, "feet"),
  50611. name: "Head",
  50612. image: {
  50613. source: "./media/characters/ventus-astro-fox/head.svg",
  50614. extra: 866/504,
  50615. bottom: 0/866
  50616. }
  50617. },
  50618. hand: {
  50619. height: math.unit(1, "feet"),
  50620. name: "Hand",
  50621. image: {
  50622. source: "./media/characters/ventus-astro-fox/hand.svg"
  50623. }
  50624. },
  50625. paw: {
  50626. height: math.unit(1.5, "feet"),
  50627. name: "Paw",
  50628. image: {
  50629. source: "./media/characters/ventus-astro-fox/paw.svg"
  50630. }
  50631. },
  50632. },
  50633. [
  50634. {
  50635. name: "Normal",
  50636. height: math.unit(7, "feet"),
  50637. default: true
  50638. },
  50639. {
  50640. name: "Macro",
  50641. height: math.unit(200, "feet")
  50642. },
  50643. {
  50644. name: "Cosmic",
  50645. height: math.unit(3, "universes")
  50646. },
  50647. ]
  50648. ))
  50649. characterMakers.push(() => makeCharacter(
  50650. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50651. {
  50652. front: {
  50653. height: math.unit(3, "meters"),
  50654. weight: math.unit(7000, "lb"),
  50655. name: "Front",
  50656. image: {
  50657. source: "./media/characters/core-t/front.svg",
  50658. extra: 5729/4941,
  50659. bottom: 1129/6858
  50660. }
  50661. },
  50662. },
  50663. [
  50664. {
  50665. name: "Big",
  50666. height: math.unit(3, "meters"),
  50667. default: true
  50668. },
  50669. ]
  50670. ))
  50671. characterMakers.push(() => makeCharacter(
  50672. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50673. {
  50674. normal: {
  50675. height: math.unit(6 + 6/12, "feet"),
  50676. weight: math.unit(275, "lb"),
  50677. name: "Front",
  50678. image: {
  50679. source: "./media/characters/cadbunny/normal.svg",
  50680. extra: 1129/947,
  50681. bottom: 93/1222
  50682. },
  50683. default: true,
  50684. form: "normal"
  50685. },
  50686. gigantamax: {
  50687. height: math.unit(26, "feet"),
  50688. weight: math.unit(16000, "lb"),
  50689. name: "Front",
  50690. image: {
  50691. source: "./media/characters/cadbunny/gigantamax.svg",
  50692. extra: 1133/944,
  50693. bottom: 90/1223
  50694. },
  50695. default: true,
  50696. form: "gigantamax"
  50697. },
  50698. },
  50699. [
  50700. {
  50701. name: "Normal",
  50702. height: math.unit(6 + 6/12, "feet"),
  50703. default: true,
  50704. form: "normal"
  50705. },
  50706. {
  50707. name: "Small",
  50708. height: math.unit(26, "feet"),
  50709. default: true,
  50710. form: "gigantamax"
  50711. },
  50712. {
  50713. name: "Large",
  50714. height: math.unit(78, "feet"),
  50715. form: "gigantamax"
  50716. },
  50717. ],
  50718. {
  50719. "normal": {
  50720. name: "Normal",
  50721. default: true
  50722. },
  50723. "gigantamax": {
  50724. name: "Gigantamax"
  50725. }
  50726. }
  50727. ))
  50728. characterMakers.push(() => makeCharacter(
  50729. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50730. {
  50731. anthroFront: {
  50732. height: math.unit(8, "feet"),
  50733. weight: math.unit(300, "lb"),
  50734. name: "Front",
  50735. image: {
  50736. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50737. extra: 1272/1176,
  50738. bottom: 53/1325
  50739. },
  50740. form: "anthro",
  50741. default: true
  50742. },
  50743. feralSide: {
  50744. height: math.unit(4, "feet"),
  50745. weight: math.unit(250, "lb"),
  50746. name: "Side",
  50747. image: {
  50748. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50749. extra: 731/621,
  50750. bottom: 0/731
  50751. },
  50752. form: "feral",
  50753. default: true
  50754. },
  50755. },
  50756. [
  50757. {
  50758. name: "Regular",
  50759. height: math.unit(8, "feet"),
  50760. form: "anthro"
  50761. },
  50762. {
  50763. name: "Macro",
  50764. height: math.unit(250, "feet"),
  50765. form: "anthro",
  50766. default: true
  50767. },
  50768. {
  50769. name: "Regular",
  50770. height: math.unit(4, "feet"),
  50771. form: "feral"
  50772. },
  50773. {
  50774. name: "Macro",
  50775. height: math.unit(125, "feet"),
  50776. form: "feral",
  50777. default: true
  50778. },
  50779. ],
  50780. {
  50781. "anthro": {
  50782. name: "Anthro",
  50783. default: true
  50784. },
  50785. "feral": {
  50786. name: "Feral",
  50787. },
  50788. }
  50789. ))
  50790. characterMakers.push(() => makeCharacter(
  50791. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50792. {
  50793. front: {
  50794. height: math.unit(11 + 10/12, "feet"),
  50795. weight: math.unit(1587, "kg"),
  50796. name: "Front",
  50797. image: {
  50798. source: "./media/characters/maple-javira-dragon/front.svg",
  50799. extra: 1136/744,
  50800. bottom: 73/1209
  50801. }
  50802. },
  50803. side: {
  50804. height: math.unit(11 + 10/12, "feet"),
  50805. weight: math.unit(1587, "kg"),
  50806. name: "Side",
  50807. image: {
  50808. source: "./media/characters/maple-javira-dragon/side.svg",
  50809. extra: 712/505,
  50810. bottom: 17/729
  50811. }
  50812. },
  50813. head: {
  50814. height: math.unit(8.05, "feet"),
  50815. name: "Head",
  50816. image: {
  50817. source: "./media/characters/maple-javira-dragon/head.svg",
  50818. extra: 1420/1344,
  50819. bottom: 0/1420
  50820. }
  50821. },
  50822. },
  50823. [
  50824. {
  50825. name: "Normal",
  50826. height: math.unit(11 + 10/12, "feet"),
  50827. default: true
  50828. },
  50829. ]
  50830. ))
  50831. characterMakers.push(() => makeCharacter(
  50832. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50833. {
  50834. front: {
  50835. height: math.unit(117, "cm"),
  50836. weight: math.unit(50, "kg"),
  50837. name: "Front",
  50838. image: {
  50839. source: "./media/characters/sonia-wyverntail/front.svg",
  50840. extra: 708/592,
  50841. bottom: 25/733
  50842. }
  50843. },
  50844. },
  50845. [
  50846. {
  50847. name: "Normal",
  50848. height: math.unit(117, "cm"),
  50849. default: true
  50850. },
  50851. ]
  50852. ))
  50853. characterMakers.push(() => makeCharacter(
  50854. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50855. {
  50856. front: {
  50857. height: math.unit(6 + 5/12, "feet"),
  50858. name: "Front",
  50859. image: {
  50860. source: "./media/characters/micah/front.svg",
  50861. extra: 1758/1546,
  50862. bottom: 214/1972
  50863. }
  50864. },
  50865. },
  50866. [
  50867. {
  50868. name: "Normal",
  50869. height: math.unit(6 + 5/12, "feet"),
  50870. default: true
  50871. },
  50872. ]
  50873. ))
  50874. characterMakers.push(() => makeCharacter(
  50875. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50876. {
  50877. front: {
  50878. height: math.unit(5 + 10/12, "feet"),
  50879. weight: math.unit(220, "lb"),
  50880. name: "Front",
  50881. image: {
  50882. source: "./media/characters/zarya/front.svg",
  50883. extra: 593/572,
  50884. bottom: 50/643
  50885. }
  50886. },
  50887. back: {
  50888. height: math.unit(5 + 10/12, "feet"),
  50889. weight: math.unit(220, "lb"),
  50890. name: "Back",
  50891. image: {
  50892. source: "./media/characters/zarya/back.svg",
  50893. extra: 603/582,
  50894. bottom: 38/641
  50895. }
  50896. },
  50897. },
  50898. [
  50899. {
  50900. name: "Normal",
  50901. height: math.unit(5 + 10/12, "feet"),
  50902. default: true
  50903. },
  50904. ]
  50905. ))
  50906. characterMakers.push(() => makeCharacter(
  50907. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50908. {
  50909. front: {
  50910. height: math.unit(7.5, "feet"),
  50911. name: "Front",
  50912. image: {
  50913. source: "./media/characters/sven-hatisson/front.svg",
  50914. extra: 917/857,
  50915. bottom: 42/959
  50916. }
  50917. },
  50918. back: {
  50919. height: math.unit(7.5, "feet"),
  50920. name: "Back",
  50921. image: {
  50922. source: "./media/characters/sven-hatisson/back.svg",
  50923. extra: 903/856,
  50924. bottom: 15/918
  50925. }
  50926. },
  50927. },
  50928. [
  50929. {
  50930. name: "Base Height",
  50931. height: math.unit(7.5, "feet")
  50932. },
  50933. {
  50934. name: "Usual Height",
  50935. height: math.unit(13.5, "feet"),
  50936. default: true
  50937. },
  50938. {
  50939. name: "Smaller Macro",
  50940. height: math.unit(85, "feet")
  50941. },
  50942. {
  50943. name: "Moderate Macro",
  50944. height: math.unit(320, "feet")
  50945. },
  50946. {
  50947. name: "Large Macro",
  50948. height: math.unit(1000, "feet")
  50949. },
  50950. {
  50951. name: "Largest Size",
  50952. height: math.unit(2, "miles")
  50953. },
  50954. ]
  50955. ))
  50956. characterMakers.push(() => makeCharacter(
  50957. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50958. {
  50959. side: {
  50960. height: math.unit(1.8, "meters"),
  50961. weight: math.unit(275, "kg"),
  50962. name: "Side",
  50963. image: {
  50964. source: "./media/characters/terra/side.svg",
  50965. extra: 1273/1147,
  50966. bottom: 0/1273
  50967. }
  50968. },
  50969. },
  50970. [
  50971. {
  50972. name: "Normal",
  50973. height: math.unit(16.2, "meters"),
  50974. default: true
  50975. },
  50976. ]
  50977. ))
  50978. characterMakers.push(() => makeCharacter(
  50979. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50980. {
  50981. borzoiFront: {
  50982. height: math.unit(6 + 9/12, "feet"),
  50983. name: "Front",
  50984. image: {
  50985. source: "./media/characters/rae/borzoi-front.svg",
  50986. extra: 1161/1098,
  50987. bottom: 31/1192
  50988. },
  50989. form: "borzoi",
  50990. default: true
  50991. },
  50992. werewolfFront: {
  50993. height: math.unit(8 + 7/12, "feet"),
  50994. name: "Front",
  50995. image: {
  50996. source: "./media/characters/rae/werewolf-front.svg",
  50997. extra: 1411/1334,
  50998. bottom: 127/1538
  50999. },
  51000. form: "werewolf",
  51001. default: true
  51002. },
  51003. },
  51004. [
  51005. {
  51006. name: "Normal",
  51007. height: math.unit(6 + 9/12, "feet"),
  51008. default: true,
  51009. form: "borzoi"
  51010. },
  51011. {
  51012. name: "Normal",
  51013. height: math.unit(8 + 7/12, "feet"),
  51014. default: true,
  51015. form: "werewolf"
  51016. },
  51017. ],
  51018. {
  51019. "borzoi": {
  51020. name: "Borzoi",
  51021. default: true
  51022. },
  51023. "werewolf": {
  51024. name: "Werewolf",
  51025. },
  51026. }
  51027. ))
  51028. characterMakers.push(() => makeCharacter(
  51029. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51030. {
  51031. front: {
  51032. height: math.unit(8 + 7/12, "feet"),
  51033. weight: math.unit(482, "lb"),
  51034. name: "Front",
  51035. image: {
  51036. source: "./media/characters/kit/front.svg",
  51037. extra: 1247/1103,
  51038. bottom: 41/1288
  51039. }
  51040. },
  51041. back: {
  51042. height: math.unit(8 + 7/12, "feet"),
  51043. weight: math.unit(482, "lb"),
  51044. name: "Back",
  51045. image: {
  51046. source: "./media/characters/kit/back.svg",
  51047. extra: 1252/1123,
  51048. bottom: 21/1273
  51049. }
  51050. },
  51051. paw: {
  51052. height: math.unit(1.46, "feet"),
  51053. name: "Paw",
  51054. image: {
  51055. source: "./media/characters/kit/paw.svg"
  51056. }
  51057. },
  51058. },
  51059. [
  51060. {
  51061. name: "Normal",
  51062. height: math.unit(2.61, "meters"),
  51063. default: true
  51064. },
  51065. {
  51066. name: "\"Tall\"",
  51067. height: math.unit(8.21, "meters")
  51068. },
  51069. {
  51070. name: "Tall",
  51071. height: math.unit(19.6, "meters")
  51072. },
  51073. {
  51074. name: "Very Tall",
  51075. height: math.unit(57.91, "meters")
  51076. },
  51077. {
  51078. name: "Semi-Macro",
  51079. height: math.unit(138.64, "meters")
  51080. },
  51081. {
  51082. name: "Macro",
  51083. height: math.unit(831.99, "meters")
  51084. },
  51085. {
  51086. name: "EX-Macro",
  51087. height: math.unit(96451121, "meters")
  51088. },
  51089. {
  51090. name: "S1-Omnipotent",
  51091. height: math.unit(4.42074e+9, "meters")
  51092. },
  51093. {
  51094. name: "S2-Omnipotent",
  51095. height: math.unit(9.42074e+17, "meters")
  51096. },
  51097. {
  51098. name: "Omnipotent",
  51099. height: math.unit(4.23112e+24, "meters")
  51100. },
  51101. {
  51102. name: "Hypergod",
  51103. height: math.unit(5.05176e+27, "meters")
  51104. },
  51105. {
  51106. name: "Hypergod-EX",
  51107. height: math.unit(9.45532e+49, "meters")
  51108. },
  51109. {
  51110. name: "Hypergod-SP",
  51111. height: math.unit(9.45532e+195, "meters")
  51112. },
  51113. ]
  51114. ))
  51115. characterMakers.push(() => makeCharacter(
  51116. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51117. {
  51118. side: {
  51119. height: math.unit(0.6, "meters"),
  51120. weight: math.unit(24, "kg"),
  51121. name: "Side",
  51122. image: {
  51123. source: "./media/characters/celeste/side.svg",
  51124. extra: 810/517,
  51125. bottom: 53/863
  51126. }
  51127. },
  51128. },
  51129. [
  51130. {
  51131. name: "Velociraptor",
  51132. height: math.unit(0.6, "meters"),
  51133. default: true
  51134. },
  51135. {
  51136. name: "Utahraptor",
  51137. height: math.unit(1.8, "meters")
  51138. },
  51139. {
  51140. name: "Gallimimus",
  51141. height: math.unit(4.0, "meters")
  51142. },
  51143. {
  51144. name: "Large",
  51145. height: math.unit(20, "meters")
  51146. },
  51147. {
  51148. name: "Planetary",
  51149. height: math.unit(50, "megameters")
  51150. },
  51151. {
  51152. name: "Stellar",
  51153. height: math.unit(1.5, "gigameters")
  51154. },
  51155. {
  51156. name: "Galactic",
  51157. height: math.unit(100, "exameters")
  51158. },
  51159. ]
  51160. ))
  51161. characterMakers.push(() => makeCharacter(
  51162. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51163. {
  51164. front: {
  51165. height: math.unit(6, "feet"),
  51166. weight: math.unit(210, "lb"),
  51167. name: "Front",
  51168. image: {
  51169. source: "./media/characters/glacia/front.svg",
  51170. extra: 958/901,
  51171. bottom: 45/1003
  51172. }
  51173. },
  51174. },
  51175. [
  51176. {
  51177. name: "Macro",
  51178. height: math.unit(1000, "meters"),
  51179. default: true
  51180. },
  51181. ]
  51182. ))
  51183. characterMakers.push(() => makeCharacter(
  51184. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51185. {
  51186. front: {
  51187. height: math.unit(4, "meters"),
  51188. name: "Front",
  51189. image: {
  51190. source: "./media/characters/giri/front.svg",
  51191. extra: 966/894,
  51192. bottom: 21/987
  51193. }
  51194. },
  51195. },
  51196. [
  51197. {
  51198. name: "Normal",
  51199. height: math.unit(4, "meters"),
  51200. default: true
  51201. },
  51202. ]
  51203. ))
  51204. characterMakers.push(() => makeCharacter(
  51205. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51206. {
  51207. back: {
  51208. height: math.unit(4, "feet"),
  51209. weight: math.unit(37, "lb"),
  51210. name: "Back",
  51211. image: {
  51212. source: "./media/characters/tin/back.svg",
  51213. extra: 845/780,
  51214. bottom: 28/873
  51215. }
  51216. },
  51217. },
  51218. [
  51219. {
  51220. name: "Normal",
  51221. height: math.unit(4, "feet"),
  51222. default: true
  51223. },
  51224. ]
  51225. ))
  51226. characterMakers.push(() => makeCharacter(
  51227. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51228. {
  51229. front: {
  51230. height: math.unit(25, "feet"),
  51231. name: "Front",
  51232. image: {
  51233. source: "./media/characters/cadenza-vivace/front.svg",
  51234. extra: 1842/1578,
  51235. bottom: 30/1872
  51236. }
  51237. },
  51238. },
  51239. [
  51240. {
  51241. name: "Macro",
  51242. height: math.unit(25, "feet"),
  51243. default: true
  51244. },
  51245. ]
  51246. ))
  51247. characterMakers.push(() => makeCharacter(
  51248. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51249. {
  51250. front: {
  51251. height: math.unit(10, "feet"),
  51252. weight: math.unit(625, "kg"),
  51253. name: "Front",
  51254. image: {
  51255. source: "./media/characters/zain/front.svg",
  51256. extra: 1682/1498,
  51257. bottom: 223/1905
  51258. }
  51259. },
  51260. back: {
  51261. height: math.unit(10, "feet"),
  51262. weight: math.unit(625, "kg"),
  51263. name: "Back",
  51264. image: {
  51265. source: "./media/characters/zain/back.svg",
  51266. extra: 1814/1657,
  51267. bottom: 152/1966
  51268. }
  51269. },
  51270. head: {
  51271. height: math.unit(10, "feet"),
  51272. weight: math.unit(625, "kg"),
  51273. name: "Head",
  51274. image: {
  51275. source: "./media/characters/zain/head.svg",
  51276. extra: 1059/762,
  51277. bottom: 0/1059
  51278. }
  51279. },
  51280. },
  51281. [
  51282. {
  51283. name: "Normal",
  51284. height: math.unit(10, "feet"),
  51285. default: true
  51286. },
  51287. ]
  51288. ))
  51289. characterMakers.push(() => makeCharacter(
  51290. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51291. {
  51292. front: {
  51293. height: math.unit(6 + 5/12, "feet"),
  51294. weight: math.unit(750, "lb"),
  51295. name: "Front",
  51296. image: {
  51297. source: "./media/characters/ruchex/front.svg",
  51298. extra: 877/820,
  51299. bottom: 17/894
  51300. },
  51301. extraAttributes: {
  51302. "width": {
  51303. name: "Width",
  51304. power: 1,
  51305. type: "length",
  51306. base: math.unit(4.757, "feet")
  51307. },
  51308. }
  51309. },
  51310. },
  51311. [
  51312. {
  51313. name: "Normal",
  51314. height: math.unit(6 + 5/12, "feet"),
  51315. default: true
  51316. },
  51317. ]
  51318. ))
  51319. characterMakers.push(() => makeCharacter(
  51320. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51321. {
  51322. dressedFront: {
  51323. height: math.unit(191, "cm"),
  51324. weight: math.unit(80, "kg"),
  51325. name: "Front",
  51326. image: {
  51327. source: "./media/characters/buster/dressed-front.svg",
  51328. extra: 1022/973,
  51329. bottom: 69/1091
  51330. }
  51331. },
  51332. dressedBack: {
  51333. height: math.unit(191, "cm"),
  51334. weight: math.unit(80, "kg"),
  51335. name: "Back",
  51336. image: {
  51337. source: "./media/characters/buster/dressed-back.svg",
  51338. extra: 1018/970,
  51339. bottom: 55/1073
  51340. }
  51341. },
  51342. nudeFront: {
  51343. height: math.unit(191, "cm"),
  51344. weight: math.unit(80, "kg"),
  51345. name: "Front (Nude)",
  51346. image: {
  51347. source: "./media/characters/buster/nude-front.svg",
  51348. extra: 1022/973,
  51349. bottom: 69/1091
  51350. }
  51351. },
  51352. nudeBack: {
  51353. height: math.unit(191, "cm"),
  51354. weight: math.unit(80, "kg"),
  51355. name: "Back (Nude)",
  51356. image: {
  51357. source: "./media/characters/buster/nude-back.svg",
  51358. extra: 1018/970,
  51359. bottom: 55/1073
  51360. }
  51361. },
  51362. dick: {
  51363. height: math.unit(2.59, "feet"),
  51364. name: "Dick",
  51365. image: {
  51366. source: "./media/characters/buster/dick.svg"
  51367. }
  51368. },
  51369. ass: {
  51370. height: math.unit(1.2, "feet"),
  51371. name: "Ass",
  51372. image: {
  51373. source: "./media/characters/buster/ass.svg"
  51374. }
  51375. },
  51376. },
  51377. [
  51378. {
  51379. name: "Normal",
  51380. height: math.unit(191, "cm"),
  51381. default: true
  51382. },
  51383. ]
  51384. ))
  51385. characterMakers.push(() => makeCharacter(
  51386. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51387. {
  51388. side: {
  51389. height: math.unit(8.1, "feet"),
  51390. weight: math.unit(3500, "lb"),
  51391. name: "Side",
  51392. image: {
  51393. source: "./media/characters/sonya/side.svg",
  51394. extra: 1730/1317,
  51395. bottom: 86/1816
  51396. }
  51397. },
  51398. },
  51399. [
  51400. {
  51401. name: "Normal",
  51402. height: math.unit(8.1, "feet"),
  51403. default: true
  51404. },
  51405. ]
  51406. ))
  51407. characterMakers.push(() => makeCharacter(
  51408. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51409. {
  51410. front: {
  51411. height: math.unit(6, "feet"),
  51412. weight: math.unit(150, "lb"),
  51413. name: "Front",
  51414. image: {
  51415. source: "./media/characters/cadence-andrysiak/front.svg",
  51416. extra: 1164/1121,
  51417. bottom: 60/1224
  51418. }
  51419. },
  51420. back: {
  51421. height: math.unit(6, "feet"),
  51422. weight: math.unit(150, "lb"),
  51423. name: "Back",
  51424. image: {
  51425. source: "./media/characters/cadence-andrysiak/back.svg",
  51426. extra: 1200/1165,
  51427. bottom: 9/1209
  51428. }
  51429. },
  51430. dressed: {
  51431. height: math.unit(6, "feet"),
  51432. weight: math.unit(150, "lb"),
  51433. name: "Dressed",
  51434. image: {
  51435. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51436. extra: 1164/1121,
  51437. bottom: 60/1224
  51438. }
  51439. },
  51440. },
  51441. [
  51442. {
  51443. name: "Micro",
  51444. height: math.unit(1, "mm")
  51445. },
  51446. {
  51447. name: "Normal",
  51448. height: math.unit(6, "feet"),
  51449. default: true
  51450. },
  51451. ]
  51452. ))
  51453. characterMakers.push(() => makeCharacter(
  51454. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51455. {
  51456. front: {
  51457. height: math.unit(60, "inches"),
  51458. weight: math.unit(16, "lb"),
  51459. preyCapacity: math.unit(80, "liters"),
  51460. name: "Front",
  51461. image: {
  51462. source: "./media/characters/penny-lynx/front.svg",
  51463. extra: 1959/1769,
  51464. bottom: 49/2008
  51465. }
  51466. },
  51467. },
  51468. [
  51469. {
  51470. name: "Nokia",
  51471. height: math.unit(2, "inches")
  51472. },
  51473. {
  51474. name: "Desktop",
  51475. height: math.unit(24, "inches")
  51476. },
  51477. {
  51478. name: "TV",
  51479. height: math.unit(60, "inches")
  51480. },
  51481. {
  51482. name: "Jumbotron",
  51483. height: math.unit(12, "feet")
  51484. },
  51485. {
  51486. name: "Billboard",
  51487. height: math.unit(48, "feet"),
  51488. default: true
  51489. },
  51490. {
  51491. name: "IMAX",
  51492. height: math.unit(96, "feet")
  51493. },
  51494. {
  51495. name: "SINGULARITY",
  51496. height: math.unit(864938, "miles")
  51497. },
  51498. ]
  51499. ))
  51500. characterMakers.push(() => makeCharacter(
  51501. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51502. {
  51503. front: {
  51504. height: math.unit(5 + 4/12, "feet"),
  51505. weight: math.unit(230, "lb"),
  51506. name: "Front",
  51507. image: {
  51508. source: "./media/characters/sukebe/front.svg",
  51509. extra: 2130/2038,
  51510. bottom: 90/2220
  51511. }
  51512. },
  51513. back: {
  51514. height: math.unit(3.48, "feet"),
  51515. weight: math.unit(230, "lb"),
  51516. name: "Back",
  51517. image: {
  51518. source: "./media/characters/sukebe/back.svg",
  51519. extra: 1670/1604,
  51520. bottom: 0/1670
  51521. }
  51522. },
  51523. },
  51524. [
  51525. {
  51526. name: "Normal",
  51527. height: math.unit(5 + 4/12, "feet"),
  51528. default: true
  51529. },
  51530. ]
  51531. ))
  51532. characterMakers.push(() => makeCharacter(
  51533. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51534. {
  51535. front: {
  51536. height: math.unit(6, "feet"),
  51537. name: "Front",
  51538. image: {
  51539. source: "./media/characters/nylla/front.svg",
  51540. extra: 1868/1699,
  51541. bottom: 97/1965
  51542. }
  51543. },
  51544. back: {
  51545. height: math.unit(6, "feet"),
  51546. name: "Back",
  51547. image: {
  51548. source: "./media/characters/nylla/back.svg",
  51549. extra: 1889/1712,
  51550. bottom: 93/1982
  51551. }
  51552. },
  51553. frontNsfw: {
  51554. height: math.unit(6, "feet"),
  51555. name: "Front (NSFW)",
  51556. image: {
  51557. source: "./media/characters/nylla/front-nsfw.svg",
  51558. extra: 1868/1699,
  51559. bottom: 97/1965
  51560. },
  51561. extraAttributes: {
  51562. "dickLength": {
  51563. name: "Dick Length",
  51564. power: 1,
  51565. type: "length",
  51566. base: math.unit(1.4, "feet")
  51567. },
  51568. "cumVolume": {
  51569. name: "Cum Volume",
  51570. power: 3,
  51571. type: "volume",
  51572. base: math.unit(100, "mL")
  51573. },
  51574. }
  51575. },
  51576. backNsfw: {
  51577. height: math.unit(6, "feet"),
  51578. name: "Back (NSFW)",
  51579. image: {
  51580. source: "./media/characters/nylla/back-nsfw.svg",
  51581. extra: 1889/1712,
  51582. bottom: 93/1982
  51583. }
  51584. },
  51585. maw: {
  51586. height: math.unit(2.10, "feet"),
  51587. name: "Maw",
  51588. image: {
  51589. source: "./media/characters/nylla/maw.svg"
  51590. }
  51591. },
  51592. paws: {
  51593. height: math.unit(2.06, "feet"),
  51594. name: "Paws",
  51595. image: {
  51596. source: "./media/characters/nylla/paws.svg"
  51597. }
  51598. },
  51599. muzzle: {
  51600. height: math.unit(0.61, "feet"),
  51601. name: "Muzzle",
  51602. image: {
  51603. source: "./media/characters/nylla/muzzle.svg"
  51604. }
  51605. },
  51606. sheath: {
  51607. height: math.unit(1.305, "feet"),
  51608. name: "Sheath",
  51609. image: {
  51610. source: "./media/characters/nylla/sheath.svg"
  51611. }
  51612. },
  51613. },
  51614. [
  51615. {
  51616. name: "Micro",
  51617. height: math.unit(7.5, "inches")
  51618. },
  51619. {
  51620. name: "Normal",
  51621. height: math.unit(7, "feet"),
  51622. default: true
  51623. },
  51624. {
  51625. name: "Macro",
  51626. height: math.unit(60, "feet")
  51627. },
  51628. {
  51629. name: "Mega",
  51630. height: math.unit(200, "feet")
  51631. },
  51632. ]
  51633. ))
  51634. characterMakers.push(() => makeCharacter(
  51635. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51636. {
  51637. front: {
  51638. height: math.unit(10, "feet"),
  51639. weight: math.unit(2300, "lb"),
  51640. name: "Front",
  51641. image: {
  51642. source: "./media/characters/hunt3r/front.svg",
  51643. extra: 1909/1742,
  51644. bottom: 46/1955
  51645. }
  51646. },
  51647. },
  51648. [
  51649. {
  51650. name: "Normal",
  51651. height: math.unit(10, "feet"),
  51652. default: true
  51653. },
  51654. ]
  51655. ))
  51656. characterMakers.push(() => makeCharacter(
  51657. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51658. {
  51659. dressed: {
  51660. height: math.unit(11, "feet"),
  51661. weight: math.unit(18500, "lb"),
  51662. preyCapacity: math.unit(9, "people"),
  51663. name: "Dressed",
  51664. image: {
  51665. source: "./media/characters/cylphis/dressed.svg",
  51666. extra: 1028/1003,
  51667. bottom: 75/1103
  51668. },
  51669. },
  51670. undressed: {
  51671. height: math.unit(11, "feet"),
  51672. weight: math.unit(18500, "lb"),
  51673. preyCapacity: math.unit(9, "people"),
  51674. name: "Undressed",
  51675. image: {
  51676. source: "./media/characters/cylphis/undressed.svg",
  51677. extra: 1028/1003,
  51678. bottom: 75/1103
  51679. }
  51680. },
  51681. full: {
  51682. height: math.unit(11, "feet"),
  51683. weight: math.unit(18500 + 150*9, "lb"),
  51684. preyCapacity: math.unit(9, "people"),
  51685. name: "Full",
  51686. image: {
  51687. source: "./media/characters/cylphis/full.svg",
  51688. extra: 1028/1003,
  51689. bottom: 75/1103
  51690. }
  51691. },
  51692. },
  51693. [
  51694. {
  51695. name: "Small",
  51696. height: math.unit(8, "feet")
  51697. },
  51698. {
  51699. name: "Normal",
  51700. height: math.unit(11, "feet"),
  51701. default: true
  51702. },
  51703. ]
  51704. ))
  51705. characterMakers.push(() => makeCharacter(
  51706. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51707. {
  51708. front: {
  51709. height: math.unit(2 + 7/12, "feet"),
  51710. name: "Front",
  51711. image: {
  51712. source: "./media/characters/orishan/front.svg",
  51713. extra: 1058/1023,
  51714. bottom: 23/1081
  51715. }
  51716. },
  51717. back: {
  51718. height: math.unit(2 + 7/12, "feet"),
  51719. name: "Back",
  51720. image: {
  51721. source: "./media/characters/orishan/back.svg",
  51722. extra: 1058/1023,
  51723. bottom: 23/1081
  51724. }
  51725. },
  51726. },
  51727. [
  51728. {
  51729. name: "Micro",
  51730. height: math.unit(2, "cm")
  51731. },
  51732. {
  51733. name: "Normal",
  51734. height: math.unit(2 + 7/12, "feet"),
  51735. default: true
  51736. },
  51737. ]
  51738. ))
  51739. characterMakers.push(() => makeCharacter(
  51740. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51741. {
  51742. front: {
  51743. height: math.unit(3, "meters"),
  51744. weight: math.unit(508, "kg"),
  51745. name: "Front",
  51746. image: {
  51747. source: "./media/characters/seranis/front.svg",
  51748. extra: 1478/1454,
  51749. bottom: 41/1519
  51750. }
  51751. },
  51752. },
  51753. [
  51754. {
  51755. name: "Normal",
  51756. height: math.unit(3, "meters"),
  51757. default: true
  51758. },
  51759. {
  51760. name: "Macro",
  51761. height: math.unit(108, "meters")
  51762. },
  51763. {
  51764. name: "Megamacro",
  51765. height: math.unit(1250, "meters")
  51766. },
  51767. ]
  51768. ))
  51769. characterMakers.push(() => makeCharacter(
  51770. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51771. {
  51772. undressed: {
  51773. height: math.unit(5 + 3/12, "feet"),
  51774. name: "Undressed",
  51775. image: {
  51776. source: "./media/characters/ankou/undressed.svg",
  51777. extra: 1301/1213,
  51778. bottom: 87/1388
  51779. }
  51780. },
  51781. dressed: {
  51782. height: math.unit(5 + 3/12, "feet"),
  51783. name: "Dressed",
  51784. image: {
  51785. source: "./media/characters/ankou/dressed.svg",
  51786. extra: 1301/1213,
  51787. bottom: 87/1388
  51788. }
  51789. },
  51790. head: {
  51791. height: math.unit(1.61, "feet"),
  51792. name: "Head",
  51793. image: {
  51794. source: "./media/characters/ankou/head.svg"
  51795. }
  51796. },
  51797. },
  51798. [
  51799. {
  51800. name: "Normal",
  51801. height: math.unit(5 + 3/12, "feet"),
  51802. default: true
  51803. },
  51804. ]
  51805. ))
  51806. characterMakers.push(() => makeCharacter(
  51807. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51808. {
  51809. side: {
  51810. height: math.unit(6 + 3/12, "feet"),
  51811. weight: math.unit(200, "kg"),
  51812. name: "Side",
  51813. image: {
  51814. source: "./media/characters/juniper-skunktaur/side.svg",
  51815. extra: 1574/1229,
  51816. bottom: 38/1612
  51817. }
  51818. },
  51819. front: {
  51820. height: math.unit(6 + 3/12, "feet"),
  51821. weight: math.unit(200, "kg"),
  51822. name: "Front",
  51823. image: {
  51824. source: "./media/characters/juniper-skunktaur/front.svg",
  51825. extra: 1337/1278,
  51826. bottom: 22/1359
  51827. }
  51828. },
  51829. back: {
  51830. height: math.unit(6 + 3/12, "feet"),
  51831. weight: math.unit(200, "kg"),
  51832. name: "Back",
  51833. image: {
  51834. source: "./media/characters/juniper-skunktaur/back.svg",
  51835. extra: 1618/1273,
  51836. bottom: 13/1631
  51837. }
  51838. },
  51839. top: {
  51840. height: math.unit(2.62, "feet"),
  51841. weight: math.unit(200, "kg"),
  51842. name: "Top",
  51843. image: {
  51844. source: "./media/characters/juniper-skunktaur/top.svg"
  51845. }
  51846. },
  51847. },
  51848. [
  51849. {
  51850. name: "Normal",
  51851. height: math.unit(6 + 3/12, "feet"),
  51852. default: true
  51853. },
  51854. ]
  51855. ))
  51856. characterMakers.push(() => makeCharacter(
  51857. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51858. {
  51859. front: {
  51860. height: math.unit(20.5, "feet"),
  51861. name: "Front",
  51862. image: {
  51863. source: "./media/characters/rei/front.svg",
  51864. extra: 1349/1195,
  51865. bottom: 31/1380
  51866. }
  51867. },
  51868. back: {
  51869. height: math.unit(20.5, "feet"),
  51870. name: "Back",
  51871. image: {
  51872. source: "./media/characters/rei/back.svg",
  51873. extra: 1358/1204,
  51874. bottom: 22/1380
  51875. }
  51876. },
  51877. pawsDigi: {
  51878. height: math.unit(3.45, "feet"),
  51879. name: "Paws (Digi)",
  51880. image: {
  51881. source: "./media/characters/rei/paws-digi.svg"
  51882. }
  51883. },
  51884. pawsPlanti: {
  51885. height: math.unit(3.45, "feet"),
  51886. name: "Paws (Planti)",
  51887. image: {
  51888. source: "./media/characters/rei/paws-planti.svg"
  51889. }
  51890. },
  51891. },
  51892. [
  51893. {
  51894. name: "Normal",
  51895. height: math.unit(20.5, "feet"),
  51896. default: true
  51897. },
  51898. ]
  51899. ))
  51900. characterMakers.push(() => makeCharacter(
  51901. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51902. {
  51903. front: {
  51904. height: math.unit(5 + 11/12, "feet"),
  51905. name: "Front",
  51906. image: {
  51907. source: "./media/characters/carina/front.svg",
  51908. extra: 1720/1449,
  51909. bottom: 14/1734
  51910. }
  51911. },
  51912. back: {
  51913. height: math.unit(5 + 11/12, "feet"),
  51914. name: "Back",
  51915. image: {
  51916. source: "./media/characters/carina/back.svg",
  51917. extra: 1493/1445,
  51918. bottom: 17/1510
  51919. }
  51920. },
  51921. paw: {
  51922. height: math.unit(0.92, "feet"),
  51923. name: "Paw",
  51924. image: {
  51925. source: "./media/characters/carina/paw.svg"
  51926. }
  51927. },
  51928. },
  51929. [
  51930. {
  51931. name: "Normal",
  51932. height: math.unit(5 + 11/12, "feet"),
  51933. default: true
  51934. },
  51935. ]
  51936. ))
  51937. characterMakers.push(() => makeCharacter(
  51938. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51939. {
  51940. front: {
  51941. height: math.unit(4.88, "meters"),
  51942. name: "Front",
  51943. image: {
  51944. source: "./media/characters/maya/front.svg",
  51945. extra: 1222/1145,
  51946. bottom: 57/1279
  51947. }
  51948. },
  51949. },
  51950. [
  51951. {
  51952. name: "Normal",
  51953. height: math.unit(4.88, "meters"),
  51954. default: true
  51955. },
  51956. {
  51957. name: "Macro",
  51958. height: math.unit(38.1, "meters")
  51959. },
  51960. {
  51961. name: "Macro+",
  51962. height: math.unit(152.4, "meters")
  51963. },
  51964. {
  51965. name: "Macro++",
  51966. height: math.unit(16.09, "km")
  51967. },
  51968. {
  51969. name: "Mega-macro",
  51970. height: math.unit(700, "megameters")
  51971. },
  51972. ]
  51973. ))
  51974. characterMakers.push(() => makeCharacter(
  51975. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51976. {
  51977. front: {
  51978. height: math.unit(6 + 2/12, "feet"),
  51979. weight: math.unit(500, "lb"),
  51980. preyCapacity: math.unit(4, "people"),
  51981. name: "Front",
  51982. image: {
  51983. source: "./media/characters/yepir/front.svg"
  51984. }
  51985. },
  51986. side: {
  51987. height: math.unit(6 + 2/12, "feet"),
  51988. weight: math.unit(500, "lb"),
  51989. preyCapacity: math.unit(4, "people"),
  51990. name: "Side",
  51991. image: {
  51992. source: "./media/characters/yepir/side.svg"
  51993. }
  51994. },
  51995. paw: {
  51996. height: math.unit(1.05, "feet"),
  51997. name: "Paw",
  51998. image: {
  51999. source: "./media/characters/yepir/paw.svg"
  52000. }
  52001. },
  52002. },
  52003. [
  52004. {
  52005. name: "Normal",
  52006. height: math.unit(6 + 2/12, "feet"),
  52007. default: true
  52008. },
  52009. ]
  52010. ))
  52011. characterMakers.push(() => makeCharacter(
  52012. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52013. {
  52014. front: {
  52015. height: math.unit(5 + 4/12, "feet"),
  52016. name: "Front",
  52017. image: {
  52018. source: "./media/characters/russec/front.svg",
  52019. extra: 1926/1626,
  52020. bottom: 72/1998
  52021. }
  52022. },
  52023. back: {
  52024. height: math.unit(5 + 4/12, "feet"),
  52025. name: "Back",
  52026. image: {
  52027. source: "./media/characters/russec/back.svg",
  52028. extra: 1910/1591,
  52029. bottom: 48/1958
  52030. }
  52031. },
  52032. },
  52033. [
  52034. {
  52035. name: "Small",
  52036. height: math.unit(5 + 4/12, "feet")
  52037. },
  52038. {
  52039. name: "Normal",
  52040. height: math.unit(72, "feet"),
  52041. default: true
  52042. },
  52043. ]
  52044. ))
  52045. characterMakers.push(() => makeCharacter(
  52046. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52047. {
  52048. side: {
  52049. height: math.unit(12, "feet"),
  52050. name: "Side",
  52051. image: {
  52052. source: "./media/characters/cianus/side.svg",
  52053. extra: 808/526,
  52054. bottom: 61/869
  52055. }
  52056. },
  52057. },
  52058. [
  52059. {
  52060. name: "Normal",
  52061. height: math.unit(12, "feet"),
  52062. default: true
  52063. },
  52064. ]
  52065. ))
  52066. characterMakers.push(() => makeCharacter(
  52067. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52068. {
  52069. front: {
  52070. height: math.unit(9 + 6/12, "feet"),
  52071. weight: math.unit(300, "lb"),
  52072. name: "Front",
  52073. image: {
  52074. source: "./media/characters/ahab/front.svg",
  52075. extra: 1897/1868,
  52076. bottom: 121/2018
  52077. }
  52078. },
  52079. frontNsfw: {
  52080. height: math.unit(9 + 6/12, "feet"),
  52081. weight: math.unit(300, "lb"),
  52082. name: "Front-nsfw",
  52083. image: {
  52084. source: "./media/characters/ahab/front-nsfw.svg",
  52085. extra: 1897/1868,
  52086. bottom: 121/2018
  52087. }
  52088. },
  52089. },
  52090. [
  52091. {
  52092. name: "Normal",
  52093. height: math.unit(9 + 6/12, "feet")
  52094. },
  52095. {
  52096. name: "Macro",
  52097. height: math.unit(657, "feet"),
  52098. default: true
  52099. },
  52100. ]
  52101. ))
  52102. characterMakers.push(() => makeCharacter(
  52103. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52104. {
  52105. front: {
  52106. height: math.unit(2.69, "meters"),
  52107. weight: math.unit(132, "kg"),
  52108. name: "Front",
  52109. image: {
  52110. source: "./media/characters/aarkus/front.svg",
  52111. extra: 1400/1231,
  52112. bottom: 34/1434
  52113. }
  52114. },
  52115. back: {
  52116. height: math.unit(2.69, "meters"),
  52117. weight: math.unit(132, "kg"),
  52118. name: "Back",
  52119. image: {
  52120. source: "./media/characters/aarkus/back.svg",
  52121. extra: 1381/1218,
  52122. bottom: 30/1411
  52123. }
  52124. },
  52125. frontNsfw: {
  52126. height: math.unit(2.69, "meters"),
  52127. weight: math.unit(132, "kg"),
  52128. name: "Front (NSFW)",
  52129. image: {
  52130. source: "./media/characters/aarkus/front-nsfw.svg",
  52131. extra: 1400/1231,
  52132. bottom: 34/1434
  52133. }
  52134. },
  52135. foot: {
  52136. height: math.unit(1.45, "feet"),
  52137. name: "Foot",
  52138. image: {
  52139. source: "./media/characters/aarkus/foot.svg"
  52140. }
  52141. },
  52142. head: {
  52143. height: math.unit(2.85, "feet"),
  52144. name: "Head",
  52145. image: {
  52146. source: "./media/characters/aarkus/head.svg"
  52147. }
  52148. },
  52149. headAlt: {
  52150. height: math.unit(3.07, "feet"),
  52151. name: "Head (Alt)",
  52152. image: {
  52153. source: "./media/characters/aarkus/head-alt.svg"
  52154. }
  52155. },
  52156. mouth: {
  52157. height: math.unit(1.25, "feet"),
  52158. name: "Mouth",
  52159. image: {
  52160. source: "./media/characters/aarkus/mouth.svg"
  52161. }
  52162. },
  52163. dick: {
  52164. height: math.unit(1.77, "feet"),
  52165. name: "Dick",
  52166. image: {
  52167. source: "./media/characters/aarkus/dick.svg"
  52168. }
  52169. },
  52170. },
  52171. [
  52172. {
  52173. name: "Normal",
  52174. height: math.unit(2.69, "meters"),
  52175. default: true
  52176. },
  52177. {
  52178. name: "Macro",
  52179. height: math.unit(269, "meters")
  52180. },
  52181. {
  52182. name: "Macro+",
  52183. height: math.unit(672.5, "meters")
  52184. },
  52185. {
  52186. name: "Megamacro",
  52187. height: math.unit(2.017, "km")
  52188. },
  52189. ]
  52190. ))
  52191. characterMakers.push(() => makeCharacter(
  52192. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52193. {
  52194. front: {
  52195. height: math.unit(23.47, "cm"),
  52196. weight: math.unit(600, "grams"),
  52197. name: "Front",
  52198. image: {
  52199. source: "./media/characters/diode/front.svg",
  52200. extra: 1778/1396,
  52201. bottom: 95/1873
  52202. }
  52203. },
  52204. side: {
  52205. height: math.unit(23.47, "cm"),
  52206. weight: math.unit(600, "grams"),
  52207. name: "Side",
  52208. image: {
  52209. source: "./media/characters/diode/side.svg",
  52210. extra: 1831/1404,
  52211. bottom: 86/1917
  52212. }
  52213. },
  52214. wings: {
  52215. height: math.unit(0.683, "feet"),
  52216. name: "Wings",
  52217. image: {
  52218. source: "./media/characters/diode/wings.svg"
  52219. }
  52220. },
  52221. },
  52222. [
  52223. {
  52224. name: "Normal",
  52225. height: math.unit(23.47, "cm"),
  52226. default: true
  52227. },
  52228. ]
  52229. ))
  52230. characterMakers.push(() => makeCharacter(
  52231. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52232. {
  52233. front: {
  52234. height: math.unit(6 + 3/12, "feet"),
  52235. weight: math.unit(250, "lb"),
  52236. name: "Front",
  52237. image: {
  52238. source: "./media/characters/reika/front.svg",
  52239. extra: 1120/1078,
  52240. bottom: 86/1206
  52241. }
  52242. },
  52243. },
  52244. [
  52245. {
  52246. name: "Normal",
  52247. height: math.unit(6 + 3/12, "feet"),
  52248. default: true
  52249. },
  52250. ]
  52251. ))
  52252. characterMakers.push(() => makeCharacter(
  52253. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52254. {
  52255. front: {
  52256. height: math.unit(16 + 8/12, "feet"),
  52257. weight: math.unit(9000, "lb"),
  52258. name: "Front",
  52259. image: {
  52260. source: "./media/characters/lokuto-takama/front.svg",
  52261. extra: 1774/1632,
  52262. bottom: 147/1921
  52263. },
  52264. extraAttributes: {
  52265. "bustWidth": {
  52266. name: "Bust Width",
  52267. power: 1,
  52268. type: "length",
  52269. base: math.unit(2.4, "meters")
  52270. },
  52271. "breastWeight": {
  52272. name: "Breast Weight",
  52273. power: 3,
  52274. type: "mass",
  52275. base: math.unit(1000, "kg")
  52276. },
  52277. }
  52278. },
  52279. },
  52280. [
  52281. {
  52282. name: "Normal",
  52283. height: math.unit(16 + 8/12, "feet"),
  52284. default: true
  52285. },
  52286. ]
  52287. ))
  52288. characterMakers.push(() => makeCharacter(
  52289. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52290. {
  52291. front: {
  52292. height: math.unit(10, "cm"),
  52293. weight: math.unit(850, "grams"),
  52294. name: "Front",
  52295. image: {
  52296. source: "./media/characters/owak-bone/front.svg",
  52297. extra: 1965/1801,
  52298. bottom: 31/1996
  52299. }
  52300. },
  52301. },
  52302. [
  52303. {
  52304. name: "Normal",
  52305. height: math.unit(10, "cm"),
  52306. default: true
  52307. },
  52308. ]
  52309. ))
  52310. characterMakers.push(() => makeCharacter(
  52311. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52312. {
  52313. front: {
  52314. height: math.unit(2 + 6/12, "feet"),
  52315. weight: math.unit(9, "lb"),
  52316. name: "Front",
  52317. image: {
  52318. source: "./media/characters/muffin/front.svg",
  52319. extra: 1220/1195,
  52320. bottom: 84/1304
  52321. }
  52322. },
  52323. },
  52324. [
  52325. {
  52326. name: "Normal",
  52327. height: math.unit(2 + 6/12, "feet"),
  52328. default: true
  52329. },
  52330. ]
  52331. ))
  52332. characterMakers.push(() => makeCharacter(
  52333. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52334. {
  52335. front: {
  52336. height: math.unit(7, "feet"),
  52337. name: "Front",
  52338. image: {
  52339. source: "./media/characters/chimera/front.svg",
  52340. extra: 1752/1614,
  52341. bottom: 68/1820
  52342. }
  52343. },
  52344. },
  52345. [
  52346. {
  52347. name: "Normal",
  52348. height: math.unit(7, "feet")
  52349. },
  52350. {
  52351. name: "Gigamacro",
  52352. height: math.unit(2.9, "gigameters"),
  52353. default: true
  52354. },
  52355. {
  52356. name: "Universal",
  52357. height: math.unit(1.56e26, "yottameters")
  52358. },
  52359. ]
  52360. ))
  52361. characterMakers.push(() => makeCharacter(
  52362. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52363. {
  52364. front: {
  52365. height: math.unit(3, "feet"),
  52366. weight: math.unit(20, "lb"),
  52367. name: "Front",
  52368. image: {
  52369. source: "./media/characters/kit-fennec-fox/front.svg",
  52370. extra: 1027/932,
  52371. bottom: 16/1043
  52372. }
  52373. },
  52374. back: {
  52375. height: math.unit(3, "feet"),
  52376. weight: math.unit(20, "lb"),
  52377. name: "Back",
  52378. image: {
  52379. source: "./media/characters/kit-fennec-fox/back.svg",
  52380. extra: 1027/932,
  52381. bottom: 16/1043
  52382. }
  52383. },
  52384. },
  52385. [
  52386. {
  52387. name: "Normal",
  52388. height: math.unit(3, "feet"),
  52389. default: true
  52390. },
  52391. ]
  52392. ))
  52393. characterMakers.push(() => makeCharacter(
  52394. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52395. {
  52396. front: {
  52397. height: math.unit(167, "cm"),
  52398. name: "Front",
  52399. image: {
  52400. source: "./media/characters/blue-otter/front.svg",
  52401. extra: 1951/1920,
  52402. bottom: 31/1982
  52403. }
  52404. },
  52405. },
  52406. [
  52407. {
  52408. name: "Otter-Sized",
  52409. height: math.unit(100, "cm")
  52410. },
  52411. {
  52412. name: "Normal",
  52413. height: math.unit(167, "cm"),
  52414. default: true
  52415. },
  52416. ]
  52417. ))
  52418. characterMakers.push(() => makeCharacter(
  52419. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52420. {
  52421. front: {
  52422. height: math.unit(4 + 4/12, "feet"),
  52423. name: "Front",
  52424. image: {
  52425. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52426. extra: 1072/1067,
  52427. bottom: 117/1189
  52428. }
  52429. },
  52430. back: {
  52431. height: math.unit(4 + 4/12, "feet"),
  52432. name: "Back",
  52433. image: {
  52434. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52435. extra: 1135/1129,
  52436. bottom: 57/1192
  52437. }
  52438. },
  52439. head: {
  52440. height: math.unit(1.77, "feet"),
  52441. name: "Head",
  52442. image: {
  52443. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52444. }
  52445. },
  52446. },
  52447. [
  52448. {
  52449. name: "Normal",
  52450. height: math.unit(4 + 4/12, "feet"),
  52451. default: true
  52452. },
  52453. ]
  52454. ))
  52455. characterMakers.push(() => makeCharacter(
  52456. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52457. {
  52458. front: {
  52459. height: math.unit(2, "inches"),
  52460. name: "Front",
  52461. image: {
  52462. source: "./media/characters/carley-hartford/front.svg",
  52463. extra: 1035/988,
  52464. bottom: 23/1058
  52465. }
  52466. },
  52467. back: {
  52468. height: math.unit(2, "inches"),
  52469. name: "Back",
  52470. image: {
  52471. source: "./media/characters/carley-hartford/back.svg",
  52472. extra: 1035/988,
  52473. bottom: 23/1058
  52474. }
  52475. },
  52476. dressed: {
  52477. height: math.unit(2, "inches"),
  52478. name: "Dressed",
  52479. image: {
  52480. source: "./media/characters/carley-hartford/dressed.svg",
  52481. extra: 651/620,
  52482. bottom: 0/651
  52483. }
  52484. },
  52485. },
  52486. [
  52487. {
  52488. name: "Micro",
  52489. height: math.unit(2, "inches"),
  52490. default: true
  52491. },
  52492. {
  52493. name: "Macro",
  52494. height: math.unit(6 + 3/12, "feet")
  52495. },
  52496. ]
  52497. ))
  52498. characterMakers.push(() => makeCharacter(
  52499. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52500. {
  52501. front: {
  52502. height: math.unit(2 + 3/12, "feet"),
  52503. weight: math.unit(15 + 7/16, "lb"),
  52504. name: "Front",
  52505. image: {
  52506. source: "./media/characters/duke/front.svg",
  52507. extra: 910/815,
  52508. bottom: 30/940
  52509. }
  52510. },
  52511. },
  52512. [
  52513. {
  52514. name: "Normal",
  52515. height: math.unit(2 + 3/12, "feet"),
  52516. default: true
  52517. },
  52518. ]
  52519. ))
  52520. characterMakers.push(() => makeCharacter(
  52521. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52522. {
  52523. front: {
  52524. height: math.unit(5 + 4/12, "feet"),
  52525. weight: math.unit(156, "lb"),
  52526. name: "Front",
  52527. image: {
  52528. source: "./media/characters/dein/front.svg",
  52529. extra: 855/815,
  52530. bottom: 48/903
  52531. }
  52532. },
  52533. side: {
  52534. height: math.unit(5 + 4/12, "feet"),
  52535. weight: math.unit(156, "lb"),
  52536. name: "side",
  52537. image: {
  52538. source: "./media/characters/dein/side.svg",
  52539. extra: 846/803,
  52540. bottom: 25/871
  52541. }
  52542. },
  52543. maw: {
  52544. height: math.unit(1.45, "feet"),
  52545. name: "Maw",
  52546. image: {
  52547. source: "./media/characters/dein/maw.svg"
  52548. }
  52549. },
  52550. },
  52551. [
  52552. {
  52553. name: "Ferret Sized",
  52554. height: math.unit(2 + 5/12, "feet")
  52555. },
  52556. {
  52557. name: "Normal",
  52558. height: math.unit(5 + 4/12, "feet"),
  52559. default: true
  52560. },
  52561. ]
  52562. ))
  52563. characterMakers.push(() => makeCharacter(
  52564. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52565. {
  52566. front: {
  52567. height: math.unit(84 + 8/12, "feet"),
  52568. weight: math.unit(942180, "lb"),
  52569. name: "Front",
  52570. image: {
  52571. source: "./media/characters/daurine-arima/front.svg",
  52572. extra: 1989/1782,
  52573. bottom: 37/2026
  52574. }
  52575. },
  52576. side: {
  52577. height: math.unit(84 + 8/12, "feet"),
  52578. weight: math.unit(942180, "lb"),
  52579. name: "Side",
  52580. image: {
  52581. source: "./media/characters/daurine-arima/side.svg",
  52582. extra: 1997/1790,
  52583. bottom: 21/2018
  52584. }
  52585. },
  52586. back: {
  52587. height: math.unit(84 + 8/12, "feet"),
  52588. weight: math.unit(942180, "lb"),
  52589. name: "Back",
  52590. image: {
  52591. source: "./media/characters/daurine-arima/back.svg",
  52592. extra: 1992/1800,
  52593. bottom: 12/2004
  52594. }
  52595. },
  52596. head: {
  52597. height: math.unit(15.5, "feet"),
  52598. name: "Head",
  52599. image: {
  52600. source: "./media/characters/daurine-arima/head.svg"
  52601. }
  52602. },
  52603. headAlt: {
  52604. height: math.unit(19.19, "feet"),
  52605. name: "Head (Alt)",
  52606. image: {
  52607. source: "./media/characters/daurine-arima/head-alt.svg"
  52608. }
  52609. },
  52610. },
  52611. [
  52612. {
  52613. name: "Minimum height",
  52614. height: math.unit(8 + 10/12, "feet")
  52615. },
  52616. {
  52617. name: "Comfort height",
  52618. height: math.unit(19 + 6 /12, "feet")
  52619. },
  52620. {
  52621. name: "\"Normal\" height",
  52622. height: math.unit(28 + 10/12, "feet")
  52623. },
  52624. {
  52625. name: "Base height",
  52626. height: math.unit(84 + 8/12, "feet"),
  52627. default: true
  52628. },
  52629. {
  52630. name: "Mini-macro",
  52631. height: math.unit(2360, "feet")
  52632. },
  52633. {
  52634. name: "Macro",
  52635. height: math.unit(10, "miles")
  52636. },
  52637. {
  52638. name: "Goddess",
  52639. height: math.unit(9.99e40, "yottameters")
  52640. },
  52641. ]
  52642. ))
  52643. characterMakers.push(() => makeCharacter(
  52644. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52645. {
  52646. front: {
  52647. height: math.unit(2.3, "meters"),
  52648. name: "Front",
  52649. image: {
  52650. source: "./media/characters/cilenomon/front.svg",
  52651. extra: 1963/1778,
  52652. bottom: 54/2017
  52653. }
  52654. },
  52655. },
  52656. [
  52657. {
  52658. name: "Normal",
  52659. height: math.unit(2.3, "meters"),
  52660. default: true
  52661. },
  52662. {
  52663. name: "Big",
  52664. height: math.unit(5, "meters")
  52665. },
  52666. {
  52667. name: "Macro",
  52668. height: math.unit(30, "meters")
  52669. },
  52670. {
  52671. name: "True",
  52672. height: math.unit(1, "universe")
  52673. },
  52674. ]
  52675. ))
  52676. characterMakers.push(() => makeCharacter(
  52677. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52678. {
  52679. front: {
  52680. height: math.unit(5, "feet"),
  52681. name: "Front",
  52682. image: {
  52683. source: "./media/characters/sen-mink/front.svg",
  52684. extra: 1727/1675,
  52685. bottom: 35/1762
  52686. }
  52687. },
  52688. },
  52689. [
  52690. {
  52691. name: "Normal",
  52692. height: math.unit(5, "feet"),
  52693. default: true
  52694. },
  52695. ]
  52696. ))
  52697. characterMakers.push(() => makeCharacter(
  52698. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52699. {
  52700. front: {
  52701. height: math.unit(5.42999, "feet"),
  52702. weight: math.unit(100, "lb"),
  52703. name: "Front",
  52704. image: {
  52705. source: "./media/characters/ophois/front.svg",
  52706. extra: 1429/1286,
  52707. bottom: 60/1489
  52708. }
  52709. },
  52710. },
  52711. [
  52712. {
  52713. name: "Normal",
  52714. height: math.unit(5.42999, "feet"),
  52715. default: true
  52716. },
  52717. ]
  52718. ))
  52719. characterMakers.push(() => makeCharacter(
  52720. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52721. {
  52722. front: {
  52723. height: math.unit(2, "meters"),
  52724. name: "Front",
  52725. image: {
  52726. source: "./media/characters/riley/front.svg",
  52727. extra: 1779/1754,
  52728. bottom: 139/1918
  52729. }
  52730. },
  52731. },
  52732. [
  52733. {
  52734. name: "Normal",
  52735. height: math.unit(2, "meters"),
  52736. default: true
  52737. },
  52738. ]
  52739. ))
  52740. characterMakers.push(() => makeCharacter(
  52741. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52742. {
  52743. front: {
  52744. height: math.unit(6 + 2/12, "feet"),
  52745. weight: math.unit(195, "lb"),
  52746. preyCapacity: math.unit(6, "people"),
  52747. name: "Front",
  52748. image: {
  52749. source: "./media/characters/shuken-flash/front.svg",
  52750. extra: 1905/1739,
  52751. bottom: 65/1970
  52752. }
  52753. },
  52754. back: {
  52755. height: math.unit(6 + 2/12, "feet"),
  52756. weight: math.unit(195, "lb"),
  52757. preyCapacity: math.unit(6, "people"),
  52758. name: "Back",
  52759. image: {
  52760. source: "./media/characters/shuken-flash/back.svg",
  52761. extra: 1912/1751,
  52762. bottom: 13/1925
  52763. }
  52764. },
  52765. },
  52766. [
  52767. {
  52768. name: "Normal",
  52769. height: math.unit(6 + 2/12, "feet"),
  52770. default: true
  52771. },
  52772. ]
  52773. ))
  52774. characterMakers.push(() => makeCharacter(
  52775. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52776. {
  52777. front: {
  52778. height: math.unit(5 + 9/12, "feet"),
  52779. weight: math.unit(150, "lb"),
  52780. name: "Front",
  52781. image: {
  52782. source: "./media/characters/plat/front.svg",
  52783. extra: 1816/1703,
  52784. bottom: 43/1859
  52785. }
  52786. },
  52787. side: {
  52788. height: math.unit(5 + 9/12, "feet"),
  52789. weight: math.unit(300, "lb"),
  52790. name: "Side",
  52791. image: {
  52792. source: "./media/characters/plat/side.svg",
  52793. extra: 1824/1699,
  52794. bottom: 18/1842
  52795. }
  52796. },
  52797. },
  52798. [
  52799. {
  52800. name: "Normal",
  52801. height: math.unit(5 + 9/12, "feet"),
  52802. default: true
  52803. },
  52804. ]
  52805. ))
  52806. characterMakers.push(() => makeCharacter(
  52807. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52808. {
  52809. front: {
  52810. height: math.unit(9, "feet"),
  52811. weight: math.unit(1800, "lb"),
  52812. name: "Front",
  52813. image: {
  52814. source: "./media/characters/elaine/front.svg",
  52815. extra: 1833/1354,
  52816. bottom: 25/1858
  52817. }
  52818. },
  52819. back: {
  52820. height: math.unit(8.8, "feet"),
  52821. weight: math.unit(1800, "lb"),
  52822. name: "Back",
  52823. image: {
  52824. source: "./media/characters/elaine/back.svg",
  52825. extra: 1641/1233,
  52826. bottom: 53/1694
  52827. }
  52828. },
  52829. },
  52830. [
  52831. {
  52832. name: "Normal",
  52833. height: math.unit(9, "feet"),
  52834. default: true
  52835. },
  52836. ]
  52837. ))
  52838. characterMakers.push(() => makeCharacter(
  52839. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52840. {
  52841. front: {
  52842. height: math.unit(17 + 9/12, "feet"),
  52843. weight: math.unit(8000, "lb"),
  52844. name: "Front",
  52845. image: {
  52846. source: "./media/characters/vera-raven/front.svg",
  52847. extra: 1457/1412,
  52848. bottom: 121/1578
  52849. }
  52850. },
  52851. side: {
  52852. height: math.unit(17 + 9/12, "feet"),
  52853. weight: math.unit(8000, "lb"),
  52854. name: "Side",
  52855. image: {
  52856. source: "./media/characters/vera-raven/side.svg",
  52857. extra: 1510/1464,
  52858. bottom: 54/1564
  52859. }
  52860. },
  52861. },
  52862. [
  52863. {
  52864. name: "Normal",
  52865. height: math.unit(17 + 9/12, "feet"),
  52866. default: true
  52867. },
  52868. ]
  52869. ))
  52870. characterMakers.push(() => makeCharacter(
  52871. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52872. {
  52873. dressed: {
  52874. height: math.unit(6 + 9/12, "feet"),
  52875. name: "Dressed",
  52876. image: {
  52877. source: "./media/characters/nakisha/dressed.svg",
  52878. extra: 1909/1757,
  52879. bottom: 48/1957
  52880. }
  52881. },
  52882. nude: {
  52883. height: math.unit(6 + 9/12, "feet"),
  52884. name: "Nude",
  52885. image: {
  52886. source: "./media/characters/nakisha/nude.svg",
  52887. extra: 1917/1765,
  52888. bottom: 34/1951
  52889. }
  52890. },
  52891. },
  52892. [
  52893. {
  52894. name: "Normal",
  52895. height: math.unit(6 + 9/12, "feet"),
  52896. default: true
  52897. },
  52898. ]
  52899. ))
  52900. characterMakers.push(() => makeCharacter(
  52901. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52902. {
  52903. front: {
  52904. height: math.unit(87, "meters"),
  52905. name: "Front",
  52906. image: {
  52907. source: "./media/characters/serafin/front.svg",
  52908. extra: 1919/1776,
  52909. bottom: 65/1984
  52910. }
  52911. },
  52912. },
  52913. [
  52914. {
  52915. name: "Normal",
  52916. height: math.unit(87, "meters"),
  52917. default: true
  52918. },
  52919. ]
  52920. ))
  52921. characterMakers.push(() => makeCharacter(
  52922. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52923. {
  52924. front: {
  52925. height: math.unit(6, "feet"),
  52926. weight: math.unit(200, "lb"),
  52927. name: "Front",
  52928. image: {
  52929. source: "./media/characters/poptart/front.svg",
  52930. extra: 615/583,
  52931. bottom: 23/638
  52932. }
  52933. },
  52934. back: {
  52935. height: math.unit(6, "feet"),
  52936. weight: math.unit(200, "lb"),
  52937. name: "Back",
  52938. image: {
  52939. source: "./media/characters/poptart/back.svg",
  52940. extra: 617/584,
  52941. bottom: 22/639
  52942. }
  52943. },
  52944. frontNsfw: {
  52945. height: math.unit(6, "feet"),
  52946. weight: math.unit(200, "lb"),
  52947. name: "Front (NSFW)",
  52948. image: {
  52949. source: "./media/characters/poptart/front-nsfw.svg",
  52950. extra: 615/583,
  52951. bottom: 23/638
  52952. }
  52953. },
  52954. backNsfw: {
  52955. height: math.unit(6, "feet"),
  52956. weight: math.unit(200, "lb"),
  52957. name: "Back (NSFW)",
  52958. image: {
  52959. source: "./media/characters/poptart/back-nsfw.svg",
  52960. extra: 617/584,
  52961. bottom: 22/639
  52962. }
  52963. },
  52964. hand: {
  52965. height: math.unit(1.14, "feet"),
  52966. name: "Hand",
  52967. image: {
  52968. source: "./media/characters/poptart/hand.svg"
  52969. }
  52970. },
  52971. foot: {
  52972. height: math.unit(1.5, "feet"),
  52973. name: "Foot",
  52974. image: {
  52975. source: "./media/characters/poptart/foot.svg"
  52976. }
  52977. },
  52978. },
  52979. [
  52980. {
  52981. name: "Normal",
  52982. height: math.unit(6, "feet"),
  52983. default: true
  52984. },
  52985. {
  52986. name: "Grande",
  52987. height: math.unit(350, "feet")
  52988. },
  52989. {
  52990. name: "Massif",
  52991. height: math.unit(967, "feet")
  52992. },
  52993. ]
  52994. ))
  52995. characterMakers.push(() => makeCharacter(
  52996. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  52997. {
  52998. hyenaSide: {
  52999. height: math.unit(120, "cm"),
  53000. weight: math.unit(120, "lb"),
  53001. name: "Side",
  53002. image: {
  53003. source: "./media/characters/trance/hyena-side.svg",
  53004. extra: 998/904,
  53005. bottom: 76/1074
  53006. }
  53007. },
  53008. },
  53009. [
  53010. {
  53011. name: "Normal",
  53012. height: math.unit(120, "cm"),
  53013. default: true
  53014. },
  53015. {
  53016. name: "Dire",
  53017. height: math.unit(230, "cm")
  53018. },
  53019. {
  53020. name: "Macro",
  53021. height: math.unit(37, "feet")
  53022. },
  53023. ]
  53024. ))
  53025. characterMakers.push(() => makeCharacter(
  53026. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53027. {
  53028. front: {
  53029. height: math.unit(6 + 3/12, "feet"),
  53030. name: "Front",
  53031. image: {
  53032. source: "./media/characters/michael-berretta/front.svg",
  53033. extra: 515/494,
  53034. bottom: 20/535
  53035. }
  53036. },
  53037. back: {
  53038. height: math.unit(6 + 3/12, "feet"),
  53039. name: "Back",
  53040. image: {
  53041. source: "./media/characters/michael-berretta/back.svg",
  53042. extra: 520/497,
  53043. bottom: 21/541
  53044. }
  53045. },
  53046. frontNsfw: {
  53047. height: math.unit(6 + 3/12, "feet"),
  53048. name: "Front (NSFW)",
  53049. image: {
  53050. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53051. extra: 515/494,
  53052. bottom: 20/535
  53053. }
  53054. },
  53055. dick: {
  53056. height: math.unit(1, "feet"),
  53057. name: "Dick",
  53058. image: {
  53059. source: "./media/characters/michael-berretta/dick.svg"
  53060. }
  53061. },
  53062. },
  53063. [
  53064. {
  53065. name: "Normal",
  53066. height: math.unit(6 + 3/12, "feet"),
  53067. default: true
  53068. },
  53069. {
  53070. name: "Big",
  53071. height: math.unit(12, "feet")
  53072. },
  53073. {
  53074. name: "Macro",
  53075. height: math.unit(187.5, "feet")
  53076. },
  53077. ]
  53078. ))
  53079. characterMakers.push(() => makeCharacter(
  53080. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53081. {
  53082. front: {
  53083. height: math.unit(9 + 9/12, "feet"),
  53084. weight: math.unit(1244, "lb"),
  53085. name: "Front",
  53086. image: {
  53087. source: "./media/characters/stella-edgecomb/front.svg",
  53088. extra: 1835/1706,
  53089. bottom: 49/1884
  53090. }
  53091. },
  53092. pen: {
  53093. height: math.unit(0.95, "feet"),
  53094. name: "Pen",
  53095. image: {
  53096. source: "./media/characters/stella-edgecomb/pen.svg"
  53097. }
  53098. },
  53099. },
  53100. [
  53101. {
  53102. name: "Cozy Bear",
  53103. height: math.unit(0.5, "inches")
  53104. },
  53105. {
  53106. name: "Normal",
  53107. height: math.unit(9 + 9/12, "feet"),
  53108. default: true
  53109. },
  53110. {
  53111. name: "Giga Bear",
  53112. height: math.unit(1, "mile")
  53113. },
  53114. {
  53115. name: "Great Bear",
  53116. height: math.unit(53, "miles")
  53117. },
  53118. {
  53119. name: "Goddess Bear",
  53120. height: math.unit(40000, "miles")
  53121. },
  53122. {
  53123. name: "Sun Bear",
  53124. height: math.unit(900000, "miles")
  53125. },
  53126. ]
  53127. ))
  53128. characterMakers.push(() => makeCharacter(
  53129. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53130. {
  53131. anthroFront: {
  53132. height: math.unit(556, "cm"),
  53133. weight: math.unit(2650, "kg"),
  53134. preyCapacity: math.unit(3, "people"),
  53135. name: "Front",
  53136. image: {
  53137. source: "./media/characters/ash´iika/front.svg",
  53138. extra: 710/673,
  53139. bottom: 15/725
  53140. },
  53141. form: "anthro",
  53142. default: true
  53143. },
  53144. anthroSide: {
  53145. height: math.unit(556, "cm"),
  53146. weight: math.unit(2650, "kg"),
  53147. preyCapacity: math.unit(3, "people"),
  53148. name: "Side",
  53149. image: {
  53150. source: "./media/characters/ash´iika/side.svg",
  53151. extra: 696/676,
  53152. bottom: 13/709
  53153. },
  53154. form: "anthro"
  53155. },
  53156. anthroDressed: {
  53157. height: math.unit(556, "cm"),
  53158. weight: math.unit(2650, "kg"),
  53159. preyCapacity: math.unit(3, "people"),
  53160. name: "Dressed",
  53161. image: {
  53162. source: "./media/characters/ash´iika/dressed.svg",
  53163. extra: 710/673,
  53164. bottom: 15/725
  53165. },
  53166. form: "anthro"
  53167. },
  53168. anthroHead: {
  53169. height: math.unit(3.5, "feet"),
  53170. name: "Head",
  53171. image: {
  53172. source: "./media/characters/ash´iika/head.svg",
  53173. extra: 348/291,
  53174. bottom: 45/393
  53175. },
  53176. form: "anthro"
  53177. },
  53178. feralSide: {
  53179. height: math.unit(870, "cm"),
  53180. weight: math.unit(17500, "kg"),
  53181. preyCapacity: math.unit(15, "people"),
  53182. name: "Side",
  53183. image: {
  53184. source: "./media/characters/ash´iika/feral.svg",
  53185. extra: 595/199,
  53186. bottom: 7/602
  53187. },
  53188. form: "feral",
  53189. default: true,
  53190. },
  53191. },
  53192. [
  53193. {
  53194. name: "Normal",
  53195. height: math.unit(556, "cm"),
  53196. default: true,
  53197. form: "anthro"
  53198. },
  53199. {
  53200. name: "Macro",
  53201. height: math.unit(88, "meters"),
  53202. form: "anthro"
  53203. },
  53204. {
  53205. name: "Normal",
  53206. height: math.unit(870, "cm"),
  53207. default: true,
  53208. form: "feral"
  53209. },
  53210. {
  53211. name: "Large",
  53212. height: math.unit(25, "meters"),
  53213. form: "feral"
  53214. },
  53215. ],
  53216. {
  53217. "anthro": {
  53218. name: "Anthro",
  53219. default: true
  53220. },
  53221. "feral": {
  53222. name: "Feral",
  53223. },
  53224. }
  53225. ))
  53226. characterMakers.push(() => makeCharacter(
  53227. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53228. {
  53229. front: {
  53230. height: math.unit(10, "feet"),
  53231. weight: math.unit(800, "lb"),
  53232. name: "Front",
  53233. image: {
  53234. source: "./media/characters/yen/front.svg",
  53235. extra: 443/411,
  53236. bottom: 6/449
  53237. }
  53238. },
  53239. sleeping: {
  53240. height: math.unit(10, "feet"),
  53241. weight: math.unit(800, "lb"),
  53242. name: "Sleeping",
  53243. image: {
  53244. source: "./media/characters/yen/sleeping.svg",
  53245. extra: 470/422,
  53246. bottom: 0/470
  53247. }
  53248. },
  53249. head: {
  53250. height: math.unit(2.2, "feet"),
  53251. name: "Head",
  53252. image: {
  53253. source: "./media/characters/yen/head.svg"
  53254. }
  53255. },
  53256. headAlt: {
  53257. height: math.unit(2.1, "feet"),
  53258. name: "Head (Alt)",
  53259. image: {
  53260. source: "./media/characters/yen/head-alt.svg"
  53261. }
  53262. },
  53263. },
  53264. [
  53265. {
  53266. name: "Normal",
  53267. height: math.unit(10, "feet"),
  53268. default: true
  53269. },
  53270. ]
  53271. ))
  53272. characterMakers.push(() => makeCharacter(
  53273. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53274. {
  53275. front: {
  53276. height: math.unit(12, "feet"),
  53277. name: "Front",
  53278. image: {
  53279. source: "./media/characters/citra/front.svg",
  53280. extra: 1950/1710,
  53281. bottom: 47/1997
  53282. }
  53283. },
  53284. },
  53285. [
  53286. {
  53287. name: "Normal",
  53288. height: math.unit(12, "feet"),
  53289. default: true
  53290. },
  53291. ]
  53292. ))
  53293. characterMakers.push(() => makeCharacter(
  53294. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53295. {
  53296. side: {
  53297. height: math.unit(7 + 10/12, "feet"),
  53298. name: "Side",
  53299. image: {
  53300. source: "./media/characters/sholstim/side.svg",
  53301. extra: 786/682,
  53302. bottom: 40/826
  53303. }
  53304. },
  53305. },
  53306. [
  53307. {
  53308. name: "Normal",
  53309. height: math.unit(7 + 10/12, "feet"),
  53310. default: true
  53311. },
  53312. ]
  53313. ))
  53314. characterMakers.push(() => makeCharacter(
  53315. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53316. {
  53317. front: {
  53318. height: math.unit(3.10, "meters"),
  53319. name: "Front",
  53320. image: {
  53321. source: "./media/characters/aggyn/front.svg",
  53322. extra: 1188/963,
  53323. bottom: 24/1212
  53324. }
  53325. },
  53326. },
  53327. [
  53328. {
  53329. name: "Normal",
  53330. height: math.unit(3.10, "meters"),
  53331. default: true
  53332. },
  53333. ]
  53334. ))
  53335. characterMakers.push(() => makeCharacter(
  53336. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53337. {
  53338. front: {
  53339. height: math.unit(7 + 5/12, "feet"),
  53340. weight: math.unit(687, "lb"),
  53341. name: "Front",
  53342. image: {
  53343. source: "./media/characters/alsandair-hergenroether/front.svg",
  53344. extra: 1251/1186,
  53345. bottom: 75/1326
  53346. }
  53347. },
  53348. back: {
  53349. height: math.unit(7 + 5/12, "feet"),
  53350. weight: math.unit(687, "lb"),
  53351. name: "Back",
  53352. image: {
  53353. source: "./media/characters/alsandair-hergenroether/back.svg",
  53354. extra: 1290/1229,
  53355. bottom: 17/1307
  53356. }
  53357. },
  53358. },
  53359. [
  53360. {
  53361. name: "Max Compression",
  53362. height: math.unit(7 + 5/12, "feet"),
  53363. default: true
  53364. },
  53365. {
  53366. name: "\"Normal\"",
  53367. height: math.unit(2, "universes")
  53368. },
  53369. ]
  53370. ))
  53371. characterMakers.push(() => makeCharacter(
  53372. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53373. {
  53374. front: {
  53375. height: math.unit(4 + 1/12, "feet"),
  53376. weight: math.unit(92, "lb"),
  53377. name: "Front",
  53378. image: {
  53379. source: "./media/characters/ie/front.svg",
  53380. extra: 1585/1352,
  53381. bottom: 91/1676
  53382. }
  53383. },
  53384. },
  53385. [
  53386. {
  53387. name: "Normal",
  53388. height: math.unit(4 + 1/12, "feet"),
  53389. default: true
  53390. },
  53391. ]
  53392. ))
  53393. characterMakers.push(() => makeCharacter(
  53394. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53395. {
  53396. anthro: {
  53397. height: math.unit(6, "feet"),
  53398. weight: math.unit(150, "lb"),
  53399. name: "Front",
  53400. image: {
  53401. source: "./media/characters/willow/anthro.svg",
  53402. extra: 1073/986,
  53403. bottom: 34/1107
  53404. },
  53405. form: "anthro",
  53406. default: true
  53407. },
  53408. taur: {
  53409. height: math.unit(6, "feet"),
  53410. weight: math.unit(150, "lb"),
  53411. name: "Side",
  53412. image: {
  53413. source: "./media/characters/willow/taur.svg",
  53414. extra: 647/512,
  53415. bottom: 136/783
  53416. },
  53417. form: "taur",
  53418. default: true
  53419. },
  53420. },
  53421. [
  53422. {
  53423. name: "Humanoid",
  53424. height: math.unit(2.7, "meters"),
  53425. form: "anthro"
  53426. },
  53427. {
  53428. name: "Normal",
  53429. height: math.unit(9, "meters"),
  53430. form: "anthro",
  53431. default: true
  53432. },
  53433. {
  53434. name: "Humanoid",
  53435. height: math.unit(2.1, "meters"),
  53436. form: "taur"
  53437. },
  53438. {
  53439. name: "Normal",
  53440. height: math.unit(7, "meters"),
  53441. form: "taur",
  53442. default: true
  53443. },
  53444. ],
  53445. {
  53446. "anthro": {
  53447. name: "Anthro",
  53448. default: true
  53449. },
  53450. "taur": {
  53451. name: "Taur",
  53452. },
  53453. }
  53454. ))
  53455. characterMakers.push(() => makeCharacter(
  53456. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53457. {
  53458. front: {
  53459. height: math.unit(2 + 5/12, "feet"),
  53460. name: "Front",
  53461. image: {
  53462. source: "./media/characters/kyan/front.svg",
  53463. extra: 460/334,
  53464. bottom: 23/483
  53465. },
  53466. extraAttributes: {
  53467. "toeLength": {
  53468. name: "Toe Length",
  53469. power: 1,
  53470. type: "length",
  53471. base: math.unit(7, "cm")
  53472. },
  53473. "toeclawLength": {
  53474. name: "Toeclaw Length",
  53475. power: 1,
  53476. type: "length",
  53477. base: math.unit(4.7, "cm")
  53478. },
  53479. "earHeight": {
  53480. name: "Ear Height",
  53481. power: 1,
  53482. type: "length",
  53483. base: math.unit(14.1, "cm")
  53484. },
  53485. }
  53486. },
  53487. paws: {
  53488. height: math.unit(0.45, "feet"),
  53489. name: "Paws",
  53490. image: {
  53491. source: "./media/characters/kyan/paws.svg",
  53492. extra: 581/581,
  53493. bottom: 114/695
  53494. }
  53495. },
  53496. },
  53497. [
  53498. {
  53499. name: "Normal",
  53500. height: math.unit(2 + 5/12, "feet"),
  53501. default: true
  53502. },
  53503. ]
  53504. ))
  53505. characterMakers.push(() => makeCharacter(
  53506. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53507. {
  53508. front: {
  53509. height: math.unit(2 + 2/3, "feet"),
  53510. name: "Front",
  53511. image: {
  53512. source: "./media/characters/xazzon/front.svg",
  53513. extra: 1109/984,
  53514. bottom: 42/1151
  53515. }
  53516. },
  53517. back: {
  53518. height: math.unit(2 + 2/3, "feet"),
  53519. name: "Back",
  53520. image: {
  53521. source: "./media/characters/xazzon/back.svg",
  53522. extra: 1095/971,
  53523. bottom: 23/1118
  53524. }
  53525. },
  53526. },
  53527. [
  53528. {
  53529. name: "Normal",
  53530. height: math.unit(2 + 2/3, "feet"),
  53531. default: true
  53532. },
  53533. ]
  53534. ))
  53535. characterMakers.push(() => makeCharacter(
  53536. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53537. {
  53538. dressed: {
  53539. height: math.unit(5 + 7/12, "feet"),
  53540. weight: math.unit(173, "lb"),
  53541. name: "Dressed",
  53542. image: {
  53543. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53544. extra: 3262/2862,
  53545. bottom: 188/3450
  53546. }
  53547. },
  53548. undressed: {
  53549. height: math.unit(5 + 7/12, "feet"),
  53550. weight: math.unit(173, "lb"),
  53551. name: "Undressed",
  53552. image: {
  53553. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53554. extra: 3262/2862,
  53555. bottom: 188/3450
  53556. }
  53557. },
  53558. },
  53559. [
  53560. {
  53561. name: "The void",
  53562. height: math.unit(7.29193e-34, "angstroms")
  53563. },
  53564. {
  53565. name: "Uh-Oh.",
  53566. height: math.unit(5.734e-7, "angstroms")
  53567. },
  53568. {
  53569. name: "Pico",
  53570. height: math.unit(0.876, "angstroms")
  53571. },
  53572. {
  53573. name: "Nano",
  53574. height: math.unit(0.000134200, "mm")
  53575. },
  53576. {
  53577. name: "Micro",
  53578. height: math.unit(0.0673020, "mm")
  53579. },
  53580. {
  53581. name: "Tiny",
  53582. height: math.unit(2.4, "mm")
  53583. },
  53584. {
  53585. name: "Actual Normal",
  53586. height: math.unit(3, "inches"),
  53587. default: true
  53588. },
  53589. {
  53590. name: "Normal",
  53591. height: math.unit(5 + 8/12, "feet")
  53592. },
  53593. {
  53594. name: "Giant",
  53595. height: math.unit(12, "feet")
  53596. },
  53597. {
  53598. name: "City Ruler",
  53599. height: math.unit(270, "meters")
  53600. },
  53601. {
  53602. name: "Giga",
  53603. height: math.unit(1117.6, "km")
  53604. },
  53605. {
  53606. name: "All-Powerful Queen",
  53607. height: math.unit(70.8, "gigameters")
  53608. },
  53609. {
  53610. name: "'Goddess'",
  53611. height: math.unit(600, "yottameters")
  53612. },
  53613. {
  53614. name: "Biggest!",
  53615. height: math.unit(4.23e5, "yottameters")
  53616. },
  53617. ]
  53618. ))
  53619. characterMakers.push(() => makeCharacter(
  53620. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53621. {
  53622. front: {
  53623. height: math.unit(8, "feet"),
  53624. weight: math.unit(300, "lb"),
  53625. name: "Front",
  53626. image: {
  53627. source: "./media/characters/khyla-shadowsong/front.svg",
  53628. extra: 861/798,
  53629. bottom: 32/893
  53630. }
  53631. },
  53632. side: {
  53633. height: math.unit(8, "feet"),
  53634. weight: math.unit(300, "lb"),
  53635. name: "Side",
  53636. image: {
  53637. source: "./media/characters/khyla-shadowsong/side.svg",
  53638. extra: 790/750,
  53639. bottom: 87/877
  53640. }
  53641. },
  53642. back: {
  53643. height: math.unit(8, "feet"),
  53644. weight: math.unit(300, "lb"),
  53645. name: "Back",
  53646. image: {
  53647. source: "./media/characters/khyla-shadowsong/back.svg",
  53648. extra: 855/808,
  53649. bottom: 14/869
  53650. }
  53651. },
  53652. head: {
  53653. height: math.unit(2.7, "feet"),
  53654. name: "Head",
  53655. image: {
  53656. source: "./media/characters/khyla-shadowsong/head.svg"
  53657. }
  53658. },
  53659. },
  53660. [
  53661. {
  53662. name: "Micro",
  53663. height: math.unit(6, "inches")
  53664. },
  53665. {
  53666. name: "Normal",
  53667. height: math.unit(8, "feet"),
  53668. default: true
  53669. },
  53670. ]
  53671. ))
  53672. characterMakers.push(() => makeCharacter(
  53673. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53674. {
  53675. hyperFront: {
  53676. height: math.unit(9 + 4/12, "feet"),
  53677. weight: math.unit(2000, "lb"),
  53678. name: "Front",
  53679. image: {
  53680. source: "./media/characters/tiden/hyper-front.svg",
  53681. extra: 400/382,
  53682. bottom: 6/406
  53683. },
  53684. form: "hyper",
  53685. },
  53686. regularFront: {
  53687. height: math.unit(7 + 10/12, "feet"),
  53688. weight: math.unit(470, "lb"),
  53689. name: "Front",
  53690. image: {
  53691. source: "./media/characters/tiden/regular-front.svg",
  53692. extra: 468/442,
  53693. bottom: 6/474
  53694. },
  53695. form: "regular",
  53696. },
  53697. },
  53698. [
  53699. {
  53700. name: "Normal",
  53701. height: math.unit(9 + 4/12, "feet"),
  53702. default: true,
  53703. form: "hyper"
  53704. },
  53705. {
  53706. name: "Normal",
  53707. height: math.unit(7 + 10/12, "feet"),
  53708. default: true,
  53709. form: "regular"
  53710. },
  53711. ],
  53712. {
  53713. "hyper": {
  53714. name: "Hyper",
  53715. default: true
  53716. },
  53717. "regular": {
  53718. name: "Regular",
  53719. },
  53720. }
  53721. ))
  53722. characterMakers.push(() => makeCharacter(
  53723. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53724. {
  53725. side: {
  53726. height: math.unit(6, "feet"),
  53727. weight: math.unit(150, "lb"),
  53728. name: "Side",
  53729. image: {
  53730. source: "./media/characters/jason-crowe/side.svg",
  53731. extra: 1771/766,
  53732. bottom: 219/1990
  53733. }
  53734. },
  53735. },
  53736. [
  53737. {
  53738. name: "Pocket Gryphon",
  53739. height: math.unit(6, "cm")
  53740. },
  53741. {
  53742. name: "Raven",
  53743. height: math.unit(60, "cm")
  53744. },
  53745. {
  53746. name: "Normal",
  53747. height: math.unit(1, "meter"),
  53748. default: true
  53749. },
  53750. ]
  53751. ))
  53752. characterMakers.push(() => makeCharacter(
  53753. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  53754. {
  53755. front: {
  53756. height: math.unit(9 + 6/12, "feet"),
  53757. weight: math.unit(1100, "lb"),
  53758. name: "Front",
  53759. image: {
  53760. source: "./media/characters/django/front.svg",
  53761. extra: 1231/1136,
  53762. bottom: 34/1265
  53763. }
  53764. },
  53765. side: {
  53766. height: math.unit(9 + 6/12, "feet"),
  53767. weight: math.unit(1100, "lb"),
  53768. name: "Side",
  53769. image: {
  53770. source: "./media/characters/django/side.svg",
  53771. extra: 1267/1174,
  53772. bottom: 9/1276
  53773. }
  53774. },
  53775. },
  53776. [
  53777. {
  53778. name: "Normal",
  53779. height: math.unit(9 + 6/12, "feet"),
  53780. default: true
  53781. },
  53782. {
  53783. name: "Macro 1",
  53784. height: math.unit(50, "feet")
  53785. },
  53786. {
  53787. name: "Macro 2",
  53788. height: math.unit(500, "feet")
  53789. },
  53790. {
  53791. name: "Mega Macro",
  53792. height: math.unit(5300, "feet")
  53793. },
  53794. ]
  53795. ))
  53796. characterMakers.push(() => makeCharacter(
  53797. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  53798. {
  53799. frontSfw: {
  53800. height: math.unit(120, "cm"),
  53801. weight: math.unit(15, "kg"),
  53802. name: "Front (SFW)",
  53803. image: {
  53804. source: "./media/characters/eri/front-sfw.svg",
  53805. extra: 1014/939,
  53806. bottom: 37/1051
  53807. },
  53808. form: "moth",
  53809. },
  53810. frontNsfw: {
  53811. height: math.unit(120, "cm"),
  53812. weight: math.unit(15, "kg"),
  53813. name: "Front (NSFW)",
  53814. image: {
  53815. source: "./media/characters/eri/front-nsfw.svg",
  53816. extra: 1014/939,
  53817. bottom: 37/1051
  53818. },
  53819. form: "moth",
  53820. default: true
  53821. },
  53822. egg: {
  53823. height: math.unit(10, "cm"),
  53824. name: "Egg",
  53825. image: {
  53826. source: "./media/characters/eri/egg.svg"
  53827. },
  53828. form: "egg",
  53829. default: true
  53830. },
  53831. },
  53832. [
  53833. {
  53834. name: "Normal",
  53835. height: math.unit(120, "cm"),
  53836. default: true,
  53837. form: "moth"
  53838. },
  53839. {
  53840. name: "Normal",
  53841. height: math.unit(10, "cm"),
  53842. default: true,
  53843. form: "egg"
  53844. },
  53845. ],
  53846. {
  53847. "moth": {
  53848. name: "Moth",
  53849. default: true
  53850. },
  53851. "egg": {
  53852. name: "Egg",
  53853. },
  53854. }
  53855. ))
  53856. characterMakers.push(() => makeCharacter(
  53857. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  53858. {
  53859. front: {
  53860. height: math.unit(200, "feet"),
  53861. name: "Front",
  53862. image: {
  53863. source: "./media/characters/bishop-dowser/front.svg",
  53864. extra: 933/868,
  53865. bottom: 106/1039
  53866. }
  53867. },
  53868. },
  53869. [
  53870. {
  53871. name: "Giant",
  53872. height: math.unit(200, "feet"),
  53873. default: true
  53874. },
  53875. ]
  53876. ))
  53877. characterMakers.push(() => makeCharacter(
  53878. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  53879. {
  53880. front: {
  53881. height: math.unit(2, "meters"),
  53882. preyCapacity: math.unit(3, "people"),
  53883. name: "Front",
  53884. image: {
  53885. source: "./media/characters/fryra/front.svg",
  53886. extra: 1025/948,
  53887. bottom: 30/1055
  53888. },
  53889. extraAttributes: {
  53890. "breastVolume": {
  53891. name: "Breast Volume",
  53892. power: 3,
  53893. type: "volume",
  53894. base: math.unit(8, "liters")
  53895. },
  53896. }
  53897. },
  53898. back: {
  53899. height: math.unit(2, "meters"),
  53900. preyCapacity: math.unit(3, "people"),
  53901. name: "Back",
  53902. image: {
  53903. source: "./media/characters/fryra/back.svg",
  53904. extra: 993/938,
  53905. bottom: 38/1031
  53906. },
  53907. extraAttributes: {
  53908. "breastVolume": {
  53909. name: "Breast Volume",
  53910. power: 3,
  53911. type: "volume",
  53912. base: math.unit(8, "liters")
  53913. },
  53914. }
  53915. },
  53916. head: {
  53917. height: math.unit(1.33, "feet"),
  53918. name: "Head",
  53919. image: {
  53920. source: "./media/characters/fryra/head.svg"
  53921. }
  53922. },
  53923. maw: {
  53924. height: math.unit(0.56, "feet"),
  53925. name: "Maw",
  53926. image: {
  53927. source: "./media/characters/fryra/maw.svg"
  53928. }
  53929. },
  53930. },
  53931. [
  53932. {
  53933. name: "Micro",
  53934. height: math.unit(5, "cm")
  53935. },
  53936. {
  53937. name: "Normal",
  53938. height: math.unit(2, "meters"),
  53939. default: true
  53940. },
  53941. {
  53942. name: "Small Macro",
  53943. height: math.unit(8, "meters")
  53944. },
  53945. {
  53946. name: "Macro",
  53947. height: math.unit(50, "meters")
  53948. },
  53949. {
  53950. name: "Megamacro",
  53951. height: math.unit(1, "km")
  53952. },
  53953. {
  53954. name: "Planetary",
  53955. height: math.unit(300000, "km")
  53956. },
  53957. {
  53958. name: "Universal",
  53959. height: math.unit(250, "lightyears")
  53960. },
  53961. {
  53962. name: "Fabric of Reality",
  53963. height: math.unit(1000, "multiverses")
  53964. },
  53965. ]
  53966. ))
  53967. characterMakers.push(() => makeCharacter(
  53968. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  53969. {
  53970. frontDressed: {
  53971. height: math.unit(6 + 2/12, "feet"),
  53972. name: "Front (Dressed)",
  53973. image: {
  53974. source: "./media/characters/fiera/front-dressed.svg",
  53975. extra: 1883/1793,
  53976. bottom: 70/1953
  53977. }
  53978. },
  53979. backDressed: {
  53980. height: math.unit(6 + 2/12, "feet"),
  53981. name: "Back (Dressed)",
  53982. image: {
  53983. source: "./media/characters/fiera/back-dressed.svg",
  53984. extra: 1847/1780,
  53985. bottom: 70/1917
  53986. }
  53987. },
  53988. frontNude: {
  53989. height: math.unit(6 + 2/12, "feet"),
  53990. name: "Front (Nude)",
  53991. image: {
  53992. source: "./media/characters/fiera/front-nude.svg",
  53993. extra: 1875/1785,
  53994. bottom: 66/1941
  53995. }
  53996. },
  53997. backNude: {
  53998. height: math.unit(6 + 2/12, "feet"),
  53999. name: "Back (Nude)",
  54000. image: {
  54001. source: "./media/characters/fiera/back-nude.svg",
  54002. extra: 1855/1788,
  54003. bottom: 44/1899
  54004. }
  54005. },
  54006. maw: {
  54007. height: math.unit(1.3, "feet"),
  54008. name: "Maw",
  54009. image: {
  54010. source: "./media/characters/fiera/maw.svg"
  54011. }
  54012. },
  54013. paw: {
  54014. height: math.unit(1, "feet"),
  54015. name: "Paw",
  54016. image: {
  54017. source: "./media/characters/fiera/paw.svg"
  54018. }
  54019. },
  54020. shoe: {
  54021. height: math.unit(1.05, "feet"),
  54022. name: "Shoe",
  54023. image: {
  54024. source: "./media/characters/fiera/shoe.svg"
  54025. }
  54026. },
  54027. },
  54028. [
  54029. {
  54030. name: "Normal",
  54031. height: math.unit(6 + 2/12, "feet"),
  54032. default: true
  54033. },
  54034. {
  54035. name: "Size Difference",
  54036. height: math.unit(13, "feet")
  54037. },
  54038. {
  54039. name: "Macro",
  54040. height: math.unit(60, "feet")
  54041. },
  54042. {
  54043. name: "Mega Macro",
  54044. height: math.unit(200, "feet")
  54045. },
  54046. ]
  54047. ))
  54048. characterMakers.push(() => makeCharacter(
  54049. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54050. {
  54051. back: {
  54052. height: math.unit(6, "feet"),
  54053. name: "Back",
  54054. image: {
  54055. source: "./media/characters/flare/back.svg",
  54056. extra: 1883/1765,
  54057. bottom: 32/1915
  54058. }
  54059. },
  54060. },
  54061. [
  54062. {
  54063. name: "Normal",
  54064. height: math.unit(6 + 2/12, "feet"),
  54065. default: true
  54066. },
  54067. {
  54068. name: "Size Difference",
  54069. height: math.unit(13, "feet")
  54070. },
  54071. {
  54072. name: "Macro",
  54073. height: math.unit(60, "feet")
  54074. },
  54075. {
  54076. name: "Macro 2",
  54077. height: math.unit(100, "feet")
  54078. },
  54079. {
  54080. name: "Mega Macro",
  54081. height: math.unit(200, "feet")
  54082. },
  54083. ]
  54084. ))
  54085. characterMakers.push(() => makeCharacter(
  54086. { name: "Hannah", species: ["coelacanth"], tags: ["anthro"] },
  54087. {
  54088. front: {
  54089. height: math.unit(2.2, "m"),
  54090. weight: math.unit(300, "kg"),
  54091. name: "Front",
  54092. image: {
  54093. source: "./media/characters/hannah/front.svg",
  54094. extra: 1696/1502,
  54095. bottom: 206/1902
  54096. }
  54097. },
  54098. },
  54099. [
  54100. {
  54101. name: "Humanoid",
  54102. height: math.unit(2.2, "meters")
  54103. },
  54104. {
  54105. name: "Normal",
  54106. height: math.unit(4.8, "meters"),
  54107. default: true
  54108. },
  54109. ]
  54110. ))
  54111. //characters
  54112. function makeCharacters() {
  54113. const results = [];
  54114. characterMakers.forEach(character => {
  54115. results.push(character());
  54116. });
  54117. return results;
  54118. }