less copy protection, more size visualization
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

58839 lines
1.5 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. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["dinosaur"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. }
  2206. //species
  2207. function getSpeciesInfo(speciesList) {
  2208. let result = new Set();
  2209. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2210. result.add(entry)
  2211. });
  2212. return Array.from(result);
  2213. };
  2214. function getSpeciesInfoHelper(species) {
  2215. if (!speciesData[species]) {
  2216. console.warn(species + " doesn't exist");
  2217. return [];
  2218. }
  2219. if (speciesData[species].parents) {
  2220. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2221. } else {
  2222. return [species];
  2223. }
  2224. }
  2225. characterMakers.push(() => makeCharacter(
  2226. {
  2227. name: "Fen",
  2228. species: ["crux"],
  2229. description: {
  2230. title: "Bio",
  2231. text: "Very furry. Sheds on everything."
  2232. },
  2233. tags: [
  2234. "anthro",
  2235. "goo"
  2236. ]
  2237. },
  2238. {
  2239. front: {
  2240. height: math.unit(12, "feet"),
  2241. weight: math.unit(2400, "lb"),
  2242. preyCapacity: math.unit(1, "people"),
  2243. name: "Front",
  2244. image: {
  2245. source: "./media/characters/fen/front.svg",
  2246. extra: 1804/1562,
  2247. bottom: 205/2009
  2248. },
  2249. extraAttributes: {
  2250. pawSize: {
  2251. name: "Paw Size",
  2252. power: 2,
  2253. type: "area",
  2254. base: math.unit(0.35, "m^2")
  2255. }
  2256. }
  2257. },
  2258. diving: {
  2259. height: math.unit(4.9, "meters"),
  2260. weight: math.unit(2400, "lb"),
  2261. name: "Diving",
  2262. image: {
  2263. source: "./media/characters/fen/diving.svg"
  2264. }
  2265. },
  2266. sleeby: {
  2267. height: math.unit(3.45, "meters"),
  2268. weight: math.unit(2400, "lb"),
  2269. name: "Sleeby",
  2270. image: {
  2271. source: "./media/characters/fen/sleeby.svg"
  2272. }
  2273. },
  2274. goo: {
  2275. height: math.unit(12, "feet"),
  2276. weight: math.unit(3600, "lb"),
  2277. volume: math.unit(1000, "liters"),
  2278. preyCapacity: math.unit(6, "people"),
  2279. name: "Goo",
  2280. image: {
  2281. source: "./media/characters/fen/goo.svg",
  2282. extra: 1307/1071,
  2283. bottom: 134/1441
  2284. }
  2285. },
  2286. horror: {
  2287. height: math.unit(13.6, "feet"),
  2288. weight: math.unit(2400, "lb"),
  2289. preyCapacity: math.unit(1, "people"),
  2290. name: "Horror",
  2291. image: {
  2292. source: "./media/characters/fen/horror.svg",
  2293. extra: 893/797,
  2294. bottom: 0/893
  2295. }
  2296. },
  2297. gooNsfw: {
  2298. height: math.unit(12, "feet"),
  2299. weight: math.unit(3750, "lb"),
  2300. volume: math.unit(1000, "liters"),
  2301. preyCapacity: math.unit(6, "people"),
  2302. name: "Goo (NSFW)",
  2303. image: {
  2304. source: "./media/characters/fen/goo-nsfw.svg",
  2305. extra: 1875/1734,
  2306. bottom: 122/1997
  2307. }
  2308. },
  2309. maw: {
  2310. height: math.unit(5.03, "feet"),
  2311. name: "Maw",
  2312. image: {
  2313. source: "./media/characters/fen/maw.svg"
  2314. }
  2315. },
  2316. gooCeiling: {
  2317. height: math.unit(6.6, "feet"),
  2318. weight: math.unit(3000, "lb"),
  2319. volume: math.unit(1000, "liters"),
  2320. preyCapacity: math.unit(6, "people"),
  2321. name: "Maw (Goo)",
  2322. image: {
  2323. source: "./media/characters/fen/goo-maw.svg"
  2324. }
  2325. },
  2326. paw: {
  2327. height: math.unit(3.77, "feet"),
  2328. name: "Paw",
  2329. image: {
  2330. source: "./media/characters/fen/paw.svg"
  2331. },
  2332. extraAttributes: {
  2333. "toeSize": {
  2334. name: "Toe Size",
  2335. power: 2,
  2336. type: "area",
  2337. base: math.unit(0.02875, "m^2")
  2338. },
  2339. "pawSize": {
  2340. name: "Paw Size",
  2341. power: 2,
  2342. type: "area",
  2343. base: math.unit(0.378, "m^2")
  2344. },
  2345. }
  2346. },
  2347. tail: {
  2348. height: math.unit(12.1, "feet"),
  2349. name: "Tail",
  2350. image: {
  2351. source: "./media/characters/fen/tail.svg"
  2352. }
  2353. },
  2354. tailFull: {
  2355. height: math.unit(12.1, "feet"),
  2356. name: "Full Tail",
  2357. image: {
  2358. source: "./media/characters/fen/tail-full.svg"
  2359. }
  2360. },
  2361. back: {
  2362. height: math.unit(12, "feet"),
  2363. weight: math.unit(2400, "lb"),
  2364. name: "Back",
  2365. image: {
  2366. source: "./media/characters/fen/back.svg",
  2367. },
  2368. info: {
  2369. description: {
  2370. mode: "append",
  2371. text: "\n\nHe is not currently looking at you."
  2372. }
  2373. }
  2374. },
  2375. full: {
  2376. height: math.unit(1.85, "meter"),
  2377. weight: math.unit(3200, "lb"),
  2378. name: "Full",
  2379. image: {
  2380. source: "./media/characters/fen/full.svg",
  2381. extra: 1133/859,
  2382. bottom: 145/1278
  2383. },
  2384. info: {
  2385. description: {
  2386. mode: "append",
  2387. text: "\n\nMunch."
  2388. }
  2389. }
  2390. },
  2391. gooLounging: {
  2392. height: math.unit(4.53, "feet"),
  2393. weight: math.unit(3000, "lb"),
  2394. preyCapacity: math.unit(6, "people"),
  2395. name: "Goo (Lounging)",
  2396. image: {
  2397. source: "./media/characters/fen/goo-lounging.svg",
  2398. bottom: 116 / 613
  2399. }
  2400. },
  2401. lounging: {
  2402. height: math.unit(10.52, "feet"),
  2403. weight: math.unit(2400, "lb"),
  2404. name: "Lounging",
  2405. image: {
  2406. source: "./media/characters/fen/lounging.svg"
  2407. }
  2408. },
  2409. },
  2410. [
  2411. {
  2412. name: "Small",
  2413. height: math.unit(2.2428, "meter")
  2414. },
  2415. {
  2416. name: "Normal",
  2417. height: math.unit(12, "feet"),
  2418. default: true,
  2419. },
  2420. {
  2421. name: "Big",
  2422. height: math.unit(20, "feet")
  2423. },
  2424. {
  2425. name: "Minimacro",
  2426. height: math.unit(40, "feet"),
  2427. info: {
  2428. description: {
  2429. mode: "append",
  2430. text: "\n\nTOO DAMN BIG"
  2431. }
  2432. }
  2433. },
  2434. {
  2435. name: "Macro",
  2436. height: math.unit(100, "feet"),
  2437. info: {
  2438. description: {
  2439. mode: "append",
  2440. text: "\n\nTOO DAMN BIG"
  2441. }
  2442. }
  2443. },
  2444. {
  2445. name: "Megamacro",
  2446. height: math.unit(2, "miles")
  2447. },
  2448. {
  2449. name: "Gigamacro",
  2450. height: math.unit(10, "earths")
  2451. },
  2452. ]
  2453. ))
  2454. characterMakers.push(() => makeCharacter(
  2455. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2456. {
  2457. front: {
  2458. height: math.unit(183, "cm"),
  2459. weight: math.unit(80, "kg"),
  2460. name: "Front",
  2461. image: {
  2462. source: "./media/characters/sofia-fluttertail/front.svg",
  2463. bottom: 0.01,
  2464. extra: 2154 / 2081
  2465. }
  2466. },
  2467. frontAlt: {
  2468. height: math.unit(183, "cm"),
  2469. weight: math.unit(80, "kg"),
  2470. name: "Front (alt)",
  2471. image: {
  2472. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2473. }
  2474. },
  2475. back: {
  2476. height: math.unit(183, "cm"),
  2477. weight: math.unit(80, "kg"),
  2478. name: "Back",
  2479. image: {
  2480. source: "./media/characters/sofia-fluttertail/back.svg"
  2481. }
  2482. },
  2483. kneeling: {
  2484. height: math.unit(125, "cm"),
  2485. weight: math.unit(80, "kg"),
  2486. name: "Kneeling",
  2487. image: {
  2488. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2489. extra: 1033 / 977,
  2490. bottom: 23.7 / 1057
  2491. }
  2492. },
  2493. maw: {
  2494. height: math.unit(183 / 5, "cm"),
  2495. name: "Maw",
  2496. image: {
  2497. source: "./media/characters/sofia-fluttertail/maw.svg"
  2498. }
  2499. },
  2500. mawcloseup: {
  2501. height: math.unit(183 / 5 * 0.41, "cm"),
  2502. name: "Maw (Closeup)",
  2503. image: {
  2504. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2505. }
  2506. },
  2507. paws: {
  2508. height: math.unit(1.17, "feet"),
  2509. name: "Paws",
  2510. image: {
  2511. source: "./media/characters/sofia-fluttertail/paws.svg",
  2512. extra: 851 / 851,
  2513. bottom: 17 / 868
  2514. }
  2515. },
  2516. },
  2517. [
  2518. {
  2519. name: "Normal",
  2520. height: math.unit(1.83, "meter")
  2521. },
  2522. {
  2523. name: "Size Thief",
  2524. height: math.unit(18, "feet")
  2525. },
  2526. {
  2527. name: "50 Foot Collie",
  2528. height: math.unit(50, "feet")
  2529. },
  2530. {
  2531. name: "Macro",
  2532. height: math.unit(96, "feet"),
  2533. default: true
  2534. },
  2535. {
  2536. name: "Megamerger",
  2537. height: math.unit(650, "feet")
  2538. },
  2539. ]
  2540. ))
  2541. characterMakers.push(() => makeCharacter(
  2542. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2543. {
  2544. front: {
  2545. height: math.unit(7, "feet"),
  2546. weight: math.unit(100, "kg"),
  2547. name: "Front",
  2548. image: {
  2549. source: "./media/characters/march/front.svg",
  2550. extra: 1992/1851,
  2551. bottom: 39/2031
  2552. }
  2553. },
  2554. foot: {
  2555. height: math.unit(0.9, "feet"),
  2556. name: "Foot",
  2557. image: {
  2558. source: "./media/characters/march/foot.svg"
  2559. }
  2560. },
  2561. },
  2562. [
  2563. {
  2564. name: "Normal",
  2565. height: math.unit(7.9, "feet")
  2566. },
  2567. {
  2568. name: "Macro",
  2569. height: math.unit(220, "meters")
  2570. },
  2571. {
  2572. name: "Megamacro",
  2573. height: math.unit(2.98, "km"),
  2574. default: true
  2575. },
  2576. {
  2577. name: "Gigamacro",
  2578. height: math.unit(15963, "km")
  2579. },
  2580. {
  2581. name: "Teramacro",
  2582. height: math.unit(2980000000, "km")
  2583. },
  2584. {
  2585. name: "Examacro",
  2586. height: math.unit(250, "parsecs")
  2587. },
  2588. ]
  2589. ))
  2590. characterMakers.push(() => makeCharacter(
  2591. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2592. {
  2593. front: {
  2594. height: math.unit(6, "feet"),
  2595. weight: math.unit(60, "kg"),
  2596. name: "Front",
  2597. image: {
  2598. source: "./media/characters/noir/front.svg",
  2599. extra: 1,
  2600. bottom: 0.032
  2601. }
  2602. },
  2603. },
  2604. [
  2605. {
  2606. name: "Normal",
  2607. height: math.unit(6.6, "feet")
  2608. },
  2609. {
  2610. name: "Macro",
  2611. height: math.unit(500, "feet")
  2612. },
  2613. {
  2614. name: "Megamacro",
  2615. height: math.unit(2.5, "km"),
  2616. default: true
  2617. },
  2618. {
  2619. name: "Gigamacro",
  2620. height: math.unit(22500, "km")
  2621. },
  2622. {
  2623. name: "Teramacro",
  2624. height: math.unit(2500000000, "km")
  2625. },
  2626. {
  2627. name: "Examacro",
  2628. height: math.unit(200, "parsecs")
  2629. },
  2630. ]
  2631. ))
  2632. characterMakers.push(() => makeCharacter(
  2633. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2634. {
  2635. front: {
  2636. height: math.unit(7, "feet"),
  2637. weight: math.unit(100, "kg"),
  2638. name: "Front",
  2639. image: {
  2640. source: "./media/characters/okuri/front.svg",
  2641. extra: 739/665,
  2642. bottom: 39/778
  2643. }
  2644. },
  2645. back: {
  2646. height: math.unit(7, "feet"),
  2647. weight: math.unit(100, "kg"),
  2648. name: "Back",
  2649. image: {
  2650. source: "./media/characters/okuri/back.svg",
  2651. extra: 734/653,
  2652. bottom: 13/747
  2653. }
  2654. },
  2655. sitting: {
  2656. height: math.unit(2.95, "feet"),
  2657. weight: math.unit(100, "kg"),
  2658. name: "Sitting",
  2659. image: {
  2660. source: "./media/characters/okuri/sitting.svg",
  2661. extra: 370/318,
  2662. bottom: 99/469
  2663. }
  2664. },
  2665. },
  2666. [
  2667. {
  2668. name: "Smallest",
  2669. height: math.unit(5 + 2/12, "feet")
  2670. },
  2671. {
  2672. name: "Smaller",
  2673. height: math.unit(300, "feet")
  2674. },
  2675. {
  2676. name: "Small",
  2677. height: math.unit(1000, "feet")
  2678. },
  2679. {
  2680. name: "Macro",
  2681. height: math.unit(1, "mile")
  2682. },
  2683. {
  2684. name: "Mega Macro (Small)",
  2685. height: math.unit(20, "km")
  2686. },
  2687. {
  2688. name: "Mega Macro (Large)",
  2689. height: math.unit(600, "km")
  2690. },
  2691. {
  2692. name: "Giga Macro",
  2693. height: math.unit(10000, "km")
  2694. },
  2695. {
  2696. name: "Normal",
  2697. height: math.unit(577560, "km"),
  2698. default: true
  2699. },
  2700. {
  2701. name: "Large",
  2702. height: math.unit(4, "galaxies")
  2703. },
  2704. {
  2705. name: "Largest",
  2706. height: math.unit(15, "multiverses")
  2707. },
  2708. ]
  2709. ))
  2710. characterMakers.push(() => makeCharacter(
  2711. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2712. {
  2713. front: {
  2714. height: math.unit(7, "feet"),
  2715. weight: math.unit(100, "kg"),
  2716. name: "Front",
  2717. image: {
  2718. source: "./media/characters/manny/front.svg",
  2719. extra: 1,
  2720. bottom: 0.06
  2721. }
  2722. },
  2723. back: {
  2724. height: math.unit(7, "feet"),
  2725. weight: math.unit(100, "kg"),
  2726. name: "Back",
  2727. image: {
  2728. source: "./media/characters/manny/back.svg",
  2729. extra: 1,
  2730. bottom: 0.014
  2731. }
  2732. },
  2733. },
  2734. [
  2735. {
  2736. name: "Normal",
  2737. height: math.unit(7, "feet"),
  2738. },
  2739. {
  2740. name: "Macro",
  2741. height: math.unit(78, "feet"),
  2742. default: true
  2743. },
  2744. {
  2745. name: "Macro+",
  2746. height: math.unit(300, "meters")
  2747. },
  2748. {
  2749. name: "Macro++",
  2750. height: math.unit(2400, "meters")
  2751. },
  2752. {
  2753. name: "Megamacro",
  2754. height: math.unit(5167, "meters")
  2755. },
  2756. {
  2757. name: "Gigamacro",
  2758. height: math.unit(41769, "miles")
  2759. },
  2760. ]
  2761. ))
  2762. characterMakers.push(() => makeCharacter(
  2763. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2764. {
  2765. front: {
  2766. height: math.unit(7, "feet"),
  2767. weight: math.unit(100, "kg"),
  2768. name: "Front",
  2769. image: {
  2770. source: "./media/characters/adake/front-1.svg"
  2771. }
  2772. },
  2773. frontAlt: {
  2774. height: math.unit(7, "feet"),
  2775. weight: math.unit(100, "kg"),
  2776. name: "Front (Alt)",
  2777. image: {
  2778. source: "./media/characters/adake/front-2.svg",
  2779. extra: 1,
  2780. bottom: 0.01
  2781. }
  2782. },
  2783. back: {
  2784. height: math.unit(7, "feet"),
  2785. weight: math.unit(100, "kg"),
  2786. name: "Back",
  2787. image: {
  2788. source: "./media/characters/adake/back.svg",
  2789. }
  2790. },
  2791. kneel: {
  2792. height: math.unit(5.385, "feet"),
  2793. weight: math.unit(100, "kg"),
  2794. name: "Kneeling",
  2795. image: {
  2796. source: "./media/characters/adake/kneel.svg",
  2797. bottom: 0.052
  2798. }
  2799. },
  2800. },
  2801. [
  2802. {
  2803. name: "Normal",
  2804. height: math.unit(7, "feet"),
  2805. },
  2806. {
  2807. name: "Macro",
  2808. height: math.unit(78, "feet"),
  2809. default: true
  2810. },
  2811. {
  2812. name: "Macro+",
  2813. height: math.unit(300, "meters")
  2814. },
  2815. {
  2816. name: "Macro++",
  2817. height: math.unit(2400, "meters")
  2818. },
  2819. {
  2820. name: "Megamacro",
  2821. height: math.unit(5167, "meters")
  2822. },
  2823. {
  2824. name: "Gigamacro",
  2825. height: math.unit(41769, "miles")
  2826. },
  2827. ]
  2828. ))
  2829. characterMakers.push(() => makeCharacter(
  2830. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2831. {
  2832. front: {
  2833. height: math.unit(1.65, "meters"),
  2834. weight: math.unit(50, "kg"),
  2835. name: "Front",
  2836. image: {
  2837. source: "./media/characters/elijah/front.svg",
  2838. extra: 858 / 830,
  2839. bottom: 95.5 / 953.8559
  2840. }
  2841. },
  2842. back: {
  2843. height: math.unit(1.65, "meters"),
  2844. weight: math.unit(50, "kg"),
  2845. name: "Back",
  2846. image: {
  2847. source: "./media/characters/elijah/back.svg",
  2848. extra: 895 / 850,
  2849. bottom: 5.3 / 897.956
  2850. }
  2851. },
  2852. frontNsfw: {
  2853. height: math.unit(1.65, "meters"),
  2854. weight: math.unit(50, "kg"),
  2855. name: "Front (NSFW)",
  2856. image: {
  2857. source: "./media/characters/elijah/front-nsfw.svg",
  2858. extra: 858 / 830,
  2859. bottom: 95.5 / 953.8559
  2860. }
  2861. },
  2862. backNsfw: {
  2863. height: math.unit(1.65, "meters"),
  2864. weight: math.unit(50, "kg"),
  2865. name: "Back (NSFW)",
  2866. image: {
  2867. source: "./media/characters/elijah/back-nsfw.svg",
  2868. extra: 895 / 850,
  2869. bottom: 5.3 / 897.956
  2870. }
  2871. },
  2872. dick: {
  2873. height: math.unit(1, "feet"),
  2874. name: "Dick",
  2875. image: {
  2876. source: "./media/characters/elijah/dick.svg"
  2877. }
  2878. },
  2879. beakOpen: {
  2880. height: math.unit(1.25, "feet"),
  2881. name: "Beak (Open)",
  2882. image: {
  2883. source: "./media/characters/elijah/beak-open.svg"
  2884. }
  2885. },
  2886. beakShut: {
  2887. height: math.unit(1.25, "feet"),
  2888. name: "Beak (Shut)",
  2889. image: {
  2890. source: "./media/characters/elijah/beak-shut.svg"
  2891. }
  2892. },
  2893. footFlexing: {
  2894. height: math.unit(1.61, "feet"),
  2895. name: "Foot (Flexing)",
  2896. image: {
  2897. source: "./media/characters/elijah/foot-flexing.svg"
  2898. }
  2899. },
  2900. footStepping: {
  2901. height: math.unit(1.44, "feet"),
  2902. name: "Foot (Stepping)",
  2903. image: {
  2904. source: "./media/characters/elijah/foot-stepping.svg"
  2905. }
  2906. },
  2907. plantigradeLeg: {
  2908. height: math.unit(2.34, "feet"),
  2909. name: "Plantigrade Leg",
  2910. image: {
  2911. source: "./media/characters/elijah/plantigrade-leg.svg"
  2912. }
  2913. },
  2914. plantigradeFootLeft: {
  2915. height: math.unit(0.9, "feet"),
  2916. name: "Plantigrade Foot (Left)",
  2917. image: {
  2918. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2919. }
  2920. },
  2921. plantigradeFootRight: {
  2922. height: math.unit(0.9, "feet"),
  2923. name: "Plantigrade Foot (Right)",
  2924. image: {
  2925. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2926. }
  2927. },
  2928. },
  2929. [
  2930. {
  2931. name: "Normal",
  2932. height: math.unit(1.65, "meters")
  2933. },
  2934. {
  2935. name: "Macro",
  2936. height: math.unit(55, "meters"),
  2937. default: true
  2938. },
  2939. {
  2940. name: "Macro+",
  2941. height: math.unit(105, "meters")
  2942. },
  2943. ]
  2944. ))
  2945. characterMakers.push(() => makeCharacter(
  2946. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2947. {
  2948. front: {
  2949. height: math.unit(7 + 2/12, "feet"),
  2950. weight: math.unit(320, "kg"),
  2951. preyCapacity: math.unit(0.276549935, "people"),
  2952. name: "Front",
  2953. image: {
  2954. source: "./media/characters/rai/front.svg",
  2955. extra: 1802/1696,
  2956. bottom: 68/1870
  2957. },
  2958. form: "anthro",
  2959. default: true
  2960. },
  2961. frontDressed: {
  2962. height: math.unit(7 + 2/12, "feet"),
  2963. weight: math.unit(320, "kg"),
  2964. preyCapacity: math.unit(0.276549935, "people"),
  2965. name: "Front (Dressed)",
  2966. image: {
  2967. source: "./media/characters/rai/front-dressed.svg",
  2968. extra: 1802/1696,
  2969. bottom: 68/1870
  2970. },
  2971. form: "anthro"
  2972. },
  2973. side: {
  2974. height: math.unit(7 + 2/12, "feet"),
  2975. weight: math.unit(320, "kg"),
  2976. preyCapacity: math.unit(0.276549935, "people"),
  2977. name: "Side",
  2978. image: {
  2979. source: "./media/characters/rai/side.svg",
  2980. extra: 1789/1710,
  2981. bottom: 115/1904
  2982. },
  2983. form: "anthro"
  2984. },
  2985. back: {
  2986. height: math.unit(7 + 2/12, "feet"),
  2987. weight: math.unit(320, "kg"),
  2988. preyCapacity: math.unit(0.276549935, "people"),
  2989. name: "Back",
  2990. image: {
  2991. source: "./media/characters/rai/back.svg",
  2992. extra: 1770/1707,
  2993. bottom: 28/1798
  2994. },
  2995. form: "anthro"
  2996. },
  2997. feral: {
  2998. height: math.unit(9.5, "feet"),
  2999. weight: math.unit(640, "kg"),
  3000. preyCapacity: math.unit(4, "people"),
  3001. name: "Feral",
  3002. image: {
  3003. source: "./media/characters/rai/feral.svg",
  3004. extra: 945/553,
  3005. bottom: 176/1121
  3006. },
  3007. form: "feral",
  3008. default: true
  3009. },
  3010. dragon: {
  3011. height: math.unit(23, "feet"),
  3012. weight: math.unit(50000, "lb"),
  3013. name: "Dragon",
  3014. image: {
  3015. source: "./media/characters/rai/dragon.svg",
  3016. extra: 2498 / 2030,
  3017. bottom: 85.2 / 2584
  3018. },
  3019. form: "dragon",
  3020. default: true
  3021. },
  3022. maw: {
  3023. height: math.unit(1.69, "feet"),
  3024. name: "Maw",
  3025. image: {
  3026. source: "./media/characters/rai/maw.svg"
  3027. },
  3028. form: "anthro"
  3029. },
  3030. },
  3031. [
  3032. {
  3033. name: "Normal",
  3034. height: math.unit(7 + 2/12, "feet"),
  3035. form: "anthro"
  3036. },
  3037. {
  3038. name: "Big",
  3039. height: math.unit(11, "feet"),
  3040. form: "anthro"
  3041. },
  3042. {
  3043. name: "Minimacro",
  3044. height: math.unit(77, "feet"),
  3045. form: "anthro"
  3046. },
  3047. {
  3048. name: "Macro",
  3049. height: math.unit(302, "feet"),
  3050. default: true,
  3051. form: "anthro"
  3052. },
  3053. {
  3054. name: "Normal",
  3055. height: math.unit(9.5, "feet"),
  3056. form: "feral",
  3057. default: true
  3058. },
  3059. {
  3060. name: "Normal",
  3061. height: math.unit(23, "feet"),
  3062. form: "dragon",
  3063. default: true
  3064. }
  3065. ],
  3066. {
  3067. "anthro": {
  3068. name: "Anthro",
  3069. default: true
  3070. },
  3071. "feral": {
  3072. name: "Feral",
  3073. },
  3074. "dragon": {
  3075. name: "Dragon",
  3076. },
  3077. }
  3078. ))
  3079. characterMakers.push(() => makeCharacter(
  3080. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3081. {
  3082. frontDressed: {
  3083. height: math.unit(216, "feet"),
  3084. weight: math.unit(7000000, "lb"),
  3085. preyCapacity: math.unit(1321, "people"),
  3086. name: "Front (Dressed)",
  3087. image: {
  3088. source: "./media/characters/jazzy/front-dressed.svg",
  3089. extra: 2738 / 2651,
  3090. bottom: 41.8 / 2786
  3091. }
  3092. },
  3093. backDressed: {
  3094. height: math.unit(216, "feet"),
  3095. weight: math.unit(7000000, "lb"),
  3096. preyCapacity: math.unit(1321, "people"),
  3097. name: "Back (Dressed)",
  3098. image: {
  3099. source: "./media/characters/jazzy/back-dressed.svg",
  3100. extra: 2775 / 2673,
  3101. bottom: 36.8 / 2817
  3102. }
  3103. },
  3104. front: {
  3105. height: math.unit(216, "feet"),
  3106. weight: math.unit(7000000, "lb"),
  3107. preyCapacity: math.unit(1321, "people"),
  3108. name: "Front",
  3109. image: {
  3110. source: "./media/characters/jazzy/front.svg",
  3111. extra: 2738 / 2651,
  3112. bottom: 41.8 / 2786
  3113. }
  3114. },
  3115. back: {
  3116. height: math.unit(216, "feet"),
  3117. weight: math.unit(7000000, "lb"),
  3118. preyCapacity: math.unit(1321, "people"),
  3119. name: "Back",
  3120. image: {
  3121. source: "./media/characters/jazzy/back.svg",
  3122. extra: 2775 / 2673,
  3123. bottom: 36.8 / 2817
  3124. }
  3125. },
  3126. maw: {
  3127. height: math.unit(20, "feet"),
  3128. name: "Maw",
  3129. image: {
  3130. source: "./media/characters/jazzy/maw.svg"
  3131. }
  3132. },
  3133. paws: {
  3134. height: math.unit(27.5, "feet"),
  3135. name: "Paws",
  3136. image: {
  3137. source: "./media/characters/jazzy/paws.svg"
  3138. }
  3139. },
  3140. eye: {
  3141. height: math.unit(4.4, "feet"),
  3142. name: "Eye",
  3143. image: {
  3144. source: "./media/characters/jazzy/eye.svg"
  3145. }
  3146. },
  3147. droneOffense: {
  3148. height: math.unit(9.5, "inches"),
  3149. name: "Drone (Offense)",
  3150. image: {
  3151. source: "./media/characters/jazzy/drone-offense.svg"
  3152. }
  3153. },
  3154. droneRecon: {
  3155. height: math.unit(9.5, "inches"),
  3156. name: "Drone (Recon)",
  3157. image: {
  3158. source: "./media/characters/jazzy/drone-recon.svg"
  3159. }
  3160. },
  3161. droneDefense: {
  3162. height: math.unit(9.5, "inches"),
  3163. name: "Drone (Defense)",
  3164. image: {
  3165. source: "./media/characters/jazzy/drone-defense.svg"
  3166. }
  3167. },
  3168. },
  3169. [
  3170. {
  3171. name: "Macro",
  3172. height: math.unit(216, "feet"),
  3173. default: true
  3174. },
  3175. ]
  3176. ))
  3177. characterMakers.push(() => makeCharacter(
  3178. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3179. {
  3180. front: {
  3181. height: math.unit(9 + 6/12, "feet"),
  3182. weight: math.unit(700, "lb"),
  3183. name: "Front",
  3184. image: {
  3185. source: "./media/characters/flamm/front.svg",
  3186. extra: 1736/1596,
  3187. bottom: 93/1829
  3188. }
  3189. },
  3190. buff: {
  3191. height: math.unit(9 + 6/12, "feet"),
  3192. weight: math.unit(950, "lb"),
  3193. name: "Buff",
  3194. image: {
  3195. source: "./media/characters/flamm/buff.svg",
  3196. extra: 3018/2874,
  3197. bottom: 221/3239
  3198. }
  3199. },
  3200. },
  3201. [
  3202. {
  3203. name: "Normal",
  3204. height: math.unit(9.5, "feet")
  3205. },
  3206. {
  3207. name: "Macro",
  3208. height: math.unit(200, "feet"),
  3209. default: true
  3210. },
  3211. ]
  3212. ))
  3213. characterMakers.push(() => makeCharacter(
  3214. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3215. {
  3216. front: {
  3217. height: math.unit(5 + 3/12, "feet"),
  3218. weight: math.unit(60, "kg"),
  3219. name: "Front",
  3220. image: {
  3221. source: "./media/characters/zephiro/front.svg",
  3222. extra: 1873/1761,
  3223. bottom: 147/2020
  3224. }
  3225. },
  3226. side: {
  3227. height: math.unit(5 + 3/12, "feet"),
  3228. weight: math.unit(60, "kg"),
  3229. name: "Side",
  3230. image: {
  3231. source: "./media/characters/zephiro/side.svg",
  3232. extra: 1929/1827,
  3233. bottom: 65/1994
  3234. }
  3235. },
  3236. back: {
  3237. height: math.unit(5 + 3/12, "feet"),
  3238. weight: math.unit(60, "kg"),
  3239. name: "Back",
  3240. image: {
  3241. source: "./media/characters/zephiro/back.svg",
  3242. extra: 1926/1816,
  3243. bottom: 41/1967
  3244. }
  3245. },
  3246. hand: {
  3247. height: math.unit(0.68, "feet"),
  3248. name: "Hand",
  3249. image: {
  3250. source: "./media/characters/zephiro/hand.svg"
  3251. }
  3252. },
  3253. paw: {
  3254. height: math.unit(1, "feet"),
  3255. name: "Paw",
  3256. image: {
  3257. source: "./media/characters/zephiro/paw.svg"
  3258. }
  3259. },
  3260. beans: {
  3261. height: math.unit(0.93, "feet"),
  3262. name: "Beans",
  3263. image: {
  3264. source: "./media/characters/zephiro/beans.svg"
  3265. }
  3266. },
  3267. },
  3268. [
  3269. {
  3270. name: "Micro",
  3271. height: math.unit(3, "inches")
  3272. },
  3273. {
  3274. name: "Normal",
  3275. height: math.unit(5 + 3 / 12, "feet"),
  3276. default: true
  3277. },
  3278. {
  3279. name: "Macro",
  3280. height: math.unit(118, "feet")
  3281. },
  3282. ]
  3283. ))
  3284. characterMakers.push(() => makeCharacter(
  3285. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3286. {
  3287. front: {
  3288. height: math.unit(5, "feet"),
  3289. weight: math.unit(90, "kg"),
  3290. preyCapacity: math.unit(14, "people"),
  3291. name: "Front",
  3292. image: {
  3293. source: "./media/characters/fory/front.svg",
  3294. extra: 2862 / 2674,
  3295. bottom: 180 / 3043.8
  3296. },
  3297. form: "weaselbun",
  3298. default: true,
  3299. extraAttributes: {
  3300. "pawSize": {
  3301. name: "Paw Size",
  3302. power: 2,
  3303. type: "area",
  3304. base: math.unit(0.1596, "m^2")
  3305. },
  3306. "pawLength": {
  3307. name: "Paw Length",
  3308. power: 1,
  3309. type: "length",
  3310. base: math.unit(0.7, "m")
  3311. }
  3312. }
  3313. },
  3314. back: {
  3315. height: math.unit(5, "feet"),
  3316. weight: math.unit(90, "kg"),
  3317. preyCapacity: math.unit(14, "people"),
  3318. name: "Back",
  3319. image: {
  3320. source: "./media/characters/fory/back.svg",
  3321. extra: 1790/1672,
  3322. bottom: 84/1874
  3323. },
  3324. form: "weaselbun",
  3325. extraAttributes: {
  3326. "pawSize": {
  3327. name: "Paw Size",
  3328. power: 2,
  3329. type: "area",
  3330. base: math.unit(0.1596, "m^2")
  3331. },
  3332. "pawLength": {
  3333. name: "Paw Length",
  3334. power: 1,
  3335. type: "length",
  3336. base: math.unit(0.7, "m")
  3337. }
  3338. }
  3339. },
  3340. paw: {
  3341. height: math.unit(2.14, "feet"),
  3342. name: "Paw",
  3343. image: {
  3344. source: "./media/characters/fory/paw.svg"
  3345. },
  3346. form: "weaselbun",
  3347. extraAttributes: {
  3348. "pawSize": {
  3349. name: "Paw Size",
  3350. power: 2,
  3351. type: "area",
  3352. base: math.unit(0.1596, "m^2")
  3353. },
  3354. "pawLength": {
  3355. name: "Paw Length",
  3356. power: 1,
  3357. type: "length",
  3358. base: math.unit(0.48, "m")
  3359. }
  3360. }
  3361. },
  3362. bunBack: {
  3363. height: math.unit(3, "feet"),
  3364. weight: math.unit(20, "kg"),
  3365. preyCapacity: math.unit(3, "people"),
  3366. name: "Back",
  3367. image: {
  3368. source: "./media/characters/fory/bun-back.svg",
  3369. extra: 1749/1564,
  3370. bottom: 246/1995
  3371. },
  3372. form: "bun",
  3373. default: true,
  3374. extraAttributes: {
  3375. "pawSize": {
  3376. name: "Paw Size",
  3377. power: 2,
  3378. type: "area",
  3379. base: math.unit(0.072, "m^2")
  3380. },
  3381. "pawLength": {
  3382. name: "Paw Length",
  3383. power: 1,
  3384. type: "length",
  3385. base: math.unit(0.45, "m")
  3386. }
  3387. }
  3388. },
  3389. },
  3390. [
  3391. {
  3392. name: "Normal",
  3393. height: math.unit(5, "feet"),
  3394. form: "weaselbun"
  3395. },
  3396. {
  3397. name: "Macro",
  3398. height: math.unit(50, "feet"),
  3399. default: true,
  3400. form: "weaselbun"
  3401. },
  3402. {
  3403. name: "Megamacro",
  3404. height: math.unit(10, "miles"),
  3405. form: "weaselbun"
  3406. },
  3407. {
  3408. name: "Gigamacro",
  3409. height: math.unit(5, "earths"),
  3410. form: "weaselbun"
  3411. },
  3412. {
  3413. name: "Normal",
  3414. height: math.unit(3, "feet"),
  3415. default: true,
  3416. form: "bun"
  3417. },
  3418. {
  3419. name: "Fun-Size",
  3420. height: math.unit(12, "feet"),
  3421. form: "bun"
  3422. },
  3423. {
  3424. name: "Macro",
  3425. height: math.unit(100, "feet"),
  3426. form: "bun"
  3427. },
  3428. {
  3429. name: "Planetary",
  3430. height: math.unit(3, "earths"),
  3431. form: "bun"
  3432. },
  3433. ],
  3434. {
  3435. "weaselbun": {
  3436. name: "Weaselbun",
  3437. default: true
  3438. },
  3439. "bun": {
  3440. name: "Bun",
  3441. },
  3442. }
  3443. ))
  3444. characterMakers.push(() => makeCharacter(
  3445. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3446. {
  3447. front: {
  3448. height: math.unit(7, "feet"),
  3449. weight: math.unit(90, "kg"),
  3450. name: "Front",
  3451. image: {
  3452. source: "./media/characters/kurrikage/front.svg",
  3453. extra: 1845/1733,
  3454. bottom: 119/1964
  3455. }
  3456. },
  3457. back: {
  3458. height: math.unit(7, "feet"),
  3459. weight: math.unit(90, "kg"),
  3460. name: "Back",
  3461. image: {
  3462. source: "./media/characters/kurrikage/back.svg",
  3463. extra: 1790/1677,
  3464. bottom: 61/1851
  3465. }
  3466. },
  3467. dressed: {
  3468. height: math.unit(7, "feet"),
  3469. weight: math.unit(90, "kg"),
  3470. name: "Dressed",
  3471. image: {
  3472. source: "./media/characters/kurrikage/dressed.svg",
  3473. extra: 1845/1733,
  3474. bottom: 119/1964
  3475. }
  3476. },
  3477. foot: {
  3478. height: math.unit(1.5, "feet"),
  3479. name: "Foot",
  3480. image: {
  3481. source: "./media/characters/kurrikage/foot.svg"
  3482. }
  3483. },
  3484. staff: {
  3485. height: math.unit(6.7, "feet"),
  3486. name: "Staff",
  3487. image: {
  3488. source: "./media/characters/kurrikage/staff.svg"
  3489. }
  3490. },
  3491. peek: {
  3492. height: math.unit(1.05, "feet"),
  3493. name: "Peeking",
  3494. image: {
  3495. source: "./media/characters/kurrikage/peek.svg",
  3496. bottom: 0.08
  3497. }
  3498. },
  3499. },
  3500. [
  3501. {
  3502. name: "Normal",
  3503. height: math.unit(12, "feet"),
  3504. default: true
  3505. },
  3506. {
  3507. name: "Big",
  3508. height: math.unit(20, "feet")
  3509. },
  3510. {
  3511. name: "Macro",
  3512. height: math.unit(500, "feet")
  3513. },
  3514. {
  3515. name: "Megamacro",
  3516. height: math.unit(20, "miles")
  3517. },
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(6, "feet"),
  3525. weight: math.unit(75, "kg"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/shingo/front.svg",
  3529. extra: 1900/1825,
  3530. bottom: 82/1982
  3531. }
  3532. },
  3533. side: {
  3534. height: math.unit(6, "feet"),
  3535. weight: math.unit(75, "kg"),
  3536. name: "Side",
  3537. image: {
  3538. source: "./media/characters/shingo/side.svg",
  3539. extra: 1930/1865,
  3540. bottom: 16/1946
  3541. }
  3542. },
  3543. back: {
  3544. height: math.unit(6, "feet"),
  3545. weight: math.unit(75, "kg"),
  3546. name: "Back",
  3547. image: {
  3548. source: "./media/characters/shingo/back.svg",
  3549. extra: 1922/1852,
  3550. bottom: 16/1938
  3551. }
  3552. },
  3553. frontDressed: {
  3554. height: math.unit(6, "feet"),
  3555. weight: math.unit(150, "lb"),
  3556. name: "Front-dressed",
  3557. image: {
  3558. source: "./media/characters/shingo/front-dressed.svg",
  3559. extra: 1900/1825,
  3560. bottom: 82/1982
  3561. }
  3562. },
  3563. paw: {
  3564. height: math.unit(1.29, "feet"),
  3565. name: "Paw",
  3566. image: {
  3567. source: "./media/characters/shingo/paw.svg"
  3568. }
  3569. },
  3570. hand: {
  3571. height: math.unit(1.07, "feet"),
  3572. name: "Hand",
  3573. image: {
  3574. source: "./media/characters/shingo/hand.svg"
  3575. }
  3576. },
  3577. frontAlt: {
  3578. height: math.unit(6, "feet"),
  3579. weight: math.unit(75, "kg"),
  3580. name: "Front (Alt)",
  3581. image: {
  3582. source: "./media/characters/shingo/front-alt.svg",
  3583. extra: 3511 / 3338,
  3584. bottom: 0.005
  3585. }
  3586. },
  3587. frontAlt2: {
  3588. height: math.unit(6, "feet"),
  3589. weight: math.unit(75, "kg"),
  3590. name: "Front (Alt 2)",
  3591. image: {
  3592. source: "./media/characters/shingo/front-alt-2.svg",
  3593. extra: 706/681,
  3594. bottom: 11/717
  3595. }
  3596. },
  3597. pawAlt: {
  3598. height: math.unit(1, "feet"),
  3599. name: "Paw (Alt)",
  3600. image: {
  3601. source: "./media/characters/shingo/paw-alt.svg"
  3602. }
  3603. },
  3604. },
  3605. [
  3606. {
  3607. name: "Micro",
  3608. height: math.unit(4, "inches")
  3609. },
  3610. {
  3611. name: "Normal",
  3612. height: math.unit(6, "feet"),
  3613. default: true
  3614. },
  3615. {
  3616. name: "Macro",
  3617. height: math.unit(108, "feet")
  3618. },
  3619. {
  3620. name: "Macro+",
  3621. height: math.unit(1500, "feet")
  3622. },
  3623. ]
  3624. ))
  3625. characterMakers.push(() => makeCharacter(
  3626. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3627. {
  3628. side: {
  3629. height: math.unit(6, "feet"),
  3630. weight: math.unit(75, "kg"),
  3631. name: "Side",
  3632. image: {
  3633. source: "./media/characters/aigey/side.svg"
  3634. }
  3635. },
  3636. },
  3637. [
  3638. {
  3639. name: "Macro",
  3640. height: math.unit(200, "feet"),
  3641. default: true
  3642. },
  3643. {
  3644. name: "Megamacro",
  3645. height: math.unit(100, "miles")
  3646. },
  3647. ]
  3648. )
  3649. )
  3650. characterMakers.push(() => makeCharacter(
  3651. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3652. {
  3653. front: {
  3654. height: math.unit(5 + 5 / 12, "feet"),
  3655. weight: math.unit(75, "kg"),
  3656. name: "Front",
  3657. image: {
  3658. source: "./media/characters/natasha/front.svg",
  3659. extra: 859 / 824,
  3660. bottom: 23 / 879.6
  3661. }
  3662. },
  3663. frontNsfw: {
  3664. height: math.unit(5 + 5 / 12, "feet"),
  3665. weight: math.unit(75, "kg"),
  3666. name: "Front (NSFW)",
  3667. image: {
  3668. source: "./media/characters/natasha/front-nsfw.svg",
  3669. extra: 859 / 824,
  3670. bottom: 23 / 879.6
  3671. }
  3672. },
  3673. frontErect: {
  3674. height: math.unit(5 + 5 / 12, "feet"),
  3675. weight: math.unit(75, "kg"),
  3676. name: "Front (Erect)",
  3677. image: {
  3678. source: "./media/characters/natasha/front-erect.svg",
  3679. extra: 859 / 824,
  3680. bottom: 23 / 879.6
  3681. }
  3682. },
  3683. back: {
  3684. height: math.unit(5 + 5 / 12, "feet"),
  3685. weight: math.unit(75, "kg"),
  3686. name: "Back",
  3687. image: {
  3688. source: "./media/characters/natasha/back.svg",
  3689. extra: 887.9 / 852.6,
  3690. bottom: 9.7 / 896.4
  3691. }
  3692. },
  3693. backAlt: {
  3694. height: math.unit(5 + 5 / 12, "feet"),
  3695. weight: math.unit(75, "kg"),
  3696. name: "Back (Alt)",
  3697. image: {
  3698. source: "./media/characters/natasha/back-alt.svg",
  3699. extra: 1236.7 / 1192,
  3700. bottom: 22.3 / 1258.2
  3701. }
  3702. },
  3703. dick: {
  3704. height: math.unit(1.772, "feet"),
  3705. name: "Dick",
  3706. image: {
  3707. source: "./media/characters/natasha/dick.svg"
  3708. }
  3709. },
  3710. paw: {
  3711. height: math.unit(0.250, "meters"),
  3712. name: "Paw",
  3713. image: {
  3714. source: "./media/characters/natasha/paw.svg"
  3715. },
  3716. extraAttributes: {
  3717. "toeSize": {
  3718. name: "Toe Size",
  3719. power: 2,
  3720. type: "area",
  3721. base: math.unit(0.0024, "m^2")
  3722. },
  3723. "padSize": {
  3724. name: "Pad Size",
  3725. power: 2,
  3726. type: "area",
  3727. base: math.unit(0.00889, "m^2")
  3728. },
  3729. "pawSize": {
  3730. name: "Paw Size",
  3731. power: 2,
  3732. type: "area",
  3733. base: math.unit(0.023667, "m^2")
  3734. },
  3735. }
  3736. },
  3737. },
  3738. [
  3739. {
  3740. name: "Shortstack",
  3741. height: math.unit(3, "feet"),
  3742. default: true
  3743. },
  3744. {
  3745. name: "Normal",
  3746. height: math.unit(5 + 5 / 12, "feet")
  3747. },
  3748. {
  3749. name: "Large",
  3750. height: math.unit(12, "feet")
  3751. },
  3752. {
  3753. name: "Macro",
  3754. height: math.unit(100, "feet")
  3755. },
  3756. {
  3757. name: "Macro+",
  3758. height: math.unit(260, "feet")
  3759. },
  3760. {
  3761. name: "Macro++",
  3762. height: math.unit(1, "mile")
  3763. },
  3764. ]
  3765. ))
  3766. characterMakers.push(() => makeCharacter(
  3767. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3768. {
  3769. front: {
  3770. height: math.unit(6, "feet"),
  3771. weight: math.unit(75, "kg"),
  3772. name: "Front",
  3773. image: {
  3774. source: "./media/characters/malik/front.svg",
  3775. extra: 1750/1561,
  3776. bottom: 80/1830
  3777. },
  3778. extraAttributes: {
  3779. "toeSize": {
  3780. name: "Toe Size",
  3781. power: 2,
  3782. type: "area",
  3783. base: math.unit(0.0159, "m^2")
  3784. },
  3785. "pawSize": {
  3786. name: "Paw Size",
  3787. power: 2,
  3788. type: "area",
  3789. base: math.unit(0.09834, "m^2")
  3790. },
  3791. }
  3792. },
  3793. side: {
  3794. height: math.unit(6, "feet"),
  3795. weight: math.unit(75, "kg"),
  3796. name: "Side",
  3797. image: {
  3798. source: "./media/characters/malik/side.svg",
  3799. extra: 1802/1685,
  3800. bottom: 42/1844
  3801. },
  3802. extraAttributes: {
  3803. "toeSize": {
  3804. name: "Toe Size",
  3805. power: 2,
  3806. type: "area",
  3807. base: math.unit(0.0159, "m^2")
  3808. },
  3809. "pawSize": {
  3810. name: "Paw Size",
  3811. power: 2,
  3812. type: "area",
  3813. base: math.unit(0.09834, "m^2")
  3814. },
  3815. }
  3816. },
  3817. back: {
  3818. height: math.unit(6, "feet"),
  3819. weight: math.unit(75, "kg"),
  3820. name: "Back",
  3821. image: {
  3822. source: "./media/characters/malik/back.svg",
  3823. extra: 1803/1607,
  3824. bottom: 33/1836
  3825. },
  3826. extraAttributes: {
  3827. "toeSize": {
  3828. name: "Toe Size",
  3829. power: 2,
  3830. type: "area",
  3831. base: math.unit(0.0159, "m^2")
  3832. },
  3833. "pawSize": {
  3834. name: "Paw Size",
  3835. power: 2,
  3836. type: "area",
  3837. base: math.unit(0.09834, "m^2")
  3838. },
  3839. }
  3840. },
  3841. },
  3842. [
  3843. {
  3844. name: "Macro",
  3845. height: math.unit(156, "feet"),
  3846. default: true
  3847. },
  3848. {
  3849. name: "Macro+",
  3850. height: math.unit(1188, "feet")
  3851. },
  3852. ]
  3853. ))
  3854. characterMakers.push(() => makeCharacter(
  3855. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3856. {
  3857. front: {
  3858. height: math.unit(6, "feet"),
  3859. weight: math.unit(75, "kg"),
  3860. name: "Front",
  3861. image: {
  3862. source: "./media/characters/sefer/front.svg",
  3863. extra: 848 / 659,
  3864. bottom: 28.3 / 876.442
  3865. }
  3866. },
  3867. back: {
  3868. height: math.unit(6, "feet"),
  3869. weight: math.unit(75, "kg"),
  3870. name: "Back",
  3871. image: {
  3872. source: "./media/characters/sefer/back.svg",
  3873. extra: 864 / 695,
  3874. bottom: 10 / 871
  3875. }
  3876. },
  3877. frontDressed: {
  3878. height: math.unit(6, "feet"),
  3879. weight: math.unit(75, "kg"),
  3880. name: "Dressed",
  3881. image: {
  3882. source: "./media/characters/sefer/dressed.svg",
  3883. extra: 839 / 653,
  3884. bottom: 37.6 / 878
  3885. }
  3886. },
  3887. },
  3888. [
  3889. {
  3890. name: "Normal",
  3891. height: math.unit(6, "feet"),
  3892. default: true
  3893. },
  3894. {
  3895. name: "Big",
  3896. height: math.unit(8, "meters")
  3897. },
  3898. ]
  3899. ))
  3900. characterMakers.push(() => makeCharacter(
  3901. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3902. {
  3903. body: {
  3904. height: math.unit(2.2428, "meter"),
  3905. weight: math.unit(124.738, "kg"),
  3906. name: "Body",
  3907. image: {
  3908. extra: 1225 / 1050,
  3909. source: "./media/characters/north/front.svg"
  3910. }
  3911. }
  3912. },
  3913. [
  3914. {
  3915. name: "Micro",
  3916. height: math.unit(4, "inches")
  3917. },
  3918. {
  3919. name: "Macro",
  3920. height: math.unit(63, "meters")
  3921. },
  3922. {
  3923. name: "Megamacro",
  3924. height: math.unit(101, "miles"),
  3925. default: true
  3926. }
  3927. ]
  3928. ))
  3929. characterMakers.push(() => makeCharacter(
  3930. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3931. {
  3932. angled: {
  3933. height: math.unit(4, "meter"),
  3934. weight: math.unit(150, "kg"),
  3935. name: "Angled",
  3936. image: {
  3937. source: "./media/characters/talan/angled-sfw.svg",
  3938. bottom: 29 / 3734
  3939. }
  3940. },
  3941. angledNsfw: {
  3942. height: math.unit(4, "meter"),
  3943. weight: math.unit(150, "kg"),
  3944. name: "Angled (NSFW)",
  3945. image: {
  3946. source: "./media/characters/talan/angled-nsfw.svg",
  3947. bottom: 29 / 3734
  3948. }
  3949. },
  3950. frontNsfw: {
  3951. height: math.unit(4, "meter"),
  3952. weight: math.unit(150, "kg"),
  3953. name: "Front (NSFW)",
  3954. image: {
  3955. source: "./media/characters/talan/front-nsfw.svg",
  3956. bottom: 29 / 3734
  3957. }
  3958. },
  3959. sideNsfw: {
  3960. height: math.unit(4, "meter"),
  3961. weight: math.unit(150, "kg"),
  3962. name: "Side (NSFW)",
  3963. image: {
  3964. source: "./media/characters/talan/side-nsfw.svg",
  3965. bottom: 29 / 3734
  3966. }
  3967. },
  3968. back: {
  3969. height: math.unit(4, "meter"),
  3970. weight: math.unit(150, "kg"),
  3971. name: "Back",
  3972. image: {
  3973. source: "./media/characters/talan/back.svg"
  3974. }
  3975. },
  3976. dickBottom: {
  3977. height: math.unit(0.621, "meter"),
  3978. name: "Dick (Bottom)",
  3979. image: {
  3980. source: "./media/characters/talan/dick-bottom.svg"
  3981. }
  3982. },
  3983. dickTop: {
  3984. height: math.unit(0.621, "meter"),
  3985. name: "Dick (Top)",
  3986. image: {
  3987. source: "./media/characters/talan/dick-top.svg"
  3988. }
  3989. },
  3990. dickSide: {
  3991. height: math.unit(0.305, "meter"),
  3992. name: "Dick (Side)",
  3993. image: {
  3994. source: "./media/characters/talan/dick-side.svg"
  3995. }
  3996. },
  3997. dickFront: {
  3998. height: math.unit(0.305, "meter"),
  3999. name: "Dick (Front)",
  4000. image: {
  4001. source: "./media/characters/talan/dick-front.svg"
  4002. }
  4003. },
  4004. },
  4005. [
  4006. {
  4007. name: "Normal",
  4008. height: math.unit(4, "meters")
  4009. },
  4010. {
  4011. name: "Macro",
  4012. height: math.unit(100, "meters")
  4013. },
  4014. {
  4015. name: "Megamacro",
  4016. height: math.unit(2, "miles"),
  4017. default: true
  4018. },
  4019. {
  4020. name: "Gigamacro",
  4021. height: math.unit(5000, "miles")
  4022. },
  4023. {
  4024. name: "Teramacro",
  4025. height: math.unit(100, "parsecs")
  4026. }
  4027. ]
  4028. ))
  4029. characterMakers.push(() => makeCharacter(
  4030. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4031. {
  4032. front: {
  4033. height: math.unit(2, "meter"),
  4034. weight: math.unit(90, "kg"),
  4035. name: "Front",
  4036. image: {
  4037. source: "./media/characters/gael'rathus/front.svg"
  4038. }
  4039. },
  4040. frontAlt: {
  4041. height: math.unit(2, "meter"),
  4042. weight: math.unit(90, "kg"),
  4043. name: "Front (alt)",
  4044. image: {
  4045. source: "./media/characters/gael'rathus/front-alt.svg"
  4046. }
  4047. },
  4048. frontAlt2: {
  4049. height: math.unit(2, "meter"),
  4050. weight: math.unit(90, "kg"),
  4051. name: "Front (alt 2)",
  4052. image: {
  4053. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4054. }
  4055. }
  4056. },
  4057. [
  4058. {
  4059. name: "Normal",
  4060. height: math.unit(9, "feet"),
  4061. default: true
  4062. },
  4063. {
  4064. name: "Large",
  4065. height: math.unit(25, "feet")
  4066. },
  4067. {
  4068. name: "Macro",
  4069. height: math.unit(0.25, "miles")
  4070. },
  4071. {
  4072. name: "Megamacro",
  4073. height: math.unit(10, "miles")
  4074. }
  4075. ]
  4076. ))
  4077. characterMakers.push(() => makeCharacter(
  4078. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4079. {
  4080. side: {
  4081. height: math.unit(2, "meter"),
  4082. weight: math.unit(140, "kg"),
  4083. name: "Side",
  4084. image: {
  4085. source: "./media/characters/sosha/side.svg",
  4086. extra: 1170/1006,
  4087. bottom: 94/1264
  4088. }
  4089. },
  4090. maw: {
  4091. height: math.unit(2.87, "feet"),
  4092. name: "Maw",
  4093. image: {
  4094. source: "./media/characters/sosha/maw.svg",
  4095. extra: 966/865,
  4096. bottom: 0/966
  4097. }
  4098. },
  4099. cooch: {
  4100. height: math.unit(5.6, "feet"),
  4101. name: "Cooch",
  4102. image: {
  4103. source: "./media/characters/sosha/cooch.svg"
  4104. }
  4105. },
  4106. },
  4107. [
  4108. {
  4109. name: "Normal",
  4110. height: math.unit(12, "feet"),
  4111. default: true
  4112. }
  4113. ]
  4114. ))
  4115. characterMakers.push(() => makeCharacter(
  4116. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4117. {
  4118. side: {
  4119. height: math.unit(5 + 5 / 12, "feet"),
  4120. weight: math.unit(170, "kg"),
  4121. name: "Side",
  4122. image: {
  4123. source: "./media/characters/runnola/side.svg",
  4124. extra: 741 / 448,
  4125. bottom: 0.05
  4126. }
  4127. },
  4128. },
  4129. [
  4130. {
  4131. name: "Small",
  4132. height: math.unit(3, "feet")
  4133. },
  4134. {
  4135. name: "Normal",
  4136. height: math.unit(5 + 5 / 12, "feet"),
  4137. default: true
  4138. },
  4139. {
  4140. name: "Big",
  4141. height: math.unit(10, "feet")
  4142. },
  4143. ]
  4144. ))
  4145. characterMakers.push(() => makeCharacter(
  4146. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4147. {
  4148. front: {
  4149. height: math.unit(2, "meter"),
  4150. weight: math.unit(50, "kg"),
  4151. name: "Front",
  4152. image: {
  4153. source: "./media/characters/kurribird/front.svg",
  4154. bottom: 0.015
  4155. }
  4156. },
  4157. frontAlt: {
  4158. height: math.unit(1.5, "meter"),
  4159. weight: math.unit(50, "kg"),
  4160. name: "Front (Alt)",
  4161. image: {
  4162. source: "./media/characters/kurribird/front-alt.svg",
  4163. extra: 1.45
  4164. }
  4165. },
  4166. },
  4167. [
  4168. {
  4169. name: "Normal",
  4170. height: math.unit(7, "feet")
  4171. },
  4172. {
  4173. name: "Big",
  4174. height: math.unit(12, "feet"),
  4175. default: true
  4176. },
  4177. {
  4178. name: "Macro",
  4179. height: math.unit(1500, "feet")
  4180. },
  4181. {
  4182. name: "Megamacro",
  4183. height: math.unit(2, "miles")
  4184. }
  4185. ]
  4186. ))
  4187. characterMakers.push(() => makeCharacter(
  4188. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4189. {
  4190. front: {
  4191. height: math.unit(2, "meter"),
  4192. weight: math.unit(80, "kg"),
  4193. name: "Front",
  4194. image: {
  4195. source: "./media/characters/elbial/front.svg",
  4196. extra: 1643 / 1556,
  4197. bottom: 60.2 / 1696
  4198. }
  4199. },
  4200. side: {
  4201. height: math.unit(2, "meter"),
  4202. weight: math.unit(80, "kg"),
  4203. name: "Side",
  4204. image: {
  4205. source: "./media/characters/elbial/side.svg",
  4206. extra: 1601/1528,
  4207. bottom: 97/1698
  4208. }
  4209. },
  4210. back: {
  4211. height: math.unit(2, "meter"),
  4212. weight: math.unit(80, "kg"),
  4213. name: "Back",
  4214. image: {
  4215. source: "./media/characters/elbial/back.svg",
  4216. extra: 1653/1569,
  4217. bottom: 20/1673
  4218. }
  4219. },
  4220. frontDressed: {
  4221. height: math.unit(2, "meter"),
  4222. weight: math.unit(80, "kg"),
  4223. name: "Front (Dressed)",
  4224. image: {
  4225. source: "./media/characters/elbial/front-dressed.svg",
  4226. extra: 1638/1569,
  4227. bottom: 70/1708
  4228. }
  4229. },
  4230. genitals: {
  4231. height: math.unit(2 / 3.367, "meter"),
  4232. name: "Genitals",
  4233. image: {
  4234. source: "./media/characters/elbial/genitals.svg"
  4235. }
  4236. },
  4237. },
  4238. [
  4239. {
  4240. name: "Large",
  4241. height: math.unit(100, "feet")
  4242. },
  4243. {
  4244. name: "Macro",
  4245. height: math.unit(500, "feet"),
  4246. default: true
  4247. },
  4248. {
  4249. name: "Megamacro",
  4250. height: math.unit(10, "miles")
  4251. },
  4252. {
  4253. name: "Gigamacro",
  4254. height: math.unit(25000, "miles")
  4255. },
  4256. {
  4257. name: "Full-Size",
  4258. height: math.unit(8000000, "gigaparsecs")
  4259. }
  4260. ]
  4261. ))
  4262. characterMakers.push(() => makeCharacter(
  4263. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4264. {
  4265. front: {
  4266. height: math.unit(2, "meter"),
  4267. weight: math.unit(60, "kg"),
  4268. name: "Front",
  4269. image: {
  4270. source: "./media/characters/noah/front.svg"
  4271. }
  4272. },
  4273. talons: {
  4274. height: math.unit(0.315, "meter"),
  4275. name: "Talons",
  4276. image: {
  4277. source: "./media/characters/noah/talons.svg"
  4278. }
  4279. }
  4280. },
  4281. [
  4282. {
  4283. name: "Large",
  4284. height: math.unit(50, "feet")
  4285. },
  4286. {
  4287. name: "Macro",
  4288. height: math.unit(750, "feet"),
  4289. default: true
  4290. },
  4291. {
  4292. name: "Megamacro",
  4293. height: math.unit(50, "miles")
  4294. },
  4295. {
  4296. name: "Gigamacro",
  4297. height: math.unit(100000, "miles")
  4298. },
  4299. {
  4300. name: "Full-Size",
  4301. height: math.unit(3000000000, "miles")
  4302. }
  4303. ]
  4304. ))
  4305. characterMakers.push(() => makeCharacter(
  4306. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4307. {
  4308. front: {
  4309. height: math.unit(2, "meter"),
  4310. weight: math.unit(80, "kg"),
  4311. name: "Front",
  4312. image: {
  4313. source: "./media/characters/natalya/front.svg"
  4314. }
  4315. },
  4316. back: {
  4317. height: math.unit(2, "meter"),
  4318. weight: math.unit(80, "kg"),
  4319. name: "Back",
  4320. image: {
  4321. source: "./media/characters/natalya/back.svg"
  4322. }
  4323. }
  4324. },
  4325. [
  4326. {
  4327. name: "Normal",
  4328. height: math.unit(150, "feet"),
  4329. default: true
  4330. },
  4331. {
  4332. name: "Megamacro",
  4333. height: math.unit(5, "miles")
  4334. },
  4335. {
  4336. name: "Full-Size",
  4337. height: math.unit(600, "kiloparsecs")
  4338. }
  4339. ]
  4340. ))
  4341. characterMakers.push(() => makeCharacter(
  4342. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4343. {
  4344. front: {
  4345. height: math.unit(2, "meter"),
  4346. weight: math.unit(50, "kg"),
  4347. name: "Front",
  4348. image: {
  4349. source: "./media/characters/erestrebah/front.svg",
  4350. extra: 1262/1162,
  4351. bottom: 96/1358
  4352. }
  4353. },
  4354. back: {
  4355. height: math.unit(2, "meter"),
  4356. weight: math.unit(50, "kg"),
  4357. name: "Back",
  4358. image: {
  4359. source: "./media/characters/erestrebah/back.svg",
  4360. extra: 1257/1139,
  4361. bottom: 13/1270
  4362. }
  4363. },
  4364. wing: {
  4365. height: math.unit(2, "meter"),
  4366. weight: math.unit(50, "kg"),
  4367. name: "Wing",
  4368. image: {
  4369. source: "./media/characters/erestrebah/wing.svg",
  4370. extra: 1262/1162,
  4371. bottom: 96/1358
  4372. }
  4373. },
  4374. mouth: {
  4375. height: math.unit(0.39, "feet"),
  4376. name: "Mouth",
  4377. image: {
  4378. source: "./media/characters/erestrebah/mouth.svg"
  4379. }
  4380. }
  4381. },
  4382. [
  4383. {
  4384. name: "Normal",
  4385. height: math.unit(10, "feet")
  4386. },
  4387. {
  4388. name: "Large",
  4389. height: math.unit(50, "feet"),
  4390. default: true
  4391. },
  4392. {
  4393. name: "Macro",
  4394. height: math.unit(300, "feet")
  4395. },
  4396. {
  4397. name: "Macro+",
  4398. height: math.unit(750, "feet")
  4399. },
  4400. {
  4401. name: "Megamacro",
  4402. height: math.unit(3, "miles")
  4403. }
  4404. ]
  4405. ))
  4406. characterMakers.push(() => makeCharacter(
  4407. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4408. {
  4409. front: {
  4410. height: math.unit(2, "meter"),
  4411. weight: math.unit(80, "kg"),
  4412. name: "Front",
  4413. image: {
  4414. source: "./media/characters/jennifer/front.svg",
  4415. bottom: 0.11,
  4416. extra: 1.16
  4417. }
  4418. },
  4419. frontAlt: {
  4420. height: math.unit(2, "meter"),
  4421. weight: math.unit(80, "kg"),
  4422. name: "Front (Alt)",
  4423. image: {
  4424. source: "./media/characters/jennifer/front-alt.svg"
  4425. }
  4426. }
  4427. },
  4428. [
  4429. {
  4430. name: "Canon Height",
  4431. height: math.unit(120, "feet"),
  4432. default: true
  4433. },
  4434. {
  4435. name: "Macro+",
  4436. height: math.unit(300, "feet")
  4437. },
  4438. {
  4439. name: "Megamacro",
  4440. height: math.unit(20000, "feet")
  4441. }
  4442. ]
  4443. ))
  4444. characterMakers.push(() => makeCharacter(
  4445. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4446. {
  4447. front: {
  4448. height: math.unit(2, "meter"),
  4449. weight: math.unit(50, "kg"),
  4450. name: "Front",
  4451. image: {
  4452. source: "./media/characters/kalista/front.svg",
  4453. extra: 1314/1145,
  4454. bottom: 101/1415
  4455. }
  4456. },
  4457. back: {
  4458. height: math.unit(2, "meter"),
  4459. weight: math.unit(50, "kg"),
  4460. name: "Back",
  4461. image: {
  4462. source: "./media/characters/kalista/back.svg",
  4463. extra: 1366 / 1156,
  4464. bottom: 33.9 / 1362.78
  4465. }
  4466. }
  4467. },
  4468. [
  4469. {
  4470. name: "Uncomfortably Small",
  4471. height: math.unit(10, "feet")
  4472. },
  4473. {
  4474. name: "Small",
  4475. height: math.unit(30, "feet")
  4476. },
  4477. {
  4478. name: "Macro",
  4479. height: math.unit(100, "feet"),
  4480. default: true
  4481. },
  4482. {
  4483. name: "Macro+",
  4484. height: math.unit(2000, "feet")
  4485. },
  4486. {
  4487. name: "True Form",
  4488. height: math.unit(8924, "miles")
  4489. }
  4490. ]
  4491. ))
  4492. characterMakers.push(() => makeCharacter(
  4493. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4494. {
  4495. front: {
  4496. height: math.unit(2, "meter"),
  4497. weight: math.unit(120, "kg"),
  4498. name: "Front",
  4499. image: {
  4500. source: "./media/characters/ggv/front.svg"
  4501. }
  4502. },
  4503. side: {
  4504. height: math.unit(2, "meter"),
  4505. weight: math.unit(120, "kg"),
  4506. name: "Side",
  4507. image: {
  4508. source: "./media/characters/ggv/side.svg"
  4509. }
  4510. }
  4511. },
  4512. [
  4513. {
  4514. name: "Extremely Puny",
  4515. height: math.unit(9 + 5 / 12, "feet")
  4516. },
  4517. {
  4518. name: "Horribly Small",
  4519. height: math.unit(47.7, "miles"),
  4520. default: true
  4521. },
  4522. {
  4523. name: "Reasonably Sized",
  4524. height: math.unit(25000, "parsecs")
  4525. },
  4526. {
  4527. name: "Slightly Uncompressed",
  4528. height: math.unit(7.77e31, "parsecs")
  4529. },
  4530. {
  4531. name: "Omniversal",
  4532. height: math.unit(1e300, "meters")
  4533. },
  4534. ]
  4535. ))
  4536. characterMakers.push(() => makeCharacter(
  4537. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4538. {
  4539. front: {
  4540. height: math.unit(2, "meter"),
  4541. weight: math.unit(75, "lb"),
  4542. name: "Front",
  4543. image: {
  4544. source: "./media/characters/napalm/front.svg"
  4545. }
  4546. },
  4547. back: {
  4548. height: math.unit(2, "meter"),
  4549. weight: math.unit(75, "lb"),
  4550. name: "Back",
  4551. image: {
  4552. source: "./media/characters/napalm/back.svg"
  4553. }
  4554. }
  4555. },
  4556. [
  4557. {
  4558. name: "Standard",
  4559. height: math.unit(55, "feet"),
  4560. default: true
  4561. }
  4562. ]
  4563. ))
  4564. characterMakers.push(() => makeCharacter(
  4565. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4566. {
  4567. front: {
  4568. height: math.unit(7 + 5 / 6, "feet"),
  4569. weight: math.unit(325, "lb"),
  4570. name: "Front",
  4571. image: {
  4572. source: "./media/characters/asana/front.svg",
  4573. extra: 1133 / 1060,
  4574. bottom: 15.2 / 1148.6
  4575. }
  4576. },
  4577. back: {
  4578. height: math.unit(7 + 5 / 6, "feet"),
  4579. weight: math.unit(325, "lb"),
  4580. name: "Back",
  4581. image: {
  4582. source: "./media/characters/asana/back.svg",
  4583. extra: 1114 / 1043,
  4584. bottom: 5 / 1120
  4585. }
  4586. },
  4587. dressedDark: {
  4588. height: math.unit(7 + 5 / 6, "feet"),
  4589. weight: math.unit(325, "lb"),
  4590. name: "Dressed (Dark)",
  4591. image: {
  4592. source: "./media/characters/asana/dressed-dark.svg",
  4593. extra: 1133 / 1060,
  4594. bottom: 15.2 / 1148.6
  4595. }
  4596. },
  4597. dressedLight: {
  4598. height: math.unit(7 + 5 / 6, "feet"),
  4599. weight: math.unit(325, "lb"),
  4600. name: "Dressed (Light)",
  4601. image: {
  4602. source: "./media/characters/asana/dressed-light.svg",
  4603. extra: 1133 / 1060,
  4604. bottom: 15.2 / 1148.6
  4605. }
  4606. },
  4607. },
  4608. [
  4609. {
  4610. name: "Standard",
  4611. height: math.unit(7 + 5 / 6, "feet"),
  4612. default: true
  4613. },
  4614. {
  4615. name: "Large",
  4616. height: math.unit(10, "meters")
  4617. },
  4618. {
  4619. name: "Macro",
  4620. height: math.unit(2500, "meters")
  4621. },
  4622. {
  4623. name: "Megamacro",
  4624. height: math.unit(5e6, "meters")
  4625. },
  4626. {
  4627. name: "Examacro",
  4628. height: math.unit(5e12, "lightyears")
  4629. },
  4630. {
  4631. name: "Max Size",
  4632. height: math.unit(1e31, "lightyears")
  4633. }
  4634. ]
  4635. ))
  4636. characterMakers.push(() => makeCharacter(
  4637. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4638. {
  4639. front: {
  4640. height: math.unit(2, "meter"),
  4641. weight: math.unit(60, "kg"),
  4642. name: "Front",
  4643. image: {
  4644. source: "./media/characters/ebony/front.svg",
  4645. bottom: 0.03,
  4646. extra: 1045 / 810 + 0.03
  4647. }
  4648. },
  4649. side: {
  4650. height: math.unit(2, "meter"),
  4651. weight: math.unit(60, "kg"),
  4652. name: "Side",
  4653. image: {
  4654. source: "./media/characters/ebony/side.svg",
  4655. bottom: 0.03,
  4656. extra: 1045 / 810 + 0.03
  4657. }
  4658. },
  4659. back: {
  4660. height: math.unit(2, "meter"),
  4661. weight: math.unit(60, "kg"),
  4662. name: "Back",
  4663. image: {
  4664. source: "./media/characters/ebony/back.svg",
  4665. bottom: 0.01,
  4666. extra: 1045 / 810 + 0.01
  4667. }
  4668. },
  4669. },
  4670. [
  4671. // TODO check why I did this lol
  4672. {
  4673. name: "Standard",
  4674. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4675. default: true
  4676. },
  4677. {
  4678. name: "Macro",
  4679. height: math.unit(200, "feet")
  4680. },
  4681. {
  4682. name: "Gigamacro",
  4683. height: math.unit(13000, "km")
  4684. }
  4685. ]
  4686. ))
  4687. characterMakers.push(() => makeCharacter(
  4688. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4689. {
  4690. front: {
  4691. height: math.unit(6, "feet"),
  4692. weight: math.unit(175, "lb"),
  4693. name: "Front",
  4694. image: {
  4695. source: "./media/characters/mountain/front.svg",
  4696. extra: 972 / 955,
  4697. bottom: 64 / 1036.6
  4698. }
  4699. },
  4700. back: {
  4701. height: math.unit(6, "feet"),
  4702. weight: math.unit(175, "lb"),
  4703. name: "Back",
  4704. image: {
  4705. source: "./media/characters/mountain/back.svg",
  4706. extra: 970 / 950,
  4707. bottom: 28.25 / 999
  4708. }
  4709. },
  4710. },
  4711. [
  4712. {
  4713. name: "Large",
  4714. height: math.unit(20, "meters")
  4715. },
  4716. {
  4717. name: "Macro",
  4718. height: math.unit(300, "meters")
  4719. },
  4720. {
  4721. name: "Gigamacro",
  4722. height: math.unit(10000, "km"),
  4723. default: true
  4724. },
  4725. {
  4726. name: "Examacro",
  4727. height: math.unit(10e9, "lightyears")
  4728. }
  4729. ]
  4730. ))
  4731. characterMakers.push(() => makeCharacter(
  4732. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4733. {
  4734. front: {
  4735. height: math.unit(8, "feet"),
  4736. weight: math.unit(500, "lb"),
  4737. name: "Front",
  4738. image: {
  4739. source: "./media/characters/rick/front.svg"
  4740. }
  4741. }
  4742. },
  4743. [
  4744. {
  4745. name: "Normal",
  4746. height: math.unit(8, "feet"),
  4747. default: true
  4748. },
  4749. {
  4750. name: "Macro",
  4751. height: math.unit(5, "km")
  4752. }
  4753. ]
  4754. ))
  4755. characterMakers.push(() => makeCharacter(
  4756. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4757. {
  4758. front: {
  4759. height: math.unit(8, "feet"),
  4760. weight: math.unit(120, "lb"),
  4761. name: "Front",
  4762. image: {
  4763. source: "./media/characters/ona/front.svg"
  4764. }
  4765. },
  4766. frontAlt: {
  4767. height: math.unit(8, "feet"),
  4768. weight: math.unit(120, "lb"),
  4769. name: "Front (Alt)",
  4770. image: {
  4771. source: "./media/characters/ona/front-alt.svg"
  4772. }
  4773. },
  4774. back: {
  4775. height: math.unit(8, "feet"),
  4776. weight: math.unit(120, "lb"),
  4777. name: "Back",
  4778. image: {
  4779. source: "./media/characters/ona/back.svg"
  4780. }
  4781. },
  4782. foot: {
  4783. height: math.unit(1.1, "feet"),
  4784. name: "Foot",
  4785. image: {
  4786. source: "./media/characters/ona/foot.svg"
  4787. }
  4788. }
  4789. },
  4790. [
  4791. {
  4792. name: "Megamacro",
  4793. height: math.unit(70, "km"),
  4794. default: true
  4795. },
  4796. {
  4797. name: "Gigamacro",
  4798. height: math.unit(681818, "miles")
  4799. },
  4800. {
  4801. name: "Examacro",
  4802. height: math.unit(3800000, "lightyears")
  4803. },
  4804. ]
  4805. ))
  4806. characterMakers.push(() => makeCharacter(
  4807. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4808. {
  4809. front: {
  4810. height: math.unit(12, "feet"),
  4811. weight: math.unit(3000, "lb"),
  4812. name: "Front",
  4813. image: {
  4814. source: "./media/characters/mech/front.svg",
  4815. extra: 2900 / 2770,
  4816. bottom: 110 / 3010
  4817. }
  4818. },
  4819. back: {
  4820. height: math.unit(12, "feet"),
  4821. weight: math.unit(3000, "lb"),
  4822. name: "Back",
  4823. image: {
  4824. source: "./media/characters/mech/back.svg",
  4825. extra: 3011 / 2890,
  4826. bottom: 94 / 3105
  4827. }
  4828. },
  4829. maw: {
  4830. height: math.unit(3.07, "feet"),
  4831. name: "Maw",
  4832. image: {
  4833. source: "./media/characters/mech/maw.svg"
  4834. }
  4835. },
  4836. head: {
  4837. height: math.unit(3.07, "feet"),
  4838. name: "Head",
  4839. image: {
  4840. source: "./media/characters/mech/head.svg"
  4841. }
  4842. },
  4843. dick: {
  4844. height: math.unit(1.43, "feet"),
  4845. name: "Dick",
  4846. image: {
  4847. source: "./media/characters/mech/dick.svg"
  4848. }
  4849. },
  4850. },
  4851. [
  4852. {
  4853. name: "Normal",
  4854. height: math.unit(12, "feet")
  4855. },
  4856. {
  4857. name: "Macro",
  4858. height: math.unit(300, "feet"),
  4859. default: true
  4860. },
  4861. {
  4862. name: "Macro+",
  4863. height: math.unit(1500, "feet")
  4864. },
  4865. ]
  4866. ))
  4867. characterMakers.push(() => makeCharacter(
  4868. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4869. {
  4870. front: {
  4871. height: math.unit(1.3, "meter"),
  4872. weight: math.unit(30, "kg"),
  4873. name: "Front",
  4874. image: {
  4875. source: "./media/characters/gregory/front.svg",
  4876. }
  4877. }
  4878. },
  4879. [
  4880. {
  4881. name: "Normal",
  4882. height: math.unit(1.3, "meter"),
  4883. default: true
  4884. },
  4885. {
  4886. name: "Macro",
  4887. height: math.unit(20, "meter")
  4888. }
  4889. ]
  4890. ))
  4891. characterMakers.push(() => makeCharacter(
  4892. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4893. {
  4894. front: {
  4895. height: math.unit(2.8, "meter"),
  4896. weight: math.unit(200, "kg"),
  4897. name: "Front",
  4898. image: {
  4899. source: "./media/characters/elory/front.svg",
  4900. }
  4901. }
  4902. },
  4903. [
  4904. {
  4905. name: "Normal",
  4906. height: math.unit(2.8, "meter"),
  4907. default: true
  4908. },
  4909. {
  4910. name: "Macro",
  4911. height: math.unit(38, "meter")
  4912. }
  4913. ]
  4914. ))
  4915. characterMakers.push(() => makeCharacter(
  4916. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4917. {
  4918. front: {
  4919. height: math.unit(470, "feet"),
  4920. weight: math.unit(924, "tons"),
  4921. name: "Front",
  4922. image: {
  4923. source: "./media/characters/angelpatamon/front.svg",
  4924. }
  4925. }
  4926. },
  4927. [
  4928. {
  4929. name: "Normal",
  4930. height: math.unit(470, "feet"),
  4931. default: true
  4932. },
  4933. {
  4934. name: "Deity Size I",
  4935. height: math.unit(28651.2, "km")
  4936. },
  4937. {
  4938. name: "Deity Size II",
  4939. height: math.unit(171907.2, "km")
  4940. }
  4941. ]
  4942. ))
  4943. characterMakers.push(() => makeCharacter(
  4944. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4945. {
  4946. side: {
  4947. height: math.unit(7.2, "meter"),
  4948. weight: math.unit(8.2, "tons"),
  4949. name: "Side",
  4950. image: {
  4951. source: "./media/characters/cryae/side.svg",
  4952. extra: 3500 / 1500
  4953. }
  4954. }
  4955. },
  4956. [
  4957. {
  4958. name: "Normal",
  4959. height: math.unit(7.2, "meter"),
  4960. default: true
  4961. }
  4962. ]
  4963. ))
  4964. characterMakers.push(() => makeCharacter(
  4965. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4966. {
  4967. front: {
  4968. height: math.unit(6, "feet"),
  4969. weight: math.unit(175, "lb"),
  4970. name: "Front",
  4971. image: {
  4972. source: "./media/characters/xera/front.svg",
  4973. extra: 2377 / 1972,
  4974. bottom: 75.5 / 2452
  4975. }
  4976. },
  4977. side: {
  4978. height: math.unit(6, "feet"),
  4979. weight: math.unit(175, "lb"),
  4980. name: "Side",
  4981. image: {
  4982. source: "./media/characters/xera/side.svg",
  4983. extra: 2345 / 2019,
  4984. bottom: 39.7 / 2384
  4985. }
  4986. },
  4987. back: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(175, "lb"),
  4990. name: "Back",
  4991. image: {
  4992. source: "./media/characters/xera/back.svg",
  4993. extra: 2095 / 1984,
  4994. bottom: 67 / 2166
  4995. }
  4996. },
  4997. },
  4998. [
  4999. {
  5000. name: "Small",
  5001. height: math.unit(10, "feet")
  5002. },
  5003. {
  5004. name: "Macro",
  5005. height: math.unit(500, "meters"),
  5006. default: true
  5007. },
  5008. {
  5009. name: "Macro+",
  5010. height: math.unit(10, "km")
  5011. },
  5012. {
  5013. name: "Gigamacro",
  5014. height: math.unit(25000, "km")
  5015. },
  5016. {
  5017. name: "Teramacro",
  5018. height: math.unit(3e6, "km")
  5019. }
  5020. ]
  5021. ))
  5022. characterMakers.push(() => makeCharacter(
  5023. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5024. {
  5025. front: {
  5026. height: math.unit(6, "feet"),
  5027. weight: math.unit(175, "lb"),
  5028. name: "Front",
  5029. image: {
  5030. source: "./media/characters/nebula/front.svg",
  5031. extra: 2566 / 2362,
  5032. bottom: 81 / 2644
  5033. }
  5034. }
  5035. },
  5036. [
  5037. {
  5038. name: "Small",
  5039. height: math.unit(4.5, "meters")
  5040. },
  5041. {
  5042. name: "Macro",
  5043. height: math.unit(1500, "meters"),
  5044. default: true
  5045. },
  5046. {
  5047. name: "Megamacro",
  5048. height: math.unit(150, "km")
  5049. },
  5050. {
  5051. name: "Gigamacro",
  5052. height: math.unit(27000, "km")
  5053. }
  5054. ]
  5055. ))
  5056. characterMakers.push(() => makeCharacter(
  5057. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5058. {
  5059. front: {
  5060. height: math.unit(6, "feet"),
  5061. weight: math.unit(225, "lb"),
  5062. name: "Front",
  5063. image: {
  5064. source: "./media/characters/abysgar/front.svg",
  5065. extra: 1739/1614,
  5066. bottom: 71/1810
  5067. }
  5068. },
  5069. frontNsfw: {
  5070. height: math.unit(6, "feet"),
  5071. weight: math.unit(225, "lb"),
  5072. name: "Front (NSFW)",
  5073. image: {
  5074. source: "./media/characters/abysgar/front-nsfw.svg",
  5075. extra: 1739/1614,
  5076. bottom: 71/1810
  5077. }
  5078. },
  5079. back: {
  5080. height: math.unit(4.6, "feet"),
  5081. weight: math.unit(225, "lb"),
  5082. name: "Back",
  5083. image: {
  5084. source: "./media/characters/abysgar/back.svg",
  5085. extra: 1384/1327,
  5086. bottom: 0/1384
  5087. }
  5088. },
  5089. head: {
  5090. height: math.unit(1.25, "feet"),
  5091. name: "Head",
  5092. image: {
  5093. source: "./media/characters/abysgar/head.svg",
  5094. extra: 669/569,
  5095. bottom: 0/669
  5096. }
  5097. },
  5098. },
  5099. [
  5100. {
  5101. name: "Small",
  5102. height: math.unit(4.5, "meters")
  5103. },
  5104. {
  5105. name: "Macro",
  5106. height: math.unit(1250, "meters"),
  5107. default: true
  5108. },
  5109. {
  5110. name: "Megamacro",
  5111. height: math.unit(125, "km")
  5112. },
  5113. {
  5114. name: "Gigamacro",
  5115. height: math.unit(26000, "km")
  5116. }
  5117. ]
  5118. ))
  5119. characterMakers.push(() => makeCharacter(
  5120. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5121. {
  5122. front: {
  5123. height: math.unit(6, "feet"),
  5124. weight: math.unit(180, "lb"),
  5125. name: "Front",
  5126. image: {
  5127. source: "./media/characters/yakuz/front.svg"
  5128. }
  5129. }
  5130. },
  5131. [
  5132. {
  5133. name: "Small",
  5134. height: math.unit(5, "meters")
  5135. },
  5136. {
  5137. name: "Macro",
  5138. height: math.unit(1500, "meters"),
  5139. default: true
  5140. },
  5141. {
  5142. name: "Megamacro",
  5143. height: math.unit(200, "km")
  5144. },
  5145. {
  5146. name: "Gigamacro",
  5147. height: math.unit(100000, "km")
  5148. }
  5149. ]
  5150. ))
  5151. characterMakers.push(() => makeCharacter(
  5152. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5153. {
  5154. front: {
  5155. height: math.unit(6, "feet"),
  5156. weight: math.unit(175, "lb"),
  5157. name: "Front",
  5158. image: {
  5159. source: "./media/characters/mirova/front.svg",
  5160. extra: 3334 / 3071,
  5161. bottom: 42 / 3375.6
  5162. }
  5163. }
  5164. },
  5165. [
  5166. {
  5167. name: "Small",
  5168. height: math.unit(5, "meters")
  5169. },
  5170. {
  5171. name: "Macro",
  5172. height: math.unit(900, "meters"),
  5173. default: true
  5174. },
  5175. {
  5176. name: "Megamacro",
  5177. height: math.unit(135, "km")
  5178. },
  5179. {
  5180. name: "Gigamacro",
  5181. height: math.unit(20000, "km")
  5182. }
  5183. ]
  5184. ))
  5185. characterMakers.push(() => makeCharacter(
  5186. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5187. {
  5188. side: {
  5189. height: math.unit(28.35, "feet"),
  5190. weight: math.unit(99.75, "tons"),
  5191. name: "Side",
  5192. image: {
  5193. source: "./media/characters/asana-mech/side.svg",
  5194. extra: 923 / 699,
  5195. bottom: 50 / 975
  5196. }
  5197. },
  5198. chaingun: {
  5199. height: math.unit(7, "feet"),
  5200. weight: math.unit(2400, "lb"),
  5201. name: "Chaingun",
  5202. image: {
  5203. source: "./media/characters/asana-mech/chaingun.svg"
  5204. }
  5205. },
  5206. laser: {
  5207. height: math.unit(7.12, "feet"),
  5208. weight: math.unit(2000, "lb"),
  5209. name: "Laser",
  5210. image: {
  5211. source: "./media/characters/asana-mech/laser.svg"
  5212. }
  5213. },
  5214. },
  5215. [
  5216. {
  5217. name: "Normal",
  5218. height: math.unit(28.35, "feet"),
  5219. default: true
  5220. },
  5221. {
  5222. name: "Macro",
  5223. height: math.unit(2500, "feet")
  5224. },
  5225. {
  5226. name: "Megamacro",
  5227. height: math.unit(25, "miles")
  5228. },
  5229. {
  5230. name: "Examacro",
  5231. height: math.unit(6e8, "lightyears")
  5232. },
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5237. {
  5238. front: {
  5239. height: math.unit(5, "meters"),
  5240. weight: math.unit(1000, "kg"),
  5241. name: "Front",
  5242. image: {
  5243. source: "./media/characters/asche/front.svg",
  5244. extra: 1258 / 1190,
  5245. bottom: 47 / 1305
  5246. }
  5247. },
  5248. frontUnderwear: {
  5249. height: math.unit(5, "meters"),
  5250. weight: math.unit(1000, "kg"),
  5251. name: "Front (Underwear)",
  5252. image: {
  5253. source: "./media/characters/asche/front-underwear.svg",
  5254. extra: 1258 / 1190,
  5255. bottom: 47 / 1305
  5256. }
  5257. },
  5258. frontDressed: {
  5259. height: math.unit(5, "meters"),
  5260. weight: math.unit(1000, "kg"),
  5261. name: "Front (Dressed)",
  5262. image: {
  5263. source: "./media/characters/asche/front-dressed.svg",
  5264. extra: 1258 / 1190,
  5265. bottom: 47 / 1305
  5266. }
  5267. },
  5268. frontArmor: {
  5269. height: math.unit(5, "meters"),
  5270. weight: math.unit(1000, "kg"),
  5271. name: "Front (Armored)",
  5272. image: {
  5273. source: "./media/characters/asche/front-armored.svg",
  5274. extra: 1374 / 1308,
  5275. bottom: 23 / 1397
  5276. }
  5277. },
  5278. mp724: {
  5279. height: math.unit(0.96, "meters"),
  5280. weight: math.unit(38, "kg"),
  5281. name: "H&K MP724",
  5282. image: {
  5283. source: "./media/characters/asche/h&k-mp724.svg"
  5284. }
  5285. },
  5286. side: {
  5287. height: math.unit(5, "meters"),
  5288. weight: math.unit(1000, "kg"),
  5289. name: "Side",
  5290. image: {
  5291. source: "./media/characters/asche/side.svg",
  5292. extra: 1717 / 1609,
  5293. bottom: 0.005
  5294. }
  5295. },
  5296. back: {
  5297. height: math.unit(5, "meters"),
  5298. weight: math.unit(1000, "kg"),
  5299. name: "Back",
  5300. image: {
  5301. source: "./media/characters/asche/back.svg",
  5302. extra: 1570 / 1501
  5303. }
  5304. },
  5305. },
  5306. [
  5307. {
  5308. name: "DEFCON 5",
  5309. height: math.unit(5, "meters")
  5310. },
  5311. {
  5312. name: "DEFCON 4",
  5313. height: math.unit(500, "meters"),
  5314. default: true
  5315. },
  5316. {
  5317. name: "DEFCON 3",
  5318. height: math.unit(5, "km")
  5319. },
  5320. {
  5321. name: "DEFCON 2",
  5322. height: math.unit(500, "km")
  5323. },
  5324. {
  5325. name: "DEFCON 1",
  5326. height: math.unit(500000, "km")
  5327. },
  5328. {
  5329. name: "DEFCON 0",
  5330. height: math.unit(3, "gigaparsecs")
  5331. },
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5336. {
  5337. front: {
  5338. height: math.unit(7, "feet"),
  5339. weight: math.unit(92.7, "kg"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/gale/front.svg",
  5343. extra: 977/919,
  5344. bottom: 105/1082
  5345. }
  5346. },
  5347. side: {
  5348. height: math.unit(6.7, "feet"),
  5349. weight: math.unit(92.7, "kg"),
  5350. name: "Side",
  5351. image: {
  5352. source: "./media/characters/gale/side.svg",
  5353. extra: 978/922,
  5354. bottom: 140/1118
  5355. }
  5356. },
  5357. back: {
  5358. height: math.unit(7, "feet"),
  5359. weight: math.unit(92.7, "kg"),
  5360. name: "Back",
  5361. image: {
  5362. source: "./media/characters/gale/back.svg",
  5363. extra: 966/920,
  5364. bottom: 61/1027
  5365. }
  5366. },
  5367. maw: {
  5368. height: math.unit(2.23, "feet"),
  5369. name: "Maw",
  5370. image: {
  5371. source: "./media/characters/gale/maw.svg"
  5372. }
  5373. },
  5374. foot: {
  5375. height: math.unit(2.1, "feet"),
  5376. name: "Foot",
  5377. image: {
  5378. source: "./media/characters/gale/foot.svg"
  5379. }
  5380. },
  5381. },
  5382. [
  5383. {
  5384. name: "Normal",
  5385. height: math.unit(7, "feet")
  5386. },
  5387. {
  5388. name: "Macro",
  5389. height: math.unit(150, "feet"),
  5390. default: true
  5391. },
  5392. {
  5393. name: "Macro+",
  5394. height: math.unit(300, "feet")
  5395. },
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5400. {
  5401. front: {
  5402. height: math.unit(5 + 10/12, "feet"),
  5403. weight: math.unit(67, "kg"),
  5404. name: "Front",
  5405. image: {
  5406. source: "./media/characters/draylen/front.svg",
  5407. extra: 832/777,
  5408. bottom: 85/917
  5409. }
  5410. }
  5411. },
  5412. [
  5413. {
  5414. name: "Normal",
  5415. height: math.unit(5 + 10/12, "feet")
  5416. },
  5417. {
  5418. name: "Macro",
  5419. height: math.unit(150, "feet"),
  5420. default: true
  5421. }
  5422. ]
  5423. ))
  5424. characterMakers.push(() => makeCharacter(
  5425. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5426. {
  5427. front: {
  5428. height: math.unit(7 + 9 / 12, "feet"),
  5429. weight: math.unit(379, "lbs"),
  5430. name: "Front",
  5431. image: {
  5432. source: "./media/characters/chez/front.svg"
  5433. }
  5434. },
  5435. side: {
  5436. height: math.unit(7 + 9 / 12, "feet"),
  5437. weight: math.unit(379, "lbs"),
  5438. name: "Side",
  5439. image: {
  5440. source: "./media/characters/chez/side.svg"
  5441. }
  5442. }
  5443. },
  5444. [
  5445. {
  5446. name: "Normal",
  5447. height: math.unit(7 + 9 / 12, "feet"),
  5448. default: true
  5449. },
  5450. {
  5451. name: "God King",
  5452. height: math.unit(9750000, "meters")
  5453. }
  5454. ]
  5455. ))
  5456. characterMakers.push(() => makeCharacter(
  5457. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5458. {
  5459. front: {
  5460. height: math.unit(6, "feet"),
  5461. weight: math.unit(275, "lbs"),
  5462. name: "Front",
  5463. image: {
  5464. source: "./media/characters/kaylum/front.svg",
  5465. bottom: 0.01,
  5466. extra: 1166 / 1031
  5467. }
  5468. },
  5469. frontWingless: {
  5470. height: math.unit(6, "feet"),
  5471. weight: math.unit(275, "lbs"),
  5472. name: "Front (Wingless)",
  5473. image: {
  5474. source: "./media/characters/kaylum/front-wingless.svg",
  5475. bottom: 0.01,
  5476. extra: 1117 / 1031
  5477. }
  5478. }
  5479. },
  5480. [
  5481. {
  5482. name: "Normal",
  5483. height: math.unit(3.05, "meters")
  5484. },
  5485. {
  5486. name: "Master",
  5487. height: math.unit(5.5, "meters")
  5488. },
  5489. {
  5490. name: "Rampage",
  5491. height: math.unit(19, "meters")
  5492. },
  5493. {
  5494. name: "Macro Lite",
  5495. height: math.unit(37, "meters")
  5496. },
  5497. {
  5498. name: "Hyper Predator",
  5499. height: math.unit(61, "meters")
  5500. },
  5501. {
  5502. name: "Macro",
  5503. height: math.unit(138, "meters"),
  5504. default: true
  5505. }
  5506. ]
  5507. ))
  5508. characterMakers.push(() => makeCharacter(
  5509. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5510. {
  5511. front: {
  5512. height: math.unit(5 + 5 / 12, "feet"),
  5513. weight: math.unit(120, "lbs"),
  5514. name: "Front",
  5515. image: {
  5516. source: "./media/characters/geta/front.svg",
  5517. extra: 1003/933,
  5518. bottom: 21/1024
  5519. }
  5520. },
  5521. paw: {
  5522. height: math.unit(0.35, "feet"),
  5523. name: "Paw",
  5524. image: {
  5525. source: "./media/characters/geta/paw.svg"
  5526. }
  5527. },
  5528. },
  5529. [
  5530. {
  5531. name: "Micro",
  5532. height: math.unit(3, "inches"),
  5533. default: true
  5534. },
  5535. {
  5536. name: "Normal",
  5537. height: math.unit(5 + 5 / 12, "feet")
  5538. }
  5539. ]
  5540. ))
  5541. characterMakers.push(() => makeCharacter(
  5542. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5543. {
  5544. front: {
  5545. height: math.unit(6, "feet"),
  5546. weight: math.unit(300, "lbs"),
  5547. name: "Front",
  5548. image: {
  5549. source: "./media/characters/tyrnn/front.svg"
  5550. }
  5551. }
  5552. },
  5553. [
  5554. {
  5555. name: "Main Height",
  5556. height: math.unit(355, "feet"),
  5557. default: true
  5558. },
  5559. {
  5560. name: "Fave. Height",
  5561. height: math.unit(2400, "feet")
  5562. }
  5563. ]
  5564. ))
  5565. characterMakers.push(() => makeCharacter(
  5566. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5567. {
  5568. front: {
  5569. height: math.unit(6, "feet"),
  5570. weight: math.unit(300, "lbs"),
  5571. name: "Front",
  5572. image: {
  5573. source: "./media/characters/appledectomy/front.svg"
  5574. }
  5575. }
  5576. },
  5577. [
  5578. {
  5579. name: "Macro",
  5580. height: math.unit(2500, "feet")
  5581. },
  5582. {
  5583. name: "Megamacro",
  5584. height: math.unit(50, "miles"),
  5585. default: true
  5586. },
  5587. {
  5588. name: "Gigamacro",
  5589. height: math.unit(5000, "miles")
  5590. },
  5591. {
  5592. name: "Teramacro",
  5593. height: math.unit(250000, "miles")
  5594. },
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(6, "feet"),
  5602. weight: math.unit(200, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/vulpes/front.svg",
  5606. extra: 573 / 543,
  5607. bottom: 0.033
  5608. }
  5609. },
  5610. side: {
  5611. height: math.unit(6, "feet"),
  5612. weight: math.unit(200, "lbs"),
  5613. name: "Side",
  5614. image: {
  5615. source: "./media/characters/vulpes/side.svg",
  5616. extra: 577 / 549,
  5617. bottom: 11 / 588
  5618. }
  5619. },
  5620. back: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(200, "lbs"),
  5623. name: "Back",
  5624. image: {
  5625. source: "./media/characters/vulpes/back.svg",
  5626. extra: 573 / 549,
  5627. bottom: 20 / 593
  5628. }
  5629. },
  5630. feet: {
  5631. height: math.unit(1.276, "feet"),
  5632. name: "Feet",
  5633. image: {
  5634. source: "./media/characters/vulpes/feet.svg"
  5635. }
  5636. },
  5637. maw: {
  5638. height: math.unit(1.18, "feet"),
  5639. name: "Maw",
  5640. image: {
  5641. source: "./media/characters/vulpes/maw.svg"
  5642. }
  5643. },
  5644. },
  5645. [
  5646. {
  5647. name: "Micro",
  5648. height: math.unit(2, "inches")
  5649. },
  5650. {
  5651. name: "Normal",
  5652. height: math.unit(6.3, "feet")
  5653. },
  5654. {
  5655. name: "Macro",
  5656. height: math.unit(850, "feet")
  5657. },
  5658. {
  5659. name: "Megamacro",
  5660. height: math.unit(7500, "feet"),
  5661. default: true
  5662. },
  5663. {
  5664. name: "Gigamacro",
  5665. height: math.unit(570000, "miles")
  5666. }
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5671. {
  5672. front: {
  5673. height: math.unit(6, "feet"),
  5674. weight: math.unit(210, "lbs"),
  5675. name: "Front",
  5676. image: {
  5677. source: "./media/characters/rain-fallen/front.svg"
  5678. }
  5679. },
  5680. side: {
  5681. height: math.unit(6, "feet"),
  5682. weight: math.unit(210, "lbs"),
  5683. name: "Side",
  5684. image: {
  5685. source: "./media/characters/rain-fallen/side.svg"
  5686. }
  5687. },
  5688. back: {
  5689. height: math.unit(6, "feet"),
  5690. weight: math.unit(210, "lbs"),
  5691. name: "Back",
  5692. image: {
  5693. source: "./media/characters/rain-fallen/back.svg"
  5694. }
  5695. },
  5696. feral: {
  5697. height: math.unit(9, "feet"),
  5698. weight: math.unit(700, "lbs"),
  5699. name: "Feral",
  5700. image: {
  5701. source: "./media/characters/rain-fallen/feral.svg"
  5702. }
  5703. },
  5704. },
  5705. [
  5706. {
  5707. name: "Meddling with Mortals",
  5708. height: math.unit(8 + 8/12, "feet")
  5709. },
  5710. {
  5711. name: "Normal",
  5712. height: math.unit(5, "meter")
  5713. },
  5714. {
  5715. name: "Macro",
  5716. height: math.unit(150, "meter"),
  5717. default: true
  5718. },
  5719. {
  5720. name: "Megamacro",
  5721. height: math.unit(278e6, "meter")
  5722. },
  5723. {
  5724. name: "Gigamacro",
  5725. height: math.unit(2e9, "meter")
  5726. },
  5727. {
  5728. name: "Teramacro",
  5729. height: math.unit(8e12, "meter")
  5730. },
  5731. {
  5732. name: "Devourer",
  5733. height: math.unit(14, "zettameters")
  5734. },
  5735. {
  5736. name: "Scarlet King",
  5737. height: math.unit(18, "yottameters")
  5738. },
  5739. {
  5740. name: "Void",
  5741. height: math.unit(1e88, "yottameters")
  5742. }
  5743. ]
  5744. ))
  5745. characterMakers.push(() => makeCharacter(
  5746. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5747. {
  5748. standing: {
  5749. height: math.unit(6, "feet"),
  5750. weight: math.unit(180, "lbs"),
  5751. name: "Standing",
  5752. image: {
  5753. source: "./media/characters/zaakira/standing.svg",
  5754. extra: 1599/1504,
  5755. bottom: 39/1638
  5756. }
  5757. },
  5758. laying: {
  5759. height: math.unit(3.3, "feet"),
  5760. weight: math.unit(180, "lbs"),
  5761. name: "Laying",
  5762. image: {
  5763. source: "./media/characters/zaakira/laying.svg"
  5764. }
  5765. },
  5766. },
  5767. [
  5768. {
  5769. name: "Normal",
  5770. height: math.unit(12, "feet")
  5771. },
  5772. {
  5773. name: "Macro",
  5774. height: math.unit(279, "feet"),
  5775. default: true
  5776. }
  5777. ]
  5778. ))
  5779. characterMakers.push(() => makeCharacter(
  5780. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5781. {
  5782. femSfw: {
  5783. height: math.unit(8, "feet"),
  5784. weight: math.unit(350, "lb"),
  5785. name: "Fem",
  5786. image: {
  5787. source: "./media/characters/sigvald/fem-sfw.svg",
  5788. extra: 182 / 164,
  5789. bottom: 8.7 / 190.5
  5790. }
  5791. },
  5792. femNsfw: {
  5793. height: math.unit(8, "feet"),
  5794. weight: math.unit(350, "lb"),
  5795. name: "Fem (NSFW)",
  5796. image: {
  5797. source: "./media/characters/sigvald/fem-nsfw.svg",
  5798. extra: 182 / 164,
  5799. bottom: 8.7 / 190.5
  5800. }
  5801. },
  5802. maleNsfw: {
  5803. height: math.unit(8, "feet"),
  5804. weight: math.unit(350, "lb"),
  5805. name: "Male (NSFW)",
  5806. image: {
  5807. source: "./media/characters/sigvald/male-nsfw.svg",
  5808. extra: 182 / 164,
  5809. bottom: 8.7 / 190.5
  5810. }
  5811. },
  5812. hermNsfw: {
  5813. height: math.unit(8, "feet"),
  5814. weight: math.unit(350, "lb"),
  5815. name: "Herm (NSFW)",
  5816. image: {
  5817. source: "./media/characters/sigvald/herm-nsfw.svg",
  5818. extra: 182 / 164,
  5819. bottom: 8.7 / 190.5
  5820. }
  5821. },
  5822. dick: {
  5823. height: math.unit(2.36, "feet"),
  5824. name: "Dick",
  5825. image: {
  5826. source: "./media/characters/sigvald/dick.svg"
  5827. }
  5828. },
  5829. eye: {
  5830. height: math.unit(0.31, "feet"),
  5831. name: "Eye",
  5832. image: {
  5833. source: "./media/characters/sigvald/eye.svg"
  5834. }
  5835. },
  5836. mouth: {
  5837. height: math.unit(0.92, "feet"),
  5838. name: "Mouth",
  5839. image: {
  5840. source: "./media/characters/sigvald/mouth.svg"
  5841. }
  5842. },
  5843. paws: {
  5844. height: math.unit(2.2, "feet"),
  5845. name: "Paws",
  5846. image: {
  5847. source: "./media/characters/sigvald/paws.svg"
  5848. }
  5849. }
  5850. },
  5851. [
  5852. {
  5853. name: "Normal",
  5854. height: math.unit(8, "feet")
  5855. },
  5856. {
  5857. name: "Large",
  5858. height: math.unit(12, "feet")
  5859. },
  5860. {
  5861. name: "Larger",
  5862. height: math.unit(20, "feet")
  5863. },
  5864. {
  5865. name: "Macro",
  5866. height: math.unit(150, "feet")
  5867. },
  5868. {
  5869. name: "Macro+",
  5870. height: math.unit(200, "feet"),
  5871. default: true
  5872. },
  5873. ]
  5874. ))
  5875. characterMakers.push(() => makeCharacter(
  5876. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5877. {
  5878. side: {
  5879. height: math.unit(12, "feet"),
  5880. weight: math.unit(2000, "kg"),
  5881. name: "Side",
  5882. image: {
  5883. source: "./media/characters/scott/side.svg",
  5884. extra: 754 / 724,
  5885. bottom: 0.069
  5886. }
  5887. },
  5888. upright: {
  5889. height: math.unit(12, "feet"),
  5890. weight: math.unit(2000, "kg"),
  5891. name: "Upright",
  5892. image: {
  5893. source: "./media/characters/scott/upright.svg",
  5894. extra: 3881 / 3722,
  5895. bottom: 0.05
  5896. }
  5897. },
  5898. },
  5899. [
  5900. {
  5901. name: "Normal",
  5902. height: math.unit(12, "feet"),
  5903. default: true
  5904. },
  5905. ]
  5906. ))
  5907. characterMakers.push(() => makeCharacter(
  5908. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5909. {
  5910. side: {
  5911. height: math.unit(8, "meters"),
  5912. weight: math.unit(84755, "lbs"),
  5913. name: "Side",
  5914. image: {
  5915. source: "./media/characters/tobias/side.svg",
  5916. extra: 1474 / 1096,
  5917. bottom: 38.9 / 1513.1235
  5918. }
  5919. },
  5920. },
  5921. [
  5922. {
  5923. name: "Normal",
  5924. height: math.unit(8, "meters"),
  5925. default: true
  5926. },
  5927. ]
  5928. ))
  5929. characterMakers.push(() => makeCharacter(
  5930. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5931. {
  5932. front: {
  5933. height: math.unit(5.5, "feet"),
  5934. weight: math.unit(400, "lbs"),
  5935. name: "Front",
  5936. image: {
  5937. source: "./media/characters/kieran/front.svg",
  5938. extra: 2694 / 2364,
  5939. bottom: 217 / 2908
  5940. }
  5941. },
  5942. side: {
  5943. height: math.unit(5.5, "feet"),
  5944. weight: math.unit(400, "lbs"),
  5945. name: "Side",
  5946. image: {
  5947. source: "./media/characters/kieran/side.svg",
  5948. extra: 875 / 777,
  5949. bottom: 84.6 / 959
  5950. }
  5951. },
  5952. },
  5953. [
  5954. {
  5955. name: "Normal",
  5956. height: math.unit(5.5, "feet"),
  5957. default: true
  5958. },
  5959. ]
  5960. ))
  5961. characterMakers.push(() => makeCharacter(
  5962. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5963. {
  5964. side: {
  5965. height: math.unit(2, "meters"),
  5966. weight: math.unit(70, "kg"),
  5967. name: "Side",
  5968. image: {
  5969. source: "./media/characters/sanya/side.svg",
  5970. bottom: 0.02,
  5971. extra: 1.02
  5972. }
  5973. },
  5974. },
  5975. [
  5976. {
  5977. name: "Small",
  5978. height: math.unit(2, "meters")
  5979. },
  5980. {
  5981. name: "Normal",
  5982. height: math.unit(3, "meters")
  5983. },
  5984. {
  5985. name: "Macro",
  5986. height: math.unit(16, "meters"),
  5987. default: true
  5988. },
  5989. ]
  5990. ))
  5991. characterMakers.push(() => makeCharacter(
  5992. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5993. {
  5994. front: {
  5995. height: math.unit(2, "meters"),
  5996. weight: math.unit(120, "kg"),
  5997. name: "Front",
  5998. image: {
  5999. source: "./media/characters/miranda/front.svg",
  6000. extra: 195 / 185,
  6001. bottom: 10.9 / 206.5
  6002. }
  6003. },
  6004. back: {
  6005. height: math.unit(2, "meters"),
  6006. weight: math.unit(120, "kg"),
  6007. name: "Back",
  6008. image: {
  6009. source: "./media/characters/miranda/back.svg",
  6010. extra: 201 / 193,
  6011. bottom: 2.3 / 203.7
  6012. }
  6013. },
  6014. },
  6015. [
  6016. {
  6017. name: "Normal",
  6018. height: math.unit(10, "feet"),
  6019. default: true
  6020. }
  6021. ]
  6022. ))
  6023. characterMakers.push(() => makeCharacter(
  6024. { name: "James", species: ["deer"], tags: ["anthro"] },
  6025. {
  6026. side: {
  6027. height: math.unit(2, "meters"),
  6028. weight: math.unit(100, "kg"),
  6029. name: "Front",
  6030. image: {
  6031. source: "./media/characters/james/front.svg",
  6032. extra: 10 / 8.5
  6033. }
  6034. },
  6035. },
  6036. [
  6037. {
  6038. name: "Normal",
  6039. height: math.unit(8.5, "feet"),
  6040. default: true
  6041. }
  6042. ]
  6043. ))
  6044. characterMakers.push(() => makeCharacter(
  6045. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6046. {
  6047. side: {
  6048. height: math.unit(9.5, "feet"),
  6049. weight: math.unit(2500, "lbs"),
  6050. name: "Side",
  6051. image: {
  6052. source: "./media/characters/heather/side.svg"
  6053. }
  6054. },
  6055. },
  6056. [
  6057. {
  6058. name: "Normal",
  6059. height: math.unit(9.5, "feet"),
  6060. default: true
  6061. }
  6062. ]
  6063. ))
  6064. characterMakers.push(() => makeCharacter(
  6065. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6066. {
  6067. side: {
  6068. height: math.unit(6.5, "feet"),
  6069. weight: math.unit(400, "lbs"),
  6070. name: "Side",
  6071. image: {
  6072. source: "./media/characters/lukas/side.svg",
  6073. extra: 7.25 / 6.5
  6074. }
  6075. },
  6076. },
  6077. [
  6078. {
  6079. name: "Normal",
  6080. height: math.unit(6.5, "feet"),
  6081. default: true
  6082. }
  6083. ]
  6084. ))
  6085. characterMakers.push(() => makeCharacter(
  6086. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6087. {
  6088. side: {
  6089. height: math.unit(5, "feet"),
  6090. weight: math.unit(3000, "lbs"),
  6091. name: "Side",
  6092. image: {
  6093. source: "./media/characters/louise/side.svg"
  6094. }
  6095. },
  6096. },
  6097. [
  6098. {
  6099. name: "Normal",
  6100. height: math.unit(5, "feet"),
  6101. default: true
  6102. }
  6103. ]
  6104. ))
  6105. characterMakers.push(() => makeCharacter(
  6106. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6107. {
  6108. side: {
  6109. height: math.unit(6, "feet"),
  6110. weight: math.unit(150, "lbs"),
  6111. name: "Side",
  6112. image: {
  6113. source: "./media/characters/ramona/side.svg",
  6114. extra: 871/854,
  6115. bottom: 41/912
  6116. }
  6117. },
  6118. },
  6119. [
  6120. {
  6121. name: "Normal",
  6122. height: math.unit(6 + 4/12, "feet")
  6123. },
  6124. {
  6125. name: "Minimacro",
  6126. height: math.unit(5.3, "meters"),
  6127. default: true
  6128. },
  6129. {
  6130. name: "Macro",
  6131. height: math.unit(20, "stories")
  6132. },
  6133. {
  6134. name: "Macro+",
  6135. height: math.unit(50, "stories")
  6136. },
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6141. {
  6142. standing: {
  6143. height: math.unit(5.75, "feet"),
  6144. weight: math.unit(160, "lbs"),
  6145. name: "Standing",
  6146. image: {
  6147. source: "./media/characters/deerpuff/standing.svg",
  6148. extra: 682 / 624
  6149. }
  6150. },
  6151. sitting: {
  6152. height: math.unit(5.75 / 1.79, "feet"),
  6153. weight: math.unit(160, "lbs"),
  6154. name: "Sitting",
  6155. image: {
  6156. source: "./media/characters/deerpuff/sitting.svg",
  6157. bottom: 44 / 400,
  6158. extra: 1
  6159. }
  6160. },
  6161. taurLaying: {
  6162. height: math.unit(6, "feet"),
  6163. weight: math.unit(400, "lbs"),
  6164. name: "Taur (Laying)",
  6165. image: {
  6166. source: "./media/characters/deerpuff/taur-laying.svg"
  6167. }
  6168. },
  6169. },
  6170. [
  6171. {
  6172. name: "Puffball",
  6173. height: math.unit(6, "inches")
  6174. },
  6175. {
  6176. name: "Normalpuff",
  6177. height: math.unit(5.75, "feet")
  6178. },
  6179. {
  6180. name: "Macropuff",
  6181. height: math.unit(1500, "feet"),
  6182. default: true
  6183. },
  6184. {
  6185. name: "Megapuff",
  6186. height: math.unit(500, "miles")
  6187. },
  6188. {
  6189. name: "Gigapuff",
  6190. height: math.unit(250000, "miles")
  6191. },
  6192. {
  6193. name: "Omegapuff",
  6194. height: math.unit(1000, "lightyears")
  6195. },
  6196. ]
  6197. ))
  6198. characterMakers.push(() => makeCharacter(
  6199. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6200. {
  6201. stomping: {
  6202. height: math.unit(6, "feet"),
  6203. weight: math.unit(170, "lbs"),
  6204. name: "Stomping",
  6205. image: {
  6206. source: "./media/characters/vivian/stomping.svg"
  6207. }
  6208. },
  6209. sitting: {
  6210. height: math.unit(6 / 1.75, "feet"),
  6211. weight: math.unit(170, "lbs"),
  6212. name: "Sitting",
  6213. image: {
  6214. source: "./media/characters/vivian/sitting.svg",
  6215. bottom: 1 / 6.4,
  6216. extra: 1,
  6217. }
  6218. },
  6219. },
  6220. [
  6221. {
  6222. name: "Normal",
  6223. height: math.unit(7, "feet"),
  6224. default: true
  6225. },
  6226. {
  6227. name: "Macro",
  6228. height: math.unit(10, "stories")
  6229. },
  6230. {
  6231. name: "Macro+",
  6232. height: math.unit(30, "stories")
  6233. },
  6234. {
  6235. name: "Megamacro",
  6236. height: math.unit(10, "miles")
  6237. },
  6238. {
  6239. name: "Megamacro+",
  6240. height: math.unit(2750000, "meters")
  6241. },
  6242. ]
  6243. ))
  6244. characterMakers.push(() => makeCharacter(
  6245. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6246. {
  6247. front: {
  6248. height: math.unit(6, "feet"),
  6249. weight: math.unit(160, "lbs"),
  6250. name: "Front",
  6251. image: {
  6252. source: "./media/characters/prince/front.svg",
  6253. extra: 1938/1682,
  6254. bottom: 45/1983
  6255. }
  6256. },
  6257. back: {
  6258. height: math.unit(6, "feet"),
  6259. weight: math.unit(160, "lbs"),
  6260. name: "Back",
  6261. image: {
  6262. source: "./media/characters/prince/back.svg",
  6263. extra: 1955/1726,
  6264. bottom: 6/1961
  6265. }
  6266. },
  6267. },
  6268. [
  6269. {
  6270. name: "Normal",
  6271. height: math.unit(7.75, "feet"),
  6272. default: true
  6273. },
  6274. {
  6275. name: "Not cute",
  6276. height: math.unit(17, "feet")
  6277. },
  6278. {
  6279. name: "I said NOT",
  6280. height: math.unit(91, "feet")
  6281. },
  6282. {
  6283. name: "Please stop",
  6284. height: math.unit(560, "feet")
  6285. },
  6286. {
  6287. name: "What have you done",
  6288. height: math.unit(2200, "feet")
  6289. },
  6290. {
  6291. name: "Deer God",
  6292. height: math.unit(3.6, "miles")
  6293. },
  6294. ]
  6295. ))
  6296. characterMakers.push(() => makeCharacter(
  6297. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6298. {
  6299. standing: {
  6300. height: math.unit(6, "feet"),
  6301. weight: math.unit(300, "lbs"),
  6302. name: "Standing",
  6303. image: {
  6304. source: "./media/characters/psymon/standing.svg",
  6305. extra: 1888 / 1810,
  6306. bottom: 0.05
  6307. }
  6308. },
  6309. slithering: {
  6310. height: math.unit(6, "feet"),
  6311. weight: math.unit(300, "lbs"),
  6312. name: "Slithering",
  6313. image: {
  6314. source: "./media/characters/psymon/slithering.svg",
  6315. extra: 1330 / 1224
  6316. }
  6317. },
  6318. slitheringAlt: {
  6319. height: math.unit(6, "feet"),
  6320. weight: math.unit(300, "lbs"),
  6321. name: "Slithering (Alt)",
  6322. image: {
  6323. source: "./media/characters/psymon/slithering-alt.svg",
  6324. extra: 1330 / 1224
  6325. }
  6326. },
  6327. },
  6328. [
  6329. {
  6330. name: "Normal",
  6331. height: math.unit(11.25, "feet"),
  6332. default: true
  6333. },
  6334. {
  6335. name: "Large",
  6336. height: math.unit(27, "feet")
  6337. },
  6338. {
  6339. name: "Giant",
  6340. height: math.unit(87, "feet")
  6341. },
  6342. {
  6343. name: "Macro",
  6344. height: math.unit(365, "feet")
  6345. },
  6346. {
  6347. name: "Megamacro",
  6348. height: math.unit(3, "miles")
  6349. },
  6350. {
  6351. name: "World Serpent",
  6352. height: math.unit(8000, "miles")
  6353. },
  6354. ]
  6355. ))
  6356. characterMakers.push(() => makeCharacter(
  6357. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6358. {
  6359. front: {
  6360. height: math.unit(6, "feet"),
  6361. weight: math.unit(180, "lbs"),
  6362. name: "Front",
  6363. image: {
  6364. source: "./media/characters/daimos/front.svg",
  6365. extra: 4160 / 3897,
  6366. bottom: 0.021
  6367. }
  6368. }
  6369. },
  6370. [
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(8, "feet"),
  6374. default: true
  6375. },
  6376. {
  6377. name: "Big Dog",
  6378. height: math.unit(22, "feet")
  6379. },
  6380. {
  6381. name: "Macro",
  6382. height: math.unit(127, "feet")
  6383. },
  6384. {
  6385. name: "Megamacro",
  6386. height: math.unit(3600, "feet")
  6387. },
  6388. ]
  6389. ))
  6390. characterMakers.push(() => makeCharacter(
  6391. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6392. {
  6393. side: {
  6394. height: math.unit(6, "feet"),
  6395. weight: math.unit(180, "lbs"),
  6396. name: "Side",
  6397. image: {
  6398. source: "./media/characters/blake/side.svg",
  6399. extra: 1212 / 1120,
  6400. bottom: 0.05
  6401. }
  6402. },
  6403. crouched: {
  6404. height: math.unit(6 * 0.57, "feet"),
  6405. weight: math.unit(180, "lbs"),
  6406. name: "Crouched",
  6407. image: {
  6408. source: "./media/characters/blake/crouched.svg",
  6409. extra: 840 / 587,
  6410. bottom: 0.04
  6411. }
  6412. },
  6413. bent: {
  6414. height: math.unit(6 * 0.75, "feet"),
  6415. weight: math.unit(180, "lbs"),
  6416. name: "Bent",
  6417. image: {
  6418. source: "./media/characters/blake/bent.svg",
  6419. extra: 592 / 544,
  6420. bottom: 0.035
  6421. }
  6422. },
  6423. },
  6424. [
  6425. {
  6426. name: "Normal",
  6427. height: math.unit(8 + 1 / 6, "feet"),
  6428. default: true
  6429. },
  6430. {
  6431. name: "Big Backside",
  6432. height: math.unit(37, "feet")
  6433. },
  6434. {
  6435. name: "Subway Shredder",
  6436. height: math.unit(72, "feet")
  6437. },
  6438. {
  6439. name: "City Carver",
  6440. height: math.unit(1675, "feet")
  6441. },
  6442. {
  6443. name: "Tectonic Tweaker",
  6444. height: math.unit(2300, "miles")
  6445. },
  6446. ]
  6447. ))
  6448. characterMakers.push(() => makeCharacter(
  6449. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6450. {
  6451. front: {
  6452. height: math.unit(6, "feet"),
  6453. weight: math.unit(180, "lbs"),
  6454. name: "Front",
  6455. image: {
  6456. source: "./media/characters/guisetto/front.svg",
  6457. extra: 856 / 817,
  6458. bottom: 0.06
  6459. }
  6460. },
  6461. airborne: {
  6462. height: math.unit(6, "feet"),
  6463. weight: math.unit(180, "lbs"),
  6464. name: "Airborne",
  6465. image: {
  6466. source: "./media/characters/guisetto/airborne.svg",
  6467. extra: 584 / 525
  6468. }
  6469. },
  6470. },
  6471. [
  6472. {
  6473. name: "Normal",
  6474. height: math.unit(10 + 11 / 12, "feet"),
  6475. default: true
  6476. },
  6477. {
  6478. name: "Large",
  6479. height: math.unit(35, "feet")
  6480. },
  6481. {
  6482. name: "Macro",
  6483. height: math.unit(475, "feet")
  6484. },
  6485. ]
  6486. ))
  6487. characterMakers.push(() => makeCharacter(
  6488. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6489. {
  6490. front: {
  6491. height: math.unit(6, "feet"),
  6492. weight: math.unit(180, "lbs"),
  6493. name: "Front",
  6494. image: {
  6495. source: "./media/characters/luxor/front.svg",
  6496. extra: 2940 / 2152
  6497. }
  6498. },
  6499. back: {
  6500. height: math.unit(6, "feet"),
  6501. weight: math.unit(180, "lbs"),
  6502. name: "Back",
  6503. image: {
  6504. source: "./media/characters/luxor/back.svg",
  6505. extra: 1083 / 960
  6506. }
  6507. },
  6508. },
  6509. [
  6510. {
  6511. name: "Normal",
  6512. height: math.unit(5 + 5 / 6, "feet"),
  6513. default: true
  6514. },
  6515. {
  6516. name: "Lamp",
  6517. height: math.unit(50, "feet")
  6518. },
  6519. {
  6520. name: "Lämp",
  6521. height: math.unit(300, "feet")
  6522. },
  6523. {
  6524. name: "The sun is a lamp",
  6525. height: math.unit(250000, "miles")
  6526. },
  6527. ]
  6528. ))
  6529. characterMakers.push(() => makeCharacter(
  6530. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6531. {
  6532. front: {
  6533. height: math.unit(6, "feet"),
  6534. weight: math.unit(50, "lbs"),
  6535. name: "Front",
  6536. image: {
  6537. source: "./media/characters/huoyan/front.svg"
  6538. }
  6539. },
  6540. side: {
  6541. height: math.unit(6, "feet"),
  6542. weight: math.unit(180, "lbs"),
  6543. name: "Side",
  6544. image: {
  6545. source: "./media/characters/huoyan/side.svg"
  6546. }
  6547. },
  6548. },
  6549. [
  6550. {
  6551. name: "Chef",
  6552. height: math.unit(9, "feet")
  6553. },
  6554. {
  6555. name: "Normal",
  6556. height: math.unit(65, "feet"),
  6557. default: true
  6558. },
  6559. {
  6560. name: "Macro",
  6561. height: math.unit(780, "feet")
  6562. },
  6563. {
  6564. name: "Flaming Mountain",
  6565. height: math.unit(4.8, "miles")
  6566. },
  6567. {
  6568. name: "Celestial",
  6569. height: math.unit(765000, "miles")
  6570. },
  6571. ]
  6572. ))
  6573. characterMakers.push(() => makeCharacter(
  6574. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6575. {
  6576. front: {
  6577. height: math.unit(5 + 3 / 4, "feet"),
  6578. weight: math.unit(120, "lbs"),
  6579. name: "Front",
  6580. image: {
  6581. source: "./media/characters/tails/front.svg"
  6582. }
  6583. }
  6584. },
  6585. [
  6586. {
  6587. name: "Normal",
  6588. height: math.unit(5 + 3 / 4, "feet"),
  6589. default: true
  6590. }
  6591. ]
  6592. ))
  6593. characterMakers.push(() => makeCharacter(
  6594. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6595. {
  6596. front: {
  6597. height: math.unit(4, "feet"),
  6598. weight: math.unit(50, "lbs"),
  6599. name: "Front",
  6600. image: {
  6601. source: "./media/characters/rainy/front.svg"
  6602. }
  6603. }
  6604. },
  6605. [
  6606. {
  6607. name: "Macro",
  6608. height: math.unit(800, "feet"),
  6609. default: true
  6610. }
  6611. ]
  6612. ))
  6613. characterMakers.push(() => makeCharacter(
  6614. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6615. {
  6616. front: {
  6617. height: math.unit(6, "feet"),
  6618. weight: math.unit(150, "lbs"),
  6619. name: "Front",
  6620. image: {
  6621. source: "./media/characters/rainier/front.svg"
  6622. }
  6623. }
  6624. },
  6625. [
  6626. {
  6627. name: "Micro",
  6628. height: math.unit(2, "mm"),
  6629. default: true
  6630. }
  6631. ]
  6632. ))
  6633. characterMakers.push(() => makeCharacter(
  6634. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6635. {
  6636. front: {
  6637. height: math.unit(8 + 4/12, "feet"),
  6638. weight: math.unit(450, "kilograms"),
  6639. volume: math.unit(5, "cups"),
  6640. name: "Front",
  6641. image: {
  6642. source: "./media/characters/andy-renard/front.svg",
  6643. extra: 1839/1726,
  6644. bottom: 134/1973
  6645. }
  6646. },
  6647. back: {
  6648. height: math.unit(8 + 4/12, "feet"),
  6649. weight: math.unit(450, "kilograms"),
  6650. volume: math.unit(5, "cups"),
  6651. name: "Back",
  6652. image: {
  6653. source: "./media/characters/andy-renard/back.svg",
  6654. extra: 1838/1710,
  6655. bottom: 105/1943
  6656. }
  6657. },
  6658. },
  6659. [
  6660. {
  6661. name: "Tall",
  6662. height: math.unit(8 + 4/12, "feet")
  6663. },
  6664. {
  6665. name: "Mini Macro",
  6666. height: math.unit(15, "feet"),
  6667. default: true
  6668. },
  6669. {
  6670. name: "Macro",
  6671. height: math.unit(100, "feet")
  6672. },
  6673. {
  6674. name: "Mega Macro",
  6675. height: math.unit(1000, "feet")
  6676. },
  6677. {
  6678. name: "Giga Macro",
  6679. height: math.unit(10, "miles")
  6680. },
  6681. {
  6682. name: "God Macro",
  6683. height: math.unit(1, "multiverse")
  6684. },
  6685. ]
  6686. ))
  6687. characterMakers.push(() => makeCharacter(
  6688. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6689. {
  6690. front: {
  6691. height: math.unit(6, "feet"),
  6692. weight: math.unit(210, "lbs"),
  6693. name: "Front",
  6694. image: {
  6695. source: "./media/characters/cimmaron/front-sfw.svg",
  6696. extra: 701 / 676,
  6697. bottom: 0.046
  6698. }
  6699. },
  6700. back: {
  6701. height: math.unit(6, "feet"),
  6702. weight: math.unit(210, "lbs"),
  6703. name: "Back",
  6704. image: {
  6705. source: "./media/characters/cimmaron/back-sfw.svg",
  6706. extra: 701 / 676,
  6707. bottom: 0.046
  6708. }
  6709. },
  6710. frontNsfw: {
  6711. height: math.unit(6, "feet"),
  6712. weight: math.unit(210, "lbs"),
  6713. name: "Front (NSFW)",
  6714. image: {
  6715. source: "./media/characters/cimmaron/front-nsfw.svg",
  6716. extra: 701 / 676,
  6717. bottom: 0.046
  6718. }
  6719. },
  6720. backNsfw: {
  6721. height: math.unit(6, "feet"),
  6722. weight: math.unit(210, "lbs"),
  6723. name: "Back (NSFW)",
  6724. image: {
  6725. source: "./media/characters/cimmaron/back-nsfw.svg",
  6726. extra: 701 / 676,
  6727. bottom: 0.046
  6728. }
  6729. },
  6730. dick: {
  6731. height: math.unit(1.714, "feet"),
  6732. name: "Dick",
  6733. image: {
  6734. source: "./media/characters/cimmaron/dick.svg"
  6735. }
  6736. },
  6737. },
  6738. [
  6739. {
  6740. name: "Normal",
  6741. height: math.unit(6, "feet"),
  6742. default: true
  6743. },
  6744. {
  6745. name: "Macro Mayor",
  6746. height: math.unit(350, "meters")
  6747. },
  6748. ]
  6749. ))
  6750. characterMakers.push(() => makeCharacter(
  6751. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6752. {
  6753. front: {
  6754. height: math.unit(6, "feet"),
  6755. weight: math.unit(200, "lbs"),
  6756. name: "Front",
  6757. image: {
  6758. source: "./media/characters/akari/front.svg",
  6759. extra: 962 / 901,
  6760. bottom: 0.04
  6761. }
  6762. }
  6763. },
  6764. [
  6765. {
  6766. name: "Micro",
  6767. height: math.unit(5, "inches"),
  6768. default: true
  6769. },
  6770. {
  6771. name: "Normal",
  6772. height: math.unit(7, "feet")
  6773. },
  6774. ]
  6775. ))
  6776. characterMakers.push(() => makeCharacter(
  6777. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6778. {
  6779. front: {
  6780. height: math.unit(6, "feet"),
  6781. weight: math.unit(140, "lbs"),
  6782. name: "Front",
  6783. image: {
  6784. source: "./media/characters/cynosura/front.svg",
  6785. extra: 437/410,
  6786. bottom: 9/446
  6787. }
  6788. },
  6789. back: {
  6790. height: math.unit(6, "feet"),
  6791. weight: math.unit(140, "lbs"),
  6792. name: "Back",
  6793. image: {
  6794. source: "./media/characters/cynosura/back.svg",
  6795. extra: 1304/1160,
  6796. bottom: 71/1375
  6797. }
  6798. },
  6799. },
  6800. [
  6801. {
  6802. name: "Micro",
  6803. height: math.unit(4, "inches")
  6804. },
  6805. {
  6806. name: "Normal",
  6807. height: math.unit(5.75, "feet"),
  6808. default: true
  6809. },
  6810. {
  6811. name: "Tall",
  6812. height: math.unit(10, "feet")
  6813. },
  6814. {
  6815. name: "Big",
  6816. height: math.unit(20, "feet")
  6817. },
  6818. {
  6819. name: "Macro",
  6820. height: math.unit(50, "feet")
  6821. },
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(13 + 2/12, "feet"),
  6829. weight: math.unit(800, "kg"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/gin/front.svg",
  6833. extra: 1312/1191,
  6834. bottom: 45/1357
  6835. }
  6836. },
  6837. mouth: {
  6838. height: math.unit(2.39 * 1.8, "feet"),
  6839. name: "Mouth",
  6840. image: {
  6841. source: "./media/characters/gin/mouth.svg"
  6842. }
  6843. },
  6844. hand: {
  6845. height: math.unit(1.57 * 2.19, "feet"),
  6846. name: "Hand",
  6847. image: {
  6848. source: "./media/characters/gin/hand.svg"
  6849. }
  6850. },
  6851. foot: {
  6852. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6853. name: "Foot",
  6854. image: {
  6855. source: "./media/characters/gin/foot.svg"
  6856. }
  6857. },
  6858. sole: {
  6859. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6860. name: "Sole",
  6861. image: {
  6862. source: "./media/characters/gin/sole.svg"
  6863. }
  6864. },
  6865. },
  6866. [
  6867. {
  6868. name: "Very Small",
  6869. height: math.unit(13 + 2 / 12, "feet")
  6870. },
  6871. {
  6872. name: "Micro",
  6873. height: math.unit(600, "miles")
  6874. },
  6875. {
  6876. name: "Regular",
  6877. height: math.unit(20, "earths"),
  6878. default: true
  6879. },
  6880. {
  6881. name: "Macro",
  6882. height: math.unit(2.2, "solarradii")
  6883. },
  6884. {
  6885. name: "Teramacro",
  6886. height: math.unit(1.2, "galaxies")
  6887. },
  6888. {
  6889. name: "Omegamacro",
  6890. height: math.unit(200, "universes")
  6891. },
  6892. ]
  6893. ))
  6894. characterMakers.push(() => makeCharacter(
  6895. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6896. {
  6897. front: {
  6898. height: math.unit(6 + 1 / 6, "feet"),
  6899. weight: math.unit(178, "lbs"),
  6900. name: "Front",
  6901. image: {
  6902. source: "./media/characters/guy/front.svg"
  6903. }
  6904. }
  6905. },
  6906. [
  6907. {
  6908. name: "Normal",
  6909. height: math.unit(6 + 1 / 6, "feet"),
  6910. default: true
  6911. },
  6912. {
  6913. name: "Large",
  6914. height: math.unit(25 + 7 / 12, "feet")
  6915. },
  6916. {
  6917. name: "Macro",
  6918. height: math.unit(60 + 9 / 12, "feet")
  6919. },
  6920. {
  6921. name: "Macro+",
  6922. height: math.unit(246, "feet")
  6923. },
  6924. {
  6925. name: "Macro++",
  6926. height: math.unit(878, "feet")
  6927. }
  6928. ]
  6929. ))
  6930. characterMakers.push(() => makeCharacter(
  6931. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6932. {
  6933. front: {
  6934. height: math.unit(9, "feet"),
  6935. weight: math.unit(800, "lbs"),
  6936. name: "Front",
  6937. image: {
  6938. source: "./media/characters/tiberius/front.svg",
  6939. extra: 2295 / 2071
  6940. }
  6941. },
  6942. back: {
  6943. height: math.unit(9, "feet"),
  6944. weight: math.unit(800, "lbs"),
  6945. name: "Back",
  6946. image: {
  6947. source: "./media/characters/tiberius/back.svg",
  6948. extra: 2373 / 2160
  6949. }
  6950. },
  6951. },
  6952. [
  6953. {
  6954. name: "Normal",
  6955. height: math.unit(9, "feet"),
  6956. default: true
  6957. }
  6958. ]
  6959. ))
  6960. characterMakers.push(() => makeCharacter(
  6961. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6962. {
  6963. front: {
  6964. height: math.unit(6, "feet"),
  6965. weight: math.unit(600, "lbs"),
  6966. name: "Front",
  6967. image: {
  6968. source: "./media/characters/surgo/front.svg",
  6969. extra: 3591 / 2227
  6970. }
  6971. },
  6972. back: {
  6973. height: math.unit(6, "feet"),
  6974. weight: math.unit(600, "lbs"),
  6975. name: "Back",
  6976. image: {
  6977. source: "./media/characters/surgo/back.svg",
  6978. extra: 3557 / 2228
  6979. }
  6980. },
  6981. laying: {
  6982. height: math.unit(6 * 0.85, "feet"),
  6983. weight: math.unit(600, "lbs"),
  6984. name: "Laying",
  6985. image: {
  6986. source: "./media/characters/surgo/laying.svg"
  6987. }
  6988. },
  6989. },
  6990. [
  6991. {
  6992. name: "Normal",
  6993. height: math.unit(6, "feet"),
  6994. default: true
  6995. }
  6996. ]
  6997. ))
  6998. characterMakers.push(() => makeCharacter(
  6999. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7000. {
  7001. side: {
  7002. height: math.unit(6, "feet"),
  7003. weight: math.unit(150, "lbs"),
  7004. name: "Side",
  7005. image: {
  7006. source: "./media/characters/cibus/side.svg",
  7007. extra: 800 / 400
  7008. }
  7009. },
  7010. },
  7011. [
  7012. {
  7013. name: "Normal",
  7014. height: math.unit(6, "feet"),
  7015. default: true
  7016. }
  7017. ]
  7018. ))
  7019. characterMakers.push(() => makeCharacter(
  7020. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7021. {
  7022. front: {
  7023. height: math.unit(6, "feet"),
  7024. weight: math.unit(240, "lbs"),
  7025. name: "Front",
  7026. image: {
  7027. source: "./media/characters/nibbles/front.svg"
  7028. }
  7029. },
  7030. side: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(240, "lbs"),
  7033. name: "Side",
  7034. image: {
  7035. source: "./media/characters/nibbles/side.svg"
  7036. }
  7037. },
  7038. },
  7039. [
  7040. {
  7041. name: "Normal",
  7042. height: math.unit(9, "feet"),
  7043. default: true
  7044. }
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7049. {
  7050. side: {
  7051. height: math.unit(5 + 1 / 6, "feet"),
  7052. weight: math.unit(130, "lbs"),
  7053. name: "Side",
  7054. image: {
  7055. source: "./media/characters/rikky/side.svg",
  7056. extra: 851 / 801
  7057. }
  7058. },
  7059. },
  7060. [
  7061. {
  7062. name: "Normal",
  7063. height: math.unit(5 + 1 / 6, "feet")
  7064. },
  7065. {
  7066. name: "Macro",
  7067. height: math.unit(152, "feet"),
  7068. default: true
  7069. },
  7070. {
  7071. name: "Megamacro",
  7072. height: math.unit(7, "miles")
  7073. }
  7074. ]
  7075. ))
  7076. characterMakers.push(() => makeCharacter(
  7077. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7078. {
  7079. side: {
  7080. height: math.unit(370, "cm"),
  7081. weight: math.unit(350, "lbs"),
  7082. name: "Side",
  7083. image: {
  7084. source: "./media/characters/malfressa/side.svg"
  7085. }
  7086. },
  7087. walking: {
  7088. height: math.unit(370, "cm"),
  7089. weight: math.unit(350, "lbs"),
  7090. name: "Walking",
  7091. image: {
  7092. source: "./media/characters/malfressa/walking.svg"
  7093. }
  7094. },
  7095. feral: {
  7096. height: math.unit(2500, "cm"),
  7097. weight: math.unit(100000, "lbs"),
  7098. name: "Feral",
  7099. image: {
  7100. source: "./media/characters/malfressa/feral.svg",
  7101. extra: 2108 / 837,
  7102. bottom: 0.02
  7103. }
  7104. },
  7105. },
  7106. [
  7107. {
  7108. name: "Normal",
  7109. height: math.unit(370, "cm")
  7110. },
  7111. {
  7112. name: "Macro",
  7113. height: math.unit(300, "meters"),
  7114. default: true
  7115. }
  7116. ]
  7117. ))
  7118. characterMakers.push(() => makeCharacter(
  7119. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7120. {
  7121. front: {
  7122. height: math.unit(6, "feet"),
  7123. weight: math.unit(60, "kg"),
  7124. name: "Front",
  7125. image: {
  7126. source: "./media/characters/jaro/front.svg",
  7127. extra: 845/817,
  7128. bottom: 45/890
  7129. }
  7130. },
  7131. back: {
  7132. height: math.unit(6, "feet"),
  7133. weight: math.unit(60, "kg"),
  7134. name: "Back",
  7135. image: {
  7136. source: "./media/characters/jaro/back.svg",
  7137. extra: 847/817,
  7138. bottom: 34/881
  7139. }
  7140. },
  7141. },
  7142. [
  7143. {
  7144. name: "Micro",
  7145. height: math.unit(7, "inches")
  7146. },
  7147. {
  7148. name: "Normal",
  7149. height: math.unit(5.5, "feet"),
  7150. default: true
  7151. },
  7152. {
  7153. name: "Minimacro",
  7154. height: math.unit(20, "feet")
  7155. },
  7156. {
  7157. name: "Macro",
  7158. height: math.unit(200, "meters")
  7159. }
  7160. ]
  7161. ))
  7162. characterMakers.push(() => makeCharacter(
  7163. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7164. {
  7165. front: {
  7166. height: math.unit(6, "feet"),
  7167. weight: math.unit(195, "lb"),
  7168. name: "Front",
  7169. image: {
  7170. source: "./media/characters/rogue/front.svg"
  7171. }
  7172. },
  7173. },
  7174. [
  7175. {
  7176. name: "Macro",
  7177. height: math.unit(90, "feet"),
  7178. default: true
  7179. },
  7180. ]
  7181. ))
  7182. characterMakers.push(() => makeCharacter(
  7183. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7184. {
  7185. standing: {
  7186. height: math.unit(5 + 8 / 12, "feet"),
  7187. weight: math.unit(140, "lb"),
  7188. name: "Standing",
  7189. image: {
  7190. source: "./media/characters/piper/standing.svg",
  7191. extra: 1440/1284,
  7192. bottom: 66/1506
  7193. }
  7194. },
  7195. running: {
  7196. height: math.unit(5 + 8 / 12, "feet"),
  7197. weight: math.unit(140, "lb"),
  7198. name: "Running",
  7199. image: {
  7200. source: "./media/characters/piper/running.svg",
  7201. extra: 3948/3655,
  7202. bottom: 0/3948
  7203. }
  7204. },
  7205. sole: {
  7206. height: math.unit(0.81, "feet"),
  7207. weight: math.unit(2, "kg"),
  7208. name: "Sole",
  7209. image: {
  7210. source: "./media/characters/piper/sole.svg"
  7211. }
  7212. },
  7213. nipple: {
  7214. height: math.unit(0.25, "feet"),
  7215. weight: math.unit(1.5, "lb"),
  7216. name: "Nipple",
  7217. image: {
  7218. source: "./media/characters/piper/nipple.svg"
  7219. }
  7220. },
  7221. head: {
  7222. height: math.unit(1.1, "feet"),
  7223. name: "Head",
  7224. image: {
  7225. source: "./media/characters/piper/head.svg"
  7226. }
  7227. },
  7228. },
  7229. [
  7230. {
  7231. name: "Micro",
  7232. height: math.unit(2, "inches")
  7233. },
  7234. {
  7235. name: "Normal",
  7236. height: math.unit(5 + 8 / 12, "feet")
  7237. },
  7238. {
  7239. name: "Macro",
  7240. height: math.unit(250, "feet"),
  7241. default: true
  7242. },
  7243. {
  7244. name: "Megamacro",
  7245. height: math.unit(7, "miles")
  7246. },
  7247. ]
  7248. ))
  7249. characterMakers.push(() => makeCharacter(
  7250. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7251. {
  7252. front: {
  7253. height: math.unit(6, "feet"),
  7254. weight: math.unit(220, "lb"),
  7255. name: "Front",
  7256. image: {
  7257. source: "./media/characters/gemini/front.svg"
  7258. }
  7259. },
  7260. back: {
  7261. height: math.unit(6, "feet"),
  7262. weight: math.unit(220, "lb"),
  7263. name: "Back",
  7264. image: {
  7265. source: "./media/characters/gemini/back.svg"
  7266. }
  7267. },
  7268. kneeling: {
  7269. height: math.unit(6 / 1.5, "feet"),
  7270. weight: math.unit(220, "lb"),
  7271. name: "Kneeling",
  7272. image: {
  7273. source: "./media/characters/gemini/kneeling.svg",
  7274. bottom: 0.02
  7275. }
  7276. },
  7277. },
  7278. [
  7279. {
  7280. name: "Macro",
  7281. height: math.unit(300, "meters"),
  7282. default: true
  7283. },
  7284. {
  7285. name: "Megamacro",
  7286. height: math.unit(6900, "meters")
  7287. },
  7288. ]
  7289. ))
  7290. characterMakers.push(() => makeCharacter(
  7291. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7292. {
  7293. anthro: {
  7294. height: math.unit(2.35, "meters"),
  7295. weight: math.unit(73, "kg"),
  7296. name: "Anthro",
  7297. image: {
  7298. source: "./media/characters/alicia/anthro.svg",
  7299. extra: 2571 / 2385,
  7300. bottom: 75 / 2648
  7301. }
  7302. },
  7303. paw: {
  7304. height: math.unit(1.32, "feet"),
  7305. name: "Paw",
  7306. image: {
  7307. source: "./media/characters/alicia/paw.svg"
  7308. }
  7309. },
  7310. feral: {
  7311. height: math.unit(1.69, "meters"),
  7312. weight: math.unit(73, "kg"),
  7313. name: "Feral",
  7314. image: {
  7315. source: "./media/characters/alicia/feral.svg",
  7316. extra: 2123 / 1715,
  7317. bottom: 222 / 2349
  7318. }
  7319. },
  7320. },
  7321. [
  7322. {
  7323. name: "Normal",
  7324. height: math.unit(2.35, "meters")
  7325. },
  7326. {
  7327. name: "Macro",
  7328. height: math.unit(60, "meters"),
  7329. default: true
  7330. },
  7331. {
  7332. name: "Megamacro",
  7333. height: math.unit(10000, "kilometers")
  7334. },
  7335. ]
  7336. ))
  7337. characterMakers.push(() => makeCharacter(
  7338. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7339. {
  7340. front: {
  7341. height: math.unit(7, "feet"),
  7342. weight: math.unit(250, "lbs"),
  7343. name: "Front",
  7344. image: {
  7345. source: "./media/characters/archy/front.svg"
  7346. }
  7347. }
  7348. },
  7349. [
  7350. {
  7351. name: "Micro",
  7352. height: math.unit(1, "inch")
  7353. },
  7354. {
  7355. name: "Shorty",
  7356. height: math.unit(5, "feet")
  7357. },
  7358. {
  7359. name: "Normal",
  7360. height: math.unit(7, "feet")
  7361. },
  7362. {
  7363. name: "Macro",
  7364. height: math.unit(600, "meters"),
  7365. default: true
  7366. },
  7367. {
  7368. name: "Megamacro",
  7369. height: math.unit(1, "mile")
  7370. },
  7371. ]
  7372. ))
  7373. characterMakers.push(() => makeCharacter(
  7374. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7375. {
  7376. front: {
  7377. height: math.unit(1.65, "meters"),
  7378. weight: math.unit(74, "kg"),
  7379. name: "Front",
  7380. image: {
  7381. source: "./media/characters/berri/front.svg",
  7382. extra: 857 / 837,
  7383. bottom: 18 / 877
  7384. }
  7385. },
  7386. bum: {
  7387. height: math.unit(1.46, "feet"),
  7388. name: "Bum",
  7389. image: {
  7390. source: "./media/characters/berri/bum.svg"
  7391. }
  7392. },
  7393. mouth: {
  7394. height: math.unit(0.44, "feet"),
  7395. name: "Mouth",
  7396. image: {
  7397. source: "./media/characters/berri/mouth.svg"
  7398. }
  7399. },
  7400. paw: {
  7401. height: math.unit(0.826, "feet"),
  7402. name: "Paw",
  7403. image: {
  7404. source: "./media/characters/berri/paw.svg"
  7405. }
  7406. },
  7407. },
  7408. [
  7409. {
  7410. name: "Normal",
  7411. height: math.unit(1.65, "meters")
  7412. },
  7413. {
  7414. name: "Macro",
  7415. height: math.unit(60, "m"),
  7416. default: true
  7417. },
  7418. {
  7419. name: "Megamacro",
  7420. height: math.unit(9.213, "km")
  7421. },
  7422. {
  7423. name: "Planet Eater",
  7424. height: math.unit(489, "megameters")
  7425. },
  7426. {
  7427. name: "Teramacro",
  7428. height: math.unit(2471635000000, "meters")
  7429. },
  7430. {
  7431. name: "Examacro",
  7432. height: math.unit(8.0624e+26, "meters")
  7433. }
  7434. ]
  7435. ))
  7436. characterMakers.push(() => makeCharacter(
  7437. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7438. {
  7439. front: {
  7440. height: math.unit(1.72, "meters"),
  7441. weight: math.unit(68, "kg"),
  7442. name: "Front",
  7443. image: {
  7444. source: "./media/characters/lexi/front.svg"
  7445. }
  7446. }
  7447. },
  7448. [
  7449. {
  7450. name: "Very Smol",
  7451. height: math.unit(10, "mm")
  7452. },
  7453. {
  7454. name: "Micro",
  7455. height: math.unit(6.8, "cm"),
  7456. default: true
  7457. },
  7458. {
  7459. name: "Normal",
  7460. height: math.unit(1.72, "m")
  7461. }
  7462. ]
  7463. ))
  7464. characterMakers.push(() => makeCharacter(
  7465. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7466. {
  7467. front: {
  7468. height: math.unit(1.69, "meters"),
  7469. weight: math.unit(68, "kg"),
  7470. name: "Front",
  7471. image: {
  7472. source: "./media/characters/martin/front.svg",
  7473. extra: 596 / 581
  7474. }
  7475. }
  7476. },
  7477. [
  7478. {
  7479. name: "Micro",
  7480. height: math.unit(6.85, "cm"),
  7481. default: true
  7482. },
  7483. {
  7484. name: "Normal",
  7485. height: math.unit(1.69, "m")
  7486. }
  7487. ]
  7488. ))
  7489. characterMakers.push(() => makeCharacter(
  7490. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7491. {
  7492. front: {
  7493. height: math.unit(1.69, "meters"),
  7494. weight: math.unit(68, "kg"),
  7495. name: "Front",
  7496. image: {
  7497. source: "./media/characters/juno/front.svg"
  7498. }
  7499. }
  7500. },
  7501. [
  7502. {
  7503. name: "Micro",
  7504. height: math.unit(7, "cm")
  7505. },
  7506. {
  7507. name: "Normal",
  7508. height: math.unit(1.89, "m")
  7509. },
  7510. {
  7511. name: "Macro",
  7512. height: math.unit(353, "meters"),
  7513. default: true
  7514. }
  7515. ]
  7516. ))
  7517. characterMakers.push(() => makeCharacter(
  7518. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7519. {
  7520. front: {
  7521. height: math.unit(1.93, "meters"),
  7522. weight: math.unit(83, "kg"),
  7523. name: "Front",
  7524. image: {
  7525. source: "./media/characters/samantha/front.svg"
  7526. }
  7527. },
  7528. frontClothed: {
  7529. height: math.unit(1.93, "meters"),
  7530. weight: math.unit(83, "kg"),
  7531. name: "Front (Clothed)",
  7532. image: {
  7533. source: "./media/characters/samantha/front-clothed.svg"
  7534. }
  7535. },
  7536. back: {
  7537. height: math.unit(1.93, "meters"),
  7538. weight: math.unit(83, "kg"),
  7539. name: "Back",
  7540. image: {
  7541. source: "./media/characters/samantha/back.svg"
  7542. }
  7543. },
  7544. },
  7545. [
  7546. {
  7547. name: "Normal",
  7548. height: math.unit(1.93, "m")
  7549. },
  7550. {
  7551. name: "Macro",
  7552. height: math.unit(74, "meters"),
  7553. default: true
  7554. },
  7555. {
  7556. name: "Macro+",
  7557. height: math.unit(223, "meters"),
  7558. },
  7559. {
  7560. name: "Megamacro",
  7561. height: math.unit(8381, "meters"),
  7562. },
  7563. {
  7564. name: "Megamacro+",
  7565. height: math.unit(12000, "kilometers")
  7566. },
  7567. ]
  7568. ))
  7569. characterMakers.push(() => makeCharacter(
  7570. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7571. {
  7572. front: {
  7573. height: math.unit(1.92, "meters"),
  7574. weight: math.unit(80, "kg"),
  7575. name: "Front",
  7576. image: {
  7577. source: "./media/characters/dr-clay/front.svg"
  7578. }
  7579. },
  7580. frontClothed: {
  7581. height: math.unit(1.92, "meters"),
  7582. weight: math.unit(80, "kg"),
  7583. name: "Front (Clothed)",
  7584. image: {
  7585. source: "./media/characters/dr-clay/front-clothed.svg"
  7586. }
  7587. }
  7588. },
  7589. [
  7590. {
  7591. name: "Normal",
  7592. height: math.unit(1.92, "m")
  7593. },
  7594. {
  7595. name: "Macro",
  7596. height: math.unit(214, "meters"),
  7597. default: true
  7598. },
  7599. {
  7600. name: "Macro+",
  7601. height: math.unit(12.237, "meters"),
  7602. },
  7603. {
  7604. name: "Megamacro",
  7605. height: math.unit(557, "megameters"),
  7606. },
  7607. {
  7608. name: "Unimaginable",
  7609. height: math.unit(120e9, "lightyears")
  7610. },
  7611. ]
  7612. ))
  7613. characterMakers.push(() => makeCharacter(
  7614. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7615. {
  7616. front: {
  7617. height: math.unit(2, "meters"),
  7618. weight: math.unit(80, "kg"),
  7619. name: "Front",
  7620. image: {
  7621. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7622. }
  7623. }
  7624. },
  7625. [
  7626. {
  7627. name: "Teramacro",
  7628. height: math.unit(500000, "lightyears"),
  7629. default: true
  7630. },
  7631. ]
  7632. ))
  7633. characterMakers.push(() => makeCharacter(
  7634. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7635. {
  7636. crux: {
  7637. height: math.unit(2, "meters"),
  7638. weight: math.unit(150, "kg"),
  7639. name: "Crux",
  7640. image: {
  7641. source: "./media/characters/vemus/crux.svg",
  7642. extra: 1074/936,
  7643. bottom: 23/1097
  7644. }
  7645. },
  7646. skunkTanuki: {
  7647. height: math.unit(2, "meters"),
  7648. weight: math.unit(150, "kg"),
  7649. name: "Skunk-Tanuki",
  7650. image: {
  7651. source: "./media/characters/vemus/skunk-tanuki.svg",
  7652. extra: 926/893,
  7653. bottom: 20/946
  7654. }
  7655. },
  7656. },
  7657. [
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(4, "meters"),
  7661. default: true
  7662. },
  7663. {
  7664. name: "Big",
  7665. height: math.unit(8, "meters")
  7666. },
  7667. {
  7668. name: "Macro",
  7669. height: math.unit(100, "meters")
  7670. },
  7671. {
  7672. name: "Macro+",
  7673. height: math.unit(1500, "meters")
  7674. },
  7675. {
  7676. name: "Stellar",
  7677. height: math.unit(14e8, "meters")
  7678. },
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7683. {
  7684. front: {
  7685. height: math.unit(2, "meters"),
  7686. weight: math.unit(70, "kg"),
  7687. name: "Front",
  7688. image: {
  7689. source: "./media/characters/beherit/front.svg",
  7690. extra: 1234/1109,
  7691. bottom: 55/1289
  7692. }
  7693. }
  7694. },
  7695. [
  7696. {
  7697. name: "Normal",
  7698. height: math.unit(6, "feet")
  7699. },
  7700. {
  7701. name: "Lorg",
  7702. height: math.unit(25, "feet"),
  7703. default: true
  7704. },
  7705. {
  7706. name: "Lorger",
  7707. height: math.unit(75, "feet")
  7708. },
  7709. {
  7710. name: "Macro",
  7711. height: math.unit(200, "meters")
  7712. },
  7713. ]
  7714. ))
  7715. characterMakers.push(() => makeCharacter(
  7716. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7717. {
  7718. front: {
  7719. height: math.unit(2, "meters"),
  7720. weight: math.unit(150, "kg"),
  7721. name: "Front",
  7722. image: {
  7723. source: "./media/characters/everett/front.svg",
  7724. extra: 1017/866,
  7725. bottom: 86/1103
  7726. }
  7727. },
  7728. paw: {
  7729. height: math.unit(2 / 3.6, "meters"),
  7730. name: "Paw",
  7731. image: {
  7732. source: "./media/characters/everett/paw.svg"
  7733. }
  7734. },
  7735. },
  7736. [
  7737. {
  7738. name: "Normal",
  7739. height: math.unit(15, "feet"),
  7740. default: true
  7741. },
  7742. {
  7743. name: "Lorg",
  7744. height: math.unit(70, "feet"),
  7745. default: true
  7746. },
  7747. {
  7748. name: "Lorger",
  7749. height: math.unit(250, "feet")
  7750. },
  7751. {
  7752. name: "Macro",
  7753. height: math.unit(500, "meters")
  7754. },
  7755. ]
  7756. ))
  7757. characterMakers.push(() => makeCharacter(
  7758. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7759. {
  7760. front: {
  7761. height: math.unit(2, "meters"),
  7762. weight: math.unit(86, "kg"),
  7763. name: "Front",
  7764. image: {
  7765. source: "./media/characters/rose/front.svg",
  7766. extra: 1785/1636,
  7767. bottom: 30/1815
  7768. },
  7769. form: "liom",
  7770. default: true
  7771. },
  7772. frontSporty: {
  7773. height: math.unit(2, "meters"),
  7774. weight: math.unit(86, "kg"),
  7775. name: "Front (Sporty)",
  7776. image: {
  7777. source: "./media/characters/rose/front-sporty.svg",
  7778. extra: 350/335,
  7779. bottom: 10/360
  7780. },
  7781. form: "liom"
  7782. },
  7783. frontAlt: {
  7784. height: math.unit(1.6, "meters"),
  7785. weight: math.unit(86, "kg"),
  7786. name: "Front (Alt)",
  7787. image: {
  7788. source: "./media/characters/rose/front-alt.svg",
  7789. extra: 299/283,
  7790. bottom: 3/302
  7791. },
  7792. form: "liom"
  7793. },
  7794. plush: {
  7795. height: math.unit(2, "meters"),
  7796. weight: math.unit(86/3, "kg"),
  7797. name: "Plush",
  7798. image: {
  7799. source: "./media/characters/rose/plush.svg",
  7800. extra: 361/337,
  7801. bottom: 11/372
  7802. },
  7803. form: "plush",
  7804. default: true
  7805. },
  7806. faeStanding: {
  7807. height: math.unit(10, "cm"),
  7808. weight: math.unit(10, "grams"),
  7809. name: "Standing",
  7810. image: {
  7811. source: "./media/characters/rose/fae-standing.svg",
  7812. extra: 1189/1060,
  7813. bottom: 27/1216
  7814. },
  7815. form: "fae",
  7816. default: true
  7817. },
  7818. faeSitting: {
  7819. height: math.unit(5, "cm"),
  7820. weight: math.unit(10, "grams"),
  7821. name: "Sitting",
  7822. image: {
  7823. source: "./media/characters/rose/fae-sitting.svg",
  7824. extra: 737/577,
  7825. bottom: 356/1093
  7826. },
  7827. form: "fae"
  7828. },
  7829. faePaw: {
  7830. height: math.unit(1.35, "cm"),
  7831. name: "Paw",
  7832. image: {
  7833. source: "./media/characters/rose/fae-paw.svg"
  7834. },
  7835. form: "fae"
  7836. },
  7837. },
  7838. [
  7839. {
  7840. name: "True Micro",
  7841. height: math.unit(9, "cm"),
  7842. form: "liom"
  7843. },
  7844. {
  7845. name: "Micro",
  7846. height: math.unit(16, "cm"),
  7847. form: "liom"
  7848. },
  7849. {
  7850. name: "Normal",
  7851. height: math.unit(1.85, "meters"),
  7852. default: true,
  7853. form: "liom"
  7854. },
  7855. {
  7856. name: "Mini-Macro",
  7857. height: math.unit(5, "meters"),
  7858. form: "liom"
  7859. },
  7860. {
  7861. name: "Macro",
  7862. height: math.unit(15, "meters"),
  7863. form: "liom"
  7864. },
  7865. {
  7866. name: "True Macro",
  7867. height: math.unit(40, "meters"),
  7868. form: "liom"
  7869. },
  7870. {
  7871. name: "City Scale",
  7872. height: math.unit(1, "km"),
  7873. form: "liom"
  7874. },
  7875. {
  7876. name: "Plushie",
  7877. height: math.unit(9, "cm"),
  7878. form: "plush",
  7879. default: true
  7880. },
  7881. {
  7882. name: "Fae",
  7883. height: math.unit(10, "cm"),
  7884. form: "fae",
  7885. default: true
  7886. },
  7887. ],
  7888. {
  7889. "liom": {
  7890. name: "Liom"
  7891. },
  7892. "plush": {
  7893. name: "Plush"
  7894. },
  7895. "fae": {
  7896. name: "Fae Fox",
  7897. default: true
  7898. }
  7899. }
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7903. {
  7904. front: {
  7905. height: math.unit(2, "meters"),
  7906. weight: math.unit(350, "lbs"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/regal/front.svg"
  7910. }
  7911. },
  7912. back: {
  7913. height: math.unit(2, "meters"),
  7914. weight: math.unit(350, "lbs"),
  7915. name: "Back",
  7916. image: {
  7917. source: "./media/characters/regal/back.svg"
  7918. }
  7919. },
  7920. },
  7921. [
  7922. {
  7923. name: "Macro",
  7924. height: math.unit(350, "feet"),
  7925. default: true
  7926. }
  7927. ]
  7928. ))
  7929. characterMakers.push(() => makeCharacter(
  7930. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7931. {
  7932. front: {
  7933. height: math.unit(4 + 11 / 12, "feet"),
  7934. weight: math.unit(100, "lbs"),
  7935. name: "Front",
  7936. image: {
  7937. source: "./media/characters/opal/front.svg"
  7938. }
  7939. },
  7940. frontAlt: {
  7941. height: math.unit(4 + 11 / 12, "feet"),
  7942. weight: math.unit(100, "lbs"),
  7943. name: "Front (Alt)",
  7944. image: {
  7945. source: "./media/characters/opal/front-alt.svg"
  7946. }
  7947. },
  7948. },
  7949. [
  7950. {
  7951. name: "Small",
  7952. height: math.unit(4 + 11 / 12, "feet")
  7953. },
  7954. {
  7955. name: "Normal",
  7956. height: math.unit(20, "feet"),
  7957. default: true
  7958. },
  7959. {
  7960. name: "Macro",
  7961. height: math.unit(120, "feet")
  7962. },
  7963. {
  7964. name: "Megamacro",
  7965. height: math.unit(80, "miles")
  7966. },
  7967. {
  7968. name: "True Size",
  7969. height: math.unit(100000, "lightyears")
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7975. {
  7976. front: {
  7977. height: math.unit(6, "feet"),
  7978. weight: math.unit(200, "lbs"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/vector-wuff/front.svg"
  7982. }
  7983. }
  7984. },
  7985. [
  7986. {
  7987. name: "Normal",
  7988. height: math.unit(2.8, "meters")
  7989. },
  7990. {
  7991. name: "Macro",
  7992. height: math.unit(450, "meters"),
  7993. default: true
  7994. },
  7995. {
  7996. name: "Megamacro",
  7997. height: math.unit(15, "kilometers")
  7998. }
  7999. ]
  8000. ))
  8001. characterMakers.push(() => makeCharacter(
  8002. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8003. {
  8004. front: {
  8005. height: math.unit(6, "feet"),
  8006. weight: math.unit(256, "lbs"),
  8007. name: "Front",
  8008. image: {
  8009. source: "./media/characters/dannik/front.svg"
  8010. }
  8011. }
  8012. },
  8013. [
  8014. {
  8015. name: "Macro",
  8016. height: math.unit(69.57, "meters"),
  8017. default: true
  8018. },
  8019. ]
  8020. ))
  8021. characterMakers.push(() => makeCharacter(
  8022. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8023. {
  8024. front: {
  8025. height: math.unit(6, "feet"),
  8026. weight: math.unit(120, "lbs"),
  8027. name: "Front",
  8028. image: {
  8029. source: "./media/characters/azura-saharah/front.svg"
  8030. }
  8031. },
  8032. back: {
  8033. height: math.unit(6, "feet"),
  8034. weight: math.unit(120, "lbs"),
  8035. name: "Back",
  8036. image: {
  8037. source: "./media/characters/azura-saharah/back.svg"
  8038. }
  8039. },
  8040. },
  8041. [
  8042. {
  8043. name: "Macro",
  8044. height: math.unit(100, "feet"),
  8045. default: true
  8046. },
  8047. ]
  8048. ))
  8049. characterMakers.push(() => makeCharacter(
  8050. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8051. {
  8052. side: {
  8053. height: math.unit(5 + 4 / 12, "feet"),
  8054. weight: math.unit(163, "lbs"),
  8055. name: "Side",
  8056. image: {
  8057. source: "./media/characters/kennedy/side.svg"
  8058. }
  8059. }
  8060. },
  8061. [
  8062. {
  8063. name: "Standard Doggo",
  8064. height: math.unit(5 + 4 / 12, "feet")
  8065. },
  8066. {
  8067. name: "Big Doggo",
  8068. height: math.unit(25 + 3 / 12, "feet"),
  8069. default: true
  8070. },
  8071. ]
  8072. ))
  8073. characterMakers.push(() => makeCharacter(
  8074. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8075. {
  8076. front: {
  8077. height: math.unit(5 + 5/12, "feet"),
  8078. weight: math.unit(100, "lbs"),
  8079. name: "Front",
  8080. image: {
  8081. source: "./media/characters/odios-de-lunar/front.svg",
  8082. extra: 1468/1323,
  8083. bottom: 22/1490
  8084. }
  8085. }
  8086. },
  8087. [
  8088. {
  8089. name: "Micro",
  8090. height: math.unit(3, "inches")
  8091. },
  8092. {
  8093. name: "Normal",
  8094. height: math.unit(5.5, "feet"),
  8095. default: true
  8096. },
  8097. {
  8098. name: "Macro",
  8099. height: math.unit(100, "feet")
  8100. },
  8101. ]
  8102. ))
  8103. characterMakers.push(() => makeCharacter(
  8104. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8105. {
  8106. back: {
  8107. height: math.unit(6, "feet"),
  8108. weight: math.unit(220, "lbs"),
  8109. name: "Back",
  8110. image: {
  8111. source: "./media/characters/mandake/back.svg"
  8112. }
  8113. }
  8114. },
  8115. [
  8116. {
  8117. name: "Normal",
  8118. height: math.unit(7, "feet"),
  8119. default: true
  8120. },
  8121. {
  8122. name: "Macro",
  8123. height: math.unit(78, "feet")
  8124. },
  8125. {
  8126. name: "Macro+",
  8127. height: math.unit(300, "meters")
  8128. },
  8129. {
  8130. name: "Macro++",
  8131. height: math.unit(2400, "feet")
  8132. },
  8133. {
  8134. name: "Megamacro",
  8135. height: math.unit(5167, "meters")
  8136. },
  8137. {
  8138. name: "Gigamacro",
  8139. height: math.unit(41769, "miles")
  8140. },
  8141. ]
  8142. ))
  8143. characterMakers.push(() => makeCharacter(
  8144. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8145. {
  8146. front: {
  8147. height: math.unit(6, "feet"),
  8148. weight: math.unit(120, "lbs"),
  8149. name: "Front",
  8150. image: {
  8151. source: "./media/characters/yozey/front.svg"
  8152. }
  8153. },
  8154. frontAlt: {
  8155. height: math.unit(6, "feet"),
  8156. weight: math.unit(120, "lbs"),
  8157. name: "Front (Alt)",
  8158. image: {
  8159. source: "./media/characters/yozey/front-alt.svg"
  8160. }
  8161. },
  8162. side: {
  8163. height: math.unit(6, "feet"),
  8164. weight: math.unit(120, "lbs"),
  8165. name: "Side",
  8166. image: {
  8167. source: "./media/characters/yozey/side.svg"
  8168. }
  8169. },
  8170. },
  8171. [
  8172. {
  8173. name: "Micro",
  8174. height: math.unit(3, "inches"),
  8175. default: true
  8176. },
  8177. {
  8178. name: "Normal",
  8179. height: math.unit(6, "feet")
  8180. }
  8181. ]
  8182. ))
  8183. characterMakers.push(() => makeCharacter(
  8184. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8185. {
  8186. front: {
  8187. height: math.unit(6, "feet"),
  8188. weight: math.unit(103, "lbs"),
  8189. name: "Front",
  8190. image: {
  8191. source: "./media/characters/valeska-voss/front.svg"
  8192. }
  8193. }
  8194. },
  8195. [
  8196. {
  8197. name: "Mini-Sized Sub",
  8198. height: math.unit(3.1, "inches")
  8199. },
  8200. {
  8201. name: "Mid-Sized Sub",
  8202. height: math.unit(6.2, "inches")
  8203. },
  8204. {
  8205. name: "Full-Sized Sub",
  8206. height: math.unit(9.3, "inches")
  8207. },
  8208. {
  8209. name: "Normal",
  8210. height: math.unit(5 + 2 / 12, "foot"),
  8211. default: true
  8212. },
  8213. ]
  8214. ))
  8215. characterMakers.push(() => makeCharacter(
  8216. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8217. {
  8218. front: {
  8219. height: math.unit(6, "feet"),
  8220. weight: math.unit(160, "lbs"),
  8221. name: "Front",
  8222. image: {
  8223. source: "./media/characters/gene-zeta/front.svg",
  8224. extra: 3006 / 2826,
  8225. bottom: 182 / 3188
  8226. }
  8227. }
  8228. },
  8229. [
  8230. {
  8231. name: "Micro",
  8232. height: math.unit(6, "inches")
  8233. },
  8234. {
  8235. name: "Normal",
  8236. height: math.unit(5 + 11 / 12, "foot"),
  8237. default: true
  8238. },
  8239. {
  8240. name: "Macro",
  8241. height: math.unit(140, "feet")
  8242. },
  8243. {
  8244. name: "Supercharged",
  8245. height: math.unit(2500, "feet")
  8246. },
  8247. ]
  8248. ))
  8249. characterMakers.push(() => makeCharacter(
  8250. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8251. {
  8252. front: {
  8253. height: math.unit(6, "feet"),
  8254. weight: math.unit(350, "lbs"),
  8255. name: "Front",
  8256. image: {
  8257. source: "./media/characters/razinox/front.svg",
  8258. extra: 1686 / 1548,
  8259. bottom: 28.2 / 1868
  8260. }
  8261. },
  8262. back: {
  8263. height: math.unit(6, "feet"),
  8264. weight: math.unit(350, "lbs"),
  8265. name: "Back",
  8266. image: {
  8267. source: "./media/characters/razinox/back.svg",
  8268. extra: 1660 / 1590,
  8269. bottom: 15 / 1665
  8270. }
  8271. },
  8272. },
  8273. [
  8274. {
  8275. name: "Normal",
  8276. height: math.unit(10 + 8 / 12, "foot")
  8277. },
  8278. {
  8279. name: "Minimacro",
  8280. height: math.unit(15, "foot")
  8281. },
  8282. {
  8283. name: "Macro",
  8284. height: math.unit(60, "foot"),
  8285. default: true
  8286. },
  8287. {
  8288. name: "Megamacro",
  8289. height: math.unit(5, "miles")
  8290. },
  8291. {
  8292. name: "Gigamacro",
  8293. height: math.unit(6000, "miles")
  8294. },
  8295. ]
  8296. ))
  8297. characterMakers.push(() => makeCharacter(
  8298. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8299. {
  8300. front: {
  8301. height: math.unit(6, "feet"),
  8302. weight: math.unit(150, "lbs"),
  8303. name: "Front",
  8304. image: {
  8305. source: "./media/characters/cobalt/front.svg"
  8306. }
  8307. }
  8308. },
  8309. [
  8310. {
  8311. name: "Normal",
  8312. height: math.unit(8 + 1 / 12, "foot")
  8313. },
  8314. {
  8315. name: "Macro",
  8316. height: math.unit(111, "foot"),
  8317. default: true
  8318. },
  8319. {
  8320. name: "Supracosmic",
  8321. height: math.unit(1e42, "feet")
  8322. },
  8323. ]
  8324. ))
  8325. characterMakers.push(() => makeCharacter(
  8326. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8327. {
  8328. front: {
  8329. height: math.unit(5, "inches"),
  8330. name: "Front",
  8331. image: {
  8332. source: "./media/characters/amanda/front.svg",
  8333. extra: 926/791,
  8334. bottom: 38/964
  8335. }
  8336. },
  8337. back: {
  8338. height: math.unit(5, "inches"),
  8339. name: "Back",
  8340. image: {
  8341. source: "./media/characters/amanda/back.svg",
  8342. extra: 909/805,
  8343. bottom: 43/952
  8344. }
  8345. },
  8346. },
  8347. [
  8348. {
  8349. name: "Micro",
  8350. height: math.unit(5, "inches"),
  8351. default: true
  8352. },
  8353. ]
  8354. ))
  8355. characterMakers.push(() => makeCharacter(
  8356. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8357. {
  8358. front: {
  8359. height: math.unit(2.75, "meters"),
  8360. weight: math.unit(1200, "lb"),
  8361. name: "Front",
  8362. image: {
  8363. source: "./media/characters/teal/front.svg",
  8364. extra: 2463 / 2320,
  8365. bottom: 166 / 2629
  8366. }
  8367. },
  8368. back: {
  8369. height: math.unit(2.75, "meters"),
  8370. weight: math.unit(1200, "lb"),
  8371. name: "Back",
  8372. image: {
  8373. source: "./media/characters/teal/back.svg",
  8374. extra: 2580 / 2489,
  8375. bottom: 151 / 2731
  8376. }
  8377. },
  8378. sitting: {
  8379. height: math.unit(1.9, "meters"),
  8380. weight: math.unit(1200, "lb"),
  8381. name: "Sitting",
  8382. image: {
  8383. source: "./media/characters/teal/sitting.svg",
  8384. extra: 623 / 590,
  8385. bottom: 121 / 744
  8386. }
  8387. },
  8388. standing: {
  8389. height: math.unit(2.75, "meters"),
  8390. weight: math.unit(1200, "lb"),
  8391. name: "Standing",
  8392. image: {
  8393. source: "./media/characters/teal/standing.svg",
  8394. extra: 923 / 893,
  8395. bottom: 60 / 983
  8396. }
  8397. },
  8398. stretching: {
  8399. height: math.unit(3.65, "meters"),
  8400. weight: math.unit(1200, "lb"),
  8401. name: "Stretching",
  8402. image: {
  8403. source: "./media/characters/teal/stretching.svg",
  8404. extra: 1276 / 1244,
  8405. bottom: 0 / 1276
  8406. }
  8407. },
  8408. legged: {
  8409. height: math.unit(1.3, "meters"),
  8410. weight: math.unit(100, "lb"),
  8411. name: "Legged",
  8412. image: {
  8413. source: "./media/characters/teal/legged.svg",
  8414. extra: 462 / 437,
  8415. bottom: 24 / 486
  8416. }
  8417. },
  8418. naga: {
  8419. height: math.unit(5.4, "meters"),
  8420. weight: math.unit(4000, "lb"),
  8421. name: "Naga",
  8422. image: {
  8423. source: "./media/characters/teal/naga.svg",
  8424. extra: 1902 / 1858,
  8425. bottom: 0 / 1902
  8426. }
  8427. },
  8428. hand: {
  8429. height: math.unit(0.52, "meters"),
  8430. name: "Hand",
  8431. image: {
  8432. source: "./media/characters/teal/hand.svg"
  8433. }
  8434. },
  8435. maw: {
  8436. height: math.unit(0.43, "meters"),
  8437. name: "Maw",
  8438. image: {
  8439. source: "./media/characters/teal/maw.svg"
  8440. }
  8441. },
  8442. slit: {
  8443. height: math.unit(0.25, "meters"),
  8444. name: "Slit",
  8445. image: {
  8446. source: "./media/characters/teal/slit.svg"
  8447. }
  8448. },
  8449. },
  8450. [
  8451. {
  8452. name: "Normal",
  8453. height: math.unit(2.75, "meters"),
  8454. default: true
  8455. },
  8456. {
  8457. name: "Macro",
  8458. height: math.unit(300, "feet")
  8459. },
  8460. {
  8461. name: "Macro+",
  8462. height: math.unit(2000, "feet")
  8463. },
  8464. ]
  8465. ))
  8466. characterMakers.push(() => makeCharacter(
  8467. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8468. {
  8469. frontCat: {
  8470. height: math.unit(6, "feet"),
  8471. weight: math.unit(180, "lbs"),
  8472. name: "Front (Cat)",
  8473. image: {
  8474. source: "./media/characters/ravin-amulet/front-cat.svg"
  8475. }
  8476. },
  8477. frontCatAlt: {
  8478. height: math.unit(6, "feet"),
  8479. weight: math.unit(180, "lbs"),
  8480. name: "Front (Alt, Cat)",
  8481. image: {
  8482. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8483. }
  8484. },
  8485. frontWerewolf: {
  8486. height: math.unit(6 * 1.2, "feet"),
  8487. weight: math.unit(225, "lbs"),
  8488. name: "Front (Werewolf)",
  8489. image: {
  8490. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8491. }
  8492. },
  8493. backWerewolf: {
  8494. height: math.unit(6 * 1.2, "feet"),
  8495. weight: math.unit(225, "lbs"),
  8496. name: "Back (Werewolf)",
  8497. image: {
  8498. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8499. }
  8500. },
  8501. },
  8502. [
  8503. {
  8504. name: "Nano",
  8505. height: math.unit(1, "micrometer")
  8506. },
  8507. {
  8508. name: "Micro",
  8509. height: math.unit(1, "inch")
  8510. },
  8511. {
  8512. name: "Normal",
  8513. height: math.unit(6, "feet"),
  8514. default: true
  8515. },
  8516. {
  8517. name: "Macro",
  8518. height: math.unit(60, "feet")
  8519. }
  8520. ]
  8521. ))
  8522. characterMakers.push(() => makeCharacter(
  8523. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8524. {
  8525. front: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(165, "lbs"),
  8528. name: "Front",
  8529. image: {
  8530. source: "./media/characters/fluoresce/front.svg"
  8531. }
  8532. }
  8533. },
  8534. [
  8535. {
  8536. name: "Micro",
  8537. height: math.unit(6, "cm")
  8538. },
  8539. {
  8540. name: "Normal",
  8541. height: math.unit(5 + 7 / 12, "feet"),
  8542. default: true
  8543. },
  8544. {
  8545. name: "Macro",
  8546. height: math.unit(56, "feet")
  8547. },
  8548. {
  8549. name: "Megamacro",
  8550. height: math.unit(1.9, "miles")
  8551. },
  8552. ]
  8553. ))
  8554. characterMakers.push(() => makeCharacter(
  8555. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8556. {
  8557. front: {
  8558. height: math.unit(9 + 6 / 12, "feet"),
  8559. weight: math.unit(523, "lbs"),
  8560. name: "Side",
  8561. image: {
  8562. source: "./media/characters/aurora/side.svg",
  8563. extra: 474/393,
  8564. bottom: 5/479
  8565. }
  8566. }
  8567. },
  8568. [
  8569. {
  8570. name: "Normal",
  8571. height: math.unit(9 + 6 / 12, "feet")
  8572. },
  8573. {
  8574. name: "Macro",
  8575. height: math.unit(96, "feet"),
  8576. default: true
  8577. },
  8578. {
  8579. name: "Macro+",
  8580. height: math.unit(243, "feet")
  8581. },
  8582. ]
  8583. ))
  8584. characterMakers.push(() => makeCharacter(
  8585. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8586. {
  8587. front: {
  8588. height: math.unit(194, "cm"),
  8589. weight: math.unit(90, "kg"),
  8590. name: "Front",
  8591. image: {
  8592. source: "./media/characters/ranek/front.svg",
  8593. extra: 1862/1791,
  8594. bottom: 80/1942
  8595. }
  8596. },
  8597. back: {
  8598. height: math.unit(194, "cm"),
  8599. weight: math.unit(90, "kg"),
  8600. name: "Back",
  8601. image: {
  8602. source: "./media/characters/ranek/back.svg",
  8603. extra: 1853/1787,
  8604. bottom: 74/1927
  8605. }
  8606. },
  8607. feral: {
  8608. height: math.unit(30, "cm"),
  8609. weight: math.unit(1.6, "lbs"),
  8610. name: "Feral",
  8611. image: {
  8612. source: "./media/characters/ranek/feral.svg",
  8613. extra: 990/631,
  8614. bottom: 29/1019
  8615. }
  8616. },
  8617. },
  8618. [
  8619. {
  8620. name: "Normal",
  8621. height: math.unit(194, "cm"),
  8622. default: true
  8623. },
  8624. {
  8625. name: "Macro",
  8626. height: math.unit(100, "meters")
  8627. },
  8628. ]
  8629. ))
  8630. characterMakers.push(() => makeCharacter(
  8631. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8632. {
  8633. front: {
  8634. height: math.unit(5 + 6 / 12, "feet"),
  8635. weight: math.unit(153, "lbs"),
  8636. name: "Front",
  8637. image: {
  8638. source: "./media/characters/andrew-cooper/front.svg"
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Nano",
  8645. height: math.unit(1, "mm")
  8646. },
  8647. {
  8648. name: "Micro",
  8649. height: math.unit(2, "inches")
  8650. },
  8651. {
  8652. name: "Normal",
  8653. height: math.unit(5 + 6 / 12, "feet"),
  8654. default: true
  8655. }
  8656. ]
  8657. ))
  8658. characterMakers.push(() => makeCharacter(
  8659. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8660. {
  8661. front: {
  8662. height: math.unit(6, "feet"),
  8663. weight: math.unit(180, "lbs"),
  8664. name: "Front",
  8665. image: {
  8666. source: "./media/characters/akane-sato/front.svg",
  8667. extra: 1219 / 1140
  8668. }
  8669. },
  8670. back: {
  8671. height: math.unit(6, "feet"),
  8672. weight: math.unit(180, "lbs"),
  8673. name: "Back",
  8674. image: {
  8675. source: "./media/characters/akane-sato/back.svg",
  8676. extra: 1219 / 1170
  8677. }
  8678. },
  8679. },
  8680. [
  8681. {
  8682. name: "Normal",
  8683. height: math.unit(2.5, "meters")
  8684. },
  8685. {
  8686. name: "Macro",
  8687. height: math.unit(250, "meters"),
  8688. default: true
  8689. },
  8690. {
  8691. name: "Megamacro",
  8692. height: math.unit(25, "km")
  8693. },
  8694. ]
  8695. ))
  8696. characterMakers.push(() => makeCharacter(
  8697. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8698. {
  8699. front: {
  8700. height: math.unit(6, "feet"),
  8701. weight: math.unit(65, "kg"),
  8702. name: "Front",
  8703. image: {
  8704. source: "./media/characters/rook/front.svg",
  8705. extra: 960 / 950
  8706. }
  8707. }
  8708. },
  8709. [
  8710. {
  8711. name: "Normal",
  8712. height: math.unit(8.8, "feet")
  8713. },
  8714. {
  8715. name: "Macro",
  8716. height: math.unit(88, "feet"),
  8717. default: true
  8718. },
  8719. {
  8720. name: "Megamacro",
  8721. height: math.unit(8, "miles")
  8722. },
  8723. ]
  8724. ))
  8725. characterMakers.push(() => makeCharacter(
  8726. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8727. {
  8728. front: {
  8729. height: math.unit(12 + 2 / 12, "feet"),
  8730. weight: math.unit(808, "lbs"),
  8731. name: "Front",
  8732. image: {
  8733. source: "./media/characters/prodigy/front.svg"
  8734. }
  8735. }
  8736. },
  8737. [
  8738. {
  8739. name: "Normal",
  8740. height: math.unit(12 + 2 / 12, "feet"),
  8741. default: true
  8742. },
  8743. {
  8744. name: "Macro",
  8745. height: math.unit(143, "feet")
  8746. },
  8747. {
  8748. name: "Macro+",
  8749. height: math.unit(400, "feet")
  8750. },
  8751. ]
  8752. ))
  8753. characterMakers.push(() => makeCharacter(
  8754. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8755. {
  8756. front: {
  8757. height: math.unit(6, "feet"),
  8758. weight: math.unit(225, "lbs"),
  8759. name: "Front",
  8760. image: {
  8761. source: "./media/characters/daniel/front.svg"
  8762. }
  8763. },
  8764. leaning: {
  8765. height: math.unit(6, "feet"),
  8766. weight: math.unit(225, "lbs"),
  8767. name: "Leaning",
  8768. image: {
  8769. source: "./media/characters/daniel/leaning.svg"
  8770. }
  8771. },
  8772. },
  8773. [
  8774. {
  8775. name: "Macro",
  8776. height: math.unit(1000, "feet"),
  8777. default: true
  8778. },
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8783. {
  8784. front: {
  8785. height: math.unit(6, "feet"),
  8786. weight: math.unit(88, "lbs"),
  8787. name: "Front",
  8788. image: {
  8789. source: "./media/characters/chiros/front.svg",
  8790. extra: 306 / 226
  8791. }
  8792. },
  8793. side: {
  8794. height: math.unit(6, "feet"),
  8795. weight: math.unit(88, "lbs"),
  8796. name: "Side",
  8797. image: {
  8798. source: "./media/characters/chiros/side.svg",
  8799. extra: 306 / 226
  8800. }
  8801. },
  8802. },
  8803. [
  8804. {
  8805. name: "Normal",
  8806. height: math.unit(6, "cm"),
  8807. default: true
  8808. },
  8809. ]
  8810. ))
  8811. characterMakers.push(() => makeCharacter(
  8812. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8813. {
  8814. front: {
  8815. height: math.unit(6, "feet"),
  8816. weight: math.unit(100, "lbs"),
  8817. name: "Front",
  8818. image: {
  8819. source: "./media/characters/selka/front.svg",
  8820. extra: 947 / 887
  8821. }
  8822. }
  8823. },
  8824. [
  8825. {
  8826. name: "Normal",
  8827. height: math.unit(5, "cm"),
  8828. default: true
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(8 + 3 / 12, "feet"),
  8837. weight: math.unit(424, "lbs"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/verin/front.svg",
  8841. extra: 1845 / 1550
  8842. }
  8843. },
  8844. frontArmored: {
  8845. height: math.unit(8 + 3 / 12, "feet"),
  8846. weight: math.unit(424, "lbs"),
  8847. name: "Front (Armored)",
  8848. image: {
  8849. source: "./media/characters/verin/front-armor.svg",
  8850. extra: 1845 / 1550,
  8851. bottom: 0.01
  8852. }
  8853. },
  8854. back: {
  8855. height: math.unit(8 + 3 / 12, "feet"),
  8856. weight: math.unit(424, "lbs"),
  8857. name: "Back",
  8858. image: {
  8859. source: "./media/characters/verin/back.svg",
  8860. bottom: 0.1,
  8861. extra: 1
  8862. }
  8863. },
  8864. foot: {
  8865. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8866. name: "Foot",
  8867. image: {
  8868. source: "./media/characters/verin/foot.svg"
  8869. }
  8870. },
  8871. },
  8872. [
  8873. {
  8874. name: "Normal",
  8875. height: math.unit(8 + 3 / 12, "feet")
  8876. },
  8877. {
  8878. name: "Minimacro",
  8879. height: math.unit(21, "feet"),
  8880. default: true
  8881. },
  8882. {
  8883. name: "Macro",
  8884. height: math.unit(626, "feet")
  8885. },
  8886. ]
  8887. ))
  8888. characterMakers.push(() => makeCharacter(
  8889. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8890. {
  8891. front: {
  8892. height: math.unit(2.718, "meters"),
  8893. weight: math.unit(150, "lbs"),
  8894. name: "Front",
  8895. image: {
  8896. source: "./media/characters/sovrim-terraquian/front.svg",
  8897. extra: 1752/1689,
  8898. bottom: 36/1788
  8899. }
  8900. },
  8901. back: {
  8902. height: math.unit(2.718, "meters"),
  8903. weight: math.unit(150, "lbs"),
  8904. name: "Back",
  8905. image: {
  8906. source: "./media/characters/sovrim-terraquian/back.svg",
  8907. extra: 1698/1657,
  8908. bottom: 58/1756
  8909. }
  8910. },
  8911. tongue: {
  8912. height: math.unit(2.865, "feet"),
  8913. name: "Tongue",
  8914. image: {
  8915. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8916. }
  8917. },
  8918. hand: {
  8919. height: math.unit(1.61, "feet"),
  8920. name: "Hand",
  8921. image: {
  8922. source: "./media/characters/sovrim-terraquian/hand.svg"
  8923. }
  8924. },
  8925. foot: {
  8926. height: math.unit(1.05, "feet"),
  8927. name: "Foot",
  8928. image: {
  8929. source: "./media/characters/sovrim-terraquian/foot.svg"
  8930. }
  8931. },
  8932. footAlt: {
  8933. height: math.unit(0.88, "feet"),
  8934. name: "Foot (Alt)",
  8935. image: {
  8936. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8937. }
  8938. },
  8939. },
  8940. [
  8941. {
  8942. name: "Micro",
  8943. height: math.unit(2, "inches")
  8944. },
  8945. {
  8946. name: "Small",
  8947. height: math.unit(1, "meter")
  8948. },
  8949. {
  8950. name: "Normal",
  8951. height: math.unit(Math.E, "meters"),
  8952. default: true
  8953. },
  8954. {
  8955. name: "Macro",
  8956. height: math.unit(20, "meters")
  8957. },
  8958. {
  8959. name: "Macro+",
  8960. height: math.unit(400, "meters")
  8961. },
  8962. ]
  8963. ))
  8964. characterMakers.push(() => makeCharacter(
  8965. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8966. {
  8967. front: {
  8968. height: math.unit(7, "feet"),
  8969. weight: math.unit(489, "lbs"),
  8970. name: "Front",
  8971. image: {
  8972. source: "./media/characters/reece-silvermane/front.svg",
  8973. bottom: 0.02,
  8974. extra: 1
  8975. }
  8976. },
  8977. },
  8978. [
  8979. {
  8980. name: "Macro",
  8981. height: math.unit(1.5, "miles"),
  8982. default: true
  8983. },
  8984. ]
  8985. ))
  8986. characterMakers.push(() => makeCharacter(
  8987. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8988. {
  8989. front: {
  8990. height: math.unit(6, "feet"),
  8991. weight: math.unit(78, "kg"),
  8992. name: "Front",
  8993. image: {
  8994. source: "./media/characters/kane/front.svg",
  8995. extra: 978 / 899
  8996. }
  8997. },
  8998. },
  8999. [
  9000. {
  9001. name: "Normal",
  9002. height: math.unit(2.1, "m"),
  9003. },
  9004. {
  9005. name: "Macro",
  9006. height: math.unit(1, "km"),
  9007. default: true
  9008. },
  9009. ]
  9010. ))
  9011. characterMakers.push(() => makeCharacter(
  9012. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9013. {
  9014. front: {
  9015. height: math.unit(6, "feet"),
  9016. weight: math.unit(200, "kg"),
  9017. name: "Front",
  9018. image: {
  9019. source: "./media/characters/tegon/front.svg",
  9020. bottom: 0.01,
  9021. extra: 1
  9022. }
  9023. },
  9024. },
  9025. [
  9026. {
  9027. name: "Micro",
  9028. height: math.unit(1, "inch")
  9029. },
  9030. {
  9031. name: "Normal",
  9032. height: math.unit(6 + 3 / 12, "feet"),
  9033. default: true
  9034. },
  9035. {
  9036. name: "Macro",
  9037. height: math.unit(300, "feet")
  9038. },
  9039. {
  9040. name: "Megamacro",
  9041. height: math.unit(69, "miles")
  9042. },
  9043. ]
  9044. ))
  9045. characterMakers.push(() => makeCharacter(
  9046. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9047. {
  9048. side: {
  9049. height: math.unit(6, "feet"),
  9050. weight: math.unit(2304, "lbs"),
  9051. name: "Side",
  9052. image: {
  9053. source: "./media/characters/arcturax/side.svg",
  9054. extra: 790 / 376,
  9055. bottom: 0.01
  9056. }
  9057. },
  9058. },
  9059. [
  9060. {
  9061. name: "Micro",
  9062. height: math.unit(2, "inch")
  9063. },
  9064. {
  9065. name: "Normal",
  9066. height: math.unit(6, "feet")
  9067. },
  9068. {
  9069. name: "Macro",
  9070. height: math.unit(39, "feet"),
  9071. default: true
  9072. },
  9073. {
  9074. name: "Megamacro",
  9075. height: math.unit(7, "miles")
  9076. },
  9077. ]
  9078. ))
  9079. characterMakers.push(() => makeCharacter(
  9080. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9081. {
  9082. front: {
  9083. height: math.unit(6, "feet"),
  9084. weight: math.unit(50, "lbs"),
  9085. name: "Front",
  9086. image: {
  9087. source: "./media/characters/sentri/front.svg",
  9088. extra: 1750 / 1570,
  9089. bottom: 0.025
  9090. }
  9091. },
  9092. frontAlt: {
  9093. height: math.unit(6, "feet"),
  9094. weight: math.unit(50, "lbs"),
  9095. name: "Front (Alt)",
  9096. image: {
  9097. source: "./media/characters/sentri/front-alt.svg",
  9098. extra: 1750 / 1570,
  9099. bottom: 0.025
  9100. }
  9101. },
  9102. },
  9103. [
  9104. {
  9105. name: "Normal",
  9106. height: math.unit(15, "feet"),
  9107. default: true
  9108. },
  9109. {
  9110. name: "Macro",
  9111. height: math.unit(2500, "feet")
  9112. }
  9113. ]
  9114. ))
  9115. characterMakers.push(() => makeCharacter(
  9116. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9117. {
  9118. front: {
  9119. height: math.unit(5 + 8 / 12, "feet"),
  9120. weight: math.unit(130, "lbs"),
  9121. name: "Front",
  9122. image: {
  9123. source: "./media/characters/corvin/front.svg",
  9124. extra: 1803 / 1629
  9125. }
  9126. },
  9127. frontShirt: {
  9128. height: math.unit(5 + 8 / 12, "feet"),
  9129. weight: math.unit(130, "lbs"),
  9130. name: "Front (Shirt)",
  9131. image: {
  9132. source: "./media/characters/corvin/front-shirt.svg",
  9133. extra: 1803 / 1629
  9134. }
  9135. },
  9136. frontPoncho: {
  9137. height: math.unit(5 + 8 / 12, "feet"),
  9138. weight: math.unit(130, "lbs"),
  9139. name: "Front (Poncho)",
  9140. image: {
  9141. source: "./media/characters/corvin/front-poncho.svg",
  9142. extra: 1803 / 1629
  9143. }
  9144. },
  9145. side: {
  9146. height: math.unit(5 + 8 / 12, "feet"),
  9147. weight: math.unit(130, "lbs"),
  9148. name: "Side",
  9149. image: {
  9150. source: "./media/characters/corvin/side.svg",
  9151. extra: 1012 / 945
  9152. }
  9153. },
  9154. back: {
  9155. height: math.unit(5 + 8 / 12, "feet"),
  9156. weight: math.unit(130, "lbs"),
  9157. name: "Back",
  9158. image: {
  9159. source: "./media/characters/corvin/back.svg",
  9160. extra: 1803 / 1629
  9161. }
  9162. },
  9163. },
  9164. [
  9165. {
  9166. name: "Micro",
  9167. height: math.unit(3, "inches")
  9168. },
  9169. {
  9170. name: "Normal",
  9171. height: math.unit(5 + 8 / 12, "feet")
  9172. },
  9173. {
  9174. name: "Macro",
  9175. height: math.unit(300, "feet"),
  9176. default: true
  9177. },
  9178. {
  9179. name: "Megamacro",
  9180. height: math.unit(500, "miles")
  9181. }
  9182. ]
  9183. ))
  9184. characterMakers.push(() => makeCharacter(
  9185. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9186. {
  9187. front: {
  9188. height: math.unit(6, "feet"),
  9189. weight: math.unit(135, "lbs"),
  9190. name: "Front",
  9191. image: {
  9192. source: "./media/characters/q/front.svg",
  9193. extra: 854 / 752,
  9194. bottom: 0.005
  9195. }
  9196. },
  9197. back: {
  9198. height: math.unit(6, "feet"),
  9199. weight: math.unit(130, "lbs"),
  9200. name: "Back",
  9201. image: {
  9202. source: "./media/characters/q/back.svg",
  9203. extra: 854 / 752
  9204. }
  9205. },
  9206. },
  9207. [
  9208. {
  9209. name: "Macro",
  9210. height: math.unit(90, "feet"),
  9211. default: true
  9212. },
  9213. {
  9214. name: "Extra Macro",
  9215. height: math.unit(300, "feet"),
  9216. },
  9217. {
  9218. name: "BIG WALF",
  9219. height: math.unit(750, "feet"),
  9220. },
  9221. ]
  9222. ))
  9223. characterMakers.push(() => makeCharacter(
  9224. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9225. {
  9226. front: {
  9227. height: math.unit(3, "feet"),
  9228. weight: math.unit(28, "lbs"),
  9229. name: "Front",
  9230. image: {
  9231. source: "./media/characters/citrine/front.svg"
  9232. }
  9233. }
  9234. },
  9235. [
  9236. {
  9237. name: "Normal",
  9238. height: math.unit(3, "feet"),
  9239. default: true
  9240. }
  9241. ]
  9242. ))
  9243. characterMakers.push(() => makeCharacter(
  9244. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9245. {
  9246. front: {
  9247. height: math.unit(14, "feet"),
  9248. weight: math.unit(1450, "kg"),
  9249. preyCapacity: math.unit(15, "people"),
  9250. name: "Front",
  9251. image: {
  9252. source: "./media/characters/aura-starwind/front.svg",
  9253. extra: 1440/1327,
  9254. bottom: 11/1451
  9255. }
  9256. },
  9257. side: {
  9258. height: math.unit(14, "feet"),
  9259. weight: math.unit(1450, "kg"),
  9260. preyCapacity: math.unit(15, "people"),
  9261. name: "Side",
  9262. image: {
  9263. source: "./media/characters/aura-starwind/side.svg",
  9264. extra: 1654 / 1497
  9265. }
  9266. },
  9267. taur: {
  9268. height: math.unit(18, "feet"),
  9269. weight: math.unit(5500, "kg"),
  9270. preyCapacity: math.unit(50, "people"),
  9271. name: "Taur",
  9272. image: {
  9273. source: "./media/characters/aura-starwind/taur.svg",
  9274. extra: 1760 / 1650
  9275. }
  9276. },
  9277. feral: {
  9278. height: math.unit(46, "feet"),
  9279. weight: math.unit(25000, "kg"),
  9280. preyCapacity: math.unit(120, "people"),
  9281. name: "Feral",
  9282. image: {
  9283. source: "./media/characters/aura-starwind/feral.svg"
  9284. }
  9285. },
  9286. },
  9287. [
  9288. {
  9289. name: "Normal",
  9290. height: math.unit(14, "feet"),
  9291. default: true
  9292. },
  9293. {
  9294. name: "Macro",
  9295. height: math.unit(50, "meters")
  9296. },
  9297. {
  9298. name: "Megamacro",
  9299. height: math.unit(5000, "meters")
  9300. },
  9301. {
  9302. name: "Gigamacro",
  9303. height: math.unit(100000, "kilometers")
  9304. },
  9305. ]
  9306. ))
  9307. characterMakers.push(() => makeCharacter(
  9308. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9309. {
  9310. front: {
  9311. height: math.unit(2 + 7 / 12, "feet"),
  9312. weight: math.unit(32, "lbs"),
  9313. name: "Front",
  9314. image: {
  9315. source: "./media/characters/rivet/front.svg",
  9316. extra: 1716 / 1658,
  9317. bottom: 0.03
  9318. }
  9319. },
  9320. foot: {
  9321. height: math.unit(0.551, "feet"),
  9322. name: "Rivet's Foot",
  9323. image: {
  9324. source: "./media/characters/rivet/foot.svg"
  9325. },
  9326. rename: true
  9327. }
  9328. },
  9329. [
  9330. {
  9331. name: "Micro",
  9332. height: math.unit(1.5, "inches"),
  9333. },
  9334. {
  9335. name: "Normal",
  9336. height: math.unit(2 + 7 / 12, "feet"),
  9337. default: true
  9338. },
  9339. {
  9340. name: "Macro",
  9341. height: math.unit(85, "feet")
  9342. },
  9343. {
  9344. name: "Megamacro",
  9345. height: math.unit(2.2, "km")
  9346. }
  9347. ]
  9348. ))
  9349. characterMakers.push(() => makeCharacter(
  9350. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9351. {
  9352. front: {
  9353. height: math.unit(5 + 9 / 12, "feet"),
  9354. weight: math.unit(150, "lbs"),
  9355. name: "Front",
  9356. image: {
  9357. source: "./media/characters/coffee/front.svg",
  9358. extra: 946/880,
  9359. bottom: 66/1012
  9360. }
  9361. },
  9362. foot: {
  9363. height: math.unit(1.29, "feet"),
  9364. name: "Foot",
  9365. image: {
  9366. source: "./media/characters/coffee/foot.svg"
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Micro",
  9373. height: math.unit(2, "inches"),
  9374. },
  9375. {
  9376. name: "Normal",
  9377. height: math.unit(5 + 9 / 12, "feet"),
  9378. default: true
  9379. },
  9380. {
  9381. name: "Macro",
  9382. height: math.unit(800, "feet")
  9383. },
  9384. {
  9385. name: "Megamacro",
  9386. height: math.unit(25, "miles")
  9387. }
  9388. ]
  9389. ))
  9390. characterMakers.push(() => makeCharacter(
  9391. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9392. {
  9393. front: {
  9394. height: math.unit(6, "feet"),
  9395. weight: math.unit(200, "lbs"),
  9396. name: "Front",
  9397. image: {
  9398. source: "./media/characters/chari-gal/front.svg",
  9399. extra: 1568 / 1385,
  9400. bottom: 0.047
  9401. }
  9402. },
  9403. gigantamax: {
  9404. height: math.unit(6 * 16, "feet"),
  9405. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9406. name: "Gigantamax",
  9407. image: {
  9408. source: "./media/characters/chari-gal/gigantamax.svg",
  9409. extra: 1124 / 888,
  9410. bottom: 0.03
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Normal",
  9417. height: math.unit(5 + 7 / 12, "feet")
  9418. },
  9419. {
  9420. name: "Macro",
  9421. height: math.unit(200, "feet"),
  9422. default: true
  9423. }
  9424. ]
  9425. ))
  9426. characterMakers.push(() => makeCharacter(
  9427. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9428. {
  9429. front: {
  9430. height: math.unit(6, "feet"),
  9431. weight: math.unit(150, "lbs"),
  9432. name: "Front",
  9433. image: {
  9434. source: "./media/characters/nova/front.svg",
  9435. extra: 5000 / 4722,
  9436. bottom: 0.02
  9437. }
  9438. }
  9439. },
  9440. [
  9441. {
  9442. name: "Micro-",
  9443. height: math.unit(0.8, "inches")
  9444. },
  9445. {
  9446. name: "Micro",
  9447. height: math.unit(2, "inches"),
  9448. default: true
  9449. },
  9450. ]
  9451. ))
  9452. characterMakers.push(() => makeCharacter(
  9453. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9454. {
  9455. koboldFront: {
  9456. height: math.unit(3 + 1 / 12, "feet"),
  9457. weight: math.unit(21.7, "lbs"),
  9458. name: "Front",
  9459. image: {
  9460. source: "./media/characters/argent/kobold-front.svg",
  9461. extra: 1471 / 1331,
  9462. bottom: 100.8 / 1575.5
  9463. },
  9464. form: "kobold",
  9465. default: true
  9466. },
  9467. dragonFront: {
  9468. height: math.unit(75, "inches"),
  9469. name: "Front",
  9470. image: {
  9471. source: "./media/characters/argent/dragon-front.svg",
  9472. extra: 1389/1248,
  9473. bottom: 54/1443
  9474. },
  9475. form: "dragon",
  9476. },
  9477. dragonBack: {
  9478. height: math.unit(75, "inches"),
  9479. name: "Back",
  9480. image: {
  9481. source: "./media/characters/argent/dragon-back.svg",
  9482. extra: 1399/1271,
  9483. bottom: 23/1422
  9484. },
  9485. form: "dragon",
  9486. },
  9487. dragonDressed: {
  9488. height: math.unit(75, "inches"),
  9489. name: "Dressed",
  9490. image: {
  9491. source: "./media/characters/argent/dragon-dressed.svg",
  9492. extra: 1350/1215,
  9493. bottom: 26/1376
  9494. },
  9495. form: "dragon"
  9496. },
  9497. dragonHead: {
  9498. height: math.unit(23.5, "inches"),
  9499. name: "Head",
  9500. image: {
  9501. source: "./media/characters/argent/dragon-head.svg"
  9502. },
  9503. form: "dragon",
  9504. },
  9505. },
  9506. [
  9507. {
  9508. name: "Micro",
  9509. height: math.unit(2, "inches"),
  9510. form: "kobold",
  9511. },
  9512. {
  9513. name: "Normal",
  9514. height: math.unit(3 + 1 / 12, "feet"),
  9515. form: "kobold",
  9516. default: true
  9517. },
  9518. {
  9519. name: "Macro",
  9520. height: math.unit(120, "feet"),
  9521. form: "kobold",
  9522. },
  9523. {
  9524. name: "Speck",
  9525. height: math.unit(1, "mm"),
  9526. form: "dragon",
  9527. },
  9528. {
  9529. name: "Tiny",
  9530. height: math.unit(1, "cm"),
  9531. form: "dragon",
  9532. },
  9533. {
  9534. name: "Micro",
  9535. height: math.unit(5, "cm"),
  9536. form: "dragon",
  9537. },
  9538. {
  9539. name: "Normal",
  9540. height: math.unit(75, "inches"),
  9541. form: "dragon",
  9542. default: true
  9543. },
  9544. {
  9545. name: "Extra Tall",
  9546. height: math.unit(9, "feet"),
  9547. form: "dragon",
  9548. },
  9549. {
  9550. name: "Inconvenient",
  9551. height: math.unit(5, "meters"),
  9552. form: "dragon",
  9553. },
  9554. {
  9555. name: "Macro",
  9556. height: math.unit(70, "meters"),
  9557. form: "dragon",
  9558. },
  9559. {
  9560. name: "Macro+",
  9561. height: math.unit(250, "meters"),
  9562. form: "dragon",
  9563. },
  9564. {
  9565. name: "Megamacro",
  9566. height: math.unit(20, "km"),
  9567. form: "dragon",
  9568. },
  9569. {
  9570. name: "Mountainous",
  9571. height: math.unit(100, "km"),
  9572. form: "dragon",
  9573. },
  9574. {
  9575. name: "Continental",
  9576. height: math.unit(2, "megameters"),
  9577. form: "dragon",
  9578. },
  9579. {
  9580. name: "Too Big",
  9581. height: math.unit(900, "megameters"),
  9582. form: "dragon",
  9583. },
  9584. ],
  9585. {
  9586. "kobold": {
  9587. name: "Kobold",
  9588. default: true
  9589. },
  9590. "dragon": {
  9591. name: "Dragon",
  9592. },
  9593. }
  9594. ))
  9595. characterMakers.push(() => makeCharacter(
  9596. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9597. {
  9598. lamp: {
  9599. height: math.unit(7 * 1559 / 989, "feet"),
  9600. name: "Magic Lamp",
  9601. image: {
  9602. source: "./media/characters/mira-al-cul/lamp.svg",
  9603. extra: 1617 / 1559
  9604. }
  9605. },
  9606. front: {
  9607. height: math.unit(7, "feet"),
  9608. name: "Front",
  9609. image: {
  9610. source: "./media/characters/mira-al-cul/front.svg",
  9611. extra: 1044 / 990
  9612. }
  9613. },
  9614. },
  9615. [
  9616. {
  9617. name: "Heavily Restricted",
  9618. height: math.unit(7 * 1559 / 989, "feet")
  9619. },
  9620. {
  9621. name: "Freshly Freed",
  9622. height: math.unit(50 * 1559 / 989, "feet")
  9623. },
  9624. {
  9625. name: "World Encompassing",
  9626. height: math.unit(10000 * 1559 / 989, "miles")
  9627. },
  9628. {
  9629. name: "Galactic",
  9630. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9631. },
  9632. {
  9633. name: "Palmed Universe",
  9634. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9635. default: true
  9636. },
  9637. {
  9638. name: "Multiversal Matriarch",
  9639. height: math.unit(8.87e10, "yottameters")
  9640. },
  9641. {
  9642. name: "Void Mother",
  9643. height: math.unit(3.14e110, "yottaparsecs")
  9644. },
  9645. {
  9646. name: "Toying with Transcendence",
  9647. height: math.unit(1e307, "meters")
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9653. {
  9654. front: {
  9655. height: math.unit(17 + 1 / 12, "feet"),
  9656. weight: math.unit(476.2 * 5, "lbs"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/kuro-shi-uchū/front.svg",
  9660. extra: 2329 / 1835,
  9661. bottom: 0.02
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Micro",
  9668. height: math.unit(2, "inches")
  9669. },
  9670. {
  9671. name: "Normal",
  9672. height: math.unit(12, "meters")
  9673. },
  9674. {
  9675. name: "Planetary",
  9676. height: math.unit(0.00929, "AU"),
  9677. default: true
  9678. },
  9679. {
  9680. name: "Universal",
  9681. height: math.unit(20, "gigaparsecs")
  9682. },
  9683. ]
  9684. ))
  9685. characterMakers.push(() => makeCharacter(
  9686. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9687. {
  9688. front: {
  9689. height: math.unit(5 + 2 / 12, "feet"),
  9690. weight: math.unit(120, "lbs"),
  9691. name: "Front",
  9692. image: {
  9693. source: "./media/characters/katherine/front.svg",
  9694. extra: 2075 / 1969
  9695. }
  9696. },
  9697. dress: {
  9698. height: math.unit(5 + 2 / 12, "feet"),
  9699. weight: math.unit(120, "lbs"),
  9700. name: "Dress",
  9701. image: {
  9702. source: "./media/characters/katherine/dress.svg",
  9703. extra: 2258 / 2064
  9704. }
  9705. },
  9706. },
  9707. [
  9708. {
  9709. name: "Micro",
  9710. height: math.unit(1, "inches"),
  9711. default: true
  9712. },
  9713. {
  9714. name: "Normal",
  9715. height: math.unit(5 + 2 / 12, "feet")
  9716. },
  9717. {
  9718. name: "Macro",
  9719. height: math.unit(100, "meters")
  9720. },
  9721. {
  9722. name: "Megamacro",
  9723. height: math.unit(80, "miles")
  9724. },
  9725. ]
  9726. ))
  9727. characterMakers.push(() => makeCharacter(
  9728. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9729. {
  9730. front: {
  9731. height: math.unit(7 + 8 / 12, "feet"),
  9732. weight: math.unit(250, "lbs"),
  9733. name: "Front",
  9734. image: {
  9735. source: "./media/characters/yevis/front.svg",
  9736. extra: 1938 / 1755
  9737. }
  9738. }
  9739. },
  9740. [
  9741. {
  9742. name: "Mortal",
  9743. height: math.unit(7 + 8 / 12, "feet")
  9744. },
  9745. {
  9746. name: "Battle",
  9747. height: math.unit(25 + 11 / 12, "feet")
  9748. },
  9749. {
  9750. name: "Wrath",
  9751. height: math.unit(1654 + 11 / 12, "feet")
  9752. },
  9753. {
  9754. name: "Planet Destroyer",
  9755. height: math.unit(12000, "miles")
  9756. },
  9757. {
  9758. name: "Galaxy Conqueror",
  9759. height: math.unit(1.45, "zettameters"),
  9760. default: true
  9761. },
  9762. {
  9763. name: "Universal War",
  9764. height: math.unit(184, "gigaparsecs")
  9765. },
  9766. {
  9767. name: "Eternity War",
  9768. height: math.unit(1.98e55, "yottaparsecs")
  9769. },
  9770. ]
  9771. ))
  9772. characterMakers.push(() => makeCharacter(
  9773. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9774. {
  9775. front: {
  9776. height: math.unit(5 + 8 / 12, "feet"),
  9777. weight: math.unit(63, "kg"),
  9778. name: "Front",
  9779. image: {
  9780. source: "./media/characters/xavier/front.svg",
  9781. extra: 944 / 883
  9782. }
  9783. },
  9784. frontStretch: {
  9785. height: math.unit(5 + 8 / 12, "feet"),
  9786. weight: math.unit(63, "kg"),
  9787. name: "Stretching",
  9788. image: {
  9789. source: "./media/characters/xavier/front-stretch.svg",
  9790. extra: 962 / 820
  9791. }
  9792. },
  9793. },
  9794. [
  9795. {
  9796. name: "Normal",
  9797. height: math.unit(5 + 8 / 12, "feet")
  9798. },
  9799. {
  9800. name: "Macro",
  9801. height: math.unit(100, "meters"),
  9802. default: true
  9803. },
  9804. {
  9805. name: "McLargeHuge",
  9806. height: math.unit(10, "miles")
  9807. },
  9808. ]
  9809. ))
  9810. characterMakers.push(() => makeCharacter(
  9811. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9812. {
  9813. front: {
  9814. height: math.unit(5 + 5 / 12, "feet"),
  9815. weight: math.unit(150, "lb"),
  9816. name: "Front",
  9817. image: {
  9818. source: "./media/characters/joshii/front.svg",
  9819. extra: 765 / 653,
  9820. bottom: 51 / 816
  9821. }
  9822. },
  9823. foot: {
  9824. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9825. name: "Foot",
  9826. image: {
  9827. source: "./media/characters/joshii/foot.svg"
  9828. }
  9829. },
  9830. },
  9831. [
  9832. {
  9833. name: "Micro",
  9834. height: math.unit(2, "inches")
  9835. },
  9836. {
  9837. name: "Normal",
  9838. height: math.unit(5 + 5 / 12, "feet")
  9839. },
  9840. {
  9841. name: "Macro",
  9842. height: math.unit(785, "feet"),
  9843. default: true
  9844. },
  9845. {
  9846. name: "Megamacro",
  9847. height: math.unit(24.5, "miles")
  9848. },
  9849. ]
  9850. ))
  9851. characterMakers.push(() => makeCharacter(
  9852. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9853. {
  9854. front: {
  9855. height: math.unit(6, "feet"),
  9856. weight: math.unit(150, "lb"),
  9857. name: "Front",
  9858. image: {
  9859. source: "./media/characters/goddess-elizabeth/front.svg",
  9860. extra: 1800 / 1525,
  9861. bottom: 0.005
  9862. }
  9863. },
  9864. foot: {
  9865. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9866. name: "Foot",
  9867. image: {
  9868. source: "./media/characters/goddess-elizabeth/foot.svg"
  9869. }
  9870. },
  9871. mouth: {
  9872. height: math.unit(6, "feet"),
  9873. name: "Mouth",
  9874. image: {
  9875. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9876. }
  9877. },
  9878. },
  9879. [
  9880. {
  9881. name: "Micro",
  9882. height: math.unit(12, "feet")
  9883. },
  9884. {
  9885. name: "Normal",
  9886. height: math.unit(80, "miles"),
  9887. default: true
  9888. },
  9889. {
  9890. name: "Macro",
  9891. height: math.unit(15000, "parsecs")
  9892. },
  9893. ]
  9894. ))
  9895. characterMakers.push(() => makeCharacter(
  9896. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9897. {
  9898. front: {
  9899. height: math.unit(5 + 9 / 12, "feet"),
  9900. weight: math.unit(144, "lb"),
  9901. name: "Front",
  9902. image: {
  9903. source: "./media/characters/kara/front.svg"
  9904. }
  9905. },
  9906. feet: {
  9907. height: math.unit(6 / 6.765, "feet"),
  9908. name: "Kara's Feet",
  9909. rename: true,
  9910. image: {
  9911. source: "./media/characters/kara/feet.svg"
  9912. }
  9913. },
  9914. },
  9915. [
  9916. {
  9917. name: "Normal",
  9918. height: math.unit(5 + 9 / 12, "feet")
  9919. },
  9920. {
  9921. name: "Macro",
  9922. height: math.unit(174, "feet"),
  9923. default: true
  9924. },
  9925. ]
  9926. ))
  9927. characterMakers.push(() => makeCharacter(
  9928. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9929. {
  9930. front: {
  9931. height: math.unit(18, "feet"),
  9932. weight: math.unit(4050, "lb"),
  9933. name: "Front",
  9934. image: {
  9935. source: "./media/characters/tyrone/front.svg",
  9936. extra: 2405 / 2270,
  9937. bottom: 182 / 2587
  9938. }
  9939. },
  9940. },
  9941. [
  9942. {
  9943. name: "Normal",
  9944. height: math.unit(18, "feet"),
  9945. default: true
  9946. },
  9947. {
  9948. name: "Macro",
  9949. height: math.unit(300, "feet")
  9950. },
  9951. {
  9952. name: "Megamacro",
  9953. height: math.unit(15, "km")
  9954. },
  9955. {
  9956. name: "Gigamacro",
  9957. height: math.unit(500, "km")
  9958. },
  9959. {
  9960. name: "Teramacro",
  9961. height: math.unit(0.5, "gigameters")
  9962. },
  9963. {
  9964. name: "Omnimacro",
  9965. height: math.unit(1e252, "yottauniverse")
  9966. },
  9967. ]
  9968. ))
  9969. characterMakers.push(() => makeCharacter(
  9970. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9971. {
  9972. front: {
  9973. height: math.unit(7 + 8 / 12, "feet"),
  9974. weight: math.unit(120, "lb"),
  9975. name: "Front",
  9976. image: {
  9977. source: "./media/characters/danny/front.svg",
  9978. extra: 1490 / 1350
  9979. }
  9980. },
  9981. back: {
  9982. height: math.unit(7 + 8 / 12, "feet"),
  9983. weight: math.unit(120, "lb"),
  9984. name: "Back",
  9985. image: {
  9986. source: "./media/characters/danny/back.svg",
  9987. extra: 1490 / 1350
  9988. }
  9989. },
  9990. },
  9991. [
  9992. {
  9993. name: "Normal",
  9994. height: math.unit(7 + 8 / 12, "feet"),
  9995. default: true
  9996. },
  9997. ]
  9998. ))
  9999. characterMakers.push(() => makeCharacter(
  10000. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10001. {
  10002. front: {
  10003. height: math.unit(3.5, "inches"),
  10004. weight: math.unit(19, "grams"),
  10005. name: "Front",
  10006. image: {
  10007. source: "./media/characters/mallow/front.svg",
  10008. extra: 471 / 431
  10009. }
  10010. },
  10011. back: {
  10012. height: math.unit(3.5, "inches"),
  10013. weight: math.unit(19, "grams"),
  10014. name: "Back",
  10015. image: {
  10016. source: "./media/characters/mallow/back.svg",
  10017. extra: 471 / 431
  10018. }
  10019. },
  10020. },
  10021. [
  10022. {
  10023. name: "Normal",
  10024. height: math.unit(3.5, "inches"),
  10025. default: true
  10026. },
  10027. ]
  10028. ))
  10029. characterMakers.push(() => makeCharacter(
  10030. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10031. {
  10032. front: {
  10033. height: math.unit(9, "feet"),
  10034. weight: math.unit(230, "kg"),
  10035. name: "Front",
  10036. image: {
  10037. source: "./media/characters/starry-aqua/front.svg"
  10038. }
  10039. },
  10040. back: {
  10041. height: math.unit(9, "feet"),
  10042. weight: math.unit(230, "kg"),
  10043. name: "Back",
  10044. image: {
  10045. source: "./media/characters/starry-aqua/back.svg"
  10046. }
  10047. },
  10048. hand: {
  10049. height: math.unit(9 * 0.1168, "feet"),
  10050. name: "Hand",
  10051. image: {
  10052. source: "./media/characters/starry-aqua/hand.svg"
  10053. }
  10054. },
  10055. foot: {
  10056. height: math.unit(9 * 0.18, "feet"),
  10057. name: "Foot",
  10058. image: {
  10059. source: "./media/characters/starry-aqua/foot.svg"
  10060. }
  10061. }
  10062. },
  10063. [
  10064. {
  10065. name: "Micro",
  10066. height: math.unit(3, "inches")
  10067. },
  10068. {
  10069. name: "Normal",
  10070. height: math.unit(9, "feet")
  10071. },
  10072. {
  10073. name: "Macro",
  10074. height: math.unit(300, "feet"),
  10075. default: true
  10076. },
  10077. {
  10078. name: "Megamacro",
  10079. height: math.unit(3200, "feet")
  10080. }
  10081. ]
  10082. ))
  10083. characterMakers.push(() => makeCharacter(
  10084. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10085. {
  10086. front: {
  10087. height: math.unit(15, "feet"),
  10088. weight: math.unit(5026, "lb"),
  10089. name: "Front",
  10090. image: {
  10091. source: "./media/characters/luka-towers/front.svg",
  10092. extra: 1269/1133,
  10093. bottom: 51/1320
  10094. }
  10095. },
  10096. },
  10097. [
  10098. {
  10099. name: "Normal",
  10100. height: math.unit(15, "feet"),
  10101. default: true
  10102. },
  10103. {
  10104. name: "Minimacro",
  10105. height: math.unit(25, "feet")
  10106. },
  10107. {
  10108. name: "Macro",
  10109. height: math.unit(320, "feet")
  10110. },
  10111. {
  10112. name: "Megamacro",
  10113. height: math.unit(35000, "feet")
  10114. },
  10115. {
  10116. name: "Gigamacro",
  10117. height: math.unit(4000, "miles")
  10118. },
  10119. {
  10120. name: "Teramacro",
  10121. height: math.unit(15000, "miles")
  10122. },
  10123. ]
  10124. ))
  10125. characterMakers.push(() => makeCharacter(
  10126. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10127. {
  10128. front: {
  10129. height: math.unit(6, "feet"),
  10130. weight: math.unit(150, "lb"),
  10131. name: "Front",
  10132. image: {
  10133. source: "./media/characters/natalie-nightring/front.svg",
  10134. extra: 1,
  10135. bottom: 0.06
  10136. }
  10137. },
  10138. },
  10139. [
  10140. {
  10141. name: "Uh Oh",
  10142. height: math.unit(0.1, "mm")
  10143. },
  10144. {
  10145. name: "Small",
  10146. height: math.unit(3, "inches")
  10147. },
  10148. {
  10149. name: "Human Scale",
  10150. height: math.unit(6, "feet")
  10151. },
  10152. {
  10153. name: "Librarian",
  10154. height: math.unit(50, "feet"),
  10155. default: true
  10156. },
  10157. {
  10158. name: "Immense",
  10159. height: math.unit(200, "miles")
  10160. },
  10161. ]
  10162. ))
  10163. characterMakers.push(() => makeCharacter(
  10164. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10165. {
  10166. front: {
  10167. height: math.unit(6, "feet"),
  10168. weight: math.unit(180, "lbs"),
  10169. name: "Front",
  10170. image: {
  10171. source: "./media/characters/danni-rosie/front.svg",
  10172. extra: 1260 / 1128,
  10173. bottom: 0.022
  10174. }
  10175. },
  10176. },
  10177. [
  10178. {
  10179. name: "Micro",
  10180. height: math.unit(2, "inches"),
  10181. default: true
  10182. },
  10183. ]
  10184. ))
  10185. characterMakers.push(() => makeCharacter(
  10186. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10187. {
  10188. front: {
  10189. height: math.unit(5 + 9 / 12, "feet"),
  10190. weight: math.unit(220, "lb"),
  10191. name: "Front",
  10192. image: {
  10193. source: "./media/characters/samantha-kruse/front.svg",
  10194. extra: (985 / 935),
  10195. bottom: 0.03
  10196. }
  10197. },
  10198. frontUndressed: {
  10199. height: math.unit(5 + 9 / 12, "feet"),
  10200. weight: math.unit(220, "lb"),
  10201. name: "Front (Undressed)",
  10202. image: {
  10203. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10204. extra: (973 / 923),
  10205. bottom: 0.025
  10206. }
  10207. },
  10208. fat: {
  10209. height: math.unit(5 + 9 / 12, "feet"),
  10210. weight: math.unit(900, "lb"),
  10211. name: "Front (Fat)",
  10212. image: {
  10213. source: "./media/characters/samantha-kruse/fat.svg",
  10214. extra: 2688 / 2561
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Normal",
  10221. height: math.unit(5 + 9 / 12, "feet"),
  10222. default: true
  10223. }
  10224. ]
  10225. ))
  10226. characterMakers.push(() => makeCharacter(
  10227. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10228. {
  10229. back: {
  10230. height: math.unit(5 + 4 / 12, "feet"),
  10231. weight: math.unit(4963, "lb"),
  10232. name: "Back",
  10233. image: {
  10234. source: "./media/characters/amelia-rosie/back.svg",
  10235. extra: 1113 / 963,
  10236. bottom: 0.01
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Level 0",
  10243. height: math.unit(5 + 4 / 12, "feet")
  10244. },
  10245. {
  10246. name: "Level 1",
  10247. height: math.unit(164597, "feet"),
  10248. default: true
  10249. },
  10250. {
  10251. name: "Level 2",
  10252. height: math.unit(956243, "miles")
  10253. },
  10254. {
  10255. name: "Level 3",
  10256. height: math.unit(29421709423, "miles")
  10257. },
  10258. {
  10259. name: "Level 4",
  10260. height: math.unit(154, "lightyears")
  10261. },
  10262. {
  10263. name: "Level 5",
  10264. height: math.unit(4738272, "lightyears")
  10265. },
  10266. {
  10267. name: "Level 6",
  10268. height: math.unit(145787152896, "lightyears")
  10269. },
  10270. ]
  10271. ))
  10272. characterMakers.push(() => makeCharacter(
  10273. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10274. {
  10275. front: {
  10276. height: math.unit(5 + 11 / 12, "feet"),
  10277. weight: math.unit(65, "kg"),
  10278. name: "Front",
  10279. image: {
  10280. source: "./media/characters/rook-kitara/front.svg",
  10281. extra: 1347 / 1274,
  10282. bottom: 0.005
  10283. }
  10284. },
  10285. },
  10286. [
  10287. {
  10288. name: "Totally Unfair",
  10289. height: math.unit(1.8, "mm")
  10290. },
  10291. {
  10292. name: "Lap Rookie",
  10293. height: math.unit(1.4, "feet")
  10294. },
  10295. {
  10296. name: "Normal",
  10297. height: math.unit(5 + 11 / 12, "feet"),
  10298. default: true
  10299. },
  10300. {
  10301. name: "How Did This Happen",
  10302. height: math.unit(80, "miles")
  10303. }
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10308. {
  10309. front: {
  10310. height: math.unit(7, "feet"),
  10311. weight: math.unit(300, "lb"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/pisces/front.svg",
  10315. extra: 2255 / 2115,
  10316. bottom: 0.03
  10317. }
  10318. },
  10319. back: {
  10320. height: math.unit(7, "feet"),
  10321. weight: math.unit(300, "lb"),
  10322. name: "Back",
  10323. image: {
  10324. source: "./media/characters/pisces/back.svg",
  10325. extra: 2146 / 2055,
  10326. bottom: 0.04
  10327. }
  10328. },
  10329. },
  10330. [
  10331. {
  10332. name: "Normal",
  10333. height: math.unit(7, "feet"),
  10334. default: true
  10335. },
  10336. {
  10337. name: "Swimming Pool",
  10338. height: math.unit(12.2, "meters")
  10339. },
  10340. {
  10341. name: "Olympic Swimming Pool",
  10342. height: math.unit(56.3, "meters")
  10343. },
  10344. {
  10345. name: "Lake Superior",
  10346. height: math.unit(93900, "meters")
  10347. },
  10348. {
  10349. name: "Mediterranean Sea",
  10350. height: math.unit(644457, "meters")
  10351. },
  10352. {
  10353. name: "World's Oceans",
  10354. height: math.unit(4567491, "meters")
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10360. {
  10361. front: {
  10362. height: math.unit(2.3, "meters"),
  10363. weight: math.unit(120, "kg"),
  10364. name: "Front",
  10365. image: {
  10366. source: "./media/characters/zelas/front.svg"
  10367. }
  10368. },
  10369. side: {
  10370. height: math.unit(2.3, "meters"),
  10371. weight: math.unit(120, "kg"),
  10372. name: "Side",
  10373. image: {
  10374. source: "./media/characters/zelas/side.svg"
  10375. }
  10376. },
  10377. back: {
  10378. height: math.unit(2.3, "meters"),
  10379. weight: math.unit(120, "kg"),
  10380. name: "Back",
  10381. image: {
  10382. source: "./media/characters/zelas/back.svg"
  10383. }
  10384. },
  10385. foot: {
  10386. height: math.unit(1.116, "feet"),
  10387. name: "Foot",
  10388. image: {
  10389. source: "./media/characters/zelas/foot.svg"
  10390. }
  10391. },
  10392. },
  10393. [
  10394. {
  10395. name: "Normal",
  10396. height: math.unit(2.3, "meters")
  10397. },
  10398. {
  10399. name: "Macro",
  10400. height: math.unit(30, "meters"),
  10401. default: true
  10402. },
  10403. ]
  10404. ))
  10405. characterMakers.push(() => makeCharacter(
  10406. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10407. {
  10408. front: {
  10409. height: math.unit(1, "inch"),
  10410. weight: math.unit(0.21, "grams"),
  10411. name: "Front",
  10412. image: {
  10413. source: "./media/characters/talbot/front.svg",
  10414. extra: 594 / 544
  10415. }
  10416. },
  10417. },
  10418. [
  10419. {
  10420. name: "Micro",
  10421. height: math.unit(1, "inch"),
  10422. default: true
  10423. },
  10424. ]
  10425. ))
  10426. characterMakers.push(() => makeCharacter(
  10427. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10428. {
  10429. front: {
  10430. height: math.unit(3 + 3 / 12, "feet"),
  10431. weight: math.unit(51.8, "lb"),
  10432. name: "Front",
  10433. image: {
  10434. source: "./media/characters/fliss/front.svg",
  10435. extra: 840 / 640
  10436. }
  10437. },
  10438. },
  10439. [
  10440. {
  10441. name: "Teeny Tiny",
  10442. height: math.unit(1, "mm")
  10443. },
  10444. {
  10445. name: "Small",
  10446. height: math.unit(1, "inch"),
  10447. default: true
  10448. },
  10449. {
  10450. name: "Standard Sylveon",
  10451. height: math.unit(3 + 3 / 12, "feet")
  10452. },
  10453. {
  10454. name: "Large Nuisance",
  10455. height: math.unit(33, "feet")
  10456. },
  10457. {
  10458. name: "City Filler",
  10459. height: math.unit(3000, "feet")
  10460. },
  10461. {
  10462. name: "New Horizon",
  10463. height: math.unit(6000, "miles")
  10464. },
  10465. ]
  10466. ))
  10467. characterMakers.push(() => makeCharacter(
  10468. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10469. {
  10470. front: {
  10471. height: math.unit(5, "cm"),
  10472. weight: math.unit(1.94, "g"),
  10473. name: "Front",
  10474. image: {
  10475. source: "./media/characters/fleta/front.svg",
  10476. extra: 835 / 803
  10477. }
  10478. },
  10479. back: {
  10480. height: math.unit(5, "cm"),
  10481. weight: math.unit(1.94, "g"),
  10482. name: "Back",
  10483. image: {
  10484. source: "./media/characters/fleta/back.svg",
  10485. extra: 835 / 803
  10486. }
  10487. },
  10488. },
  10489. [
  10490. {
  10491. name: "Micro",
  10492. height: math.unit(5, "cm"),
  10493. default: true
  10494. },
  10495. ]
  10496. ))
  10497. characterMakers.push(() => makeCharacter(
  10498. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10499. {
  10500. front: {
  10501. height: math.unit(6, "feet"),
  10502. weight: math.unit(225, "lb"),
  10503. name: "Front",
  10504. image: {
  10505. source: "./media/characters/dominic/front.svg",
  10506. extra: 1770 / 1620,
  10507. bottom: 0.025
  10508. }
  10509. },
  10510. back: {
  10511. height: math.unit(6, "feet"),
  10512. weight: math.unit(225, "lb"),
  10513. name: "Back",
  10514. image: {
  10515. source: "./media/characters/dominic/back.svg",
  10516. extra: 1745 / 1620,
  10517. bottom: 0.065
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Nano",
  10524. height: math.unit(0.1, "mm")
  10525. },
  10526. {
  10527. name: "Micro-",
  10528. height: math.unit(1, "mm")
  10529. },
  10530. {
  10531. name: "Micro",
  10532. height: math.unit(4, "inches")
  10533. },
  10534. {
  10535. name: "Normal",
  10536. height: math.unit(6 + 4 / 12, "feet"),
  10537. default: true
  10538. },
  10539. {
  10540. name: "Macro",
  10541. height: math.unit(115, "feet")
  10542. },
  10543. {
  10544. name: "Macro+",
  10545. height: math.unit(955, "feet")
  10546. },
  10547. {
  10548. name: "Megamacro",
  10549. height: math.unit(8990, "feet")
  10550. },
  10551. {
  10552. name: "Gigmacro",
  10553. height: math.unit(9310, "miles")
  10554. },
  10555. {
  10556. name: "Teramacro",
  10557. height: math.unit(1567005010, "miles")
  10558. },
  10559. {
  10560. name: "Examacro",
  10561. height: math.unit(1425, "parsecs")
  10562. },
  10563. ]
  10564. ))
  10565. characterMakers.push(() => makeCharacter(
  10566. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10567. {
  10568. front: {
  10569. height: math.unit(400, "feet"),
  10570. weight: math.unit(44444444, "lb"),
  10571. name: "Front",
  10572. image: {
  10573. source: "./media/characters/major-colonel/front.svg"
  10574. }
  10575. },
  10576. back: {
  10577. height: math.unit(400, "feet"),
  10578. weight: math.unit(44444444, "lb"),
  10579. name: "Back",
  10580. image: {
  10581. source: "./media/characters/major-colonel/back.svg"
  10582. }
  10583. },
  10584. },
  10585. [
  10586. {
  10587. name: "Macro",
  10588. height: math.unit(400, "feet"),
  10589. default: true
  10590. },
  10591. ]
  10592. ))
  10593. characterMakers.push(() => makeCharacter(
  10594. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10595. {
  10596. catFront: {
  10597. height: math.unit(6, "feet"),
  10598. weight: math.unit(120, "lb"),
  10599. name: "Front (Cat Side)",
  10600. image: {
  10601. source: "./media/characters/axel-lycan/cat-front.svg",
  10602. extra: 430 / 402,
  10603. bottom: 43 / 472.35
  10604. }
  10605. },
  10606. catBack: {
  10607. height: math.unit(6, "feet"),
  10608. weight: math.unit(120, "lb"),
  10609. name: "Back (Cat Side)",
  10610. image: {
  10611. source: "./media/characters/axel-lycan/cat-back.svg",
  10612. extra: 447 / 419,
  10613. bottom: 23.3 / 469
  10614. }
  10615. },
  10616. wolfFront: {
  10617. height: math.unit(6, "feet"),
  10618. weight: math.unit(120, "lb"),
  10619. name: "Front (Wolf Side)",
  10620. image: {
  10621. source: "./media/characters/axel-lycan/wolf-front.svg",
  10622. extra: 485 / 456,
  10623. bottom: 19 / 504
  10624. }
  10625. },
  10626. wolfBack: {
  10627. height: math.unit(6, "feet"),
  10628. weight: math.unit(120, "lb"),
  10629. name: "Back (Wolf Side)",
  10630. image: {
  10631. source: "./media/characters/axel-lycan/wolf-back.svg",
  10632. extra: 475 / 438,
  10633. bottom: 39.2 / 514
  10634. }
  10635. },
  10636. },
  10637. [
  10638. {
  10639. name: "Macro",
  10640. height: math.unit(1, "km"),
  10641. default: true
  10642. },
  10643. ]
  10644. ))
  10645. characterMakers.push(() => makeCharacter(
  10646. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10647. {
  10648. front: {
  10649. height: math.unit(5 + 9 / 12, "feet"),
  10650. weight: math.unit(175, "lb"),
  10651. name: "Front",
  10652. image: {
  10653. source: "./media/characters/vanrel-hyena/front.svg",
  10654. extra: 1086 / 1010,
  10655. bottom: 0.04
  10656. }
  10657. },
  10658. },
  10659. [
  10660. {
  10661. name: "Normal",
  10662. height: math.unit(5 + 9 / 12, "feet"),
  10663. default: true
  10664. },
  10665. ]
  10666. ))
  10667. characterMakers.push(() => makeCharacter(
  10668. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10669. {
  10670. front: {
  10671. height: math.unit(6, "feet"),
  10672. weight: math.unit(103, "lb"),
  10673. name: "Front",
  10674. image: {
  10675. source: "./media/characters/abbott-absol/front.svg",
  10676. extra: 2010 / 1842
  10677. }
  10678. },
  10679. },
  10680. [
  10681. {
  10682. name: "Megamicro",
  10683. height: math.unit(0.1, "mm")
  10684. },
  10685. {
  10686. name: "Micro",
  10687. height: math.unit(1, "inch")
  10688. },
  10689. {
  10690. name: "Normal",
  10691. height: math.unit(6, "feet"),
  10692. default: true
  10693. },
  10694. ]
  10695. ))
  10696. characterMakers.push(() => makeCharacter(
  10697. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10698. {
  10699. front: {
  10700. height: math.unit(6, "feet"),
  10701. weight: math.unit(264, "lb"),
  10702. name: "Front",
  10703. image: {
  10704. source: "./media/characters/hector/front.svg",
  10705. extra: 2280 / 2130,
  10706. bottom: 0.07
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Normal",
  10713. height: math.unit(12.25, "foot"),
  10714. default: true
  10715. },
  10716. {
  10717. name: "Macro",
  10718. height: math.unit(160, "feet")
  10719. },
  10720. ]
  10721. ))
  10722. characterMakers.push(() => makeCharacter(
  10723. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10724. {
  10725. front: {
  10726. height: math.unit(6, "feet"),
  10727. weight: math.unit(150, "lb"),
  10728. name: "Front",
  10729. image: {
  10730. source: "./media/characters/sal/front.svg",
  10731. extra: 1846 / 1699,
  10732. bottom: 0.04
  10733. }
  10734. },
  10735. },
  10736. [
  10737. {
  10738. name: "Megamacro",
  10739. height: math.unit(10, "miles"),
  10740. default: true
  10741. },
  10742. ]
  10743. ))
  10744. characterMakers.push(() => makeCharacter(
  10745. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10746. {
  10747. front: {
  10748. height: math.unit(3, "meters"),
  10749. weight: math.unit(450, "kg"),
  10750. name: "front",
  10751. image: {
  10752. source: "./media/characters/ranger/front.svg",
  10753. extra: 2401 / 2243,
  10754. bottom: 0.05
  10755. }
  10756. },
  10757. },
  10758. [
  10759. {
  10760. name: "Normal",
  10761. height: math.unit(3, "meters"),
  10762. default: true
  10763. },
  10764. ]
  10765. ))
  10766. characterMakers.push(() => makeCharacter(
  10767. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10768. {
  10769. front: {
  10770. height: math.unit(14, "feet"),
  10771. weight: math.unit(800, "kg"),
  10772. name: "Front",
  10773. image: {
  10774. source: "./media/characters/theresa/front.svg",
  10775. extra: 3575 / 3346,
  10776. bottom: 0.03
  10777. }
  10778. },
  10779. },
  10780. [
  10781. {
  10782. name: "Normal",
  10783. height: math.unit(14, "feet"),
  10784. default: true
  10785. },
  10786. ]
  10787. ))
  10788. characterMakers.push(() => makeCharacter(
  10789. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10790. {
  10791. front: {
  10792. height: math.unit(6, "feet"),
  10793. weight: math.unit(3, "kg"),
  10794. name: "Front",
  10795. image: {
  10796. source: "./media/characters/ine/front.svg",
  10797. extra: 678 / 539,
  10798. bottom: 0.023
  10799. }
  10800. },
  10801. },
  10802. [
  10803. {
  10804. name: "Normal",
  10805. height: math.unit(2.265, "feet"),
  10806. default: true
  10807. },
  10808. ]
  10809. ))
  10810. characterMakers.push(() => makeCharacter(
  10811. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10812. {
  10813. front: {
  10814. height: math.unit(5, "feet"),
  10815. weight: math.unit(30, "kg"),
  10816. name: "Front",
  10817. image: {
  10818. source: "./media/characters/vial/front.svg",
  10819. extra: 1365 / 1277,
  10820. bottom: 0.04
  10821. }
  10822. },
  10823. },
  10824. [
  10825. {
  10826. name: "Normal",
  10827. height: math.unit(5, "feet"),
  10828. default: true
  10829. },
  10830. ]
  10831. ))
  10832. characterMakers.push(() => makeCharacter(
  10833. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10834. {
  10835. side: {
  10836. height: math.unit(3.4, "meters"),
  10837. weight: math.unit(1000, "lb"),
  10838. name: "Side",
  10839. image: {
  10840. source: "./media/characters/rovoska/side.svg",
  10841. extra: 4403 / 1515
  10842. }
  10843. },
  10844. },
  10845. [
  10846. {
  10847. name: "Normal",
  10848. height: math.unit(3.4, "meters"),
  10849. default: true
  10850. },
  10851. ]
  10852. ))
  10853. characterMakers.push(() => makeCharacter(
  10854. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10855. {
  10856. front: {
  10857. height: math.unit(8, "feet"),
  10858. weight: math.unit(315, "lb"),
  10859. name: "Front",
  10860. image: {
  10861. source: "./media/characters/gunner-rotthbauer/front.svg"
  10862. }
  10863. },
  10864. back: {
  10865. height: math.unit(8, "feet"),
  10866. weight: math.unit(315, "lb"),
  10867. name: "Back",
  10868. image: {
  10869. source: "./media/characters/gunner-rotthbauer/back.svg"
  10870. }
  10871. },
  10872. },
  10873. [
  10874. {
  10875. name: "Micro",
  10876. height: math.unit(3.5, "inches")
  10877. },
  10878. {
  10879. name: "Normal",
  10880. height: math.unit(8, "feet"),
  10881. default: true
  10882. },
  10883. {
  10884. name: "Macro",
  10885. height: math.unit(250, "feet")
  10886. },
  10887. {
  10888. name: "Megamacro",
  10889. height: math.unit(1, "AU")
  10890. },
  10891. ]
  10892. ))
  10893. characterMakers.push(() => makeCharacter(
  10894. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10895. {
  10896. front: {
  10897. height: math.unit(5 + 5 / 12, "feet"),
  10898. weight: math.unit(140, "lb"),
  10899. name: "Front",
  10900. image: {
  10901. source: "./media/characters/allatia/front.svg",
  10902. extra: 1227 / 1180,
  10903. bottom: 0.027
  10904. }
  10905. },
  10906. },
  10907. [
  10908. {
  10909. name: "Normal",
  10910. height: math.unit(5 + 5 / 12, "feet")
  10911. },
  10912. {
  10913. name: "Macro",
  10914. height: math.unit(250, "feet"),
  10915. default: true
  10916. },
  10917. {
  10918. name: "Megamacro",
  10919. height: math.unit(8, "miles")
  10920. }
  10921. ]
  10922. ))
  10923. characterMakers.push(() => makeCharacter(
  10924. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10925. {
  10926. front: {
  10927. height: math.unit(6, "feet"),
  10928. weight: math.unit(120, "lb"),
  10929. name: "Front",
  10930. image: {
  10931. source: "./media/characters/tene/front.svg",
  10932. extra: 814/750,
  10933. bottom: 36/850
  10934. }
  10935. },
  10936. stomping: {
  10937. height: math.unit(2.025, "meters"),
  10938. weight: math.unit(120, "lb"),
  10939. name: "Stomping",
  10940. image: {
  10941. source: "./media/characters/tene/stomping.svg",
  10942. extra: 885/821,
  10943. bottom: 15/900
  10944. }
  10945. },
  10946. sitting: {
  10947. height: math.unit(1, "meter"),
  10948. weight: math.unit(120, "lb"),
  10949. name: "Sitting",
  10950. image: {
  10951. source: "./media/characters/tene/sitting.svg",
  10952. extra: 396/366,
  10953. bottom: 79/475
  10954. }
  10955. },
  10956. smiling: {
  10957. height: math.unit(1.2, "feet"),
  10958. name: "Smiling",
  10959. image: {
  10960. source: "./media/characters/tene/smiling.svg",
  10961. extra: 1364/1071,
  10962. bottom: 0/1364
  10963. }
  10964. },
  10965. smug: {
  10966. height: math.unit(1.3, "feet"),
  10967. name: "Smug",
  10968. image: {
  10969. source: "./media/characters/tene/smug.svg",
  10970. extra: 1323/1082,
  10971. bottom: 0/1323
  10972. }
  10973. },
  10974. feral: {
  10975. height: math.unit(3.9, "feet"),
  10976. weight: math.unit(250, "lb"),
  10977. name: "Feral",
  10978. image: {
  10979. source: "./media/characters/tene/feral.svg",
  10980. extra: 717 / 458,
  10981. bottom: 0.179
  10982. }
  10983. },
  10984. },
  10985. [
  10986. {
  10987. name: "Normal",
  10988. height: math.unit(6, "feet")
  10989. },
  10990. {
  10991. name: "Macro",
  10992. height: math.unit(300, "feet"),
  10993. default: true
  10994. },
  10995. {
  10996. name: "Megamacro",
  10997. height: math.unit(5, "miles")
  10998. },
  10999. ]
  11000. ))
  11001. characterMakers.push(() => makeCharacter(
  11002. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11003. {
  11004. side: {
  11005. height: math.unit(6, "feet"),
  11006. name: "Side",
  11007. image: {
  11008. source: "./media/characters/evander/side.svg",
  11009. extra: 877 / 477
  11010. }
  11011. },
  11012. },
  11013. [
  11014. {
  11015. name: "Normal",
  11016. height: math.unit(0.83, "meters"),
  11017. default: true
  11018. },
  11019. ]
  11020. ))
  11021. characterMakers.push(() => makeCharacter(
  11022. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11023. {
  11024. front: {
  11025. height: math.unit(12, "feet"),
  11026. weight: math.unit(1000, "lb"),
  11027. name: "Front",
  11028. image: {
  11029. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11030. extra: 1762 / 1611
  11031. }
  11032. },
  11033. back: {
  11034. height: math.unit(12, "feet"),
  11035. weight: math.unit(1000, "lb"),
  11036. name: "Back",
  11037. image: {
  11038. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11039. extra: 1762 / 1611
  11040. }
  11041. },
  11042. },
  11043. [
  11044. {
  11045. name: "Normal",
  11046. height: math.unit(12, "feet"),
  11047. default: true
  11048. },
  11049. {
  11050. name: "Kaiju",
  11051. height: math.unit(150, "feet")
  11052. },
  11053. ]
  11054. ))
  11055. characterMakers.push(() => makeCharacter(
  11056. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11057. {
  11058. front: {
  11059. height: math.unit(6, "feet"),
  11060. weight: math.unit(150, "lb"),
  11061. name: "Front",
  11062. image: {
  11063. source: "./media/characters/zero-alurus/front.svg"
  11064. }
  11065. },
  11066. back: {
  11067. height: math.unit(6, "feet"),
  11068. weight: math.unit(150, "lb"),
  11069. name: "Back",
  11070. image: {
  11071. source: "./media/characters/zero-alurus/back.svg"
  11072. }
  11073. },
  11074. },
  11075. [
  11076. {
  11077. name: "Normal",
  11078. height: math.unit(5 + 10 / 12, "feet")
  11079. },
  11080. {
  11081. name: "Macro",
  11082. height: math.unit(60, "feet"),
  11083. default: true
  11084. },
  11085. {
  11086. name: "Macro+",
  11087. height: math.unit(450, "feet")
  11088. },
  11089. ]
  11090. ))
  11091. characterMakers.push(() => makeCharacter(
  11092. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11093. {
  11094. front: {
  11095. height: math.unit(6, "feet"),
  11096. weight: math.unit(200, "lb"),
  11097. name: "Front",
  11098. image: {
  11099. source: "./media/characters/mega-shi/front.svg",
  11100. extra: 1279 / 1250,
  11101. bottom: 0.02
  11102. }
  11103. },
  11104. back: {
  11105. height: math.unit(6, "feet"),
  11106. weight: math.unit(200, "lb"),
  11107. name: "Back",
  11108. image: {
  11109. source: "./media/characters/mega-shi/back.svg",
  11110. extra: 1279 / 1250,
  11111. bottom: 0.02
  11112. }
  11113. },
  11114. },
  11115. [
  11116. {
  11117. name: "Micro",
  11118. height: math.unit(16 + 6 / 12, "feet")
  11119. },
  11120. {
  11121. name: "Third Dimension",
  11122. height: math.unit(40, "meters")
  11123. },
  11124. {
  11125. name: "Normal",
  11126. height: math.unit(660, "feet"),
  11127. default: true
  11128. },
  11129. {
  11130. name: "Megamacro",
  11131. height: math.unit(10, "miles")
  11132. },
  11133. {
  11134. name: "Planetary Launch",
  11135. height: math.unit(500, "miles")
  11136. },
  11137. {
  11138. name: "Interstellar",
  11139. height: math.unit(1e9, "miles")
  11140. },
  11141. {
  11142. name: "Leaving the Universe",
  11143. height: math.unit(1, "gigaparsec")
  11144. },
  11145. {
  11146. name: "Travelling Universes",
  11147. height: math.unit(30e15, "parsecs")
  11148. },
  11149. ]
  11150. ))
  11151. characterMakers.push(() => makeCharacter(
  11152. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11153. {
  11154. front: {
  11155. height: math.unit(5 + 4/12, "feet"),
  11156. weight: math.unit(120, "lb"),
  11157. name: "Front",
  11158. image: {
  11159. source: "./media/characters/odyssey/front.svg",
  11160. extra: 1747/1571,
  11161. bottom: 47/1794
  11162. }
  11163. },
  11164. side: {
  11165. height: math.unit(5.1, "feet"),
  11166. weight: math.unit(120, "lb"),
  11167. name: "Side",
  11168. image: {
  11169. source: "./media/characters/odyssey/side.svg",
  11170. extra: 1847/1619,
  11171. bottom: 47/1894
  11172. }
  11173. },
  11174. lounging: {
  11175. height: math.unit(1.464, "feet"),
  11176. weight: math.unit(120, "lb"),
  11177. name: "Lounging",
  11178. image: {
  11179. source: "./media/characters/odyssey/lounging.svg",
  11180. extra: 1235/837,
  11181. bottom: 551/1786
  11182. }
  11183. },
  11184. },
  11185. [
  11186. {
  11187. name: "Normal",
  11188. height: math.unit(5 + 4 / 12, "feet")
  11189. },
  11190. {
  11191. name: "Macro",
  11192. height: math.unit(1, "km")
  11193. },
  11194. {
  11195. name: "Megamacro",
  11196. height: math.unit(3000, "km")
  11197. },
  11198. {
  11199. name: "Gigamacro",
  11200. height: math.unit(1, "AU"),
  11201. default: true
  11202. },
  11203. {
  11204. name: "Omniversal",
  11205. height: math.unit(100e14, "lightyears")
  11206. },
  11207. ]
  11208. ))
  11209. characterMakers.push(() => makeCharacter(
  11210. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11211. {
  11212. front: {
  11213. height: math.unit(5 + 10/12, "feet"),
  11214. name: "Front",
  11215. image: {
  11216. source: "./media/characters/mekuto/front.svg",
  11217. extra: 875/835,
  11218. bottom: 46/921
  11219. }
  11220. },
  11221. },
  11222. [
  11223. {
  11224. name: "Minimicro",
  11225. height: math.unit(0.2, "inches")
  11226. },
  11227. {
  11228. name: "Micro",
  11229. height: math.unit(1.5, "inches")
  11230. },
  11231. {
  11232. name: "Normal",
  11233. height: math.unit(5 + 10 / 12, "feet"),
  11234. default: true
  11235. },
  11236. {
  11237. name: "Minimacro",
  11238. height: math.unit(17 + 9 / 12, "feet")
  11239. },
  11240. {
  11241. name: "Macro",
  11242. height: math.unit(177.5, "feet")
  11243. },
  11244. {
  11245. name: "Megamacro",
  11246. height: math.unit(152, "miles")
  11247. },
  11248. ]
  11249. ))
  11250. characterMakers.push(() => makeCharacter(
  11251. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11252. {
  11253. front: {
  11254. height: math.unit(6.5, "inches"),
  11255. weight: math.unit(13, "oz"),
  11256. name: "Front",
  11257. image: {
  11258. source: "./media/characters/dafydd-tomos/front.svg",
  11259. extra: 2990 / 2603,
  11260. bottom: 0.03
  11261. }
  11262. },
  11263. },
  11264. [
  11265. {
  11266. name: "Micro",
  11267. height: math.unit(6.5, "inches"),
  11268. default: true
  11269. },
  11270. ]
  11271. ))
  11272. characterMakers.push(() => makeCharacter(
  11273. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11274. {
  11275. front: {
  11276. height: math.unit(6, "feet"),
  11277. weight: math.unit(150, "lb"),
  11278. name: "Front",
  11279. image: {
  11280. source: "./media/characters/splinter/front.svg",
  11281. extra: 2990 / 2882,
  11282. bottom: 0.04
  11283. }
  11284. },
  11285. back: {
  11286. height: math.unit(6, "feet"),
  11287. weight: math.unit(150, "lb"),
  11288. name: "Back",
  11289. image: {
  11290. source: "./media/characters/splinter/back.svg",
  11291. extra: 2990 / 2882,
  11292. bottom: 0.04
  11293. }
  11294. },
  11295. },
  11296. [
  11297. {
  11298. name: "Normal",
  11299. height: math.unit(6, "feet")
  11300. },
  11301. {
  11302. name: "Macro",
  11303. height: math.unit(230, "meters"),
  11304. default: true
  11305. },
  11306. ]
  11307. ))
  11308. characterMakers.push(() => makeCharacter(
  11309. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11310. {
  11311. front: {
  11312. height: math.unit(4 + 10 / 12, "feet"),
  11313. weight: math.unit(480, "lb"),
  11314. name: "Front",
  11315. image: {
  11316. source: "./media/characters/snow-gabumon/front.svg",
  11317. extra: 1140 / 963,
  11318. bottom: 0.058
  11319. }
  11320. },
  11321. back: {
  11322. height: math.unit(4 + 10 / 12, "feet"),
  11323. weight: math.unit(480, "lb"),
  11324. name: "Back",
  11325. image: {
  11326. source: "./media/characters/snow-gabumon/back.svg",
  11327. extra: 1115 / 962,
  11328. bottom: 0.041
  11329. }
  11330. },
  11331. frontUndresed: {
  11332. height: math.unit(4 + 10 / 12, "feet"),
  11333. weight: math.unit(480, "lb"),
  11334. name: "Front (Undressed)",
  11335. image: {
  11336. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11337. extra: 1061 / 960,
  11338. bottom: 0.045
  11339. }
  11340. },
  11341. },
  11342. [
  11343. {
  11344. name: "Micro",
  11345. height: math.unit(1, "inch")
  11346. },
  11347. {
  11348. name: "Normal",
  11349. height: math.unit(4 + 10 / 12, "feet"),
  11350. default: true
  11351. },
  11352. {
  11353. name: "Macro",
  11354. height: math.unit(200, "feet")
  11355. },
  11356. {
  11357. name: "Megamacro",
  11358. height: math.unit(120, "miles")
  11359. },
  11360. {
  11361. name: "Gigamacro",
  11362. height: math.unit(9800, "miles")
  11363. },
  11364. ]
  11365. ))
  11366. characterMakers.push(() => makeCharacter(
  11367. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11368. {
  11369. front: {
  11370. height: math.unit(1.7, "meters"),
  11371. weight: math.unit(140, "lb"),
  11372. name: "Front",
  11373. image: {
  11374. source: "./media/characters/moody/front.svg",
  11375. extra: 3226 / 3007,
  11376. bottom: 0.087
  11377. }
  11378. },
  11379. },
  11380. [
  11381. {
  11382. name: "Micro",
  11383. height: math.unit(1, "mm")
  11384. },
  11385. {
  11386. name: "Normal",
  11387. height: math.unit(1.7, "meters"),
  11388. default: true
  11389. },
  11390. {
  11391. name: "Macro",
  11392. height: math.unit(80, "meters")
  11393. },
  11394. {
  11395. name: "Macro+",
  11396. height: math.unit(500, "meters")
  11397. },
  11398. ]
  11399. ))
  11400. characterMakers.push(() => makeCharacter(
  11401. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11402. {
  11403. front: {
  11404. height: math.unit(6, "feet"),
  11405. weight: math.unit(150, "lb"),
  11406. name: "Front",
  11407. image: {
  11408. source: "./media/characters/zyas/front.svg",
  11409. extra: 1180 / 1120,
  11410. bottom: 0.045
  11411. }
  11412. },
  11413. },
  11414. [
  11415. {
  11416. name: "Normal",
  11417. height: math.unit(10, "feet"),
  11418. default: true
  11419. },
  11420. {
  11421. name: "Macro",
  11422. height: math.unit(500, "feet")
  11423. },
  11424. {
  11425. name: "Megamacro",
  11426. height: math.unit(5, "miles")
  11427. },
  11428. {
  11429. name: "Teramacro",
  11430. height: math.unit(150000, "miles")
  11431. },
  11432. ]
  11433. ))
  11434. characterMakers.push(() => makeCharacter(
  11435. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11436. {
  11437. front: {
  11438. height: math.unit(6, "feet"),
  11439. weight: math.unit(150, "lb"),
  11440. name: "Front",
  11441. image: {
  11442. source: "./media/characters/cuon/front.svg",
  11443. extra: 1390 / 1320,
  11444. bottom: 0.008
  11445. }
  11446. },
  11447. },
  11448. [
  11449. {
  11450. name: "Micro",
  11451. height: math.unit(3, "inches")
  11452. },
  11453. {
  11454. name: "Normal",
  11455. height: math.unit(18 + 9 / 12, "feet"),
  11456. default: true
  11457. },
  11458. {
  11459. name: "Macro",
  11460. height: math.unit(360, "feet")
  11461. },
  11462. {
  11463. name: "Megamacro",
  11464. height: math.unit(360, "miles")
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11470. {
  11471. front: {
  11472. height: math.unit(2.4, "meters"),
  11473. weight: math.unit(70, "kg"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/nyanuxk/front.svg",
  11477. extra: 1172 / 1084,
  11478. bottom: 0.065
  11479. }
  11480. },
  11481. side: {
  11482. height: math.unit(2.4, "meters"),
  11483. weight: math.unit(70, "kg"),
  11484. name: "Side",
  11485. image: {
  11486. source: "./media/characters/nyanuxk/side.svg",
  11487. extra: 1190 / 1132,
  11488. bottom: 0.007
  11489. }
  11490. },
  11491. back: {
  11492. height: math.unit(2.4, "meters"),
  11493. weight: math.unit(70, "kg"),
  11494. name: "Back",
  11495. image: {
  11496. source: "./media/characters/nyanuxk/back.svg",
  11497. extra: 1200 / 1141,
  11498. bottom: 0.015
  11499. }
  11500. },
  11501. foot: {
  11502. height: math.unit(0.52, "meters"),
  11503. name: "Foot",
  11504. image: {
  11505. source: "./media/characters/nyanuxk/foot.svg"
  11506. }
  11507. },
  11508. },
  11509. [
  11510. {
  11511. name: "Micro",
  11512. height: math.unit(2, "cm")
  11513. },
  11514. {
  11515. name: "Normal",
  11516. height: math.unit(2.4, "meters"),
  11517. default: true
  11518. },
  11519. {
  11520. name: "Smaller Macro",
  11521. height: math.unit(120, "meters")
  11522. },
  11523. {
  11524. name: "Bigger Macro",
  11525. height: math.unit(1.2, "km")
  11526. },
  11527. {
  11528. name: "Megamacro",
  11529. height: math.unit(15, "kilometers")
  11530. },
  11531. {
  11532. name: "Gigamacro",
  11533. height: math.unit(2000, "km")
  11534. },
  11535. {
  11536. name: "Teramacro",
  11537. height: math.unit(500000, "km")
  11538. },
  11539. ]
  11540. ))
  11541. characterMakers.push(() => makeCharacter(
  11542. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11543. {
  11544. side: {
  11545. height: math.unit(6, "feet"),
  11546. name: "Side",
  11547. image: {
  11548. source: "./media/characters/ailbhe/side.svg",
  11549. extra: 757 / 464,
  11550. bottom: 0.041
  11551. }
  11552. },
  11553. },
  11554. [
  11555. {
  11556. name: "Normal",
  11557. height: math.unit(1.07, "meters"),
  11558. default: true
  11559. },
  11560. ]
  11561. ))
  11562. characterMakers.push(() => makeCharacter(
  11563. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11564. {
  11565. front: {
  11566. height: math.unit(6, "feet"),
  11567. weight: math.unit(120, "kg"),
  11568. name: "Front",
  11569. image: {
  11570. source: "./media/characters/zevulfius/front.svg",
  11571. extra: 965 / 903
  11572. }
  11573. },
  11574. side: {
  11575. height: math.unit(6, "feet"),
  11576. weight: math.unit(120, "kg"),
  11577. name: "Side",
  11578. image: {
  11579. source: "./media/characters/zevulfius/side.svg",
  11580. extra: 939 / 900
  11581. }
  11582. },
  11583. back: {
  11584. height: math.unit(6, "feet"),
  11585. weight: math.unit(120, "kg"),
  11586. name: "Back",
  11587. image: {
  11588. source: "./media/characters/zevulfius/back.svg",
  11589. extra: 918 / 854,
  11590. bottom: 0.005
  11591. }
  11592. },
  11593. foot: {
  11594. height: math.unit(6 / 3.72, "feet"),
  11595. name: "Foot",
  11596. image: {
  11597. source: "./media/characters/zevulfius/foot.svg"
  11598. }
  11599. },
  11600. },
  11601. [
  11602. {
  11603. name: "Macro",
  11604. height: math.unit(750, "meters")
  11605. },
  11606. {
  11607. name: "Megamacro",
  11608. height: math.unit(20, "km"),
  11609. default: true
  11610. },
  11611. {
  11612. name: "Gigamacro",
  11613. height: math.unit(2000, "km")
  11614. },
  11615. {
  11616. name: "Teramacro",
  11617. height: math.unit(250000, "km")
  11618. },
  11619. ]
  11620. ))
  11621. characterMakers.push(() => makeCharacter(
  11622. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11623. {
  11624. front: {
  11625. height: math.unit(100, "feet"),
  11626. weight: math.unit(350, "kg"),
  11627. name: "Front",
  11628. image: {
  11629. source: "./media/characters/rikes/front.svg",
  11630. extra: 1565 / 1483,
  11631. bottom: 0.017
  11632. }
  11633. },
  11634. },
  11635. [
  11636. {
  11637. name: "Macro",
  11638. height: math.unit(100, "feet"),
  11639. default: true
  11640. },
  11641. ]
  11642. ))
  11643. characterMakers.push(() => makeCharacter(
  11644. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11645. {
  11646. front: {
  11647. height: math.unit(8, "feet"),
  11648. weight: math.unit(356, "lb"),
  11649. name: "Front",
  11650. image: {
  11651. source: "./media/characters/adam-silver-mane/front.svg",
  11652. extra: 1036/937,
  11653. bottom: 63/1099
  11654. }
  11655. },
  11656. side: {
  11657. height: math.unit(8, "feet"),
  11658. weight: math.unit(356, "lb"),
  11659. name: "Side",
  11660. image: {
  11661. source: "./media/characters/adam-silver-mane/side.svg",
  11662. extra: 997/901,
  11663. bottom: 59/1056
  11664. }
  11665. },
  11666. frontNsfw: {
  11667. height: math.unit(8, "feet"),
  11668. weight: math.unit(356, "lb"),
  11669. name: "Front (NSFW)",
  11670. image: {
  11671. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11672. extra: 1036/937,
  11673. bottom: 63/1099
  11674. }
  11675. },
  11676. sideNsfw: {
  11677. height: math.unit(8, "feet"),
  11678. weight: math.unit(356, "lb"),
  11679. name: "Side (NSFW)",
  11680. image: {
  11681. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11682. extra: 997/901,
  11683. bottom: 59/1056
  11684. }
  11685. },
  11686. dick: {
  11687. height: math.unit(2.1, "feet"),
  11688. name: "Dick",
  11689. image: {
  11690. source: "./media/characters/adam-silver-mane/dick.svg"
  11691. }
  11692. },
  11693. taur: {
  11694. height: math.unit(16, "feet"),
  11695. weight: math.unit(1500, "kg"),
  11696. name: "Taur",
  11697. image: {
  11698. source: "./media/characters/adam-silver-mane/taur.svg",
  11699. extra: 1713 / 1571,
  11700. bottom: 0.01
  11701. }
  11702. },
  11703. },
  11704. [
  11705. {
  11706. name: "Normal",
  11707. height: math.unit(8, "feet")
  11708. },
  11709. {
  11710. name: "Minimacro",
  11711. height: math.unit(80, "feet")
  11712. },
  11713. {
  11714. name: "MDA",
  11715. height: math.unit(80, "meters")
  11716. },
  11717. {
  11718. name: "Macro",
  11719. height: math.unit(800, "feet"),
  11720. default: true
  11721. },
  11722. {
  11723. name: "Megamacro",
  11724. height: math.unit(8000, "feet")
  11725. },
  11726. {
  11727. name: "Gigamacro",
  11728. height: math.unit(800, "miles")
  11729. },
  11730. {
  11731. name: "Teramacro",
  11732. height: math.unit(80000, "miles")
  11733. },
  11734. {
  11735. name: "Celestial",
  11736. height: math.unit(8e6, "miles")
  11737. },
  11738. {
  11739. name: "Star Dragon",
  11740. height: math.unit(800000, "parsecs")
  11741. },
  11742. {
  11743. name: "Godly",
  11744. height: math.unit(800, "teraparsecs")
  11745. },
  11746. ]
  11747. ))
  11748. characterMakers.push(() => makeCharacter(
  11749. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11750. {
  11751. front: {
  11752. height: math.unit(6, "feet"),
  11753. weight: math.unit(150, "lb"),
  11754. name: "Front",
  11755. image: {
  11756. source: "./media/characters/ky'owin/front.svg",
  11757. extra: 3862/3053,
  11758. bottom: 74/3936
  11759. }
  11760. },
  11761. },
  11762. [
  11763. {
  11764. name: "Normal",
  11765. height: math.unit(6 + 8 / 12, "feet")
  11766. },
  11767. {
  11768. name: "Large",
  11769. height: math.unit(68, "feet")
  11770. },
  11771. {
  11772. name: "Macro",
  11773. height: math.unit(132, "feet")
  11774. },
  11775. {
  11776. name: "Macro+",
  11777. height: math.unit(340, "feet")
  11778. },
  11779. {
  11780. name: "Macro++",
  11781. height: math.unit(680, "feet"),
  11782. default: true
  11783. },
  11784. {
  11785. name: "Megamacro",
  11786. height: math.unit(1, "mile")
  11787. },
  11788. {
  11789. name: "Megamacro+",
  11790. height: math.unit(10, "miles")
  11791. },
  11792. ]
  11793. ))
  11794. characterMakers.push(() => makeCharacter(
  11795. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11796. {
  11797. front: {
  11798. height: math.unit(4, "feet"),
  11799. weight: math.unit(50, "lb"),
  11800. name: "Front",
  11801. image: {
  11802. source: "./media/characters/mal/front.svg",
  11803. extra: 785 / 724,
  11804. bottom: 0.07
  11805. }
  11806. },
  11807. },
  11808. [
  11809. {
  11810. name: "Micro",
  11811. height: math.unit(4, "inches")
  11812. },
  11813. {
  11814. name: "Normal",
  11815. height: math.unit(4, "feet"),
  11816. default: true
  11817. },
  11818. {
  11819. name: "Macro",
  11820. height: math.unit(200, "feet")
  11821. },
  11822. ]
  11823. ))
  11824. characterMakers.push(() => makeCharacter(
  11825. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11826. {
  11827. front: {
  11828. height: math.unit(6, "feet"),
  11829. weight: math.unit(150, "lb"),
  11830. name: "Front",
  11831. image: {
  11832. source: "./media/characters/jordan-deware/front.svg",
  11833. extra: 1191 / 1012
  11834. }
  11835. },
  11836. },
  11837. [
  11838. {
  11839. name: "Nano",
  11840. height: math.unit(0.01, "mm")
  11841. },
  11842. {
  11843. name: "Minimicro",
  11844. height: math.unit(1, "mm")
  11845. },
  11846. {
  11847. name: "Micro",
  11848. height: math.unit(0.5, "inches")
  11849. },
  11850. {
  11851. name: "Normal",
  11852. height: math.unit(4, "feet"),
  11853. default: true
  11854. },
  11855. {
  11856. name: "Minimacro",
  11857. height: math.unit(40, "meters")
  11858. },
  11859. {
  11860. name: "Small Macro",
  11861. height: math.unit(400, "meters")
  11862. },
  11863. {
  11864. name: "Macro",
  11865. height: math.unit(4, "miles")
  11866. },
  11867. {
  11868. name: "Megamacro",
  11869. height: math.unit(40, "miles")
  11870. },
  11871. {
  11872. name: "Megamacro+",
  11873. height: math.unit(400, "miles")
  11874. },
  11875. {
  11876. name: "Gigamacro",
  11877. height: math.unit(400000, "miles")
  11878. },
  11879. ]
  11880. ))
  11881. characterMakers.push(() => makeCharacter(
  11882. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11883. {
  11884. side: {
  11885. height: math.unit(6, "feet"),
  11886. weight: math.unit(150, "lb"),
  11887. name: "Side",
  11888. image: {
  11889. source: "./media/characters/kimiko/side.svg",
  11890. extra: 600 / 358
  11891. }
  11892. },
  11893. },
  11894. [
  11895. {
  11896. name: "Normal",
  11897. height: math.unit(15, "feet"),
  11898. default: true
  11899. },
  11900. {
  11901. name: "Macro",
  11902. height: math.unit(220, "feet")
  11903. },
  11904. {
  11905. name: "Macro+",
  11906. height: math.unit(1450, "feet")
  11907. },
  11908. {
  11909. name: "Megamacro",
  11910. height: math.unit(11500, "feet")
  11911. },
  11912. {
  11913. name: "Gigamacro",
  11914. height: math.unit(9500, "miles")
  11915. },
  11916. {
  11917. name: "Teramacro",
  11918. height: math.unit(2208005005, "miles")
  11919. },
  11920. {
  11921. name: "Examacro",
  11922. height: math.unit(2750, "parsecs")
  11923. },
  11924. {
  11925. name: "Zettamacro",
  11926. height: math.unit(101500, "parsecs")
  11927. },
  11928. ]
  11929. ))
  11930. characterMakers.push(() => makeCharacter(
  11931. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11932. {
  11933. front: {
  11934. height: math.unit(6, "feet"),
  11935. weight: math.unit(70, "kg"),
  11936. name: "Front",
  11937. image: {
  11938. source: "./media/characters/andrew-sleepy/front.svg"
  11939. }
  11940. },
  11941. side: {
  11942. height: math.unit(6, "feet"),
  11943. weight: math.unit(70, "kg"),
  11944. name: "Side",
  11945. image: {
  11946. source: "./media/characters/andrew-sleepy/side.svg"
  11947. }
  11948. },
  11949. },
  11950. [
  11951. {
  11952. name: "Micro",
  11953. height: math.unit(1, "mm"),
  11954. default: true
  11955. },
  11956. ]
  11957. ))
  11958. characterMakers.push(() => makeCharacter(
  11959. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11960. {
  11961. front: {
  11962. height: math.unit(6, "feet"),
  11963. weight: math.unit(150, "lb"),
  11964. name: "Front",
  11965. image: {
  11966. source: "./media/characters/judio/front.svg",
  11967. extra: 1258 / 1110
  11968. }
  11969. },
  11970. },
  11971. [
  11972. {
  11973. name: "Normal",
  11974. height: math.unit(5 + 6 / 12, "feet")
  11975. },
  11976. {
  11977. name: "Macro",
  11978. height: math.unit(1000, "feet"),
  11979. default: true
  11980. },
  11981. {
  11982. name: "Megamacro",
  11983. height: math.unit(10, "miles")
  11984. },
  11985. ]
  11986. ))
  11987. characterMakers.push(() => makeCharacter(
  11988. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11989. {
  11990. frontDressed: {
  11991. height: math.unit(6, "feet"),
  11992. weight: math.unit(68, "kg"),
  11993. name: "Front (Dressed)",
  11994. image: {
  11995. source: "./media/characters/nomaxice/front-dressed.svg",
  11996. extra: 1137/824,
  11997. bottom: 74/1211
  11998. }
  11999. },
  12000. frontShorts: {
  12001. height: math.unit(6, "feet"),
  12002. weight: math.unit(68, "kg"),
  12003. name: "Front (Shorts)",
  12004. image: {
  12005. source: "./media/characters/nomaxice/front-shorts.svg",
  12006. extra: 1137/824,
  12007. bottom: 74/1211
  12008. }
  12009. },
  12010. back: {
  12011. height: math.unit(6, "feet"),
  12012. weight: math.unit(68, "kg"),
  12013. name: "Back",
  12014. image: {
  12015. source: "./media/characters/nomaxice/back.svg",
  12016. extra: 822/786,
  12017. bottom: 39/861
  12018. }
  12019. },
  12020. hand: {
  12021. height: math.unit(0.565, "feet"),
  12022. name: "Hand",
  12023. image: {
  12024. source: "./media/characters/nomaxice/hand.svg"
  12025. }
  12026. },
  12027. foot: {
  12028. height: math.unit(1, "feet"),
  12029. name: "Foot",
  12030. image: {
  12031. source: "./media/characters/nomaxice/foot.svg"
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Micro",
  12038. height: math.unit(8, "cm")
  12039. },
  12040. {
  12041. name: "Norm",
  12042. height: math.unit(1.82, "m")
  12043. },
  12044. {
  12045. name: "Norm+",
  12046. height: math.unit(8.8, "feet"),
  12047. default: true
  12048. },
  12049. {
  12050. name: "Big",
  12051. height: math.unit(8, "meters")
  12052. },
  12053. {
  12054. name: "Macro",
  12055. height: math.unit(18, "meters")
  12056. },
  12057. {
  12058. name: "Macro+",
  12059. height: math.unit(88, "meters")
  12060. },
  12061. ]
  12062. ))
  12063. characterMakers.push(() => makeCharacter(
  12064. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12065. {
  12066. front: {
  12067. height: math.unit(12, "feet"),
  12068. weight: math.unit(1.5, "tons"),
  12069. name: "Front",
  12070. image: {
  12071. source: "./media/characters/dydros/front.svg",
  12072. extra: 863 / 800,
  12073. bottom: 0.015
  12074. }
  12075. },
  12076. back: {
  12077. height: math.unit(12, "feet"),
  12078. weight: math.unit(1.5, "tons"),
  12079. name: "Back",
  12080. image: {
  12081. source: "./media/characters/dydros/back.svg",
  12082. extra: 900 / 843,
  12083. bottom: 0.005
  12084. }
  12085. },
  12086. },
  12087. [
  12088. {
  12089. name: "Normal",
  12090. height: math.unit(12, "feet"),
  12091. default: true
  12092. },
  12093. ]
  12094. ))
  12095. characterMakers.push(() => makeCharacter(
  12096. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12097. {
  12098. front: {
  12099. height: math.unit(6, "feet"),
  12100. weight: math.unit(100, "kg"),
  12101. name: "Front",
  12102. image: {
  12103. source: "./media/characters/riggi/front.svg",
  12104. extra: 5787 / 5303
  12105. }
  12106. },
  12107. hyper: {
  12108. height: math.unit(6 * 5 / 3, "feet"),
  12109. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12110. name: "Hyper",
  12111. image: {
  12112. source: "./media/characters/riggi/hyper.svg",
  12113. extra: 3595 / 3485
  12114. }
  12115. },
  12116. },
  12117. [
  12118. {
  12119. name: "Small Macro",
  12120. height: math.unit(50, "feet")
  12121. },
  12122. {
  12123. name: "Default",
  12124. height: math.unit(200, "feet"),
  12125. default: true
  12126. },
  12127. {
  12128. name: "Loom",
  12129. height: math.unit(10000, "feet")
  12130. },
  12131. {
  12132. name: "Cruising Altitude",
  12133. height: math.unit(30000, "feet")
  12134. },
  12135. {
  12136. name: "Megamacro",
  12137. height: math.unit(100, "miles")
  12138. },
  12139. {
  12140. name: "Continent Sized",
  12141. height: math.unit(2800, "miles")
  12142. },
  12143. {
  12144. name: "Earth Sized",
  12145. height: math.unit(8000, "miles")
  12146. },
  12147. ]
  12148. ))
  12149. characterMakers.push(() => makeCharacter(
  12150. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12151. {
  12152. front: {
  12153. height: math.unit(6, "feet"),
  12154. weight: math.unit(250, "lb"),
  12155. name: "Front",
  12156. image: {
  12157. source: "./media/characters/alexi/front.svg",
  12158. extra: 3483 / 3291,
  12159. bottom: 0.04
  12160. }
  12161. },
  12162. back: {
  12163. height: math.unit(6, "feet"),
  12164. weight: math.unit(250, "lb"),
  12165. name: "Back",
  12166. image: {
  12167. source: "./media/characters/alexi/back.svg",
  12168. extra: 3533 / 3356,
  12169. bottom: 0.021
  12170. }
  12171. },
  12172. frontTransforming: {
  12173. height: math.unit(8.58, "feet"),
  12174. weight: math.unit(1300, "lb"),
  12175. name: "Transforming",
  12176. image: {
  12177. source: "./media/characters/alexi/front-transforming.svg",
  12178. extra: 437 / 409,
  12179. bottom: 19 / 458.66
  12180. }
  12181. },
  12182. frontTransformed: {
  12183. height: math.unit(12.5, "feet"),
  12184. weight: math.unit(4000, "lb"),
  12185. name: "Transformed",
  12186. image: {
  12187. source: "./media/characters/alexi/front-transformed.svg",
  12188. extra: 639 / 614,
  12189. bottom: 30.55 / 671
  12190. }
  12191. },
  12192. },
  12193. [
  12194. {
  12195. name: "Normal",
  12196. height: math.unit(14, "feet"),
  12197. default: true
  12198. },
  12199. {
  12200. name: "Minimacro",
  12201. height: math.unit(30, "meters")
  12202. },
  12203. {
  12204. name: "Macro",
  12205. height: math.unit(500, "meters")
  12206. },
  12207. {
  12208. name: "Megamacro",
  12209. height: math.unit(9000, "km")
  12210. },
  12211. {
  12212. name: "Teramacro",
  12213. height: math.unit(384000, "km")
  12214. },
  12215. ]
  12216. ))
  12217. characterMakers.push(() => makeCharacter(
  12218. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12219. {
  12220. front: {
  12221. height: math.unit(6, "feet"),
  12222. weight: math.unit(150, "lb"),
  12223. name: "Front",
  12224. image: {
  12225. source: "./media/characters/kayroo/front.svg",
  12226. extra: 1153 / 1038,
  12227. bottom: 0.06
  12228. }
  12229. },
  12230. foot: {
  12231. height: math.unit(6, "feet"),
  12232. weight: math.unit(150, "lb"),
  12233. name: "Foot",
  12234. image: {
  12235. source: "./media/characters/kayroo/foot.svg"
  12236. }
  12237. },
  12238. },
  12239. [
  12240. {
  12241. name: "Normal",
  12242. height: math.unit(8, "feet"),
  12243. default: true
  12244. },
  12245. {
  12246. name: "Minimacro",
  12247. height: math.unit(250, "feet")
  12248. },
  12249. {
  12250. name: "Macro",
  12251. height: math.unit(2800, "feet")
  12252. },
  12253. {
  12254. name: "Megamacro",
  12255. height: math.unit(5200, "feet")
  12256. },
  12257. {
  12258. name: "Gigamacro",
  12259. height: math.unit(27000, "feet")
  12260. },
  12261. {
  12262. name: "Omega",
  12263. height: math.unit(45000, "feet")
  12264. },
  12265. ]
  12266. ))
  12267. characterMakers.push(() => makeCharacter(
  12268. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12269. {
  12270. front: {
  12271. height: math.unit(18, "feet"),
  12272. weight: math.unit(5800, "lb"),
  12273. name: "Front",
  12274. image: {
  12275. source: "./media/characters/rhys/front.svg",
  12276. extra: 3386 / 3090,
  12277. bottom: 0.07
  12278. }
  12279. },
  12280. },
  12281. [
  12282. {
  12283. name: "Normal",
  12284. height: math.unit(18, "feet"),
  12285. default: true
  12286. },
  12287. {
  12288. name: "Working Size",
  12289. height: math.unit(200, "feet")
  12290. },
  12291. {
  12292. name: "Demolition Size",
  12293. height: math.unit(2000, "feet")
  12294. },
  12295. {
  12296. name: "Maximum Licensed Size",
  12297. height: math.unit(5, "miles")
  12298. },
  12299. {
  12300. name: "Maximum Observed Size",
  12301. height: math.unit(10, "yottameters")
  12302. },
  12303. ]
  12304. ))
  12305. characterMakers.push(() => makeCharacter(
  12306. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12307. {
  12308. front: {
  12309. height: math.unit(6, "feet"),
  12310. weight: math.unit(250, "lb"),
  12311. name: "Front",
  12312. image: {
  12313. source: "./media/characters/toto/front.svg",
  12314. extra: 527 / 479,
  12315. bottom: 0.05
  12316. }
  12317. },
  12318. },
  12319. [
  12320. {
  12321. name: "Micro",
  12322. height: math.unit(3, "feet")
  12323. },
  12324. {
  12325. name: "Normal",
  12326. height: math.unit(10, "feet")
  12327. },
  12328. {
  12329. name: "Macro",
  12330. height: math.unit(150, "feet"),
  12331. default: true
  12332. },
  12333. {
  12334. name: "Megamacro",
  12335. height: math.unit(1200, "feet")
  12336. },
  12337. ]
  12338. ))
  12339. characterMakers.push(() => makeCharacter(
  12340. { name: "King", species: ["lion"], tags: ["anthro"] },
  12341. {
  12342. back: {
  12343. height: math.unit(6, "feet"),
  12344. weight: math.unit(150, "lb"),
  12345. name: "Back",
  12346. image: {
  12347. source: "./media/characters/king/back.svg"
  12348. }
  12349. },
  12350. },
  12351. [
  12352. {
  12353. name: "Micro",
  12354. height: math.unit(2, "inches")
  12355. },
  12356. {
  12357. name: "Normal",
  12358. height: math.unit(8, "feet")
  12359. },
  12360. {
  12361. name: "Macro",
  12362. height: math.unit(200, "feet"),
  12363. default: true
  12364. },
  12365. {
  12366. name: "Megamacro",
  12367. height: math.unit(50, "miles")
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12373. {
  12374. front: {
  12375. height: math.unit(11, "feet"),
  12376. weight: math.unit(1400, "lb"),
  12377. name: "Front",
  12378. image: {
  12379. source: "./media/characters/cordite/front.svg",
  12380. extra: 1919/1827,
  12381. bottom: 40/1959
  12382. }
  12383. },
  12384. side: {
  12385. height: math.unit(11, "feet"),
  12386. weight: math.unit(1400, "lb"),
  12387. name: "Side",
  12388. image: {
  12389. source: "./media/characters/cordite/side.svg",
  12390. extra: 1908/1793,
  12391. bottom: 38/1946
  12392. }
  12393. },
  12394. back: {
  12395. height: math.unit(11, "feet"),
  12396. weight: math.unit(1400, "lb"),
  12397. name: "Back",
  12398. image: {
  12399. source: "./media/characters/cordite/back.svg",
  12400. extra: 1938/1837,
  12401. bottom: 10/1948
  12402. }
  12403. },
  12404. feral: {
  12405. height: math.unit(2, "feet"),
  12406. weight: math.unit(90, "lb"),
  12407. name: "Feral",
  12408. image: {
  12409. source: "./media/characters/cordite/feral.svg",
  12410. extra: 1260 / 755,
  12411. bottom: 0.05
  12412. }
  12413. },
  12414. },
  12415. [
  12416. {
  12417. name: "Normal",
  12418. height: math.unit(11, "feet"),
  12419. default: true
  12420. },
  12421. ]
  12422. ))
  12423. characterMakers.push(() => makeCharacter(
  12424. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12425. {
  12426. front: {
  12427. height: math.unit(6, "feet"),
  12428. weight: math.unit(150, "lb"),
  12429. name: "Front",
  12430. image: {
  12431. source: "./media/characters/pianostrong/front.svg",
  12432. extra: 6577 / 6254,
  12433. bottom: 0.02
  12434. }
  12435. },
  12436. side: {
  12437. height: math.unit(6, "feet"),
  12438. weight: math.unit(150, "lb"),
  12439. name: "Side",
  12440. image: {
  12441. source: "./media/characters/pianostrong/side.svg",
  12442. extra: 6106 / 5730
  12443. }
  12444. },
  12445. back: {
  12446. height: math.unit(6, "feet"),
  12447. weight: math.unit(150, "lb"),
  12448. name: "Back",
  12449. image: {
  12450. source: "./media/characters/pianostrong/back.svg",
  12451. extra: 6085 / 5733,
  12452. bottom: 0.01
  12453. }
  12454. },
  12455. },
  12456. [
  12457. {
  12458. name: "Macro",
  12459. height: math.unit(100, "feet")
  12460. },
  12461. {
  12462. name: "Macro+",
  12463. height: math.unit(300, "feet"),
  12464. default: true
  12465. },
  12466. {
  12467. name: "Macro++",
  12468. height: math.unit(1000, "feet")
  12469. },
  12470. ]
  12471. ))
  12472. characterMakers.push(() => makeCharacter(
  12473. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12474. {
  12475. front: {
  12476. height: math.unit(6, "feet"),
  12477. weight: math.unit(150, "lb"),
  12478. name: "Front",
  12479. image: {
  12480. source: "./media/characters/kona/front.svg",
  12481. extra: 2960 / 2629,
  12482. bottom: 0.005
  12483. }
  12484. },
  12485. },
  12486. [
  12487. {
  12488. name: "Normal",
  12489. height: math.unit(11 + 8 / 12, "feet")
  12490. },
  12491. {
  12492. name: "Macro",
  12493. height: math.unit(850, "feet"),
  12494. default: true
  12495. },
  12496. {
  12497. name: "Macro+",
  12498. height: math.unit(1.5, "km"),
  12499. default: true
  12500. },
  12501. {
  12502. name: "Megamacro",
  12503. height: math.unit(80, "miles")
  12504. },
  12505. {
  12506. name: "Gigamacro",
  12507. height: math.unit(3500, "miles")
  12508. },
  12509. ]
  12510. ))
  12511. characterMakers.push(() => makeCharacter(
  12512. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12513. {
  12514. side: {
  12515. height: math.unit(1.9, "meters"),
  12516. weight: math.unit(326, "kg"),
  12517. name: "Side",
  12518. image: {
  12519. source: "./media/characters/levi/side.svg",
  12520. extra: 1704 / 1334,
  12521. bottom: 0.02
  12522. }
  12523. },
  12524. },
  12525. [
  12526. {
  12527. name: "Normal",
  12528. height: math.unit(1.9, "meters"),
  12529. default: true
  12530. },
  12531. {
  12532. name: "Macro",
  12533. height: math.unit(20, "meters")
  12534. },
  12535. {
  12536. name: "Macro+",
  12537. height: math.unit(200, "meters")
  12538. },
  12539. {
  12540. name: "Megamacro",
  12541. height: math.unit(2, "km")
  12542. },
  12543. {
  12544. name: "Megamacro+",
  12545. height: math.unit(20, "km")
  12546. },
  12547. {
  12548. name: "Gigamacro",
  12549. height: math.unit(2500, "km")
  12550. },
  12551. {
  12552. name: "Gigamacro+",
  12553. height: math.unit(120000, "km")
  12554. },
  12555. {
  12556. name: "Teramacro",
  12557. height: math.unit(7.77e6, "km")
  12558. },
  12559. ]
  12560. ))
  12561. characterMakers.push(() => makeCharacter(
  12562. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12563. {
  12564. front: {
  12565. height: math.unit(6 + 4/12, "feet"),
  12566. weight: math.unit(190, "lb"),
  12567. name: "Front",
  12568. image: {
  12569. source: "./media/characters/bmc/front.svg",
  12570. extra: 1626/1472,
  12571. bottom: 79/1705
  12572. }
  12573. },
  12574. back: {
  12575. height: math.unit(6 + 4/12, "feet"),
  12576. weight: math.unit(190, "lb"),
  12577. name: "Back",
  12578. image: {
  12579. source: "./media/characters/bmc/back.svg",
  12580. extra: 1640/1479,
  12581. bottom: 45/1685
  12582. }
  12583. },
  12584. frontArmor: {
  12585. height: math.unit(6 + 4/12, "feet"),
  12586. weight: math.unit(190, "lb"),
  12587. name: "Front-armor",
  12588. image: {
  12589. source: "./media/characters/bmc/front-armor.svg",
  12590. extra: 1538/1468,
  12591. bottom: 79/1617
  12592. }
  12593. },
  12594. },
  12595. [
  12596. {
  12597. name: "Human-sized",
  12598. height: math.unit(6 + 4 / 12, "feet")
  12599. },
  12600. {
  12601. name: "Interactive Size",
  12602. height: math.unit(25, "feet")
  12603. },
  12604. {
  12605. name: "Small",
  12606. height: math.unit(250, "feet")
  12607. },
  12608. {
  12609. name: "Normal",
  12610. height: math.unit(1250, "feet"),
  12611. default: true
  12612. },
  12613. {
  12614. name: "Good Day",
  12615. height: math.unit(88, "miles")
  12616. },
  12617. {
  12618. name: "Largest Measured Size",
  12619. height: math.unit(105.960, "galaxies")
  12620. },
  12621. ]
  12622. ))
  12623. characterMakers.push(() => makeCharacter(
  12624. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12625. {
  12626. front: {
  12627. height: math.unit(20, "feet"),
  12628. weight: math.unit(2016, "kg"),
  12629. name: "Front",
  12630. image: {
  12631. source: "./media/characters/sven-the-kaiju/front.svg",
  12632. extra: 1277/1250,
  12633. bottom: 35/1312
  12634. }
  12635. },
  12636. mouth: {
  12637. height: math.unit(1.85, "feet"),
  12638. name: "Mouth",
  12639. image: {
  12640. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12641. }
  12642. },
  12643. },
  12644. [
  12645. {
  12646. name: "Fairy",
  12647. height: math.unit(6, "inches")
  12648. },
  12649. {
  12650. name: "Normal",
  12651. height: math.unit(20, "feet"),
  12652. default: true
  12653. },
  12654. {
  12655. name: "Rampage",
  12656. height: math.unit(200, "feet")
  12657. },
  12658. {
  12659. name: "Archfey Forest Guardian",
  12660. height: math.unit(1, "mile")
  12661. },
  12662. ]
  12663. ))
  12664. characterMakers.push(() => makeCharacter(
  12665. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12666. {
  12667. front: {
  12668. height: math.unit(4, "meters"),
  12669. weight: math.unit(2, "tons"),
  12670. name: "Front",
  12671. image: {
  12672. source: "./media/characters/marik/front.svg",
  12673. extra: 1057 / 1003,
  12674. bottom: 0.08
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Normal",
  12681. height: math.unit(4, "meters"),
  12682. default: true
  12683. },
  12684. {
  12685. name: "Macro",
  12686. height: math.unit(20, "meters")
  12687. },
  12688. {
  12689. name: "Megamacro",
  12690. height: math.unit(50, "km")
  12691. },
  12692. {
  12693. name: "Gigamacro",
  12694. height: math.unit(100, "km")
  12695. },
  12696. {
  12697. name: "Alpha Macro",
  12698. height: math.unit(7.88e7, "yottameters")
  12699. },
  12700. ]
  12701. ))
  12702. characterMakers.push(() => makeCharacter(
  12703. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12704. {
  12705. front: {
  12706. height: math.unit(6, "feet"),
  12707. weight: math.unit(110, "lb"),
  12708. name: "Front",
  12709. image: {
  12710. source: "./media/characters/mel/front.svg",
  12711. extra: 736 / 617,
  12712. bottom: 0.017
  12713. }
  12714. },
  12715. },
  12716. [
  12717. {
  12718. name: "Pico",
  12719. height: math.unit(3, "pm")
  12720. },
  12721. {
  12722. name: "Nano",
  12723. height: math.unit(3, "nm")
  12724. },
  12725. {
  12726. name: "Micro",
  12727. height: math.unit(0.3, "mm"),
  12728. default: true
  12729. },
  12730. {
  12731. name: "Micro+",
  12732. height: math.unit(3, "mm")
  12733. },
  12734. {
  12735. name: "Normal",
  12736. height: math.unit(5 + 10.5 / 12, "feet")
  12737. },
  12738. ]
  12739. ))
  12740. characterMakers.push(() => makeCharacter(
  12741. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12742. {
  12743. kaiju: {
  12744. height: math.unit(1.75, "meters"),
  12745. weight: math.unit(55, "kg"),
  12746. name: "Kaiju",
  12747. image: {
  12748. source: "./media/characters/lykonous/kaiju.svg",
  12749. extra: 1055 / 946,
  12750. bottom: 0.135
  12751. }
  12752. },
  12753. },
  12754. [
  12755. {
  12756. name: "Normal",
  12757. height: math.unit(2.5, "meters"),
  12758. default: true
  12759. },
  12760. {
  12761. name: "Kaiju Dragon",
  12762. height: math.unit(60, "meters")
  12763. },
  12764. {
  12765. name: "Mega Kaiju",
  12766. height: math.unit(120, "km")
  12767. },
  12768. {
  12769. name: "Giga Kaiju",
  12770. height: math.unit(200, "megameters")
  12771. },
  12772. {
  12773. name: "Terra Kaiju",
  12774. height: math.unit(400, "gigameters")
  12775. },
  12776. {
  12777. name: "Kaiju Dragon God",
  12778. height: math.unit(13000, "exaparsecs")
  12779. },
  12780. ]
  12781. ))
  12782. characterMakers.push(() => makeCharacter(
  12783. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12784. {
  12785. front: {
  12786. height: math.unit(6, "feet"),
  12787. weight: math.unit(150, "lb"),
  12788. name: "Front",
  12789. image: {
  12790. source: "./media/characters/blü/front.svg",
  12791. extra: 1883 / 1564,
  12792. bottom: 0.031
  12793. }
  12794. },
  12795. },
  12796. [
  12797. {
  12798. name: "Normal",
  12799. height: math.unit(13, "feet"),
  12800. default: true
  12801. },
  12802. {
  12803. name: "Big Boi",
  12804. height: math.unit(150, "meters")
  12805. },
  12806. {
  12807. name: "Mini Stomper",
  12808. height: math.unit(300, "meters")
  12809. },
  12810. {
  12811. name: "Macro",
  12812. height: math.unit(1000, "meters")
  12813. },
  12814. {
  12815. name: "Megamacro",
  12816. height: math.unit(11000, "meters")
  12817. },
  12818. {
  12819. name: "Gigamacro",
  12820. height: math.unit(11000, "km")
  12821. },
  12822. {
  12823. name: "Teramacro",
  12824. height: math.unit(420000, "km")
  12825. },
  12826. {
  12827. name: "Examacro",
  12828. height: math.unit(120, "parsecs")
  12829. },
  12830. {
  12831. name: "God Tho",
  12832. height: math.unit(98000000000, "parsecs")
  12833. },
  12834. ]
  12835. ))
  12836. characterMakers.push(() => makeCharacter(
  12837. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12838. {
  12839. taurFront: {
  12840. height: math.unit(6, "feet"),
  12841. weight: math.unit(200, "lb"),
  12842. name: "Taur (Front)",
  12843. image: {
  12844. source: "./media/characters/scales/taur-front.svg",
  12845. extra: 1,
  12846. bottom: 0.05
  12847. }
  12848. },
  12849. taurBack: {
  12850. height: math.unit(6, "feet"),
  12851. weight: math.unit(200, "lb"),
  12852. name: "Taur (Back)",
  12853. image: {
  12854. source: "./media/characters/scales/taur-back.svg",
  12855. extra: 1,
  12856. bottom: 0.08
  12857. }
  12858. },
  12859. anthro: {
  12860. height: math.unit(6 * 7 / 12, "feet"),
  12861. weight: math.unit(100, "lb"),
  12862. name: "Anthro",
  12863. image: {
  12864. source: "./media/characters/scales/anthro.svg",
  12865. extra: 1,
  12866. bottom: 0.06
  12867. }
  12868. },
  12869. },
  12870. [
  12871. {
  12872. name: "Normal",
  12873. height: math.unit(12, "feet"),
  12874. default: true
  12875. },
  12876. ]
  12877. ))
  12878. characterMakers.push(() => makeCharacter(
  12879. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12880. {
  12881. front: {
  12882. height: math.unit(6, "feet"),
  12883. weight: math.unit(150, "lb"),
  12884. name: "Front",
  12885. image: {
  12886. source: "./media/characters/koragos/front.svg",
  12887. extra: 841 / 794,
  12888. bottom: 0.035
  12889. }
  12890. },
  12891. back: {
  12892. height: math.unit(6, "feet"),
  12893. weight: math.unit(150, "lb"),
  12894. name: "Back",
  12895. image: {
  12896. source: "./media/characters/koragos/back.svg",
  12897. extra: 841 / 810,
  12898. bottom: 0.022
  12899. }
  12900. },
  12901. },
  12902. [
  12903. {
  12904. name: "Normal",
  12905. height: math.unit(6 + 11 / 12, "feet"),
  12906. default: true
  12907. },
  12908. {
  12909. name: "Macro",
  12910. height: math.unit(490, "feet")
  12911. },
  12912. {
  12913. name: "Megamacro",
  12914. height: math.unit(10, "miles")
  12915. },
  12916. {
  12917. name: "Gigamacro",
  12918. height: math.unit(50, "miles")
  12919. },
  12920. ]
  12921. ))
  12922. characterMakers.push(() => makeCharacter(
  12923. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12924. {
  12925. front: {
  12926. height: math.unit(6, "feet"),
  12927. weight: math.unit(250, "lb"),
  12928. name: "Front",
  12929. image: {
  12930. source: "./media/characters/xylrem/front.svg",
  12931. extra: 3323 / 3050,
  12932. bottom: 0.065
  12933. }
  12934. },
  12935. },
  12936. [
  12937. {
  12938. name: "Micro",
  12939. height: math.unit(4, "feet")
  12940. },
  12941. {
  12942. name: "Normal",
  12943. height: math.unit(16, "feet"),
  12944. default: true
  12945. },
  12946. {
  12947. name: "Macro",
  12948. height: math.unit(2720, "feet")
  12949. },
  12950. {
  12951. name: "Megamacro",
  12952. height: math.unit(25000, "miles")
  12953. },
  12954. ]
  12955. ))
  12956. characterMakers.push(() => makeCharacter(
  12957. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12958. {
  12959. front: {
  12960. height: math.unit(8, "feet"),
  12961. weight: math.unit(250, "kg"),
  12962. name: "Front",
  12963. image: {
  12964. source: "./media/characters/ikideru/front.svg",
  12965. extra: 930 / 870,
  12966. bottom: 0.087
  12967. }
  12968. },
  12969. back: {
  12970. height: math.unit(8, "feet"),
  12971. weight: math.unit(250, "kg"),
  12972. name: "Back",
  12973. image: {
  12974. source: "./media/characters/ikideru/back.svg",
  12975. extra: 919 / 852,
  12976. bottom: 0.055
  12977. }
  12978. },
  12979. },
  12980. [
  12981. {
  12982. name: "Rare",
  12983. height: math.unit(8, "feet"),
  12984. default: true
  12985. },
  12986. {
  12987. name: "Playful Loom",
  12988. height: math.unit(80, "feet")
  12989. },
  12990. {
  12991. name: "City Leaner",
  12992. height: math.unit(230, "feet")
  12993. },
  12994. {
  12995. name: "Megamacro",
  12996. height: math.unit(2500, "feet")
  12997. },
  12998. {
  12999. name: "Gigamacro",
  13000. height: math.unit(26400, "feet")
  13001. },
  13002. {
  13003. name: "Tectonic Shifter",
  13004. height: math.unit(1.7, "megameters")
  13005. },
  13006. {
  13007. name: "Planet Carer",
  13008. height: math.unit(21, "megameters")
  13009. },
  13010. {
  13011. name: "God",
  13012. height: math.unit(11157.22, "parsecs")
  13013. },
  13014. ]
  13015. ))
  13016. characterMakers.push(() => makeCharacter(
  13017. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13018. {
  13019. front: {
  13020. height: math.unit(6, "feet"),
  13021. weight: math.unit(120, "lb"),
  13022. name: "Front",
  13023. image: {
  13024. source: "./media/characters/neo/front.svg"
  13025. }
  13026. },
  13027. },
  13028. [
  13029. {
  13030. name: "Micro",
  13031. height: math.unit(2, "inches"),
  13032. default: true
  13033. },
  13034. {
  13035. name: "Human Size",
  13036. height: math.unit(5 + 8 / 12, "feet")
  13037. },
  13038. ]
  13039. ))
  13040. characterMakers.push(() => makeCharacter(
  13041. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13042. {
  13043. front: {
  13044. height: math.unit(13 + 10 / 12, "feet"),
  13045. weight: math.unit(5320, "lb"),
  13046. name: "Front",
  13047. image: {
  13048. source: "./media/characters/chauncey-chantz/front.svg",
  13049. extra: 1587 / 1435,
  13050. bottom: 0.02
  13051. }
  13052. },
  13053. },
  13054. [
  13055. {
  13056. name: "Normal",
  13057. height: math.unit(13 + 10 / 12, "feet"),
  13058. default: true
  13059. },
  13060. {
  13061. name: "Macro",
  13062. height: math.unit(45, "feet")
  13063. },
  13064. {
  13065. name: "Megamacro",
  13066. height: math.unit(250, "miles")
  13067. },
  13068. {
  13069. name: "Planetary",
  13070. height: math.unit(10000, "miles")
  13071. },
  13072. {
  13073. name: "Galactic",
  13074. height: math.unit(40000, "parsecs")
  13075. },
  13076. {
  13077. name: "Universal",
  13078. height: math.unit(1, "yottameter")
  13079. },
  13080. ]
  13081. ))
  13082. characterMakers.push(() => makeCharacter(
  13083. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13084. {
  13085. front: {
  13086. height: math.unit(6, "feet"),
  13087. weight: math.unit(150, "lb"),
  13088. name: "Front",
  13089. image: {
  13090. source: "./media/characters/epifox/front.svg",
  13091. extra: 1,
  13092. bottom: 0.075
  13093. }
  13094. },
  13095. },
  13096. [
  13097. {
  13098. name: "Micro",
  13099. height: math.unit(6, "inches")
  13100. },
  13101. {
  13102. name: "Normal",
  13103. height: math.unit(12, "feet"),
  13104. default: true
  13105. },
  13106. {
  13107. name: "Macro",
  13108. height: math.unit(3810, "feet")
  13109. },
  13110. {
  13111. name: "Megamacro",
  13112. height: math.unit(500, "miles")
  13113. },
  13114. ]
  13115. ))
  13116. characterMakers.push(() => makeCharacter(
  13117. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13118. {
  13119. front: {
  13120. height: math.unit(1.8796, "m"),
  13121. weight: math.unit(230, "lb"),
  13122. name: "Front",
  13123. image: {
  13124. source: "./media/characters/colin-t/front.svg",
  13125. extra: 1272 / 1193,
  13126. bottom: 0.07
  13127. }
  13128. },
  13129. },
  13130. [
  13131. {
  13132. name: "Micro",
  13133. height: math.unit(0.571, "meters")
  13134. },
  13135. {
  13136. name: "Normal",
  13137. height: math.unit(1.8796, "meters"),
  13138. default: true
  13139. },
  13140. {
  13141. name: "Tall",
  13142. height: math.unit(4, "meters")
  13143. },
  13144. {
  13145. name: "Macro",
  13146. height: math.unit(67.241, "meters")
  13147. },
  13148. {
  13149. name: "Megamacro",
  13150. height: math.unit(371.856, "meters")
  13151. },
  13152. {
  13153. name: "Planetary",
  13154. height: math.unit(12631.5689, "km")
  13155. },
  13156. ]
  13157. ))
  13158. characterMakers.push(() => makeCharacter(
  13159. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13160. {
  13161. front: {
  13162. height: math.unit(1.85, "meters"),
  13163. weight: math.unit(80, "kg"),
  13164. name: "Front",
  13165. image: {
  13166. source: "./media/characters/matvei/front.svg",
  13167. extra: 456/447,
  13168. bottom: 8/464
  13169. }
  13170. },
  13171. back: {
  13172. height: math.unit(1.85, "meters"),
  13173. weight: math.unit(80, "kg"),
  13174. name: "Back",
  13175. image: {
  13176. source: "./media/characters/matvei/back.svg",
  13177. extra: 434/427,
  13178. bottom: 11/445
  13179. }
  13180. },
  13181. },
  13182. [
  13183. {
  13184. name: "Normal",
  13185. height: math.unit(1.85, "meters"),
  13186. default: true
  13187. },
  13188. ]
  13189. ))
  13190. characterMakers.push(() => makeCharacter(
  13191. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13192. {
  13193. front: {
  13194. height: math.unit(5 + 9 / 12, "feet"),
  13195. weight: math.unit(70, "lb"),
  13196. name: "Front",
  13197. image: {
  13198. source: "./media/characters/quincy/front.svg",
  13199. extra: 3041 / 2751
  13200. }
  13201. },
  13202. back: {
  13203. height: math.unit(5 + 9 / 12, "feet"),
  13204. weight: math.unit(70, "lb"),
  13205. name: "Back",
  13206. image: {
  13207. source: "./media/characters/quincy/back.svg",
  13208. extra: 3041 / 2751
  13209. }
  13210. },
  13211. flying: {
  13212. height: math.unit(5 + 4 / 12, "feet"),
  13213. weight: math.unit(70, "lb"),
  13214. name: "Flying",
  13215. image: {
  13216. source: "./media/characters/quincy/flying.svg",
  13217. extra: 1044 / 930
  13218. }
  13219. },
  13220. },
  13221. [
  13222. {
  13223. name: "Micro",
  13224. height: math.unit(3, "cm")
  13225. },
  13226. {
  13227. name: "Normal",
  13228. height: math.unit(5 + 9 / 12, "feet")
  13229. },
  13230. {
  13231. name: "Macro",
  13232. height: math.unit(200, "meters"),
  13233. default: true
  13234. },
  13235. {
  13236. name: "Megamacro",
  13237. height: math.unit(1000, "meters")
  13238. },
  13239. ]
  13240. ))
  13241. characterMakers.push(() => makeCharacter(
  13242. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13243. {
  13244. front: {
  13245. height: math.unit(3 + 11/12, "feet"),
  13246. weight: math.unit(50, "lb"),
  13247. name: "Front",
  13248. image: {
  13249. source: "./media/characters/vanrel/front.svg",
  13250. extra: 1104/949,
  13251. bottom: 52/1156
  13252. }
  13253. },
  13254. back: {
  13255. height: math.unit(3 + 11/12, "feet"),
  13256. weight: math.unit(50, "lb"),
  13257. name: "Back",
  13258. image: {
  13259. source: "./media/characters/vanrel/back.svg",
  13260. extra: 1119/976,
  13261. bottom: 37/1156
  13262. }
  13263. },
  13264. tome: {
  13265. height: math.unit(1.35, "feet"),
  13266. weight: math.unit(10, "lb"),
  13267. name: "Vanrel's Tome",
  13268. rename: true,
  13269. image: {
  13270. source: "./media/characters/vanrel/tome.svg"
  13271. }
  13272. },
  13273. beans: {
  13274. height: math.unit(0.89, "feet"),
  13275. name: "Beans",
  13276. image: {
  13277. source: "./media/characters/vanrel/beans.svg"
  13278. }
  13279. },
  13280. },
  13281. [
  13282. {
  13283. name: "Normal",
  13284. height: math.unit(3 + 11/12, "feet"),
  13285. default: true
  13286. },
  13287. ]
  13288. ))
  13289. characterMakers.push(() => makeCharacter(
  13290. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13291. {
  13292. front: {
  13293. height: math.unit(7 + 5 / 12, "feet"),
  13294. name: "Front",
  13295. image: {
  13296. source: "./media/characters/kuiper-vanrel/front.svg",
  13297. extra: 1219/1169,
  13298. bottom: 69/1288
  13299. }
  13300. },
  13301. back: {
  13302. height: math.unit(7 + 5 / 12, "feet"),
  13303. name: "Back",
  13304. image: {
  13305. source: "./media/characters/kuiper-vanrel/back.svg",
  13306. extra: 1236/1193,
  13307. bottom: 27/1263
  13308. }
  13309. },
  13310. foot: {
  13311. height: math.unit(0.55, "meters"),
  13312. name: "Foot",
  13313. image: {
  13314. source: "./media/characters/kuiper-vanrel/foot.svg",
  13315. }
  13316. },
  13317. battle: {
  13318. height: math.unit(6.824, "feet"),
  13319. name: "Battle",
  13320. image: {
  13321. source: "./media/characters/kuiper-vanrel/battle.svg",
  13322. extra: 1466 / 1327,
  13323. bottom: 29 / 1492.5
  13324. }
  13325. },
  13326. meerkui: {
  13327. height: math.unit(18, "inches"),
  13328. name: "Meerkui",
  13329. image: {
  13330. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13331. extra: 1354/1289,
  13332. bottom: 69/1423
  13333. }
  13334. },
  13335. },
  13336. [
  13337. {
  13338. name: "Normal",
  13339. height: math.unit(7 + 5 / 12, "feet"),
  13340. default: true
  13341. },
  13342. ]
  13343. ))
  13344. characterMakers.push(() => makeCharacter(
  13345. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13346. {
  13347. front: {
  13348. height: math.unit(8 + 5 / 12, "feet"),
  13349. name: "Front",
  13350. image: {
  13351. source: "./media/characters/keset-vanrel/front.svg",
  13352. extra: 1231/1148,
  13353. bottom: 82/1313
  13354. }
  13355. },
  13356. back: {
  13357. height: math.unit(8 + 5 / 12, "feet"),
  13358. name: "Back",
  13359. image: {
  13360. source: "./media/characters/keset-vanrel/back.svg",
  13361. extra: 1240/1174,
  13362. bottom: 33/1273
  13363. }
  13364. },
  13365. hand: {
  13366. height: math.unit(0.6, "meters"),
  13367. name: "Hand",
  13368. image: {
  13369. source: "./media/characters/keset-vanrel/hand.svg"
  13370. }
  13371. },
  13372. foot: {
  13373. height: math.unit(0.94978, "meters"),
  13374. name: "Foot",
  13375. image: {
  13376. source: "./media/characters/keset-vanrel/foot.svg"
  13377. }
  13378. },
  13379. battle: {
  13380. height: math.unit(7.408, "feet"),
  13381. name: "Battle",
  13382. image: {
  13383. source: "./media/characters/keset-vanrel/battle.svg",
  13384. extra: 1890 / 1386,
  13385. bottom: 73.28 / 1970
  13386. }
  13387. },
  13388. },
  13389. [
  13390. {
  13391. name: "Normal",
  13392. height: math.unit(8 + 5 / 12, "feet"),
  13393. default: true
  13394. },
  13395. ]
  13396. ))
  13397. characterMakers.push(() => makeCharacter(
  13398. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13399. {
  13400. front: {
  13401. height: math.unit(6, "feet"),
  13402. weight: math.unit(150, "lb"),
  13403. name: "Front",
  13404. image: {
  13405. source: "./media/characters/neos/front.svg",
  13406. extra: 1696 / 992,
  13407. bottom: 0.14
  13408. }
  13409. },
  13410. },
  13411. [
  13412. {
  13413. name: "Normal",
  13414. height: math.unit(54, "cm"),
  13415. default: true
  13416. },
  13417. {
  13418. name: "Macro",
  13419. height: math.unit(100, "m")
  13420. },
  13421. {
  13422. name: "Megamacro",
  13423. height: math.unit(10, "km")
  13424. },
  13425. {
  13426. name: "Megamacro+",
  13427. height: math.unit(100, "km")
  13428. },
  13429. {
  13430. name: "Gigamacro",
  13431. height: math.unit(100, "Mm")
  13432. },
  13433. {
  13434. name: "Teramacro",
  13435. height: math.unit(100, "Gm")
  13436. },
  13437. {
  13438. name: "Examacro",
  13439. height: math.unit(100, "Em")
  13440. },
  13441. {
  13442. name: "Godly",
  13443. height: math.unit(10000, "Ym")
  13444. },
  13445. {
  13446. name: "Beyond Godly",
  13447. height: math.unit(25, "multiverses")
  13448. },
  13449. ]
  13450. ))
  13451. characterMakers.push(() => makeCharacter(
  13452. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13453. {
  13454. feminine: {
  13455. height: math.unit(5, "feet"),
  13456. weight: math.unit(100, "lb"),
  13457. name: "Feminine",
  13458. image: {
  13459. source: "./media/characters/sammy-mouse/feminine.svg",
  13460. extra: 2526 / 2425,
  13461. bottom: 0.123
  13462. }
  13463. },
  13464. masculine: {
  13465. height: math.unit(5, "feet"),
  13466. weight: math.unit(100, "lb"),
  13467. name: "Masculine",
  13468. image: {
  13469. source: "./media/characters/sammy-mouse/masculine.svg",
  13470. extra: 2526 / 2425,
  13471. bottom: 0.123
  13472. }
  13473. },
  13474. },
  13475. [
  13476. {
  13477. name: "Micro",
  13478. height: math.unit(5, "inches")
  13479. },
  13480. {
  13481. name: "Normal",
  13482. height: math.unit(5, "feet"),
  13483. default: true
  13484. },
  13485. {
  13486. name: "Macro",
  13487. height: math.unit(60, "feet")
  13488. },
  13489. ]
  13490. ))
  13491. characterMakers.push(() => makeCharacter(
  13492. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13493. {
  13494. front: {
  13495. height: math.unit(4, "feet"),
  13496. weight: math.unit(50, "lb"),
  13497. name: "Front",
  13498. image: {
  13499. source: "./media/characters/kole/front.svg",
  13500. extra: 1423 / 1303,
  13501. bottom: 0.025
  13502. }
  13503. },
  13504. back: {
  13505. height: math.unit(4, "feet"),
  13506. weight: math.unit(50, "lb"),
  13507. name: "Back",
  13508. image: {
  13509. source: "./media/characters/kole/back.svg",
  13510. extra: 1426 / 1280,
  13511. bottom: 0.02
  13512. }
  13513. },
  13514. },
  13515. [
  13516. {
  13517. name: "Normal",
  13518. height: math.unit(4, "feet"),
  13519. default: true
  13520. },
  13521. ]
  13522. ))
  13523. characterMakers.push(() => makeCharacter(
  13524. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13525. {
  13526. front: {
  13527. height: math.unit(2.5, "feet"),
  13528. weight: math.unit(32, "lb"),
  13529. name: "Front",
  13530. image: {
  13531. source: "./media/characters/rufran/front.svg",
  13532. extra: 1313/885,
  13533. bottom: 94/1407
  13534. }
  13535. },
  13536. side: {
  13537. height: math.unit(2.5, "feet"),
  13538. weight: math.unit(32, "lb"),
  13539. name: "Side",
  13540. image: {
  13541. source: "./media/characters/rufran/side.svg",
  13542. extra: 1109/852,
  13543. bottom: 118/1227
  13544. }
  13545. },
  13546. back: {
  13547. height: math.unit(2.5, "feet"),
  13548. weight: math.unit(32, "lb"),
  13549. name: "Back",
  13550. image: {
  13551. source: "./media/characters/rufran/back.svg",
  13552. extra: 1280/878,
  13553. bottom: 131/1411
  13554. }
  13555. },
  13556. mouth: {
  13557. height: math.unit(1.13, "feet"),
  13558. name: "Mouth",
  13559. image: {
  13560. source: "./media/characters/rufran/mouth.svg"
  13561. }
  13562. },
  13563. foot: {
  13564. height: math.unit(1.33, "feet"),
  13565. name: "Foot",
  13566. image: {
  13567. source: "./media/characters/rufran/foot.svg"
  13568. }
  13569. },
  13570. koboldFront: {
  13571. height: math.unit(2 + 6 / 12, "feet"),
  13572. weight: math.unit(20, "lb"),
  13573. name: "Front (Kobold)",
  13574. image: {
  13575. source: "./media/characters/rufran/kobold-front.svg",
  13576. extra: 2041 / 1839,
  13577. bottom: 0.055
  13578. }
  13579. },
  13580. koboldBack: {
  13581. height: math.unit(2 + 6 / 12, "feet"),
  13582. weight: math.unit(20, "lb"),
  13583. name: "Back (Kobold)",
  13584. image: {
  13585. source: "./media/characters/rufran/kobold-back.svg",
  13586. extra: 2054 / 1839,
  13587. bottom: 0.01
  13588. }
  13589. },
  13590. koboldHand: {
  13591. height: math.unit(0.2166, "meters"),
  13592. name: "Hand (Kobold)",
  13593. image: {
  13594. source: "./media/characters/rufran/kobold-hand.svg"
  13595. }
  13596. },
  13597. koboldFoot: {
  13598. height: math.unit(0.185, "meters"),
  13599. name: "Foot (Kobold)",
  13600. image: {
  13601. source: "./media/characters/rufran/kobold-foot.svg"
  13602. }
  13603. },
  13604. },
  13605. [
  13606. {
  13607. name: "Micro",
  13608. height: math.unit(1, "inch")
  13609. },
  13610. {
  13611. name: "Normal",
  13612. height: math.unit(2 + 6 / 12, "feet"),
  13613. default: true
  13614. },
  13615. {
  13616. name: "Big",
  13617. height: math.unit(60, "feet")
  13618. },
  13619. {
  13620. name: "Macro",
  13621. height: math.unit(325, "feet")
  13622. },
  13623. ]
  13624. ))
  13625. characterMakers.push(() => makeCharacter(
  13626. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13627. {
  13628. front: {
  13629. height: math.unit(0.3, "meters"),
  13630. weight: math.unit(3.5, "kg"),
  13631. name: "Front",
  13632. image: {
  13633. source: "./media/characters/chip/front.svg",
  13634. extra: 748 / 674
  13635. }
  13636. },
  13637. },
  13638. [
  13639. {
  13640. name: "Micro",
  13641. height: math.unit(1, "inch"),
  13642. default: true
  13643. },
  13644. ]
  13645. ))
  13646. characterMakers.push(() => makeCharacter(
  13647. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13648. {
  13649. side: {
  13650. height: math.unit(2.3, "meters"),
  13651. weight: math.unit(3500, "lb"),
  13652. name: "Side",
  13653. image: {
  13654. source: "./media/characters/torvid/side.svg",
  13655. extra: 1972 / 722,
  13656. bottom: 0.035
  13657. }
  13658. },
  13659. },
  13660. [
  13661. {
  13662. name: "Normal",
  13663. height: math.unit(2.3, "meters"),
  13664. default: true
  13665. },
  13666. ]
  13667. ))
  13668. characterMakers.push(() => makeCharacter(
  13669. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13670. {
  13671. front: {
  13672. height: math.unit(2, "meters"),
  13673. weight: math.unit(150.5, "kg"),
  13674. name: "Front",
  13675. image: {
  13676. source: "./media/characters/susan/front.svg",
  13677. extra: 693 / 635,
  13678. bottom: 0.05
  13679. }
  13680. },
  13681. },
  13682. [
  13683. {
  13684. name: "Megamacro",
  13685. height: math.unit(505, "miles"),
  13686. default: true
  13687. },
  13688. ]
  13689. ))
  13690. characterMakers.push(() => makeCharacter(
  13691. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13692. {
  13693. front: {
  13694. height: math.unit(6, "feet"),
  13695. weight: math.unit(150, "lb"),
  13696. name: "Front",
  13697. image: {
  13698. source: "./media/characters/raindrops/front.svg",
  13699. extra: 2655 / 2461,
  13700. bottom: 49 / 2705
  13701. }
  13702. },
  13703. back: {
  13704. height: math.unit(6, "feet"),
  13705. weight: math.unit(150, "lb"),
  13706. name: "Back",
  13707. image: {
  13708. source: "./media/characters/raindrops/back.svg",
  13709. extra: 2574 / 2400,
  13710. bottom: 65 / 2634
  13711. }
  13712. },
  13713. },
  13714. [
  13715. {
  13716. name: "Micro",
  13717. height: math.unit(6, "inches")
  13718. },
  13719. {
  13720. name: "Normal",
  13721. height: math.unit(6 + 2 / 12, "feet")
  13722. },
  13723. {
  13724. name: "Macro",
  13725. height: math.unit(131, "feet"),
  13726. default: true
  13727. },
  13728. {
  13729. name: "Megamacro",
  13730. height: math.unit(15, "miles")
  13731. },
  13732. {
  13733. name: "Gigamacro",
  13734. height: math.unit(4000, "miles")
  13735. },
  13736. {
  13737. name: "Teramacro",
  13738. height: math.unit(315000, "miles")
  13739. },
  13740. ]
  13741. ))
  13742. characterMakers.push(() => makeCharacter(
  13743. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13744. {
  13745. front: {
  13746. height: math.unit(2.794, "meters"),
  13747. weight: math.unit(325, "kg"),
  13748. name: "Front",
  13749. image: {
  13750. source: "./media/characters/tezwa/front.svg",
  13751. extra: 2083 / 1906,
  13752. bottom: 0.031
  13753. }
  13754. },
  13755. foot: {
  13756. height: math.unit(0.687, "meters"),
  13757. name: "Foot",
  13758. image: {
  13759. source: "./media/characters/tezwa/foot.svg"
  13760. }
  13761. },
  13762. },
  13763. [
  13764. {
  13765. name: "Normal",
  13766. height: math.unit(9 + 2 / 12, "feet"),
  13767. default: true
  13768. },
  13769. ]
  13770. ))
  13771. characterMakers.push(() => makeCharacter(
  13772. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13773. {
  13774. front: {
  13775. height: math.unit(58, "feet"),
  13776. weight: math.unit(89000, "lb"),
  13777. name: "Front",
  13778. image: {
  13779. source: "./media/characters/typhus/front.svg",
  13780. extra: 816 / 800,
  13781. bottom: 0.065
  13782. }
  13783. },
  13784. },
  13785. [
  13786. {
  13787. name: "Macro",
  13788. height: math.unit(58, "feet"),
  13789. default: true
  13790. },
  13791. ]
  13792. ))
  13793. characterMakers.push(() => makeCharacter(
  13794. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13795. {
  13796. front: {
  13797. height: math.unit(12, "feet"),
  13798. weight: math.unit(6, "tonnes"),
  13799. name: "Front",
  13800. image: {
  13801. source: "./media/characters/lyra-von-wulf/front.svg",
  13802. extra: 1,
  13803. bottom: 0.10
  13804. }
  13805. },
  13806. frontMecha: {
  13807. height: math.unit(12, "feet"),
  13808. weight: math.unit(12, "tonnes"),
  13809. name: "Front (Mecha)",
  13810. image: {
  13811. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13812. extra: 1,
  13813. bottom: 0.042
  13814. }
  13815. },
  13816. maw: {
  13817. height: math.unit(2.2, "feet"),
  13818. name: "Maw",
  13819. image: {
  13820. source: "./media/characters/lyra-von-wulf/maw.svg"
  13821. }
  13822. },
  13823. },
  13824. [
  13825. {
  13826. name: "Normal",
  13827. height: math.unit(12, "feet"),
  13828. default: true
  13829. },
  13830. {
  13831. name: "Classic",
  13832. height: math.unit(50, "feet")
  13833. },
  13834. {
  13835. name: "Macro",
  13836. height: math.unit(500, "feet")
  13837. },
  13838. {
  13839. name: "Megamacro",
  13840. height: math.unit(1, "mile")
  13841. },
  13842. {
  13843. name: "Gigamacro",
  13844. height: math.unit(400, "miles")
  13845. },
  13846. {
  13847. name: "Teramacro",
  13848. height: math.unit(22000, "miles")
  13849. },
  13850. {
  13851. name: "Solarmacro",
  13852. height: math.unit(8600000, "miles")
  13853. },
  13854. {
  13855. name: "Galactic",
  13856. height: math.unit(1057000, "lightyears")
  13857. },
  13858. ]
  13859. ))
  13860. characterMakers.push(() => makeCharacter(
  13861. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13862. {
  13863. front: {
  13864. height: math.unit(6 + 10 / 12, "feet"),
  13865. weight: math.unit(150, "lb"),
  13866. name: "Front",
  13867. image: {
  13868. source: "./media/characters/dixon/front.svg",
  13869. extra: 3361 / 3209,
  13870. bottom: 0.01
  13871. }
  13872. },
  13873. },
  13874. [
  13875. {
  13876. name: "Normal",
  13877. height: math.unit(6 + 10 / 12, "feet"),
  13878. default: true
  13879. },
  13880. {
  13881. name: "Big",
  13882. height: math.unit(12, "meters")
  13883. },
  13884. {
  13885. name: "Macro",
  13886. height: math.unit(500, "meters")
  13887. },
  13888. {
  13889. name: "Megamacro",
  13890. height: math.unit(2, "km")
  13891. },
  13892. ]
  13893. ))
  13894. characterMakers.push(() => makeCharacter(
  13895. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13896. {
  13897. front: {
  13898. height: math.unit(185, "cm"),
  13899. weight: math.unit(68, "kg"),
  13900. name: "Front",
  13901. image: {
  13902. source: "./media/characters/kauko/front.svg",
  13903. extra: 1455 / 1421,
  13904. bottom: 0.03
  13905. }
  13906. },
  13907. back: {
  13908. height: math.unit(185, "cm"),
  13909. weight: math.unit(68, "kg"),
  13910. name: "Back",
  13911. image: {
  13912. source: "./media/characters/kauko/back.svg",
  13913. extra: 1455 / 1421,
  13914. bottom: 0.004
  13915. }
  13916. },
  13917. },
  13918. [
  13919. {
  13920. name: "Normal",
  13921. height: math.unit(185, "cm"),
  13922. default: true
  13923. },
  13924. ]
  13925. ))
  13926. characterMakers.push(() => makeCharacter(
  13927. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13928. {
  13929. frontSfw: {
  13930. height: math.unit(5, "meters"),
  13931. weight: math.unit(4250, "lb"),
  13932. name: "Front",
  13933. image: {
  13934. source: "./media/characters/varg/front-sfw.svg",
  13935. extra: 1103/1010,
  13936. bottom: 50/1153
  13937. },
  13938. form: "anthro",
  13939. default: true
  13940. },
  13941. backSfw: {
  13942. height: math.unit(5, "meters"),
  13943. weight: math.unit(4250, "lb"),
  13944. name: "Back",
  13945. image: {
  13946. source: "./media/characters/varg/back-sfw.svg",
  13947. extra: 1038/1022,
  13948. bottom: 36/1074
  13949. },
  13950. form: "anthro"
  13951. },
  13952. frontNsfw: {
  13953. height: math.unit(5, "meters"),
  13954. weight: math.unit(4250, "lb"),
  13955. name: "Front (NSFW)",
  13956. image: {
  13957. source: "./media/characters/varg/front-nsfw.svg",
  13958. extra: 1103/1010,
  13959. bottom: 50/1153
  13960. },
  13961. form: "anthro"
  13962. },
  13963. sheath: {
  13964. height: math.unit(3.8, "feet"),
  13965. weight: math.unit(90, "kilograms"),
  13966. name: "Sheath",
  13967. image: {
  13968. source: "./media/characters/varg/sheath.svg"
  13969. },
  13970. form: "anthro"
  13971. },
  13972. dick: {
  13973. height: math.unit(4.6, "feet"),
  13974. weight: math.unit(451, "kilograms"),
  13975. name: "Dick",
  13976. image: {
  13977. source: "./media/characters/varg/dick.svg"
  13978. },
  13979. form: "anthro"
  13980. },
  13981. feralSfw: {
  13982. height: math.unit(5, "meters"),
  13983. weight: math.unit(100000, "lb"),
  13984. name: "Side",
  13985. image: {
  13986. source: "./media/characters/varg/feral-sfw.svg",
  13987. extra: 1065/511,
  13988. bottom: 211/1276
  13989. },
  13990. form: "feral",
  13991. default: true
  13992. },
  13993. feralNsfw: {
  13994. height: math.unit(5, "meters"),
  13995. weight: math.unit(100000, "lb"),
  13996. name: "Side (NSFW)",
  13997. image: {
  13998. source: "./media/characters/varg/feral-nsfw.svg",
  13999. extra: 1065/511,
  14000. bottom: 211/1276
  14001. },
  14002. form: "feral",
  14003. },
  14004. feralSheath: {
  14005. height: math.unit(9.8, "feet"),
  14006. weight: math.unit(2000, "kilograms"),
  14007. name: "Sheath",
  14008. image: {
  14009. source: "./media/characters/varg/sheath.svg"
  14010. },
  14011. form: "feral"
  14012. },
  14013. feralDick: {
  14014. height: math.unit(13.11, "feet"),
  14015. weight: math.unit(10440, "kilograms"),
  14016. name: "Dick",
  14017. image: {
  14018. source: "./media/characters/varg/dick.svg"
  14019. },
  14020. form: "feral"
  14021. },
  14022. },
  14023. [
  14024. {
  14025. name: "Normal",
  14026. height: math.unit(5, "meters"),
  14027. form: "anthro"
  14028. },
  14029. {
  14030. name: "Macro",
  14031. height: math.unit(200, "meters"),
  14032. form: "anthro"
  14033. },
  14034. {
  14035. name: "Megamacro",
  14036. height: math.unit(20, "kilometers"),
  14037. form: "anthro"
  14038. },
  14039. {
  14040. name: "True Size",
  14041. height: math.unit(211, "km"),
  14042. form: "anthro",
  14043. default: true
  14044. },
  14045. {
  14046. name: "Gigamacro",
  14047. height: math.unit(1000, "km"),
  14048. form: "anthro"
  14049. },
  14050. {
  14051. name: "Gigamacro+",
  14052. height: math.unit(8000, "km"),
  14053. form: "anthro"
  14054. },
  14055. {
  14056. name: "Teramacro",
  14057. height: math.unit(1000000, "km"),
  14058. form: "anthro"
  14059. },
  14060. {
  14061. name: "Normal",
  14062. height: math.unit(5, "meters"),
  14063. form: "feral"
  14064. },
  14065. {
  14066. name: "Macro",
  14067. height: math.unit(200, "meters"),
  14068. form: "feral"
  14069. },
  14070. {
  14071. name: "Megamacro",
  14072. height: math.unit(20, "kilometers"),
  14073. form: "feral"
  14074. },
  14075. {
  14076. name: "True Size",
  14077. height: math.unit(211, "km"),
  14078. form: "feral",
  14079. default: true
  14080. },
  14081. {
  14082. name: "Gigamacro",
  14083. height: math.unit(1000, "km"),
  14084. form: "feral"
  14085. },
  14086. {
  14087. name: "Gigamacro+",
  14088. height: math.unit(8000, "km"),
  14089. form: "feral"
  14090. },
  14091. {
  14092. name: "Teramacro",
  14093. height: math.unit(1000000, "km"),
  14094. form: "feral"
  14095. },
  14096. ],
  14097. {
  14098. "anthro": {
  14099. name: "Anthro",
  14100. default: true
  14101. },
  14102. "feral": {
  14103. name: "Feral",
  14104. },
  14105. }
  14106. ))
  14107. characterMakers.push(() => makeCharacter(
  14108. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14109. {
  14110. front: {
  14111. height: math.unit(7 + 7 / 12, "feet"),
  14112. weight: math.unit(267, "lb"),
  14113. name: "Front",
  14114. image: {
  14115. source: "./media/characters/dayza/front.svg",
  14116. extra: 1262 / 1200,
  14117. bottom: 0.035
  14118. }
  14119. },
  14120. side: {
  14121. height: math.unit(7 + 7 / 12, "feet"),
  14122. weight: math.unit(267, "lb"),
  14123. name: "Side",
  14124. image: {
  14125. source: "./media/characters/dayza/side.svg",
  14126. extra: 1295 / 1245,
  14127. bottom: 0.05
  14128. }
  14129. },
  14130. back: {
  14131. height: math.unit(7 + 7 / 12, "feet"),
  14132. weight: math.unit(267, "lb"),
  14133. name: "Back",
  14134. image: {
  14135. source: "./media/characters/dayza/back.svg",
  14136. extra: 1241 / 1170
  14137. }
  14138. },
  14139. },
  14140. [
  14141. {
  14142. name: "Normal",
  14143. height: math.unit(7 + 7 / 12, "feet"),
  14144. default: true
  14145. },
  14146. {
  14147. name: "Macro",
  14148. height: math.unit(155, "feet")
  14149. },
  14150. ]
  14151. ))
  14152. characterMakers.push(() => makeCharacter(
  14153. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14154. {
  14155. front: {
  14156. height: math.unit(6 + 5 / 12, "feet"),
  14157. weight: math.unit(160, "lb"),
  14158. name: "Front",
  14159. image: {
  14160. source: "./media/characters/xanthos/front.svg",
  14161. extra: 1,
  14162. bottom: 0.04
  14163. }
  14164. },
  14165. back: {
  14166. height: math.unit(6 + 5 / 12, "feet"),
  14167. weight: math.unit(160, "lb"),
  14168. name: "Back",
  14169. image: {
  14170. source: "./media/characters/xanthos/back.svg",
  14171. extra: 1,
  14172. bottom: 0.03
  14173. }
  14174. },
  14175. hand: {
  14176. height: math.unit(0.928, "feet"),
  14177. name: "Hand",
  14178. image: {
  14179. source: "./media/characters/xanthos/hand.svg"
  14180. }
  14181. },
  14182. foot: {
  14183. height: math.unit(1.286, "feet"),
  14184. name: "Foot",
  14185. image: {
  14186. source: "./media/characters/xanthos/foot.svg"
  14187. }
  14188. },
  14189. },
  14190. [
  14191. {
  14192. name: "Normal",
  14193. height: math.unit(6 + 5 / 12, "feet"),
  14194. default: true
  14195. },
  14196. {
  14197. name: "Normal+",
  14198. height: math.unit(6, "meters")
  14199. },
  14200. {
  14201. name: "Macro",
  14202. height: math.unit(40, "feet")
  14203. },
  14204. {
  14205. name: "Macro+",
  14206. height: math.unit(200, "meters")
  14207. },
  14208. {
  14209. name: "Megamacro",
  14210. height: math.unit(20, "km")
  14211. },
  14212. {
  14213. name: "Megamacro+",
  14214. height: math.unit(100, "km")
  14215. },
  14216. {
  14217. name: "Gigamacro",
  14218. height: math.unit(200, "megameters")
  14219. },
  14220. {
  14221. name: "Gigamacro+",
  14222. height: math.unit(1.5, "gigameters")
  14223. },
  14224. ]
  14225. ))
  14226. characterMakers.push(() => makeCharacter(
  14227. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14228. {
  14229. front: {
  14230. height: math.unit(6 + 3 / 12, "feet"),
  14231. weight: math.unit(215, "lb"),
  14232. name: "Front",
  14233. image: {
  14234. source: "./media/characters/grynn/front.svg",
  14235. extra: 4627 / 4209,
  14236. bottom: 0.047
  14237. }
  14238. },
  14239. },
  14240. [
  14241. {
  14242. name: "Micro",
  14243. height: math.unit(6, "inches")
  14244. },
  14245. {
  14246. name: "Normal",
  14247. height: math.unit(6 + 3 / 12, "feet"),
  14248. default: true
  14249. },
  14250. {
  14251. name: "Big",
  14252. height: math.unit(104, "feet")
  14253. },
  14254. {
  14255. name: "Macro",
  14256. height: math.unit(944, "feet")
  14257. },
  14258. {
  14259. name: "Macro+",
  14260. height: math.unit(9480, "feet")
  14261. },
  14262. {
  14263. name: "Megamacro",
  14264. height: math.unit(78752, "feet")
  14265. },
  14266. {
  14267. name: "Megamacro+",
  14268. height: math.unit(630128, "feet")
  14269. },
  14270. {
  14271. name: "Megamacro++",
  14272. height: math.unit(3150695, "feet")
  14273. },
  14274. ]
  14275. ))
  14276. characterMakers.push(() => makeCharacter(
  14277. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14278. {
  14279. front: {
  14280. height: math.unit(7 + 5 / 12, "feet"),
  14281. weight: math.unit(450, "lb"),
  14282. name: "Front",
  14283. image: {
  14284. source: "./media/characters/mocha-aura/front.svg",
  14285. extra: 1907 / 1817,
  14286. bottom: 0.04
  14287. }
  14288. },
  14289. back: {
  14290. height: math.unit(7 + 5 / 12, "feet"),
  14291. weight: math.unit(450, "lb"),
  14292. name: "Back",
  14293. image: {
  14294. source: "./media/characters/mocha-aura/back.svg",
  14295. extra: 1900 / 1825,
  14296. bottom: 0.045
  14297. }
  14298. },
  14299. },
  14300. [
  14301. {
  14302. name: "Nano",
  14303. height: math.unit(1, "nm")
  14304. },
  14305. {
  14306. name: "Megamicro",
  14307. height: math.unit(1, "mm")
  14308. },
  14309. {
  14310. name: "Micro",
  14311. height: math.unit(3, "inches")
  14312. },
  14313. {
  14314. name: "Normal",
  14315. height: math.unit(7 + 5 / 12, "feet"),
  14316. default: true
  14317. },
  14318. {
  14319. name: "Macro",
  14320. height: math.unit(30, "feet")
  14321. },
  14322. {
  14323. name: "Megamacro",
  14324. height: math.unit(3500, "feet")
  14325. },
  14326. {
  14327. name: "Teramacro",
  14328. height: math.unit(500000, "miles")
  14329. },
  14330. {
  14331. name: "Petamacro",
  14332. height: math.unit(50000000000000000, "parsecs")
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14338. {
  14339. front: {
  14340. height: math.unit(6, "feet"),
  14341. weight: math.unit(150, "lb"),
  14342. name: "Front",
  14343. image: {
  14344. source: "./media/characters/ilisha-devya/front.svg",
  14345. extra: 1053/1049,
  14346. bottom: 270/1323
  14347. }
  14348. },
  14349. back: {
  14350. height: math.unit(6, "feet"),
  14351. weight: math.unit(150, "lb"),
  14352. name: "Back",
  14353. image: {
  14354. source: "./media/characters/ilisha-devya/back.svg",
  14355. extra: 1131/1128,
  14356. bottom: 39/1170
  14357. }
  14358. },
  14359. },
  14360. [
  14361. {
  14362. name: "Macro",
  14363. height: math.unit(500, "feet"),
  14364. default: true
  14365. },
  14366. {
  14367. name: "Megamacro",
  14368. height: math.unit(10, "miles")
  14369. },
  14370. {
  14371. name: "Gigamacro",
  14372. height: math.unit(100000, "miles")
  14373. },
  14374. {
  14375. name: "Examacro",
  14376. height: math.unit(1e9, "lightyears")
  14377. },
  14378. {
  14379. name: "Omniversal",
  14380. height: math.unit(1e33, "lightyears")
  14381. },
  14382. {
  14383. name: "Beyond Infinite",
  14384. height: math.unit(1e100, "lightyears")
  14385. },
  14386. ]
  14387. ))
  14388. characterMakers.push(() => makeCharacter(
  14389. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14390. {
  14391. Side: {
  14392. height: math.unit(6, "feet"),
  14393. weight: math.unit(150, "lb"),
  14394. name: "Side",
  14395. image: {
  14396. source: "./media/characters/mira/side.svg",
  14397. extra: 900 / 799,
  14398. bottom: 0.02
  14399. }
  14400. },
  14401. },
  14402. [
  14403. {
  14404. name: "Human Size",
  14405. height: math.unit(6, "feet")
  14406. },
  14407. {
  14408. name: "Macro",
  14409. height: math.unit(100, "feet"),
  14410. default: true
  14411. },
  14412. {
  14413. name: "Megamacro",
  14414. height: math.unit(10, "miles")
  14415. },
  14416. {
  14417. name: "Gigamacro",
  14418. height: math.unit(25000, "miles")
  14419. },
  14420. {
  14421. name: "Teramacro",
  14422. height: math.unit(300, "AU")
  14423. },
  14424. {
  14425. name: "Full Size",
  14426. height: math.unit(4.5e10, "lightyears")
  14427. },
  14428. ]
  14429. ))
  14430. characterMakers.push(() => makeCharacter(
  14431. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14432. {
  14433. front: {
  14434. height: math.unit(6, "feet"),
  14435. weight: math.unit(150, "lb"),
  14436. name: "Front",
  14437. image: {
  14438. source: "./media/characters/holly/front.svg",
  14439. extra: 639 / 606
  14440. }
  14441. },
  14442. back: {
  14443. height: math.unit(6, "feet"),
  14444. weight: math.unit(150, "lb"),
  14445. name: "Back",
  14446. image: {
  14447. source: "./media/characters/holly/back.svg",
  14448. extra: 623 / 598
  14449. }
  14450. },
  14451. frontWorking: {
  14452. height: math.unit(6, "feet"),
  14453. weight: math.unit(150, "lb"),
  14454. name: "Front (Working)",
  14455. image: {
  14456. source: "./media/characters/holly/front-working.svg",
  14457. extra: 607 / 577,
  14458. bottom: 0.048
  14459. }
  14460. },
  14461. },
  14462. [
  14463. {
  14464. name: "Normal",
  14465. height: math.unit(12 + 3 / 12, "feet"),
  14466. default: true
  14467. },
  14468. ]
  14469. ))
  14470. characterMakers.push(() => makeCharacter(
  14471. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14472. {
  14473. front: {
  14474. height: math.unit(6, "feet"),
  14475. weight: math.unit(150, "lb"),
  14476. name: "Front",
  14477. image: {
  14478. source: "./media/characters/porter/front.svg",
  14479. extra: 1,
  14480. bottom: 0.01
  14481. }
  14482. },
  14483. frontRobes: {
  14484. height: math.unit(6, "feet"),
  14485. weight: math.unit(150, "lb"),
  14486. name: "Front (Robes)",
  14487. image: {
  14488. source: "./media/characters/porter/front-robes.svg",
  14489. extra: 1.01,
  14490. bottom: 0.01
  14491. }
  14492. },
  14493. },
  14494. [
  14495. {
  14496. name: "Normal",
  14497. height: math.unit(11 + 9 / 12, "feet"),
  14498. default: true
  14499. },
  14500. ]
  14501. ))
  14502. characterMakers.push(() => makeCharacter(
  14503. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14504. {
  14505. legendary: {
  14506. height: math.unit(6, "feet"),
  14507. weight: math.unit(150, "lb"),
  14508. name: "Legendary",
  14509. image: {
  14510. source: "./media/characters/lucy/legendary.svg",
  14511. extra: 1355 / 1100,
  14512. bottom: 0.045
  14513. }
  14514. },
  14515. },
  14516. [
  14517. {
  14518. name: "Legendary",
  14519. height: math.unit(86882 * 2, "miles"),
  14520. default: true
  14521. },
  14522. ]
  14523. ))
  14524. characterMakers.push(() => makeCharacter(
  14525. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14526. {
  14527. front: {
  14528. height: math.unit(6, "feet"),
  14529. weight: math.unit(150, "lb"),
  14530. name: "Front",
  14531. image: {
  14532. source: "./media/characters/drusilla/front.svg",
  14533. extra: 678 / 635,
  14534. bottom: 0.03
  14535. }
  14536. },
  14537. back: {
  14538. height: math.unit(6, "feet"),
  14539. weight: math.unit(150, "lb"),
  14540. name: "Back",
  14541. image: {
  14542. source: "./media/characters/drusilla/back.svg",
  14543. extra: 678 / 635,
  14544. bottom: 0.005
  14545. }
  14546. },
  14547. },
  14548. [
  14549. {
  14550. name: "Macro",
  14551. height: math.unit(100, "feet")
  14552. },
  14553. {
  14554. name: "Canon Height",
  14555. height: math.unit(2000, "feet"),
  14556. default: true
  14557. },
  14558. ]
  14559. ))
  14560. characterMakers.push(() => makeCharacter(
  14561. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14562. {
  14563. front: {
  14564. height: math.unit(6, "feet"),
  14565. weight: math.unit(180, "lb"),
  14566. name: "Front",
  14567. image: {
  14568. source: "./media/characters/renard-thatch/front.svg",
  14569. extra: 2411 / 2275,
  14570. bottom: 0.01
  14571. }
  14572. },
  14573. frontPosing: {
  14574. height: math.unit(6, "feet"),
  14575. weight: math.unit(180, "lb"),
  14576. name: "Front (Posing)",
  14577. image: {
  14578. source: "./media/characters/renard-thatch/front-posing.svg",
  14579. extra: 2381 / 2261,
  14580. bottom: 0.01
  14581. }
  14582. },
  14583. back: {
  14584. height: math.unit(6, "feet"),
  14585. weight: math.unit(180, "lb"),
  14586. name: "Back",
  14587. image: {
  14588. source: "./media/characters/renard-thatch/back.svg",
  14589. extra: 2428 / 2288
  14590. }
  14591. },
  14592. },
  14593. [
  14594. {
  14595. name: "Micro",
  14596. height: math.unit(3, "inches")
  14597. },
  14598. {
  14599. name: "Default",
  14600. height: math.unit(6, "feet"),
  14601. default: true
  14602. },
  14603. {
  14604. name: "Macro",
  14605. height: math.unit(75, "feet")
  14606. },
  14607. ]
  14608. ))
  14609. characterMakers.push(() => makeCharacter(
  14610. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14611. {
  14612. front: {
  14613. height: math.unit(1450, "feet"),
  14614. weight: math.unit(1.21e6, "tons"),
  14615. name: "Front",
  14616. image: {
  14617. source: "./media/characters/sekvra/front.svg",
  14618. extra: 1193/1190,
  14619. bottom: 78/1271
  14620. }
  14621. },
  14622. side: {
  14623. height: math.unit(1450, "feet"),
  14624. weight: math.unit(1.21e6, "tons"),
  14625. name: "Side",
  14626. image: {
  14627. source: "./media/characters/sekvra/side.svg",
  14628. extra: 1193/1190,
  14629. bottom: 52/1245
  14630. }
  14631. },
  14632. back: {
  14633. height: math.unit(1450, "feet"),
  14634. weight: math.unit(1.21e6, "tons"),
  14635. name: "Back",
  14636. image: {
  14637. source: "./media/characters/sekvra/back.svg",
  14638. extra: 1219/1216,
  14639. bottom: 21/1240
  14640. }
  14641. },
  14642. frontClothed: {
  14643. height: math.unit(1450, "feet"),
  14644. weight: math.unit(1.21e6, "tons"),
  14645. name: "Front (Clothed)",
  14646. image: {
  14647. source: "./media/characters/sekvra/front-clothed.svg",
  14648. extra: 1192/1189,
  14649. bottom: 79/1271
  14650. }
  14651. },
  14652. },
  14653. [
  14654. {
  14655. name: "Macro",
  14656. height: math.unit(1450, "feet"),
  14657. default: true
  14658. },
  14659. {
  14660. name: "Megamacro",
  14661. height: math.unit(15000, "feet")
  14662. },
  14663. ]
  14664. ))
  14665. characterMakers.push(() => makeCharacter(
  14666. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14667. {
  14668. front: {
  14669. height: math.unit(6, "feet"),
  14670. weight: math.unit(150, "lb"),
  14671. name: "Front",
  14672. image: {
  14673. source: "./media/characters/carmine/front.svg",
  14674. extra: 1,
  14675. bottom: 0.035
  14676. }
  14677. },
  14678. frontArmor: {
  14679. height: math.unit(6, "feet"),
  14680. weight: math.unit(150, "lb"),
  14681. name: "Front (Armor)",
  14682. image: {
  14683. source: "./media/characters/carmine/front-armor.svg",
  14684. extra: 1,
  14685. bottom: 0.035
  14686. }
  14687. },
  14688. },
  14689. [
  14690. {
  14691. name: "Large",
  14692. height: math.unit(1, "mile")
  14693. },
  14694. {
  14695. name: "Huge",
  14696. height: math.unit(40, "miles"),
  14697. default: true
  14698. },
  14699. {
  14700. name: "Colossal",
  14701. height: math.unit(2500, "miles")
  14702. },
  14703. ]
  14704. ))
  14705. characterMakers.push(() => makeCharacter(
  14706. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14707. {
  14708. front: {
  14709. height: math.unit(6, "feet"),
  14710. weight: math.unit(150, "lb"),
  14711. name: "Front",
  14712. image: {
  14713. source: "./media/characters/elyssia/front.svg",
  14714. extra: 2201 / 2035,
  14715. bottom: 0.05
  14716. }
  14717. },
  14718. frontClothed: {
  14719. height: math.unit(6, "feet"),
  14720. weight: math.unit(150, "lb"),
  14721. name: "Front (Clothed)",
  14722. image: {
  14723. source: "./media/characters/elyssia/front-clothed.svg",
  14724. extra: 2201 / 2035,
  14725. bottom: 0.05
  14726. }
  14727. },
  14728. back: {
  14729. height: math.unit(6, "feet"),
  14730. weight: math.unit(150, "lb"),
  14731. name: "Back",
  14732. image: {
  14733. source: "./media/characters/elyssia/back.svg",
  14734. extra: 2201 / 2035,
  14735. bottom: 0.013
  14736. }
  14737. },
  14738. },
  14739. [
  14740. {
  14741. name: "Smaller",
  14742. height: math.unit(150, "feet")
  14743. },
  14744. {
  14745. name: "Standard",
  14746. height: math.unit(1400, "feet"),
  14747. default: true
  14748. },
  14749. {
  14750. name: "Distracted",
  14751. height: math.unit(15000, "feet")
  14752. },
  14753. ]
  14754. ))
  14755. characterMakers.push(() => makeCharacter(
  14756. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14757. {
  14758. front: {
  14759. height: math.unit(7 + 4/12, "feet"),
  14760. weight: math.unit(690, "lb"),
  14761. name: "Front",
  14762. image: {
  14763. source: "./media/characters/geno-maxwell/front.svg",
  14764. extra: 984/856,
  14765. bottom: 87/1071
  14766. }
  14767. },
  14768. back: {
  14769. height: math.unit(7 + 4/12, "feet"),
  14770. weight: math.unit(690, "lb"),
  14771. name: "Back",
  14772. image: {
  14773. source: "./media/characters/geno-maxwell/back.svg",
  14774. extra: 981/854,
  14775. bottom: 57/1038
  14776. }
  14777. },
  14778. frontCostume: {
  14779. height: math.unit(7 + 4/12, "feet"),
  14780. weight: math.unit(690, "lb"),
  14781. name: "Front (Costume)",
  14782. image: {
  14783. source: "./media/characters/geno-maxwell/front-costume.svg",
  14784. extra: 984/856,
  14785. bottom: 87/1071
  14786. }
  14787. },
  14788. backcostume: {
  14789. height: math.unit(7 + 4/12, "feet"),
  14790. weight: math.unit(690, "lb"),
  14791. name: "Back (Costume)",
  14792. image: {
  14793. source: "./media/characters/geno-maxwell/back-costume.svg",
  14794. extra: 981/854,
  14795. bottom: 57/1038
  14796. }
  14797. },
  14798. },
  14799. [
  14800. {
  14801. name: "Micro",
  14802. height: math.unit(3, "inches")
  14803. },
  14804. {
  14805. name: "Normal",
  14806. height: math.unit(7 + 4 / 12, "feet"),
  14807. default: true
  14808. },
  14809. {
  14810. name: "Macro",
  14811. height: math.unit(220, "feet")
  14812. },
  14813. {
  14814. name: "Megamacro",
  14815. height: math.unit(11, "miles")
  14816. },
  14817. ]
  14818. ))
  14819. characterMakers.push(() => makeCharacter(
  14820. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14821. {
  14822. front: {
  14823. height: math.unit(7 + 4/12, "feet"),
  14824. weight: math.unit(750, "lb"),
  14825. name: "Front",
  14826. image: {
  14827. source: "./media/characters/regena-maxwell/front.svg",
  14828. extra: 984/856,
  14829. bottom: 87/1071
  14830. }
  14831. },
  14832. back: {
  14833. height: math.unit(7 + 4/12, "feet"),
  14834. weight: math.unit(750, "lb"),
  14835. name: "Back",
  14836. image: {
  14837. source: "./media/characters/regena-maxwell/back.svg",
  14838. extra: 981/854,
  14839. bottom: 57/1038
  14840. }
  14841. },
  14842. frontCostume: {
  14843. height: math.unit(7 + 4/12, "feet"),
  14844. weight: math.unit(750, "lb"),
  14845. name: "Front (Costume)",
  14846. image: {
  14847. source: "./media/characters/regena-maxwell/front-costume.svg",
  14848. extra: 984/856,
  14849. bottom: 87/1071
  14850. }
  14851. },
  14852. backcostume: {
  14853. height: math.unit(7 + 4/12, "feet"),
  14854. weight: math.unit(750, "lb"),
  14855. name: "Back (Costume)",
  14856. image: {
  14857. source: "./media/characters/regena-maxwell/back-costume.svg",
  14858. extra: 981/854,
  14859. bottom: 57/1038
  14860. }
  14861. },
  14862. },
  14863. [
  14864. {
  14865. name: "Normal",
  14866. height: math.unit(7 + 4 / 12, "feet"),
  14867. default: true
  14868. },
  14869. {
  14870. name: "Macro",
  14871. height: math.unit(220, "feet")
  14872. },
  14873. {
  14874. name: "Megamacro",
  14875. height: math.unit(11, "miles")
  14876. },
  14877. ]
  14878. ))
  14879. characterMakers.push(() => makeCharacter(
  14880. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14881. {
  14882. front: {
  14883. height: math.unit(6, "feet"),
  14884. weight: math.unit(150, "lb"),
  14885. name: "Front",
  14886. image: {
  14887. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14888. extra: 860 / 690,
  14889. bottom: 0.03
  14890. }
  14891. },
  14892. },
  14893. [
  14894. {
  14895. name: "Normal",
  14896. height: math.unit(1.7, "meters"),
  14897. default: true
  14898. },
  14899. ]
  14900. ))
  14901. characterMakers.push(() => makeCharacter(
  14902. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14903. {
  14904. front: {
  14905. height: math.unit(6, "feet"),
  14906. weight: math.unit(150, "lb"),
  14907. name: "Front",
  14908. image: {
  14909. source: "./media/characters/quilly/front.svg",
  14910. extra: 890 / 776
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Gigamacro",
  14917. height: math.unit(404090, "miles"),
  14918. default: true
  14919. },
  14920. ]
  14921. ))
  14922. characterMakers.push(() => makeCharacter(
  14923. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14924. {
  14925. front: {
  14926. height: math.unit(7 + 8 / 12, "feet"),
  14927. weight: math.unit(350, "lb"),
  14928. name: "Front",
  14929. image: {
  14930. source: "./media/characters/tempest/front.svg",
  14931. extra: 1175 / 1086,
  14932. bottom: 0.02
  14933. }
  14934. },
  14935. },
  14936. [
  14937. {
  14938. name: "Normal",
  14939. height: math.unit(7 + 8 / 12, "feet"),
  14940. default: true
  14941. },
  14942. ]
  14943. ))
  14944. characterMakers.push(() => makeCharacter(
  14945. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14946. {
  14947. side: {
  14948. height: math.unit(4 + 5 / 12, "feet"),
  14949. weight: math.unit(80, "lb"),
  14950. name: "Side",
  14951. image: {
  14952. source: "./media/characters/rodger/side.svg",
  14953. extra: 1235 / 1118
  14954. }
  14955. },
  14956. },
  14957. [
  14958. {
  14959. name: "Micro",
  14960. height: math.unit(1, "inch")
  14961. },
  14962. {
  14963. name: "Normal",
  14964. height: math.unit(4 + 5 / 12, "feet"),
  14965. default: true
  14966. },
  14967. {
  14968. name: "Macro",
  14969. height: math.unit(120, "feet")
  14970. },
  14971. ]
  14972. ))
  14973. characterMakers.push(() => makeCharacter(
  14974. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14975. {
  14976. front: {
  14977. height: math.unit(6, "feet"),
  14978. weight: math.unit(150, "lb"),
  14979. name: "Front",
  14980. image: {
  14981. source: "./media/characters/danyel/front.svg",
  14982. extra: 1185 / 1123,
  14983. bottom: 0.05
  14984. }
  14985. },
  14986. },
  14987. [
  14988. {
  14989. name: "Shrunken",
  14990. height: math.unit(0.5, "mm")
  14991. },
  14992. {
  14993. name: "Micro",
  14994. height: math.unit(1, "mm"),
  14995. default: true
  14996. },
  14997. {
  14998. name: "Upsized",
  14999. height: math.unit(5 + 5 / 12, "feet")
  15000. },
  15001. ]
  15002. ))
  15003. characterMakers.push(() => makeCharacter(
  15004. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15005. {
  15006. front: {
  15007. height: math.unit(5 + 6 / 12, "feet"),
  15008. weight: math.unit(200, "lb"),
  15009. name: "Front",
  15010. image: {
  15011. source: "./media/characters/vivian-bijoux/front.svg",
  15012. extra: 1217/1209,
  15013. bottom: 76/1293
  15014. }
  15015. },
  15016. back: {
  15017. height: math.unit(5 + 6 / 12, "feet"),
  15018. weight: math.unit(200, "lb"),
  15019. name: "Back",
  15020. image: {
  15021. source: "./media/characters/vivian-bijoux/back.svg",
  15022. extra: 1214/1208,
  15023. bottom: 51/1265
  15024. }
  15025. },
  15026. dressed: {
  15027. height: math.unit(5 + 6 / 12, "feet"),
  15028. weight: math.unit(200, "lb"),
  15029. name: "Dressed",
  15030. image: {
  15031. source: "./media/characters/vivian-bijoux/dressed.svg",
  15032. extra: 1217/1209,
  15033. bottom: 76/1293
  15034. }
  15035. },
  15036. },
  15037. [
  15038. {
  15039. name: "Normal",
  15040. height: math.unit(5 + 6 / 12, "feet"),
  15041. default: true
  15042. },
  15043. {
  15044. name: "Bad Dream",
  15045. height: math.unit(500, "feet")
  15046. },
  15047. {
  15048. name: "Nightmare",
  15049. height: math.unit(500, "miles")
  15050. },
  15051. ]
  15052. ))
  15053. characterMakers.push(() => makeCharacter(
  15054. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15055. {
  15056. front: {
  15057. height: math.unit(6 + 1 / 12, "feet"),
  15058. weight: math.unit(260, "lb"),
  15059. name: "Front",
  15060. image: {
  15061. source: "./media/characters/zeta/front.svg",
  15062. extra: 1968 / 1889,
  15063. bottom: 0.06
  15064. }
  15065. },
  15066. back: {
  15067. height: math.unit(6 + 1 / 12, "feet"),
  15068. weight: math.unit(260, "lb"),
  15069. name: "Back",
  15070. image: {
  15071. source: "./media/characters/zeta/back.svg",
  15072. extra: 1944 / 1858,
  15073. bottom: 0.03
  15074. }
  15075. },
  15076. hand: {
  15077. height: math.unit(1.112, "feet"),
  15078. name: "Hand",
  15079. image: {
  15080. source: "./media/characters/zeta/hand.svg"
  15081. }
  15082. },
  15083. foot: {
  15084. height: math.unit(1.48, "feet"),
  15085. name: "Foot",
  15086. image: {
  15087. source: "./media/characters/zeta/foot.svg"
  15088. }
  15089. },
  15090. },
  15091. [
  15092. {
  15093. name: "Micro",
  15094. height: math.unit(6, "inches")
  15095. },
  15096. {
  15097. name: "Normal",
  15098. height: math.unit(6 + 1 / 12, "feet"),
  15099. default: true
  15100. },
  15101. {
  15102. name: "Macro",
  15103. height: math.unit(20, "feet")
  15104. },
  15105. ]
  15106. ))
  15107. characterMakers.push(() => makeCharacter(
  15108. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15109. {
  15110. front: {
  15111. height: math.unit(6, "feet"),
  15112. weight: math.unit(150, "lb"),
  15113. name: "Front",
  15114. image: {
  15115. source: "./media/characters/jamie-larsen/front.svg",
  15116. extra: 962 / 933,
  15117. bottom: 0.02
  15118. }
  15119. },
  15120. back: {
  15121. height: math.unit(6, "feet"),
  15122. weight: math.unit(150, "lb"),
  15123. name: "Back",
  15124. image: {
  15125. source: "./media/characters/jamie-larsen/back.svg",
  15126. extra: 997 / 946
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Macro",
  15133. height: math.unit(28 + 7 / 12, "feet"),
  15134. default: true
  15135. },
  15136. {
  15137. name: "Macro+",
  15138. height: math.unit(180, "feet")
  15139. },
  15140. {
  15141. name: "Megamacro",
  15142. height: math.unit(10, "miles")
  15143. },
  15144. {
  15145. name: "Gigamacro",
  15146. height: math.unit(200000, "miles")
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15152. {
  15153. front: {
  15154. height: math.unit(6, "feet"),
  15155. weight: math.unit(120, "lb"),
  15156. name: "Front",
  15157. image: {
  15158. source: "./media/characters/vance/front.svg",
  15159. extra: 1980 / 1890,
  15160. bottom: 0.09
  15161. }
  15162. },
  15163. back: {
  15164. height: math.unit(6, "feet"),
  15165. weight: math.unit(120, "lb"),
  15166. name: "Back",
  15167. image: {
  15168. source: "./media/characters/vance/back.svg",
  15169. extra: 2081 / 1994,
  15170. bottom: 0.014
  15171. }
  15172. },
  15173. hand: {
  15174. height: math.unit(0.88, "feet"),
  15175. name: "Hand",
  15176. image: {
  15177. source: "./media/characters/vance/hand.svg"
  15178. }
  15179. },
  15180. foot: {
  15181. height: math.unit(0.64, "feet"),
  15182. name: "Foot",
  15183. image: {
  15184. source: "./media/characters/vance/foot.svg"
  15185. }
  15186. },
  15187. },
  15188. [
  15189. {
  15190. name: "Small",
  15191. height: math.unit(90, "feet"),
  15192. default: true
  15193. },
  15194. {
  15195. name: "Macro",
  15196. height: math.unit(100, "meters")
  15197. },
  15198. {
  15199. name: "Megamacro",
  15200. height: math.unit(15, "miles")
  15201. },
  15202. ]
  15203. ))
  15204. characterMakers.push(() => makeCharacter(
  15205. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15206. {
  15207. front: {
  15208. height: math.unit(6, "feet"),
  15209. weight: math.unit(180, "lb"),
  15210. name: "Front",
  15211. image: {
  15212. source: "./media/characters/xochitl/front.svg",
  15213. extra: 2297 / 2261,
  15214. bottom: 0.065
  15215. }
  15216. },
  15217. back: {
  15218. height: math.unit(6, "feet"),
  15219. weight: math.unit(180, "lb"),
  15220. name: "Back",
  15221. image: {
  15222. source: "./media/characters/xochitl/back.svg",
  15223. extra: 2386 / 2354,
  15224. bottom: 0.01
  15225. }
  15226. },
  15227. foot: {
  15228. height: math.unit(6 / 5 * 1.15, "feet"),
  15229. weight: math.unit(150, "lb"),
  15230. name: "Foot",
  15231. image: {
  15232. source: "./media/characters/xochitl/foot.svg"
  15233. }
  15234. },
  15235. },
  15236. [
  15237. {
  15238. name: "Macro",
  15239. height: math.unit(80, "feet")
  15240. },
  15241. {
  15242. name: "Macro+",
  15243. height: math.unit(400, "feet"),
  15244. default: true
  15245. },
  15246. {
  15247. name: "Gigamacro",
  15248. height: math.unit(80000, "miles")
  15249. },
  15250. {
  15251. name: "Gigamacro+",
  15252. height: math.unit(400000, "miles")
  15253. },
  15254. {
  15255. name: "Teramacro",
  15256. height: math.unit(300, "AU")
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15262. {
  15263. front: {
  15264. height: math.unit(6, "feet"),
  15265. weight: math.unit(150, "lb"),
  15266. name: "Front",
  15267. image: {
  15268. source: "./media/characters/vincent/front.svg",
  15269. extra: 1130 / 1080,
  15270. bottom: 0.055
  15271. }
  15272. },
  15273. beak: {
  15274. height: math.unit(6 * 0.1, "feet"),
  15275. name: "Beak",
  15276. image: {
  15277. source: "./media/characters/vincent/beak.svg"
  15278. }
  15279. },
  15280. hand: {
  15281. height: math.unit(6 * 0.85, "feet"),
  15282. weight: math.unit(150, "lb"),
  15283. name: "Hand",
  15284. image: {
  15285. source: "./media/characters/vincent/hand.svg"
  15286. }
  15287. },
  15288. foot: {
  15289. height: math.unit(6 * 0.19, "feet"),
  15290. weight: math.unit(150, "lb"),
  15291. name: "Foot",
  15292. image: {
  15293. source: "./media/characters/vincent/foot.svg"
  15294. }
  15295. },
  15296. },
  15297. [
  15298. {
  15299. name: "Base",
  15300. height: math.unit(6 + 5 / 12, "feet"),
  15301. default: true
  15302. },
  15303. {
  15304. name: "Macro",
  15305. height: math.unit(300, "feet")
  15306. },
  15307. {
  15308. name: "Megamacro",
  15309. height: math.unit(2, "miles")
  15310. },
  15311. {
  15312. name: "Gigamacro",
  15313. height: math.unit(1000, "miles")
  15314. },
  15315. ]
  15316. ))
  15317. characterMakers.push(() => makeCharacter(
  15318. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15319. {
  15320. front: {
  15321. height: math.unit(2, "meters"),
  15322. weight: math.unit(500, "kg"),
  15323. name: "Front",
  15324. image: {
  15325. source: "./media/characters/coatl/front.svg",
  15326. extra: 3948 / 3500,
  15327. bottom: 0.082
  15328. }
  15329. },
  15330. },
  15331. [
  15332. {
  15333. name: "Normal",
  15334. height: math.unit(4, "meters")
  15335. },
  15336. {
  15337. name: "Macro",
  15338. height: math.unit(100, "meters"),
  15339. default: true
  15340. },
  15341. {
  15342. name: "Macro+",
  15343. height: math.unit(300, "meters")
  15344. },
  15345. {
  15346. name: "Megamacro",
  15347. height: math.unit(3, "gigameters")
  15348. },
  15349. {
  15350. name: "Megamacro+",
  15351. height: math.unit(300, "terameters")
  15352. },
  15353. {
  15354. name: "Megamacro++",
  15355. height: math.unit(3, "lightyears")
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15361. {
  15362. front: {
  15363. height: math.unit(6, "feet"),
  15364. weight: math.unit(50, "kg"),
  15365. name: "front",
  15366. image: {
  15367. source: "./media/characters/shiroryu/front.svg",
  15368. extra: 1990 / 1935
  15369. }
  15370. },
  15371. },
  15372. [
  15373. {
  15374. name: "Mortal Mingling",
  15375. height: math.unit(3, "meters")
  15376. },
  15377. {
  15378. name: "Kaiju-ish",
  15379. height: math.unit(250, "meters")
  15380. },
  15381. {
  15382. name: "Somewhat Godly",
  15383. height: math.unit(400, "km"),
  15384. default: true
  15385. },
  15386. {
  15387. name: "Planetary",
  15388. height: math.unit(300, "megameters")
  15389. },
  15390. {
  15391. name: "Galaxy-dwarfing",
  15392. height: math.unit(450, "kiloparsecs")
  15393. },
  15394. {
  15395. name: "Universe Eater",
  15396. height: math.unit(150, "gigaparsecs")
  15397. },
  15398. {
  15399. name: "Almost Immeasurable",
  15400. height: math.unit(1.3e266, "yottaparsecs")
  15401. },
  15402. ]
  15403. ))
  15404. characterMakers.push(() => makeCharacter(
  15405. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15406. {
  15407. front: {
  15408. height: math.unit(6, "feet"),
  15409. weight: math.unit(150, "lb"),
  15410. name: "Front",
  15411. image: {
  15412. source: "./media/characters/umeko/front.svg",
  15413. extra: 1,
  15414. bottom: 0.019
  15415. }
  15416. },
  15417. frontArmored: {
  15418. height: math.unit(6, "feet"),
  15419. weight: math.unit(150, "lb"),
  15420. name: "Front (Armored)",
  15421. image: {
  15422. source: "./media/characters/umeko/front-armored.svg",
  15423. extra: 1,
  15424. bottom: 0.021
  15425. }
  15426. },
  15427. },
  15428. [
  15429. {
  15430. name: "Macro",
  15431. height: math.unit(220, "feet"),
  15432. default: true
  15433. },
  15434. {
  15435. name: "Guardian Dragon",
  15436. height: math.unit(50, "miles")
  15437. },
  15438. {
  15439. name: "Cosmic",
  15440. height: math.unit(800000, "miles")
  15441. },
  15442. ]
  15443. ))
  15444. characterMakers.push(() => makeCharacter(
  15445. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15446. {
  15447. front: {
  15448. height: math.unit(6, "feet"),
  15449. weight: math.unit(150, "lb"),
  15450. name: "Front",
  15451. image: {
  15452. source: "./media/characters/cassidy/front.svg",
  15453. extra: 810/808,
  15454. bottom: 41/851
  15455. }
  15456. },
  15457. },
  15458. [
  15459. {
  15460. name: "Canon Height",
  15461. height: math.unit(120, "feet"),
  15462. default: true
  15463. },
  15464. {
  15465. name: "Macro+",
  15466. height: math.unit(400, "feet")
  15467. },
  15468. {
  15469. name: "Macro++",
  15470. height: math.unit(4000, "feet")
  15471. },
  15472. {
  15473. name: "Megamacro",
  15474. height: math.unit(3, "miles")
  15475. },
  15476. ]
  15477. ))
  15478. characterMakers.push(() => makeCharacter(
  15479. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15480. {
  15481. front: {
  15482. height: math.unit(6, "feet"),
  15483. weight: math.unit(150, "lb"),
  15484. name: "Front",
  15485. image: {
  15486. source: "./media/characters/isaac/front.svg",
  15487. extra: 896 / 815,
  15488. bottom: 0.11
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Human Size",
  15495. height: math.unit(8, "feet"),
  15496. default: true
  15497. },
  15498. {
  15499. name: "Macro",
  15500. height: math.unit(400, "feet")
  15501. },
  15502. {
  15503. name: "Megamacro",
  15504. height: math.unit(50, "miles")
  15505. },
  15506. {
  15507. name: "Canon Height",
  15508. height: math.unit(200, "AU")
  15509. },
  15510. ]
  15511. ))
  15512. characterMakers.push(() => makeCharacter(
  15513. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15514. {
  15515. front: {
  15516. height: math.unit(6, "feet"),
  15517. weight: math.unit(72, "kg"),
  15518. name: "Front",
  15519. image: {
  15520. source: "./media/characters/sleekit/front.svg",
  15521. extra: 4693 / 4487,
  15522. bottom: 0.012
  15523. }
  15524. },
  15525. },
  15526. [
  15527. {
  15528. name: "Minimum Height",
  15529. height: math.unit(10, "meters")
  15530. },
  15531. {
  15532. name: "Smaller",
  15533. height: math.unit(25, "meters")
  15534. },
  15535. {
  15536. name: "Larger",
  15537. height: math.unit(38, "meters"),
  15538. default: true
  15539. },
  15540. {
  15541. name: "Maximum height",
  15542. height: math.unit(100, "meters")
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15548. {
  15549. front: {
  15550. height: math.unit(6, "feet"),
  15551. weight: math.unit(150, "lb"),
  15552. name: "Front",
  15553. image: {
  15554. source: "./media/characters/nillia/front.svg",
  15555. extra: 2195 / 2037,
  15556. bottom: 0.005
  15557. }
  15558. },
  15559. back: {
  15560. height: math.unit(6, "feet"),
  15561. weight: math.unit(150, "lb"),
  15562. name: "Back",
  15563. image: {
  15564. source: "./media/characters/nillia/back.svg",
  15565. extra: 2195 / 2037,
  15566. bottom: 0.005
  15567. }
  15568. },
  15569. },
  15570. [
  15571. {
  15572. name: "Canon Height",
  15573. height: math.unit(489, "feet"),
  15574. default: true
  15575. }
  15576. ]
  15577. ))
  15578. characterMakers.push(() => makeCharacter(
  15579. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15580. {
  15581. front: {
  15582. height: math.unit(6, "feet"),
  15583. weight: math.unit(150, "lb"),
  15584. name: "Front",
  15585. image: {
  15586. source: "./media/characters/mesmyriza/front.svg",
  15587. extra: 2067 / 1784,
  15588. bottom: 0.035
  15589. }
  15590. },
  15591. foot: {
  15592. height: math.unit(6 / (250 / 35), "feet"),
  15593. name: "Foot",
  15594. image: {
  15595. source: "./media/characters/mesmyriza/foot.svg"
  15596. }
  15597. },
  15598. },
  15599. [
  15600. {
  15601. name: "Macro",
  15602. height: math.unit(457, "meters"),
  15603. default: true
  15604. },
  15605. {
  15606. name: "Megamacro",
  15607. height: math.unit(8, "megameters")
  15608. },
  15609. ]
  15610. ))
  15611. characterMakers.push(() => makeCharacter(
  15612. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15613. {
  15614. front: {
  15615. height: math.unit(6, "feet"),
  15616. weight: math.unit(250, "lb"),
  15617. name: "Front",
  15618. image: {
  15619. source: "./media/characters/saudade/front.svg",
  15620. extra: 1172 / 1139,
  15621. bottom: 0.035
  15622. }
  15623. },
  15624. },
  15625. [
  15626. {
  15627. name: "Micro",
  15628. height: math.unit(3, "inches")
  15629. },
  15630. {
  15631. name: "Normal",
  15632. height: math.unit(6, "feet"),
  15633. default: true
  15634. },
  15635. {
  15636. name: "Macro",
  15637. height: math.unit(50, "feet")
  15638. },
  15639. {
  15640. name: "Megamacro",
  15641. height: math.unit(2800, "feet")
  15642. },
  15643. ]
  15644. ))
  15645. characterMakers.push(() => makeCharacter(
  15646. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15647. {
  15648. front: {
  15649. height: math.unit(5 + 4 / 12, "feet"),
  15650. weight: math.unit(100, "lb"),
  15651. name: "Front",
  15652. image: {
  15653. source: "./media/characters/keireer/front.svg",
  15654. extra: 716 / 666,
  15655. bottom: 0.05
  15656. }
  15657. },
  15658. },
  15659. [
  15660. {
  15661. name: "Normal",
  15662. height: math.unit(5 + 4 / 12, "feet"),
  15663. default: true
  15664. },
  15665. ]
  15666. ))
  15667. characterMakers.push(() => makeCharacter(
  15668. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15669. {
  15670. front: {
  15671. height: math.unit(5.5, "feet"),
  15672. weight: math.unit(90, "kg"),
  15673. name: "Front",
  15674. image: {
  15675. source: "./media/characters/mirja/front.svg",
  15676. extra: 1452/1262,
  15677. bottom: 67/1519
  15678. }
  15679. },
  15680. frontDressed: {
  15681. height: math.unit(5.5, "feet"),
  15682. weight: math.unit(90, "lb"),
  15683. name: "Front (Dressed)",
  15684. image: {
  15685. source: "./media/characters/mirja/dressed.svg",
  15686. extra: 1452/1262,
  15687. bottom: 67/1519
  15688. }
  15689. },
  15690. back: {
  15691. height: math.unit(6, "feet"),
  15692. weight: math.unit(90, "lb"),
  15693. name: "Back",
  15694. image: {
  15695. source: "./media/characters/mirja/back.svg",
  15696. extra: 1892/1795,
  15697. bottom: 48/1940
  15698. }
  15699. },
  15700. maw: {
  15701. height: math.unit(1.312, "feet"),
  15702. name: "Maw",
  15703. image: {
  15704. source: "./media/characters/mirja/maw.svg"
  15705. }
  15706. },
  15707. paw: {
  15708. height: math.unit(1.15, "feet"),
  15709. name: "Paw",
  15710. image: {
  15711. source: "./media/characters/mirja/paw.svg"
  15712. }
  15713. },
  15714. },
  15715. [
  15716. {
  15717. name: "\"Incognito\"",
  15718. height: math.unit(3, "meters")
  15719. },
  15720. {
  15721. name: "Strolling Size",
  15722. height: math.unit(15, "km")
  15723. },
  15724. {
  15725. name: "Larger Strolling Size",
  15726. height: math.unit(400, "km")
  15727. },
  15728. {
  15729. name: "Preferred Size",
  15730. height: math.unit(5000, "km"),
  15731. default: true
  15732. },
  15733. {
  15734. name: "True Size",
  15735. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15736. },
  15737. ]
  15738. ))
  15739. characterMakers.push(() => makeCharacter(
  15740. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15741. {
  15742. front: {
  15743. height: math.unit(15, "feet"),
  15744. weight: math.unit(880, "kg"),
  15745. name: "Front",
  15746. image: {
  15747. source: "./media/characters/nightraver/front.svg",
  15748. extra: 2444 / 2160,
  15749. bottom: 0.027
  15750. }
  15751. },
  15752. back: {
  15753. height: math.unit(15, "feet"),
  15754. weight: math.unit(880, "kg"),
  15755. name: "Back",
  15756. image: {
  15757. source: "./media/characters/nightraver/back.svg",
  15758. extra: 2309 / 2180,
  15759. bottom: 0.005
  15760. }
  15761. },
  15762. sole: {
  15763. height: math.unit(2.878, "feet"),
  15764. name: "Sole",
  15765. image: {
  15766. source: "./media/characters/nightraver/sole.svg"
  15767. }
  15768. },
  15769. foot: {
  15770. height: math.unit(2.285, "feet"),
  15771. name: "Foot",
  15772. image: {
  15773. source: "./media/characters/nightraver/foot.svg"
  15774. }
  15775. },
  15776. maw: {
  15777. height: math.unit(2.67, "feet"),
  15778. name: "Maw",
  15779. image: {
  15780. source: "./media/characters/nightraver/maw.svg"
  15781. }
  15782. },
  15783. },
  15784. [
  15785. {
  15786. name: "Micro",
  15787. height: math.unit(1, "cm")
  15788. },
  15789. {
  15790. name: "Normal",
  15791. height: math.unit(15, "feet"),
  15792. default: true
  15793. },
  15794. {
  15795. name: "Macro",
  15796. height: math.unit(300, "feet")
  15797. },
  15798. {
  15799. name: "Megamacro",
  15800. height: math.unit(300, "miles")
  15801. },
  15802. {
  15803. name: "Gigamacro",
  15804. height: math.unit(10000, "miles")
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15810. {
  15811. side: {
  15812. height: math.unit(2, "inches"),
  15813. weight: math.unit(5, "grams"),
  15814. name: "Side",
  15815. image: {
  15816. source: "./media/characters/arc/side.svg"
  15817. }
  15818. },
  15819. },
  15820. [
  15821. {
  15822. name: "Micro",
  15823. height: math.unit(2, "inches"),
  15824. default: true
  15825. },
  15826. ]
  15827. ))
  15828. characterMakers.push(() => makeCharacter(
  15829. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15830. {
  15831. front: {
  15832. height: math.unit(1.1938, "meters"),
  15833. weight: math.unit(54, "kg"),
  15834. name: "Front",
  15835. image: {
  15836. source: "./media/characters/nebula-shahar/front.svg",
  15837. extra: 1642 / 1436,
  15838. bottom: 0.06
  15839. }
  15840. },
  15841. },
  15842. [
  15843. {
  15844. name: "Megamicro",
  15845. height: math.unit(0.3, "mm")
  15846. },
  15847. {
  15848. name: "Micro",
  15849. height: math.unit(3, "cm")
  15850. },
  15851. {
  15852. name: "Normal",
  15853. height: math.unit(138, "cm"),
  15854. default: true
  15855. },
  15856. {
  15857. name: "Macro",
  15858. height: math.unit(30, "m")
  15859. },
  15860. ]
  15861. ))
  15862. characterMakers.push(() => makeCharacter(
  15863. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15864. {
  15865. front: {
  15866. height: math.unit(5.24, "feet"),
  15867. weight: math.unit(150, "lb"),
  15868. name: "Front",
  15869. image: {
  15870. source: "./media/characters/shayla/front.svg",
  15871. extra: 1512 / 1414,
  15872. bottom: 0.01
  15873. }
  15874. },
  15875. back: {
  15876. height: math.unit(5.24, "feet"),
  15877. weight: math.unit(150, "lb"),
  15878. name: "Back",
  15879. image: {
  15880. source: "./media/characters/shayla/back.svg",
  15881. extra: 1512 / 1414
  15882. }
  15883. },
  15884. hand: {
  15885. height: math.unit(0.7781496062992126, "feet"),
  15886. name: "Hand",
  15887. image: {
  15888. source: "./media/characters/shayla/hand.svg"
  15889. }
  15890. },
  15891. foot: {
  15892. height: math.unit(1.4206036745406823, "feet"),
  15893. name: "Foot",
  15894. image: {
  15895. source: "./media/characters/shayla/foot.svg"
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Micro",
  15902. height: math.unit(0.32, "feet")
  15903. },
  15904. {
  15905. name: "Normal",
  15906. height: math.unit(5.24, "feet"),
  15907. default: true
  15908. },
  15909. {
  15910. name: "Macro",
  15911. height: math.unit(492.12, "feet")
  15912. },
  15913. {
  15914. name: "Megamacro",
  15915. height: math.unit(186.41, "miles")
  15916. },
  15917. ]
  15918. ))
  15919. characterMakers.push(() => makeCharacter(
  15920. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15921. {
  15922. front: {
  15923. height: math.unit(2.2, "m"),
  15924. weight: math.unit(120, "kg"),
  15925. name: "Front",
  15926. image: {
  15927. source: "./media/characters/pia-jr/front.svg",
  15928. extra: 1000 / 970,
  15929. bottom: 0.035
  15930. }
  15931. },
  15932. hand: {
  15933. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15934. name: "Hand",
  15935. image: {
  15936. source: "./media/characters/pia-jr/hand.svg"
  15937. }
  15938. },
  15939. paw: {
  15940. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15941. name: "Paw",
  15942. image: {
  15943. source: "./media/characters/pia-jr/paw.svg"
  15944. }
  15945. },
  15946. },
  15947. [
  15948. {
  15949. name: "Micro",
  15950. height: math.unit(1.2, "cm")
  15951. },
  15952. {
  15953. name: "Normal",
  15954. height: math.unit(2.2, "m"),
  15955. default: true
  15956. },
  15957. {
  15958. name: "Macro",
  15959. height: math.unit(180, "m")
  15960. },
  15961. {
  15962. name: "Megamacro",
  15963. height: math.unit(420, "km")
  15964. },
  15965. ]
  15966. ))
  15967. characterMakers.push(() => makeCharacter(
  15968. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15969. {
  15970. front: {
  15971. height: math.unit(2, "m"),
  15972. weight: math.unit(115, "kg"),
  15973. name: "Front",
  15974. image: {
  15975. source: "./media/characters/pia-sr/front.svg",
  15976. extra: 760 / 730,
  15977. bottom: 0.015
  15978. }
  15979. },
  15980. back: {
  15981. height: math.unit(2, "m"),
  15982. weight: math.unit(115, "kg"),
  15983. name: "Back",
  15984. image: {
  15985. source: "./media/characters/pia-sr/back.svg",
  15986. extra: 760 / 730,
  15987. bottom: 0.01
  15988. }
  15989. },
  15990. hand: {
  15991. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15992. name: "Hand",
  15993. image: {
  15994. source: "./media/characters/pia-sr/hand.svg"
  15995. }
  15996. },
  15997. foot: {
  15998. height: math.unit(1.83, "feet"),
  15999. name: "Foot",
  16000. image: {
  16001. source: "./media/characters/pia-sr/foot.svg"
  16002. }
  16003. },
  16004. },
  16005. [
  16006. {
  16007. name: "Micro",
  16008. height: math.unit(88, "mm")
  16009. },
  16010. {
  16011. name: "Normal",
  16012. height: math.unit(2, "m"),
  16013. default: true
  16014. },
  16015. {
  16016. name: "Macro",
  16017. height: math.unit(200, "m")
  16018. },
  16019. {
  16020. name: "Megamacro",
  16021. height: math.unit(420, "km")
  16022. },
  16023. ]
  16024. ))
  16025. characterMakers.push(() => makeCharacter(
  16026. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16027. {
  16028. front: {
  16029. height: math.unit(8 + 2 / 12, "feet"),
  16030. weight: math.unit(300, "lb"),
  16031. name: "Front",
  16032. image: {
  16033. source: "./media/characters/kibibyte/front.svg",
  16034. extra: 2221 / 2098,
  16035. bottom: 0.04
  16036. }
  16037. },
  16038. },
  16039. [
  16040. {
  16041. name: "Normal",
  16042. height: math.unit(8 + 2 / 12, "feet"),
  16043. default: true
  16044. },
  16045. {
  16046. name: "Socialable Macro",
  16047. height: math.unit(50, "feet")
  16048. },
  16049. {
  16050. name: "Macro",
  16051. height: math.unit(300, "feet")
  16052. },
  16053. {
  16054. name: "Megamacro",
  16055. height: math.unit(500, "miles")
  16056. },
  16057. ]
  16058. ))
  16059. characterMakers.push(() => makeCharacter(
  16060. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16061. {
  16062. front: {
  16063. height: math.unit(6, "feet"),
  16064. weight: math.unit(150, "lb"),
  16065. name: "Front",
  16066. image: {
  16067. source: "./media/characters/felix/front.svg",
  16068. extra: 762 / 722,
  16069. bottom: 0.02
  16070. }
  16071. },
  16072. frontClothed: {
  16073. height: math.unit(6, "feet"),
  16074. weight: math.unit(150, "lb"),
  16075. name: "Front (Clothed)",
  16076. image: {
  16077. source: "./media/characters/felix/front-clothed.svg",
  16078. extra: 762 / 722,
  16079. bottom: 0.02
  16080. }
  16081. },
  16082. },
  16083. [
  16084. {
  16085. name: "Normal",
  16086. height: math.unit(6 + 8 / 12, "feet"),
  16087. default: true
  16088. },
  16089. {
  16090. name: "Macro",
  16091. height: math.unit(2600, "feet")
  16092. },
  16093. {
  16094. name: "Megamacro",
  16095. height: math.unit(450, "miles")
  16096. },
  16097. ]
  16098. ))
  16099. characterMakers.push(() => makeCharacter(
  16100. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16101. {
  16102. front: {
  16103. height: math.unit(6 + 1 / 12, "feet"),
  16104. weight: math.unit(250, "lb"),
  16105. name: "Front",
  16106. image: {
  16107. source: "./media/characters/tobo/front.svg",
  16108. extra: 608 / 586,
  16109. bottom: 0.023
  16110. }
  16111. },
  16112. back: {
  16113. height: math.unit(6 + 1 / 12, "feet"),
  16114. weight: math.unit(250, "lb"),
  16115. name: "Back",
  16116. image: {
  16117. source: "./media/characters/tobo/back.svg",
  16118. extra: 608 / 586
  16119. }
  16120. },
  16121. },
  16122. [
  16123. {
  16124. name: "Nano",
  16125. height: math.unit(2, "nm")
  16126. },
  16127. {
  16128. name: "Megamicro",
  16129. height: math.unit(0.1, "mm")
  16130. },
  16131. {
  16132. name: "Micro",
  16133. height: math.unit(1, "inch"),
  16134. default: true
  16135. },
  16136. {
  16137. name: "Human-sized",
  16138. height: math.unit(6 + 1 / 12, "feet")
  16139. },
  16140. {
  16141. name: "Macro",
  16142. height: math.unit(250, "feet")
  16143. },
  16144. {
  16145. name: "Megamacro",
  16146. height: math.unit(75, "miles")
  16147. },
  16148. {
  16149. name: "Texas-sized",
  16150. height: math.unit(750, "miles")
  16151. },
  16152. {
  16153. name: "Teramacro",
  16154. height: math.unit(50000, "miles")
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16160. {
  16161. front: {
  16162. height: math.unit(6, "feet"),
  16163. weight: math.unit(269, "lb"),
  16164. name: "Front",
  16165. image: {
  16166. source: "./media/characters/danny-kapowsky/front.svg",
  16167. extra: 766 / 736,
  16168. bottom: 0.044
  16169. }
  16170. },
  16171. back: {
  16172. height: math.unit(6, "feet"),
  16173. weight: math.unit(269, "lb"),
  16174. name: "Back",
  16175. image: {
  16176. source: "./media/characters/danny-kapowsky/back.svg",
  16177. extra: 797 / 760,
  16178. bottom: 0.025
  16179. }
  16180. },
  16181. },
  16182. [
  16183. {
  16184. name: "Macro",
  16185. height: math.unit(150, "feet"),
  16186. default: true
  16187. },
  16188. {
  16189. name: "Macro+",
  16190. height: math.unit(200, "feet")
  16191. },
  16192. {
  16193. name: "Macro++",
  16194. height: math.unit(300, "feet")
  16195. },
  16196. {
  16197. name: "Macro+++",
  16198. height: math.unit(400, "feet")
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16204. {
  16205. side: {
  16206. height: math.unit(6, "feet"),
  16207. weight: math.unit(170, "lb"),
  16208. name: "Side",
  16209. image: {
  16210. source: "./media/characters/finn/side.svg",
  16211. extra: 1953 / 1807,
  16212. bottom: 0.057
  16213. }
  16214. },
  16215. },
  16216. [
  16217. {
  16218. name: "Megamacro",
  16219. height: math.unit(14445, "feet"),
  16220. default: true
  16221. },
  16222. ]
  16223. ))
  16224. characterMakers.push(() => makeCharacter(
  16225. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16226. {
  16227. front: {
  16228. height: math.unit(5 + 6 / 12, "feet"),
  16229. weight: math.unit(125, "lb"),
  16230. name: "Front",
  16231. image: {
  16232. source: "./media/characters/roy/front.svg",
  16233. extra: 1,
  16234. bottom: 0.11
  16235. }
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Micro",
  16241. height: math.unit(3, "inches"),
  16242. default: true
  16243. },
  16244. {
  16245. name: "Normal",
  16246. height: math.unit(5 + 6 / 12, "feet")
  16247. },
  16248. {
  16249. name: "Lesser Macro",
  16250. height: math.unit(60, "feet")
  16251. },
  16252. {
  16253. name: "Greater Macro",
  16254. height: math.unit(120, "feet")
  16255. },
  16256. ]
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16260. {
  16261. front: {
  16262. height: math.unit(6, "feet"),
  16263. weight: math.unit(100, "lb"),
  16264. name: "Front",
  16265. image: {
  16266. source: "./media/characters/aevsivs/front.svg",
  16267. extra: 1,
  16268. bottom: 0.03
  16269. }
  16270. },
  16271. back: {
  16272. height: math.unit(6, "feet"),
  16273. weight: math.unit(100, "lb"),
  16274. name: "Back",
  16275. image: {
  16276. source: "./media/characters/aevsivs/back.svg"
  16277. }
  16278. },
  16279. },
  16280. [
  16281. {
  16282. name: "Micro",
  16283. height: math.unit(2, "inches"),
  16284. default: true
  16285. },
  16286. {
  16287. name: "Normal",
  16288. height: math.unit(5, "feet")
  16289. },
  16290. ]
  16291. ))
  16292. characterMakers.push(() => makeCharacter(
  16293. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16294. {
  16295. front: {
  16296. height: math.unit(5 + 7 / 12, "feet"),
  16297. weight: math.unit(159, "lb"),
  16298. name: "Front",
  16299. image: {
  16300. source: "./media/characters/hildegard/front.svg",
  16301. extra: 289 / 269,
  16302. bottom: 7.63 / 297.8
  16303. }
  16304. },
  16305. back: {
  16306. height: math.unit(5 + 7 / 12, "feet"),
  16307. weight: math.unit(159, "lb"),
  16308. name: "Back",
  16309. image: {
  16310. source: "./media/characters/hildegard/back.svg",
  16311. extra: 280 / 260,
  16312. bottom: 2.3 / 282
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Normal",
  16319. height: math.unit(5 + 7 / 12, "feet"),
  16320. default: true
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16326. {
  16327. bernard: {
  16328. height: math.unit(2 + 7 / 12, "feet"),
  16329. weight: math.unit(66, "lb"),
  16330. name: "Bernard",
  16331. rename: true,
  16332. image: {
  16333. source: "./media/characters/bernard-wilder/bernard.svg",
  16334. extra: 192 / 128,
  16335. bottom: 0.05
  16336. }
  16337. },
  16338. wilder: {
  16339. height: math.unit(5 + 8 / 12, "feet"),
  16340. weight: math.unit(143, "lb"),
  16341. name: "Wilder",
  16342. rename: true,
  16343. image: {
  16344. source: "./media/characters/bernard-wilder/wilder.svg",
  16345. extra: 361 / 312,
  16346. bottom: 0.02
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Normal",
  16353. height: math.unit(2 + 7 / 12, "feet"),
  16354. default: true
  16355. },
  16356. ]
  16357. ))
  16358. characterMakers.push(() => makeCharacter(
  16359. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16360. {
  16361. anthro: {
  16362. height: math.unit(6 + 1 / 12, "feet"),
  16363. weight: math.unit(155, "lb"),
  16364. name: "Anthro",
  16365. image: {
  16366. source: "./media/characters/hearth/anthro.svg",
  16367. extra: 1178/1136,
  16368. bottom: 28/1206
  16369. }
  16370. },
  16371. feral: {
  16372. height: math.unit(3.78, "feet"),
  16373. weight: math.unit(35, "kg"),
  16374. name: "Feral",
  16375. image: {
  16376. source: "./media/characters/hearth/feral.svg",
  16377. extra: 153 / 135,
  16378. bottom: 0.03
  16379. }
  16380. },
  16381. },
  16382. [
  16383. {
  16384. name: "Normal",
  16385. height: math.unit(6 + 1 / 12, "feet"),
  16386. default: true
  16387. },
  16388. ]
  16389. ))
  16390. characterMakers.push(() => makeCharacter(
  16391. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16392. {
  16393. front: {
  16394. height: math.unit(6, "feet"),
  16395. weight: math.unit(182, "lb"),
  16396. name: "Front",
  16397. image: {
  16398. source: "./media/characters/ingrid/front.svg",
  16399. extra: 294 / 268,
  16400. bottom: 0.027
  16401. }
  16402. },
  16403. },
  16404. [
  16405. {
  16406. name: "Normal",
  16407. height: math.unit(6, "feet"),
  16408. default: true
  16409. },
  16410. ]
  16411. ))
  16412. characterMakers.push(() => makeCharacter(
  16413. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16414. {
  16415. eevee: {
  16416. height: math.unit(2 + 10 / 12, "feet"),
  16417. weight: math.unit(86, "lb"),
  16418. name: "Malgam",
  16419. image: {
  16420. source: "./media/characters/malgam/eevee.svg",
  16421. extra: 952/784,
  16422. bottom: 38/990
  16423. }
  16424. },
  16425. sylveon: {
  16426. height: math.unit(4, "feet"),
  16427. weight: math.unit(101, "lb"),
  16428. name: "Future Malgam",
  16429. rename: true,
  16430. image: {
  16431. source: "./media/characters/malgam/sylveon.svg",
  16432. extra: 371 / 325,
  16433. bottom: 0.015
  16434. }
  16435. },
  16436. gigantamax: {
  16437. height: math.unit(50, "feet"),
  16438. name: "Gigantamax Malgam",
  16439. rename: true,
  16440. image: {
  16441. source: "./media/characters/malgam/gigantamax.svg"
  16442. }
  16443. },
  16444. },
  16445. [
  16446. {
  16447. name: "Normal",
  16448. height: math.unit(2 + 10 / 12, "feet"),
  16449. default: true
  16450. },
  16451. ]
  16452. ))
  16453. characterMakers.push(() => makeCharacter(
  16454. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16455. {
  16456. front: {
  16457. height: math.unit(5 + 11 / 12, "feet"),
  16458. weight: math.unit(188, "lb"),
  16459. name: "Front",
  16460. image: {
  16461. source: "./media/characters/fleur/front.svg",
  16462. extra: 309 / 283,
  16463. bottom: 0.007
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Normal",
  16470. height: math.unit(5 + 11 / 12, "feet"),
  16471. default: true
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(5 + 4 / 12, "feet"),
  16480. weight: math.unit(122, "lb"),
  16481. name: "Front",
  16482. image: {
  16483. source: "./media/characters/jude/front.svg",
  16484. extra: 288 / 273,
  16485. bottom: 0.03
  16486. }
  16487. },
  16488. },
  16489. [
  16490. {
  16491. name: "Normal",
  16492. height: math.unit(5 + 4 / 12, "feet"),
  16493. default: true
  16494. },
  16495. ]
  16496. ))
  16497. characterMakers.push(() => makeCharacter(
  16498. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16499. {
  16500. front: {
  16501. height: math.unit(5 + 11 / 12, "feet"),
  16502. weight: math.unit(190, "lb"),
  16503. name: "Front",
  16504. image: {
  16505. source: "./media/characters/seara/front.svg",
  16506. extra: 1,
  16507. bottom: 0.05
  16508. }
  16509. },
  16510. },
  16511. [
  16512. {
  16513. name: "Normal",
  16514. height: math.unit(5 + 11 / 12, "feet"),
  16515. default: true
  16516. },
  16517. ]
  16518. ))
  16519. characterMakers.push(() => makeCharacter(
  16520. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16521. {
  16522. front: {
  16523. height: math.unit(16 + 5 / 12, "feet"),
  16524. weight: math.unit(524, "lb"),
  16525. name: "Front",
  16526. image: {
  16527. source: "./media/characters/caspian-lugia/front.svg",
  16528. extra: 1,
  16529. bottom: 0.04
  16530. }
  16531. },
  16532. },
  16533. [
  16534. {
  16535. name: "Normal",
  16536. height: math.unit(16 + 5 / 12, "feet"),
  16537. default: true
  16538. },
  16539. ]
  16540. ))
  16541. characterMakers.push(() => makeCharacter(
  16542. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16543. {
  16544. front: {
  16545. height: math.unit(5 + 7 / 12, "feet"),
  16546. weight: math.unit(170, "lb"),
  16547. name: "Front",
  16548. image: {
  16549. source: "./media/characters/mika/front.svg",
  16550. extra: 1,
  16551. bottom: 0.016
  16552. }
  16553. },
  16554. },
  16555. [
  16556. {
  16557. name: "Normal",
  16558. height: math.unit(5 + 7 / 12, "feet"),
  16559. default: true
  16560. },
  16561. ]
  16562. ))
  16563. characterMakers.push(() => makeCharacter(
  16564. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16565. {
  16566. front: {
  16567. height: math.unit(6 + 2 / 12, "feet"),
  16568. weight: math.unit(268, "lb"),
  16569. name: "Front",
  16570. image: {
  16571. source: "./media/characters/sol/front.svg",
  16572. extra: 247 / 231,
  16573. bottom: 0.05
  16574. }
  16575. },
  16576. },
  16577. [
  16578. {
  16579. name: "Normal",
  16580. height: math.unit(6 + 2 / 12, "feet"),
  16581. default: true
  16582. },
  16583. ]
  16584. ))
  16585. characterMakers.push(() => makeCharacter(
  16586. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16587. {
  16588. buizel: {
  16589. height: math.unit(2 + 5 / 12, "feet"),
  16590. weight: math.unit(87, "lb"),
  16591. name: "Front",
  16592. image: {
  16593. source: "./media/characters/umiko/buizel.svg",
  16594. extra: 172 / 157,
  16595. bottom: 0.01
  16596. },
  16597. form: "buizel",
  16598. default: true
  16599. },
  16600. floatzel: {
  16601. height: math.unit(5 + 9 / 12, "feet"),
  16602. weight: math.unit(250, "lb"),
  16603. name: "Front",
  16604. image: {
  16605. source: "./media/characters/umiko/floatzel.svg",
  16606. extra: 1076/1006,
  16607. bottom: 15/1091
  16608. },
  16609. form: "floatzel",
  16610. default: true
  16611. },
  16612. },
  16613. [
  16614. {
  16615. name: "Normal",
  16616. height: math.unit(2 + 5 / 12, "feet"),
  16617. form: "buizel",
  16618. default: true
  16619. },
  16620. {
  16621. name: "Normal",
  16622. height: math.unit(5 + 9 / 12, "feet"),
  16623. form: "floatzel",
  16624. default: true
  16625. },
  16626. ],
  16627. {
  16628. "buizel": {
  16629. name: "Buizel"
  16630. },
  16631. "floatzel": {
  16632. name: "Floatzel",
  16633. default: true
  16634. }
  16635. }
  16636. ))
  16637. characterMakers.push(() => makeCharacter(
  16638. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16639. {
  16640. front: {
  16641. height: math.unit(6 + 2 / 12, "feet"),
  16642. weight: math.unit(146, "lb"),
  16643. name: "Front",
  16644. image: {
  16645. source: "./media/characters/iliac/front.svg",
  16646. extra: 389 / 365,
  16647. bottom: 0.035
  16648. }
  16649. },
  16650. },
  16651. [
  16652. {
  16653. name: "Normal",
  16654. height: math.unit(6 + 2 / 12, "feet"),
  16655. default: true
  16656. },
  16657. ]
  16658. ))
  16659. characterMakers.push(() => makeCharacter(
  16660. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16661. {
  16662. front: {
  16663. height: math.unit(6, "feet"),
  16664. weight: math.unit(170, "lb"),
  16665. name: "Front",
  16666. image: {
  16667. source: "./media/characters/topaz/front.svg",
  16668. extra: 317 / 303,
  16669. bottom: 0.055
  16670. }
  16671. },
  16672. },
  16673. [
  16674. {
  16675. name: "Normal",
  16676. height: math.unit(6, "feet"),
  16677. default: true
  16678. },
  16679. ]
  16680. ))
  16681. characterMakers.push(() => makeCharacter(
  16682. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16683. {
  16684. front: {
  16685. height: math.unit(5 + 11 / 12, "feet"),
  16686. weight: math.unit(144, "lb"),
  16687. name: "Front",
  16688. image: {
  16689. source: "./media/characters/gabriel/front.svg",
  16690. extra: 285 / 262,
  16691. bottom: 0.004
  16692. }
  16693. },
  16694. },
  16695. [
  16696. {
  16697. name: "Normal",
  16698. height: math.unit(5 + 11 / 12, "feet"),
  16699. default: true
  16700. },
  16701. ]
  16702. ))
  16703. characterMakers.push(() => makeCharacter(
  16704. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16705. {
  16706. side: {
  16707. height: math.unit(6 + 5 / 12, "feet"),
  16708. weight: math.unit(300, "lb"),
  16709. name: "Side",
  16710. image: {
  16711. source: "./media/characters/tempest-suicune/side.svg",
  16712. extra: 195 / 154,
  16713. bottom: 0.04
  16714. }
  16715. },
  16716. },
  16717. [
  16718. {
  16719. name: "Normal",
  16720. height: math.unit(6 + 5 / 12, "feet"),
  16721. default: true
  16722. },
  16723. ]
  16724. ))
  16725. characterMakers.push(() => makeCharacter(
  16726. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16727. {
  16728. front: {
  16729. height: math.unit(7 + 2 / 12, "feet"),
  16730. weight: math.unit(322, "lb"),
  16731. name: "Front",
  16732. image: {
  16733. source: "./media/characters/vulcan/front.svg",
  16734. extra: 154 / 147,
  16735. bottom: 0.04
  16736. }
  16737. },
  16738. },
  16739. [
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(7 + 2 / 12, "feet"),
  16743. default: true
  16744. },
  16745. ]
  16746. ))
  16747. characterMakers.push(() => makeCharacter(
  16748. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16749. {
  16750. front: {
  16751. height: math.unit(5 + 10 / 12, "feet"),
  16752. weight: math.unit(264, "lb"),
  16753. name: "Front",
  16754. image: {
  16755. source: "./media/characters/gault/front.svg",
  16756. extra: 161 / 140,
  16757. bottom: 0.028
  16758. }
  16759. },
  16760. },
  16761. [
  16762. {
  16763. name: "Normal",
  16764. height: math.unit(5 + 10 / 12, "feet"),
  16765. default: true
  16766. },
  16767. ]
  16768. ))
  16769. characterMakers.push(() => makeCharacter(
  16770. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16771. {
  16772. front: {
  16773. height: math.unit(6, "feet"),
  16774. weight: math.unit(150, "lb"),
  16775. name: "Front",
  16776. image: {
  16777. source: "./media/characters/shard/front.svg",
  16778. extra: 273 / 238,
  16779. bottom: 0.02
  16780. }
  16781. },
  16782. },
  16783. [
  16784. {
  16785. name: "Normal",
  16786. height: math.unit(3 + 6 / 12, "feet"),
  16787. default: true
  16788. },
  16789. ]
  16790. ))
  16791. characterMakers.push(() => makeCharacter(
  16792. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16793. {
  16794. front: {
  16795. height: math.unit(5 + 11 / 12, "feet"),
  16796. weight: math.unit(146, "lb"),
  16797. name: "Front",
  16798. image: {
  16799. source: "./media/characters/ashe/front.svg",
  16800. extra: 400 / 373,
  16801. bottom: 0.01
  16802. }
  16803. },
  16804. },
  16805. [
  16806. {
  16807. name: "Normal",
  16808. height: math.unit(5 + 11 / 12, "feet"),
  16809. default: true
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16815. {
  16816. front: {
  16817. height: math.unit(5 + 5 / 12, "feet"),
  16818. weight: math.unit(135, "lb"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/beatrix/front.svg",
  16822. extra: 392 / 379,
  16823. bottom: 0.01
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(6, "feet"),
  16831. default: true
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16837. {
  16838. front: {
  16839. height: math.unit(6 + 2/12, "feet"),
  16840. weight: math.unit(135, "lb"),
  16841. name: "Front",
  16842. image: {
  16843. source: "./media/characters/ignatius/front.svg",
  16844. extra: 1380/1259,
  16845. bottom: 27/1407
  16846. }
  16847. },
  16848. },
  16849. [
  16850. {
  16851. name: "Normal",
  16852. height: math.unit(6 + 2/12, "feet"),
  16853. default: true
  16854. },
  16855. ]
  16856. ))
  16857. characterMakers.push(() => makeCharacter(
  16858. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16859. {
  16860. front: {
  16861. height: math.unit(6 + 2 / 12, "feet"),
  16862. weight: math.unit(138, "lb"),
  16863. name: "Front",
  16864. image: {
  16865. source: "./media/characters/mei-li/front.svg",
  16866. extra: 237 / 229,
  16867. bottom: 0.03
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(6 + 2 / 12, "feet"),
  16875. default: true
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16881. {
  16882. front: {
  16883. height: math.unit(2 + 4 / 12, "feet"),
  16884. weight: math.unit(62, "lb"),
  16885. name: "Front",
  16886. image: {
  16887. source: "./media/characters/puru/front.svg",
  16888. extra: 206 / 149,
  16889. bottom: 0.06
  16890. }
  16891. },
  16892. },
  16893. [
  16894. {
  16895. name: "Normal",
  16896. height: math.unit(2 + 4 / 12, "feet"),
  16897. default: true
  16898. },
  16899. ]
  16900. ))
  16901. characterMakers.push(() => makeCharacter(
  16902. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16903. {
  16904. anthro: {
  16905. height: math.unit(5 + 8/12, "feet"),
  16906. weight: math.unit(200, "lb"),
  16907. energyNeed: math.unit(2000, "kcal"),
  16908. name: "Anthro",
  16909. image: {
  16910. source: "./media/characters/kee/anthro.svg",
  16911. extra: 3251/3184,
  16912. bottom: 250/3501
  16913. }
  16914. },
  16915. taur: {
  16916. height: math.unit(11, "feet"),
  16917. weight: math.unit(500, "lb"),
  16918. energyNeed: math.unit(5000, "kcal"),
  16919. name: "Taur",
  16920. image: {
  16921. source: "./media/characters/kee/taur.svg",
  16922. extra: 1362/1320,
  16923. bottom: 83/1445
  16924. }
  16925. },
  16926. },
  16927. [
  16928. {
  16929. name: "Normal",
  16930. height: math.unit(5 + 8/12, "feet"),
  16931. default: true
  16932. },
  16933. {
  16934. name: "Macro",
  16935. height: math.unit(35, "feet")
  16936. },
  16937. ]
  16938. ))
  16939. characterMakers.push(() => makeCharacter(
  16940. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16941. {
  16942. anthro: {
  16943. height: math.unit(7, "feet"),
  16944. weight: math.unit(190, "lb"),
  16945. name: "Anthro",
  16946. image: {
  16947. source: "./media/characters/cobalt-dracha/anthro.svg",
  16948. extra: 231 / 225,
  16949. bottom: 0.04
  16950. }
  16951. },
  16952. feral: {
  16953. height: math.unit(9 + 7 / 12, "feet"),
  16954. weight: math.unit(294, "lb"),
  16955. name: "Feral",
  16956. image: {
  16957. source: "./media/characters/cobalt-dracha/feral.svg",
  16958. extra: 692 / 633,
  16959. bottom: 0.05
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(7, "feet"),
  16967. default: true
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16973. {
  16974. fallen: {
  16975. height: math.unit(11 + 8 / 12, "feet"),
  16976. weight: math.unit(485, "lb"),
  16977. name: "Java (Fallen)",
  16978. rename: true,
  16979. image: {
  16980. source: "./media/characters/java/fallen.svg",
  16981. extra: 226 / 208,
  16982. bottom: 0.005
  16983. }
  16984. },
  16985. godkin: {
  16986. height: math.unit(10 + 6 / 12, "feet"),
  16987. weight: math.unit(328, "lb"),
  16988. name: "Java (Godkin)",
  16989. rename: true,
  16990. image: {
  16991. source: "./media/characters/java/godkin.svg",
  16992. extra: 1104/1068,
  16993. bottom: 36/1140
  16994. }
  16995. },
  16996. },
  16997. [
  16998. {
  16999. name: "Normal",
  17000. height: math.unit(11 + 8 / 12, "feet"),
  17001. default: true
  17002. },
  17003. ]
  17004. ))
  17005. characterMakers.push(() => makeCharacter(
  17006. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17007. {
  17008. front: {
  17009. height: math.unit(5 + 9 / 12, "feet"),
  17010. weight: math.unit(170, "lb"),
  17011. name: "Front",
  17012. image: {
  17013. source: "./media/characters/purna/front.svg",
  17014. extra: 239 / 229,
  17015. bottom: 0.01
  17016. }
  17017. },
  17018. },
  17019. [
  17020. {
  17021. name: "Normal",
  17022. height: math.unit(5 + 9 / 12, "feet"),
  17023. default: true
  17024. },
  17025. ]
  17026. ))
  17027. characterMakers.push(() => makeCharacter(
  17028. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17029. {
  17030. front: {
  17031. height: math.unit(5 + 9 / 12, "feet"),
  17032. weight: math.unit(142, "lb"),
  17033. name: "Front",
  17034. image: {
  17035. source: "./media/characters/kuva/front.svg",
  17036. extra: 281 / 271,
  17037. bottom: 0.006
  17038. }
  17039. },
  17040. },
  17041. [
  17042. {
  17043. name: "Normal",
  17044. height: math.unit(5 + 9 / 12, "feet"),
  17045. default: true
  17046. },
  17047. ]
  17048. ))
  17049. characterMakers.push(() => makeCharacter(
  17050. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17051. {
  17052. anthro: {
  17053. height: math.unit(9 + 2 / 12, "feet"),
  17054. weight: math.unit(270, "lb"),
  17055. name: "Anthro",
  17056. image: {
  17057. source: "./media/characters/embra/anthro.svg",
  17058. extra: 200 / 187,
  17059. bottom: 0.02
  17060. }
  17061. },
  17062. feral: {
  17063. height: math.unit(18 + 8 / 12, "feet"),
  17064. weight: math.unit(576, "lb"),
  17065. name: "Feral",
  17066. image: {
  17067. source: "./media/characters/embra/feral.svg",
  17068. extra: 152 / 137,
  17069. bottom: 0.037
  17070. }
  17071. },
  17072. },
  17073. [
  17074. {
  17075. name: "Normal",
  17076. height: math.unit(9 + 2 / 12, "feet"),
  17077. default: true
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17083. {
  17084. anthro: {
  17085. height: math.unit(10 + 9 / 12, "feet"),
  17086. weight: math.unit(224, "lb"),
  17087. name: "Anthro",
  17088. image: {
  17089. source: "./media/characters/grottos/anthro.svg",
  17090. extra: 350 / 332,
  17091. bottom: 0.045
  17092. }
  17093. },
  17094. feral: {
  17095. height: math.unit(20 + 7 / 12, "feet"),
  17096. weight: math.unit(629, "lb"),
  17097. name: "Feral",
  17098. image: {
  17099. source: "./media/characters/grottos/feral.svg",
  17100. extra: 207 / 190,
  17101. bottom: 0.05
  17102. }
  17103. },
  17104. },
  17105. [
  17106. {
  17107. name: "Normal",
  17108. height: math.unit(10 + 9 / 12, "feet"),
  17109. default: true
  17110. },
  17111. ]
  17112. ))
  17113. characterMakers.push(() => makeCharacter(
  17114. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17115. {
  17116. anthro: {
  17117. height: math.unit(9 + 6 / 12, "feet"),
  17118. weight: math.unit(298, "lb"),
  17119. name: "Anthro",
  17120. image: {
  17121. source: "./media/characters/frifna/anthro.svg",
  17122. extra: 282 / 269,
  17123. bottom: 0.015
  17124. }
  17125. },
  17126. feral: {
  17127. height: math.unit(16 + 2 / 12, "feet"),
  17128. weight: math.unit(624, "lb"),
  17129. name: "Feral",
  17130. image: {
  17131. source: "./media/characters/frifna/feral.svg"
  17132. }
  17133. },
  17134. },
  17135. [
  17136. {
  17137. name: "Normal",
  17138. height: math.unit(9 + 6 / 12, "feet"),
  17139. default: true
  17140. },
  17141. ]
  17142. ))
  17143. characterMakers.push(() => makeCharacter(
  17144. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17145. {
  17146. front: {
  17147. height: math.unit(6 + 2 / 12, "feet"),
  17148. weight: math.unit(168, "lb"),
  17149. name: "Front",
  17150. image: {
  17151. source: "./media/characters/elise/front.svg",
  17152. extra: 276 / 271
  17153. }
  17154. },
  17155. },
  17156. [
  17157. {
  17158. name: "Normal",
  17159. height: math.unit(6 + 2 / 12, "feet"),
  17160. default: true
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17166. {
  17167. front: {
  17168. height: math.unit(5 + 10 / 12, "feet"),
  17169. weight: math.unit(210, "lb"),
  17170. name: "Front",
  17171. image: {
  17172. source: "./media/characters/glade/front.svg",
  17173. extra: 258 / 247,
  17174. bottom: 0.008
  17175. }
  17176. },
  17177. },
  17178. [
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(5 + 10 / 12, "feet"),
  17182. default: true
  17183. },
  17184. ]
  17185. ))
  17186. characterMakers.push(() => makeCharacter(
  17187. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17188. {
  17189. front: {
  17190. height: math.unit(5 + 10 / 12, "feet"),
  17191. weight: math.unit(129, "lb"),
  17192. name: "Front",
  17193. image: {
  17194. source: "./media/characters/rina/front.svg",
  17195. extra: 266 / 255,
  17196. bottom: 0.005
  17197. }
  17198. },
  17199. },
  17200. [
  17201. {
  17202. name: "Normal",
  17203. height: math.unit(5 + 10 / 12, "feet"),
  17204. default: true
  17205. },
  17206. ]
  17207. ))
  17208. characterMakers.push(() => makeCharacter(
  17209. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17210. {
  17211. front: {
  17212. height: math.unit(6 + 1 / 12, "feet"),
  17213. weight: math.unit(192, "lb"),
  17214. name: "Front",
  17215. image: {
  17216. source: "./media/characters/veronica/front.svg",
  17217. extra: 319 / 309,
  17218. bottom: 0.005
  17219. }
  17220. },
  17221. },
  17222. [
  17223. {
  17224. name: "Normal",
  17225. height: math.unit(6 + 1 / 12, "feet"),
  17226. default: true
  17227. },
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17232. {
  17233. front: {
  17234. height: math.unit(9 + 3 / 12, "feet"),
  17235. weight: math.unit(1100, "lb"),
  17236. name: "Front",
  17237. image: {
  17238. source: "./media/characters/braxton/front.svg",
  17239. extra: 1057 / 984,
  17240. bottom: 0.05
  17241. }
  17242. },
  17243. },
  17244. [
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(9 + 3 / 12, "feet")
  17248. },
  17249. {
  17250. name: "Giant",
  17251. height: math.unit(300, "feet"),
  17252. default: true
  17253. },
  17254. {
  17255. name: "Macro",
  17256. height: math.unit(700, "feet")
  17257. },
  17258. {
  17259. name: "Megamacro",
  17260. height: math.unit(6000, "feet")
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17266. {
  17267. front: {
  17268. height: math.unit(6 + 7 / 12, "feet"),
  17269. weight: math.unit(150, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/blue-feyonics/front.svg",
  17273. extra: 1403 / 1306,
  17274. bottom: 0.047
  17275. }
  17276. },
  17277. },
  17278. [
  17279. {
  17280. name: "Normal",
  17281. height: math.unit(6 + 7 / 12, "feet"),
  17282. default: true
  17283. },
  17284. ]
  17285. ))
  17286. characterMakers.push(() => makeCharacter(
  17287. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17288. {
  17289. front: {
  17290. height: math.unit(1.8, "meters"),
  17291. weight: math.unit(60, "kg"),
  17292. name: "Front",
  17293. image: {
  17294. source: "./media/characters/maxwell/front.svg",
  17295. extra: 2060 / 1873
  17296. }
  17297. },
  17298. },
  17299. [
  17300. {
  17301. name: "Micro",
  17302. height: math.unit(1, "mm")
  17303. },
  17304. {
  17305. name: "Normal",
  17306. height: math.unit(1.8, "meter"),
  17307. default: true
  17308. },
  17309. {
  17310. name: "Macro",
  17311. height: math.unit(30, "meters")
  17312. },
  17313. {
  17314. name: "Megamacro",
  17315. height: math.unit(10, "km")
  17316. },
  17317. ]
  17318. ))
  17319. characterMakers.push(() => makeCharacter(
  17320. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17321. {
  17322. front: {
  17323. height: math.unit(6, "feet"),
  17324. weight: math.unit(150, "lb"),
  17325. name: "Front",
  17326. image: {
  17327. source: "./media/characters/jack/front.svg",
  17328. extra: 1754 / 1640,
  17329. bottom: 0.01
  17330. }
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(80000, "feet"),
  17337. default: true
  17338. },
  17339. {
  17340. name: "Max size",
  17341. height: math.unit(10, "lightyears")
  17342. },
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17347. {
  17348. urban: {
  17349. height: math.unit(5, "feet"),
  17350. weight: math.unit(240, "lb"),
  17351. name: "Urban",
  17352. image: {
  17353. source: "./media/characters/cafat/urban.svg",
  17354. extra: 1223/1126,
  17355. bottom: 205/1428
  17356. }
  17357. },
  17358. summer: {
  17359. height: math.unit(5, "feet"),
  17360. weight: math.unit(240, "lb"),
  17361. name: "Summer",
  17362. image: {
  17363. source: "./media/characters/cafat/summer.svg",
  17364. extra: 1223/1126,
  17365. bottom: 205/1428
  17366. }
  17367. },
  17368. winter: {
  17369. height: math.unit(5, "feet"),
  17370. weight: math.unit(240, "lb"),
  17371. name: "Winter",
  17372. image: {
  17373. source: "./media/characters/cafat/winter.svg",
  17374. extra: 1223/1126,
  17375. bottom: 205/1428
  17376. }
  17377. },
  17378. lingerie: {
  17379. height: math.unit(5, "feet"),
  17380. weight: math.unit(240, "lb"),
  17381. name: "Lingerie",
  17382. image: {
  17383. source: "./media/characters/cafat/lingerie.svg",
  17384. extra: 1223/1126,
  17385. bottom: 205/1428
  17386. }
  17387. },
  17388. upright: {
  17389. height: math.unit(6.3, "feet"),
  17390. weight: math.unit(240, "lb"),
  17391. name: "Upright",
  17392. image: {
  17393. source: "./media/characters/cafat/upright.svg",
  17394. bottom: 0.01
  17395. }
  17396. },
  17397. uprightFull: {
  17398. height: math.unit(6.3, "feet"),
  17399. weight: math.unit(240, "lb"),
  17400. name: "Upright (Full)",
  17401. image: {
  17402. source: "./media/characters/cafat/upright-full.svg",
  17403. bottom: 0.01
  17404. }
  17405. },
  17406. },
  17407. [
  17408. {
  17409. name: "Small",
  17410. height: math.unit(5, "feet"),
  17411. default: true
  17412. },
  17413. {
  17414. name: "Large",
  17415. height: math.unit(13, "feet")
  17416. },
  17417. ]
  17418. ))
  17419. characterMakers.push(() => makeCharacter(
  17420. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17421. {
  17422. front: {
  17423. height: math.unit(6, "feet"),
  17424. weight: math.unit(150, "lb"),
  17425. name: "Front",
  17426. image: {
  17427. source: "./media/characters/verin-raharra/front.svg",
  17428. extra: 5019 / 4835,
  17429. bottom: 0.023
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(7 + 5 / 12, "feet"),
  17437. default: true
  17438. },
  17439. {
  17440. name: "Upsized",
  17441. height: math.unit(20, "feet")
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17447. {
  17448. front: {
  17449. height: math.unit(7, "feet"),
  17450. weight: math.unit(230, "lb"),
  17451. name: "Front",
  17452. image: {
  17453. source: "./media/characters/nakata/front.svg",
  17454. extra: 1.005,
  17455. bottom: 0.01
  17456. }
  17457. },
  17458. },
  17459. [
  17460. {
  17461. name: "Normal",
  17462. height: math.unit(7, "feet"),
  17463. default: true
  17464. },
  17465. {
  17466. name: "Big",
  17467. height: math.unit(14, "feet")
  17468. },
  17469. {
  17470. name: "Macro",
  17471. height: math.unit(400, "feet")
  17472. },
  17473. ]
  17474. ))
  17475. characterMakers.push(() => makeCharacter(
  17476. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17477. {
  17478. front: {
  17479. height: math.unit(4.91, "feet"),
  17480. weight: math.unit(100, "lb"),
  17481. name: "Front",
  17482. image: {
  17483. source: "./media/characters/lily/front.svg",
  17484. extra: 1585 / 1415,
  17485. bottom: 0.02
  17486. }
  17487. },
  17488. },
  17489. [
  17490. {
  17491. name: "Normal",
  17492. height: math.unit(4.91, "feet"),
  17493. default: true
  17494. },
  17495. ]
  17496. ))
  17497. characterMakers.push(() => makeCharacter(
  17498. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17499. {
  17500. laying: {
  17501. height: math.unit(4 + 4 / 12, "feet"),
  17502. weight: math.unit(600, "lb"),
  17503. name: "Laying",
  17504. image: {
  17505. source: "./media/characters/sheila/laying.svg",
  17506. extra: 1333 / 1265,
  17507. bottom: 0.16
  17508. }
  17509. },
  17510. },
  17511. [
  17512. {
  17513. name: "Normal",
  17514. height: math.unit(4 + 4 / 12, "feet"),
  17515. default: true
  17516. },
  17517. ]
  17518. ))
  17519. characterMakers.push(() => makeCharacter(
  17520. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17521. {
  17522. front: {
  17523. height: math.unit(6, "feet"),
  17524. weight: math.unit(190, "lb"),
  17525. name: "Front",
  17526. image: {
  17527. source: "./media/characters/sax/front.svg",
  17528. extra: 1187 / 973,
  17529. bottom: 0.042
  17530. }
  17531. },
  17532. },
  17533. [
  17534. {
  17535. name: "Micro",
  17536. height: math.unit(4, "inches"),
  17537. default: true
  17538. },
  17539. ]
  17540. ))
  17541. characterMakers.push(() => makeCharacter(
  17542. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17543. {
  17544. front: {
  17545. height: math.unit(6, "feet"),
  17546. weight: math.unit(150, "lb"),
  17547. name: "Front",
  17548. image: {
  17549. source: "./media/characters/pandora/front.svg",
  17550. extra: 2720 / 2556,
  17551. bottom: 0.015
  17552. }
  17553. },
  17554. back: {
  17555. height: math.unit(6, "feet"),
  17556. weight: math.unit(150, "lb"),
  17557. name: "Back",
  17558. image: {
  17559. source: "./media/characters/pandora/back.svg",
  17560. extra: 2720 / 2556,
  17561. bottom: 0.01
  17562. }
  17563. },
  17564. beans: {
  17565. height: math.unit(6 / 8, "feet"),
  17566. name: "Beans",
  17567. image: {
  17568. source: "./media/characters/pandora/beans.svg"
  17569. }
  17570. },
  17571. collar: {
  17572. height: math.unit(0.31, "feet"),
  17573. name: "Collar",
  17574. image: {
  17575. source: "./media/characters/pandora/collar.svg"
  17576. }
  17577. },
  17578. skirt: {
  17579. height: math.unit(6, "feet"),
  17580. weight: math.unit(150, "lb"),
  17581. name: "Skirt",
  17582. image: {
  17583. source: "./media/characters/pandora/skirt.svg",
  17584. extra: 1622 / 1525,
  17585. bottom: 0.015
  17586. }
  17587. },
  17588. hoodie: {
  17589. height: math.unit(6, "feet"),
  17590. weight: math.unit(150, "lb"),
  17591. name: "Hoodie",
  17592. image: {
  17593. source: "./media/characters/pandora/hoodie.svg",
  17594. extra: 1622 / 1525,
  17595. bottom: 0.015
  17596. }
  17597. },
  17598. casual: {
  17599. height: math.unit(6, "feet"),
  17600. weight: math.unit(150, "lb"),
  17601. name: "Casual",
  17602. image: {
  17603. source: "./media/characters/pandora/casual.svg",
  17604. extra: 1622 / 1525,
  17605. bottom: 0.015
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(6, "feet")
  17613. },
  17614. {
  17615. name: "Big Steppy",
  17616. height: math.unit(1, "km"),
  17617. default: true
  17618. },
  17619. {
  17620. name: "Galactic Steppy",
  17621. height: math.unit(2, "gigameters")
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17627. {
  17628. side: {
  17629. height: math.unit(10, "feet"),
  17630. weight: math.unit(800, "kg"),
  17631. name: "Side",
  17632. image: {
  17633. source: "./media/characters/venio-darcony/side.svg",
  17634. extra: 1373 / 1003,
  17635. bottom: 0.037
  17636. }
  17637. },
  17638. front: {
  17639. height: math.unit(19, "feet"),
  17640. weight: math.unit(800, "kg"),
  17641. name: "Front",
  17642. image: {
  17643. source: "./media/characters/venio-darcony/front.svg"
  17644. }
  17645. },
  17646. back: {
  17647. height: math.unit(19, "feet"),
  17648. weight: math.unit(800, "kg"),
  17649. name: "Back",
  17650. image: {
  17651. source: "./media/characters/venio-darcony/back.svg"
  17652. }
  17653. },
  17654. sideNsfw: {
  17655. height: math.unit(10, "feet"),
  17656. weight: math.unit(800, "kg"),
  17657. name: "Side (NSFW)",
  17658. image: {
  17659. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17660. extra: 1373 / 1003,
  17661. bottom: 0.037
  17662. }
  17663. },
  17664. frontNsfw: {
  17665. height: math.unit(19, "feet"),
  17666. weight: math.unit(800, "kg"),
  17667. name: "Front (NSFW)",
  17668. image: {
  17669. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17670. }
  17671. },
  17672. backNsfw: {
  17673. height: math.unit(19, "feet"),
  17674. weight: math.unit(800, "kg"),
  17675. name: "Back (NSFW)",
  17676. image: {
  17677. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17678. }
  17679. },
  17680. sideArmored: {
  17681. height: math.unit(10, "feet"),
  17682. weight: math.unit(800, "kg"),
  17683. name: "Side (Armored)",
  17684. image: {
  17685. source: "./media/characters/venio-darcony/side-armored.svg",
  17686. extra: 1373 / 1003,
  17687. bottom: 0.037
  17688. }
  17689. },
  17690. frontArmored: {
  17691. height: math.unit(19, "feet"),
  17692. weight: math.unit(900, "kg"),
  17693. name: "Front (Armored)",
  17694. image: {
  17695. source: "./media/characters/venio-darcony/front-armored.svg"
  17696. }
  17697. },
  17698. backArmored: {
  17699. height: math.unit(19, "feet"),
  17700. weight: math.unit(900, "kg"),
  17701. name: "Back (Armored)",
  17702. image: {
  17703. source: "./media/characters/venio-darcony/back-armored.svg"
  17704. }
  17705. },
  17706. sword: {
  17707. height: math.unit(10, "feet"),
  17708. weight: math.unit(50, "lb"),
  17709. name: "Sword",
  17710. image: {
  17711. source: "./media/characters/venio-darcony/sword.svg"
  17712. }
  17713. },
  17714. },
  17715. [
  17716. {
  17717. name: "Normal",
  17718. height: math.unit(10, "feet")
  17719. },
  17720. {
  17721. name: "Macro",
  17722. height: math.unit(130, "feet"),
  17723. default: true
  17724. },
  17725. {
  17726. name: "Macro+",
  17727. height: math.unit(240, "feet")
  17728. },
  17729. ]
  17730. ))
  17731. characterMakers.push(() => makeCharacter(
  17732. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17733. {
  17734. front: {
  17735. height: math.unit(6, "feet"),
  17736. weight: math.unit(150, "lb"),
  17737. name: "Front",
  17738. image: {
  17739. source: "./media/characters/veski/front.svg",
  17740. extra: 1299 / 1225,
  17741. bottom: 0.04
  17742. }
  17743. },
  17744. back: {
  17745. height: math.unit(6, "feet"),
  17746. weight: math.unit(150, "lb"),
  17747. name: "Back",
  17748. image: {
  17749. source: "./media/characters/veski/back.svg",
  17750. extra: 1299 / 1225,
  17751. bottom: 0.008
  17752. }
  17753. },
  17754. maw: {
  17755. height: math.unit(1.5 * 1.21, "feet"),
  17756. name: "Maw",
  17757. image: {
  17758. source: "./media/characters/veski/maw.svg"
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Macro",
  17765. height: math.unit(2, "km"),
  17766. default: true
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17772. {
  17773. front: {
  17774. height: math.unit(5 + 7 / 12, "feet"),
  17775. name: "Front",
  17776. image: {
  17777. source: "./media/characters/isabelle/front.svg",
  17778. extra: 2130 / 1976,
  17779. bottom: 0.05
  17780. }
  17781. },
  17782. },
  17783. [
  17784. {
  17785. name: "Supermicro",
  17786. height: math.unit(10, "micrometers")
  17787. },
  17788. {
  17789. name: "Micro",
  17790. height: math.unit(1, "inch")
  17791. },
  17792. {
  17793. name: "Tiny",
  17794. height: math.unit(5, "inches")
  17795. },
  17796. {
  17797. name: "Standard",
  17798. height: math.unit(5 + 7 / 12, "inches")
  17799. },
  17800. {
  17801. name: "Macro",
  17802. height: math.unit(80, "meters"),
  17803. default: true
  17804. },
  17805. {
  17806. name: "Megamacro",
  17807. height: math.unit(250, "meters")
  17808. },
  17809. {
  17810. name: "Gigamacro",
  17811. height: math.unit(5, "km")
  17812. },
  17813. {
  17814. name: "Cosmic",
  17815. height: math.unit(2.5e6, "miles")
  17816. },
  17817. ]
  17818. ))
  17819. characterMakers.push(() => makeCharacter(
  17820. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17821. {
  17822. front: {
  17823. height: math.unit(6, "feet"),
  17824. weight: math.unit(150, "lb"),
  17825. name: "Front",
  17826. image: {
  17827. source: "./media/characters/hanzo/front.svg",
  17828. extra: 374 / 344,
  17829. bottom: 0.02
  17830. }
  17831. },
  17832. },
  17833. [
  17834. {
  17835. name: "Normal",
  17836. height: math.unit(8, "feet"),
  17837. default: true
  17838. },
  17839. ]
  17840. ))
  17841. characterMakers.push(() => makeCharacter(
  17842. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17843. {
  17844. front: {
  17845. height: math.unit(7, "feet"),
  17846. weight: math.unit(130, "lb"),
  17847. name: "Front",
  17848. image: {
  17849. source: "./media/characters/anna/front.svg",
  17850. extra: 169 / 145,
  17851. bottom: 0.06
  17852. }
  17853. },
  17854. full: {
  17855. height: math.unit(4.96, "feet"),
  17856. weight: math.unit(220, "lb"),
  17857. name: "Full",
  17858. image: {
  17859. source: "./media/characters/anna/full.svg",
  17860. extra: 138 / 114,
  17861. bottom: 0.15
  17862. }
  17863. },
  17864. tongue: {
  17865. height: math.unit(2.53, "feet"),
  17866. name: "Tongue",
  17867. image: {
  17868. source: "./media/characters/anna/tongue.svg"
  17869. }
  17870. },
  17871. },
  17872. [
  17873. {
  17874. name: "Normal",
  17875. height: math.unit(7, "feet"),
  17876. default: true
  17877. },
  17878. ]
  17879. ))
  17880. characterMakers.push(() => makeCharacter(
  17881. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17882. {
  17883. front: {
  17884. height: math.unit(7, "feet"),
  17885. weight: math.unit(150, "lb"),
  17886. name: "Front",
  17887. image: {
  17888. source: "./media/characters/ian-corvid/front.svg",
  17889. extra: 150 / 142,
  17890. bottom: 0.02
  17891. }
  17892. },
  17893. back: {
  17894. height: math.unit(7, "feet"),
  17895. weight: math.unit(150, "lb"),
  17896. name: "Back",
  17897. image: {
  17898. source: "./media/characters/ian-corvid/back.svg",
  17899. extra: 150 / 143,
  17900. bottom: 0.01
  17901. }
  17902. },
  17903. stomping: {
  17904. height: math.unit(7, "feet"),
  17905. weight: math.unit(150, "lb"),
  17906. name: "Stomping",
  17907. image: {
  17908. source: "./media/characters/ian-corvid/stomping.svg",
  17909. extra: 76 / 72
  17910. }
  17911. },
  17912. sitting: {
  17913. height: math.unit(7 / 1.8, "feet"),
  17914. weight: math.unit(150, "lb"),
  17915. name: "Sitting",
  17916. image: {
  17917. source: "./media/characters/ian-corvid/sitting.svg",
  17918. extra: 1400 / 1269,
  17919. bottom: 0.15
  17920. }
  17921. },
  17922. },
  17923. [
  17924. {
  17925. name: "Tiny Microw",
  17926. height: math.unit(1, "inch")
  17927. },
  17928. {
  17929. name: "Microw",
  17930. height: math.unit(6, "inches")
  17931. },
  17932. {
  17933. name: "Crow",
  17934. height: math.unit(7 + 1 / 12, "feet"),
  17935. default: true
  17936. },
  17937. {
  17938. name: "Macrow",
  17939. height: math.unit(176, "feet")
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17945. {
  17946. front: {
  17947. height: math.unit(5 + 7 / 12, "feet"),
  17948. weight: math.unit(147, "lb"),
  17949. name: "Front",
  17950. image: {
  17951. source: "./media/characters/natalie-kellon/front.svg",
  17952. extra: 1214 / 1141,
  17953. bottom: 0.02
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Micro",
  17960. height: math.unit(1 / 16, "inch")
  17961. },
  17962. {
  17963. name: "Tiny",
  17964. height: math.unit(4, "inches")
  17965. },
  17966. {
  17967. name: "Normal",
  17968. height: math.unit(5 + 7 / 12, "feet"),
  17969. default: true
  17970. },
  17971. {
  17972. name: "Amazon",
  17973. height: math.unit(12, "feet")
  17974. },
  17975. {
  17976. name: "Giantess",
  17977. height: math.unit(160, "meters")
  17978. },
  17979. {
  17980. name: "Titaness",
  17981. height: math.unit(800, "meters")
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17987. {
  17988. front: {
  17989. height: math.unit(6, "feet"),
  17990. weight: math.unit(150, "lb"),
  17991. name: "Front",
  17992. image: {
  17993. source: "./media/characters/alluria/front.svg",
  17994. extra: 806 / 738,
  17995. bottom: 0.01
  17996. }
  17997. },
  17998. side: {
  17999. height: math.unit(6, "feet"),
  18000. weight: math.unit(150, "lb"),
  18001. name: "Side",
  18002. image: {
  18003. source: "./media/characters/alluria/side.svg",
  18004. extra: 800 / 750,
  18005. }
  18006. },
  18007. back: {
  18008. height: math.unit(6, "feet"),
  18009. weight: math.unit(150, "lb"),
  18010. name: "Back",
  18011. image: {
  18012. source: "./media/characters/alluria/back.svg",
  18013. extra: 806 / 738,
  18014. }
  18015. },
  18016. frontMaid: {
  18017. height: math.unit(6, "feet"),
  18018. weight: math.unit(150, "lb"),
  18019. name: "Front (Maid)",
  18020. image: {
  18021. source: "./media/characters/alluria/front-maid.svg",
  18022. extra: 806 / 738,
  18023. bottom: 0.01
  18024. }
  18025. },
  18026. sideMaid: {
  18027. height: math.unit(6, "feet"),
  18028. weight: math.unit(150, "lb"),
  18029. name: "Side (Maid)",
  18030. image: {
  18031. source: "./media/characters/alluria/side-maid.svg",
  18032. extra: 800 / 750,
  18033. bottom: 0.005
  18034. }
  18035. },
  18036. backMaid: {
  18037. height: math.unit(6, "feet"),
  18038. weight: math.unit(150, "lb"),
  18039. name: "Back (Maid)",
  18040. image: {
  18041. source: "./media/characters/alluria/back-maid.svg",
  18042. extra: 806 / 738,
  18043. }
  18044. },
  18045. },
  18046. [
  18047. {
  18048. name: "Micro",
  18049. height: math.unit(6, "inches"),
  18050. default: true
  18051. },
  18052. ]
  18053. ))
  18054. characterMakers.push(() => makeCharacter(
  18055. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18056. {
  18057. front: {
  18058. height: math.unit(6, "feet"),
  18059. weight: math.unit(150, "lb"),
  18060. name: "Front",
  18061. image: {
  18062. source: "./media/characters/kyle/front.svg",
  18063. extra: 1069 / 962,
  18064. bottom: 77.228 / 1727.45
  18065. }
  18066. },
  18067. },
  18068. [
  18069. {
  18070. name: "Macro",
  18071. height: math.unit(150, "feet"),
  18072. default: true
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18078. {
  18079. front: {
  18080. height: math.unit(6, "feet"),
  18081. weight: math.unit(300, "lb"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/duncan/front.svg",
  18085. extra: 1650 / 1482,
  18086. bottom: 0.05
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Macro",
  18093. height: math.unit(100, "feet"),
  18094. default: true
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(5 + 4 / 12, "feet"),
  18103. weight: math.unit(220, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/memory/front.svg",
  18107. extra: 3641 / 3545,
  18108. bottom: 0.03
  18109. }
  18110. },
  18111. back: {
  18112. height: math.unit(5 + 4 / 12, "feet"),
  18113. weight: math.unit(220, "lb"),
  18114. name: "Back",
  18115. image: {
  18116. source: "./media/characters/memory/back.svg",
  18117. extra: 3641 / 3545,
  18118. bottom: 0.025
  18119. }
  18120. },
  18121. frontSkirt: {
  18122. height: math.unit(5 + 4 / 12, "feet"),
  18123. weight: math.unit(220, "lb"),
  18124. name: "Front (Skirt)",
  18125. image: {
  18126. source: "./media/characters/memory/front-skirt.svg",
  18127. extra: 3641 / 3545,
  18128. bottom: 0.03
  18129. }
  18130. },
  18131. frontDress: {
  18132. height: math.unit(5 + 4 / 12, "feet"),
  18133. weight: math.unit(220, "lb"),
  18134. name: "Front (Dress)",
  18135. image: {
  18136. source: "./media/characters/memory/front-dress.svg",
  18137. extra: 3641 / 3545,
  18138. bottom: 0.03
  18139. }
  18140. },
  18141. },
  18142. [
  18143. {
  18144. name: "Micro",
  18145. height: math.unit(6, "inches"),
  18146. default: true
  18147. },
  18148. {
  18149. name: "Normal",
  18150. height: math.unit(5 + 4 / 12, "feet")
  18151. },
  18152. ]
  18153. ))
  18154. characterMakers.push(() => makeCharacter(
  18155. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18156. {
  18157. front: {
  18158. height: math.unit(4 + 11 / 12, "feet"),
  18159. weight: math.unit(100, "lb"),
  18160. name: "Front",
  18161. image: {
  18162. source: "./media/characters/luno/front.svg",
  18163. extra: 1535 / 1487,
  18164. bottom: 0.03
  18165. }
  18166. },
  18167. },
  18168. [
  18169. {
  18170. name: "Micro",
  18171. height: math.unit(3, "inches")
  18172. },
  18173. {
  18174. name: "Normal",
  18175. height: math.unit(4 + 11 / 12, "feet"),
  18176. default: true
  18177. },
  18178. {
  18179. name: "Macro",
  18180. height: math.unit(300, "feet")
  18181. },
  18182. {
  18183. name: "Megamacro",
  18184. height: math.unit(700, "miles")
  18185. },
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18190. {
  18191. front: {
  18192. height: math.unit(6 + 2 / 12, "feet"),
  18193. weight: math.unit(170, "lb"),
  18194. name: "Front",
  18195. image: {
  18196. source: "./media/characters/jamesy/front.svg",
  18197. extra: 440 / 382,
  18198. bottom: 0.005
  18199. }
  18200. },
  18201. },
  18202. [
  18203. {
  18204. name: "Micro",
  18205. height: math.unit(3, "inches")
  18206. },
  18207. {
  18208. name: "Normal",
  18209. height: math.unit(6 + 2 / 12, "feet"),
  18210. default: true
  18211. },
  18212. {
  18213. name: "Macro",
  18214. height: math.unit(300, "feet")
  18215. },
  18216. {
  18217. name: "Megamacro",
  18218. height: math.unit(700, "miles")
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18224. {
  18225. front: {
  18226. height: math.unit(6, "feet"),
  18227. weight: math.unit(160, "lb"),
  18228. name: "Front",
  18229. image: {
  18230. source: "./media/characters/mark/front.svg",
  18231. extra: 3300 / 3100,
  18232. bottom: 136.42 / 3440.47
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Macro",
  18239. height: math.unit(120, "meters")
  18240. },
  18241. {
  18242. name: "Bigger Macro",
  18243. height: math.unit(350, "meters")
  18244. },
  18245. {
  18246. name: "Megamacro",
  18247. height: math.unit(8, "km"),
  18248. default: true
  18249. },
  18250. {
  18251. name: "Continental",
  18252. height: math.unit(4550, "km")
  18253. },
  18254. {
  18255. name: "Planetary",
  18256. height: math.unit(65000, "km")
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18262. {
  18263. front: {
  18264. height: math.unit(6, "feet"),
  18265. weight: math.unit(400, "lb"),
  18266. name: "Front",
  18267. image: {
  18268. source: "./media/characters/mac/front.svg",
  18269. extra: 1048 / 987.7,
  18270. bottom: 60 / 1107.6,
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Macro",
  18277. height: math.unit(500, "feet"),
  18278. default: true
  18279. },
  18280. ]
  18281. ))
  18282. characterMakers.push(() => makeCharacter(
  18283. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18284. {
  18285. front: {
  18286. height: math.unit(5 + 2 / 12, "feet"),
  18287. weight: math.unit(190, "lb"),
  18288. name: "Front",
  18289. image: {
  18290. source: "./media/characters/bari/front.svg",
  18291. extra: 3156 / 2880,
  18292. bottom: 0.03
  18293. }
  18294. },
  18295. back: {
  18296. height: math.unit(5 + 2 / 12, "feet"),
  18297. weight: math.unit(190, "lb"),
  18298. name: "Back",
  18299. image: {
  18300. source: "./media/characters/bari/back.svg",
  18301. extra: 3260 / 2834,
  18302. bottom: 0.025
  18303. }
  18304. },
  18305. frontPlush: {
  18306. height: math.unit(5 + 2 / 12, "feet"),
  18307. weight: math.unit(190, "lb"),
  18308. name: "Front (Plush)",
  18309. image: {
  18310. source: "./media/characters/bari/front-plush.svg",
  18311. extra: 1112 / 1061,
  18312. bottom: 0.002
  18313. }
  18314. },
  18315. },
  18316. [
  18317. {
  18318. name: "Micro",
  18319. height: math.unit(3, "inches")
  18320. },
  18321. {
  18322. name: "Normal",
  18323. height: math.unit(5 + 2 / 12, "feet"),
  18324. default: true
  18325. },
  18326. {
  18327. name: "Macro",
  18328. height: math.unit(20, "feet")
  18329. },
  18330. ]
  18331. ))
  18332. characterMakers.push(() => makeCharacter(
  18333. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18334. {
  18335. front: {
  18336. height: math.unit(6 + 1 / 12, "feet"),
  18337. weight: math.unit(275, "lb"),
  18338. name: "Front",
  18339. image: {
  18340. source: "./media/characters/hunter-misha-raven/front.svg"
  18341. }
  18342. },
  18343. },
  18344. [
  18345. {
  18346. name: "Mortal",
  18347. height: math.unit(6 + 1 / 12, "feet")
  18348. },
  18349. {
  18350. name: "Divine",
  18351. height: math.unit(1.12134e34, "parsecs"),
  18352. default: true
  18353. },
  18354. ]
  18355. ))
  18356. characterMakers.push(() => makeCharacter(
  18357. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18358. {
  18359. front: {
  18360. height: math.unit(6 + 3 / 12, "feet"),
  18361. weight: math.unit(220, "lb"),
  18362. name: "Front",
  18363. image: {
  18364. source: "./media/characters/max-calore/front.svg",
  18365. extra: 1700 / 1648,
  18366. bottom: 0.01
  18367. }
  18368. },
  18369. back: {
  18370. height: math.unit(6 + 3 / 12, "feet"),
  18371. weight: math.unit(220, "lb"),
  18372. name: "Back",
  18373. image: {
  18374. source: "./media/characters/max-calore/back.svg",
  18375. extra: 1700 / 1648,
  18376. bottom: 0.01
  18377. }
  18378. },
  18379. },
  18380. [
  18381. {
  18382. name: "Normal",
  18383. height: math.unit(6 + 3 / 12, "feet"),
  18384. default: true
  18385. },
  18386. ]
  18387. ))
  18388. characterMakers.push(() => makeCharacter(
  18389. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18390. {
  18391. side: {
  18392. height: math.unit(2 + 8 / 12, "feet"),
  18393. weight: math.unit(99, "lb"),
  18394. name: "Side",
  18395. image: {
  18396. source: "./media/characters/aspen/side.svg",
  18397. extra: 152 / 138,
  18398. bottom: 0.032
  18399. }
  18400. },
  18401. },
  18402. [
  18403. {
  18404. name: "Normal",
  18405. height: math.unit(2 + 8 / 12, "feet"),
  18406. default: true
  18407. },
  18408. ]
  18409. ))
  18410. characterMakers.push(() => makeCharacter(
  18411. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18412. {
  18413. side: {
  18414. height: math.unit(3 + 2 / 12, "feet"),
  18415. weight: math.unit(224, "lb"),
  18416. name: "Side",
  18417. image: {
  18418. source: "./media/characters/sheila-feral-wolf/side.svg",
  18419. extra: 179 / 166,
  18420. bottom: 0.03
  18421. }
  18422. },
  18423. },
  18424. [
  18425. {
  18426. name: "Normal",
  18427. height: math.unit(3 + 2 / 12, "feet"),
  18428. default: true
  18429. },
  18430. ]
  18431. ))
  18432. characterMakers.push(() => makeCharacter(
  18433. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18434. {
  18435. side: {
  18436. height: math.unit(1 + 9 / 12, "feet"),
  18437. weight: math.unit(38, "lb"),
  18438. name: "Side",
  18439. image: {
  18440. source: "./media/characters/michelle/side.svg",
  18441. extra: 147 / 136.7,
  18442. bottom: 0.03
  18443. }
  18444. },
  18445. },
  18446. [
  18447. {
  18448. name: "Normal",
  18449. height: math.unit(1 + 9 / 12, "feet"),
  18450. default: true
  18451. },
  18452. ]
  18453. ))
  18454. characterMakers.push(() => makeCharacter(
  18455. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18456. {
  18457. front: {
  18458. height: math.unit(1.54, "feet"),
  18459. weight: math.unit(50, "lb"),
  18460. name: "Front",
  18461. image: {
  18462. source: "./media/characters/nino/front.svg"
  18463. }
  18464. },
  18465. },
  18466. [
  18467. {
  18468. name: "Normal",
  18469. height: math.unit(1.54, "feet"),
  18470. default: true
  18471. },
  18472. ]
  18473. ))
  18474. characterMakers.push(() => makeCharacter(
  18475. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18476. {
  18477. front: {
  18478. height: math.unit(1.49, "feet"),
  18479. weight: math.unit(45, "lb"),
  18480. name: "Front",
  18481. image: {
  18482. source: "./media/characters/viola/front.svg"
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Normal",
  18489. height: math.unit(1.49, "feet"),
  18490. default: true
  18491. },
  18492. ]
  18493. ))
  18494. characterMakers.push(() => makeCharacter(
  18495. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18496. {
  18497. front: {
  18498. height: math.unit(6 + 5 / 12, "feet"),
  18499. weight: math.unit(580, "lb"),
  18500. name: "Front",
  18501. image: {
  18502. source: "./media/characters/atlas/front.svg",
  18503. extra: 298.5 / 290,
  18504. bottom: 0.015
  18505. }
  18506. },
  18507. },
  18508. [
  18509. {
  18510. name: "Normal",
  18511. height: math.unit(6 + 5 / 12, "feet"),
  18512. default: true
  18513. },
  18514. ]
  18515. ))
  18516. characterMakers.push(() => makeCharacter(
  18517. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18518. {
  18519. side: {
  18520. height: math.unit(15.6, "inches"),
  18521. weight: math.unit(10, "lb"),
  18522. name: "Side",
  18523. image: {
  18524. source: "./media/characters/davy/side.svg",
  18525. extra: 200 / 170,
  18526. bottom: 0.01
  18527. }
  18528. },
  18529. },
  18530. [
  18531. {
  18532. name: "Normal",
  18533. height: math.unit(15.6, "inches"),
  18534. default: true
  18535. },
  18536. ]
  18537. ))
  18538. characterMakers.push(() => makeCharacter(
  18539. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18540. {
  18541. side: {
  18542. height: math.unit(4 + 8 / 12, "feet"),
  18543. weight: math.unit(166, "lb"),
  18544. name: "Side",
  18545. image: {
  18546. source: "./media/characters/fiona/side.svg",
  18547. extra: 232 / 220,
  18548. bottom: 0.03
  18549. }
  18550. },
  18551. },
  18552. [
  18553. {
  18554. name: "Normal",
  18555. height: math.unit(4 + 8 / 12, "feet"),
  18556. default: true
  18557. },
  18558. ]
  18559. ))
  18560. characterMakers.push(() => makeCharacter(
  18561. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18562. {
  18563. front: {
  18564. height: math.unit(26, "inches"),
  18565. weight: math.unit(35, "lb"),
  18566. name: "Front",
  18567. image: {
  18568. source: "./media/characters/lyla/front.svg",
  18569. bottom: 0.1
  18570. }
  18571. },
  18572. },
  18573. [
  18574. {
  18575. name: "Normal",
  18576. height: math.unit(3, "feet"),
  18577. default: true
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18583. {
  18584. side: {
  18585. height: math.unit(1.8, "feet"),
  18586. weight: math.unit(44, "lb"),
  18587. name: "Side",
  18588. image: {
  18589. source: "./media/characters/perseus/side.svg",
  18590. bottom: 0.21
  18591. }
  18592. },
  18593. },
  18594. [
  18595. {
  18596. name: "Normal",
  18597. height: math.unit(1.8, "feet"),
  18598. default: true
  18599. },
  18600. ]
  18601. ))
  18602. characterMakers.push(() => makeCharacter(
  18603. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18604. {
  18605. side: {
  18606. height: math.unit(4 + 2 / 12, "feet"),
  18607. weight: math.unit(20, "lb"),
  18608. name: "Side",
  18609. image: {
  18610. source: "./media/characters/remus/side.svg"
  18611. }
  18612. },
  18613. },
  18614. [
  18615. {
  18616. name: "Normal",
  18617. height: math.unit(4 + 2 / 12, "feet"),
  18618. default: true
  18619. },
  18620. ]
  18621. ))
  18622. characterMakers.push(() => makeCharacter(
  18623. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18624. {
  18625. front: {
  18626. height: math.unit(4 + 11 / 12, "feet"),
  18627. weight: math.unit(114, "lb"),
  18628. name: "Front",
  18629. image: {
  18630. source: "./media/characters/raf/front.svg",
  18631. extra: 1504/1339,
  18632. bottom: 26/1530
  18633. }
  18634. },
  18635. side: {
  18636. height: math.unit(4 + 11 / 12, "feet"),
  18637. weight: math.unit(114, "lb"),
  18638. name: "Side",
  18639. image: {
  18640. source: "./media/characters/raf/side.svg",
  18641. extra: 1466/1316,
  18642. bottom: 29/1495
  18643. }
  18644. },
  18645. paw: {
  18646. height: math.unit(1.45, "feet"),
  18647. name: "Paw",
  18648. image: {
  18649. source: "./media/characters/raf/paw.svg"
  18650. },
  18651. extraAttributes: {
  18652. "toeSize": {
  18653. name: "Toe Size",
  18654. power: 2,
  18655. type: "area",
  18656. base: math.unit(0.004, "m^2")
  18657. },
  18658. "padSize": {
  18659. name: "Pad Size",
  18660. power: 2,
  18661. type: "area",
  18662. base: math.unit(0.04, "m^2")
  18663. },
  18664. "footSize": {
  18665. name: "Foot Size",
  18666. power: 2,
  18667. type: "area",
  18668. base: math.unit(0.08, "m^2")
  18669. },
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Micro",
  18676. height: math.unit(2, "inches")
  18677. },
  18678. {
  18679. name: "Normal",
  18680. height: math.unit(4 + 11 / 12, "feet"),
  18681. default: true
  18682. },
  18683. {
  18684. name: "Macro",
  18685. height: math.unit(70, "feet")
  18686. },
  18687. ]
  18688. ))
  18689. characterMakers.push(() => makeCharacter(
  18690. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18691. {
  18692. front: {
  18693. height: math.unit(1.5, "meters"),
  18694. weight: math.unit(68, "kg"),
  18695. name: "Front",
  18696. image: {
  18697. source: "./media/characters/liam-einarr/front.svg",
  18698. extra: 2822 / 2666
  18699. }
  18700. },
  18701. back: {
  18702. height: math.unit(1.5, "meters"),
  18703. weight: math.unit(68, "kg"),
  18704. name: "Back",
  18705. image: {
  18706. source: "./media/characters/liam-einarr/back.svg",
  18707. extra: 2822 / 2666,
  18708. bottom: 0.015
  18709. }
  18710. },
  18711. },
  18712. [
  18713. {
  18714. name: "Normal",
  18715. height: math.unit(1.5, "meters"),
  18716. default: true
  18717. },
  18718. {
  18719. name: "Macro",
  18720. height: math.unit(150, "meters")
  18721. },
  18722. {
  18723. name: "Megamacro",
  18724. height: math.unit(35, "km")
  18725. },
  18726. ]
  18727. ))
  18728. characterMakers.push(() => makeCharacter(
  18729. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18730. {
  18731. front: {
  18732. height: math.unit(6, "feet"),
  18733. weight: math.unit(75, "kg"),
  18734. name: "Front",
  18735. image: {
  18736. source: "./media/characters/linda/front.svg",
  18737. extra: 930 / 874,
  18738. bottom: 0.004
  18739. }
  18740. },
  18741. },
  18742. [
  18743. {
  18744. name: "Normal",
  18745. height: math.unit(6, "feet"),
  18746. default: true
  18747. },
  18748. ]
  18749. ))
  18750. characterMakers.push(() => makeCharacter(
  18751. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18752. {
  18753. front: {
  18754. height: math.unit(6 + 8 / 12, "feet"),
  18755. weight: math.unit(220, "lb"),
  18756. name: "Front",
  18757. image: {
  18758. source: "./media/characters/caylex/front.svg",
  18759. extra: 821 / 772,
  18760. bottom: 0.07
  18761. }
  18762. },
  18763. back: {
  18764. height: math.unit(6 + 8 / 12, "feet"),
  18765. weight: math.unit(220, "lb"),
  18766. name: "Back",
  18767. image: {
  18768. source: "./media/characters/caylex/back.svg",
  18769. extra: 821 / 772,
  18770. bottom: 0.022
  18771. }
  18772. },
  18773. hand: {
  18774. height: math.unit(1.25, "feet"),
  18775. name: "Hand",
  18776. image: {
  18777. source: "./media/characters/caylex/hand.svg"
  18778. }
  18779. },
  18780. foot: {
  18781. height: math.unit(1.6, "feet"),
  18782. name: "Foot",
  18783. image: {
  18784. source: "./media/characters/caylex/foot.svg"
  18785. }
  18786. },
  18787. armored: {
  18788. height: math.unit(6 + 8 / 12, "feet"),
  18789. weight: math.unit(250, "lb"),
  18790. name: "Armored",
  18791. image: {
  18792. source: "./media/characters/caylex/armored.svg",
  18793. extra: 1420 / 1310,
  18794. bottom: 0.045
  18795. }
  18796. },
  18797. },
  18798. [
  18799. {
  18800. name: "Normal",
  18801. height: math.unit(6 + 8 / 12, "feet"),
  18802. default: true
  18803. },
  18804. {
  18805. name: "Normal+",
  18806. height: math.unit(12, "feet")
  18807. },
  18808. ]
  18809. ))
  18810. characterMakers.push(() => makeCharacter(
  18811. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18812. {
  18813. front: {
  18814. height: math.unit(7 + 6 / 12, "feet"),
  18815. weight: math.unit(288, "lb"),
  18816. name: "Front",
  18817. image: {
  18818. source: "./media/characters/alana/front.svg",
  18819. extra: 679 / 653,
  18820. bottom: 22.5 / 701
  18821. }
  18822. },
  18823. },
  18824. [
  18825. {
  18826. name: "Normal",
  18827. height: math.unit(7 + 6 / 12, "feet")
  18828. },
  18829. {
  18830. name: "Large",
  18831. height: math.unit(50, "feet")
  18832. },
  18833. {
  18834. name: "Macro",
  18835. height: math.unit(100, "feet"),
  18836. default: true
  18837. },
  18838. {
  18839. name: "Macro+",
  18840. height: math.unit(200, "feet")
  18841. },
  18842. ]
  18843. ))
  18844. characterMakers.push(() => makeCharacter(
  18845. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18846. {
  18847. front: {
  18848. height: math.unit(6 + 1 / 12, "feet"),
  18849. weight: math.unit(210, "lb"),
  18850. name: "Front",
  18851. image: {
  18852. source: "./media/characters/hasani/front.svg",
  18853. extra: 244 / 232,
  18854. bottom: 0.01
  18855. }
  18856. },
  18857. back: {
  18858. height: math.unit(6 + 1 / 12, "feet"),
  18859. weight: math.unit(210, "lb"),
  18860. name: "Back",
  18861. image: {
  18862. source: "./media/characters/hasani/back.svg",
  18863. extra: 244 / 232,
  18864. bottom: 0.01
  18865. }
  18866. },
  18867. },
  18868. [
  18869. {
  18870. name: "Normal",
  18871. height: math.unit(6 + 1 / 12, "feet")
  18872. },
  18873. {
  18874. name: "Macro",
  18875. height: math.unit(175, "feet"),
  18876. default: true
  18877. },
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18882. {
  18883. front: {
  18884. height: math.unit(1.82, "meters"),
  18885. weight: math.unit(140, "lb"),
  18886. name: "Front",
  18887. image: {
  18888. source: "./media/characters/nita/front.svg",
  18889. extra: 2473 / 2363,
  18890. bottom: 0.01
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Normal",
  18897. height: math.unit(1.82, "m")
  18898. },
  18899. {
  18900. name: "Macro",
  18901. height: math.unit(300, "m")
  18902. },
  18903. {
  18904. name: "Mistake Canon",
  18905. height: math.unit(0.5, "miles"),
  18906. default: true
  18907. },
  18908. {
  18909. name: "Big Mistake",
  18910. height: math.unit(13, "miles")
  18911. },
  18912. {
  18913. name: "Playing God",
  18914. height: math.unit(2450, "miles")
  18915. },
  18916. ]
  18917. ))
  18918. characterMakers.push(() => makeCharacter(
  18919. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18920. {
  18921. front: {
  18922. height: math.unit(4, "feet"),
  18923. weight: math.unit(120, "lb"),
  18924. name: "Front",
  18925. image: {
  18926. source: "./media/characters/shiriko/front.svg",
  18927. extra: 970/934,
  18928. bottom: 5/975
  18929. }
  18930. },
  18931. },
  18932. [
  18933. {
  18934. name: "Normal",
  18935. height: math.unit(4, "feet"),
  18936. default: true
  18937. },
  18938. ]
  18939. ))
  18940. characterMakers.push(() => makeCharacter(
  18941. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18942. {
  18943. front: {
  18944. height: math.unit(6, "feet"),
  18945. name: "front",
  18946. image: {
  18947. source: "./media/characters/deja/front.svg",
  18948. extra: 926 / 840,
  18949. bottom: 0.07
  18950. }
  18951. },
  18952. },
  18953. [
  18954. {
  18955. name: "Planck Length",
  18956. height: math.unit(1.6e-35, "meters")
  18957. },
  18958. {
  18959. name: "Normal",
  18960. height: math.unit(30.48, "meters"),
  18961. default: true
  18962. },
  18963. {
  18964. name: "Universal",
  18965. height: math.unit(8.8e26, "meters")
  18966. },
  18967. ]
  18968. ))
  18969. characterMakers.push(() => makeCharacter(
  18970. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18971. {
  18972. side: {
  18973. height: math.unit(8, "feet"),
  18974. weight: math.unit(6300, "lb"),
  18975. name: "Side",
  18976. image: {
  18977. source: "./media/characters/anima/side.svg",
  18978. bottom: 0.035
  18979. }
  18980. },
  18981. },
  18982. [
  18983. {
  18984. name: "Normal",
  18985. height: math.unit(8, "feet"),
  18986. default: true
  18987. },
  18988. ]
  18989. ))
  18990. characterMakers.push(() => makeCharacter(
  18991. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18992. {
  18993. front: {
  18994. height: math.unit(8, "feet"),
  18995. weight: math.unit(350, "lb"),
  18996. name: "Front",
  18997. image: {
  18998. source: "./media/characters/bianca/front.svg",
  18999. extra: 234 / 225,
  19000. bottom: 0.03
  19001. }
  19002. },
  19003. },
  19004. [
  19005. {
  19006. name: "Normal",
  19007. height: math.unit(8, "feet"),
  19008. default: true
  19009. },
  19010. ]
  19011. ))
  19012. characterMakers.push(() => makeCharacter(
  19013. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19014. {
  19015. front: {
  19016. height: math.unit(11 + 5/12, "feet"),
  19017. weight: math.unit(1200, "lb"),
  19018. name: "Front",
  19019. image: {
  19020. source: "./media/characters/adinia/front.svg",
  19021. extra: 1767/1641,
  19022. bottom: 44/1811
  19023. },
  19024. extraAttributes: {
  19025. "energyIntake": {
  19026. name: "Energy Intake",
  19027. power: 3,
  19028. type: "energy",
  19029. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19030. },
  19031. }
  19032. },
  19033. back: {
  19034. height: math.unit(11 + 5/12, "feet"),
  19035. weight: math.unit(1200, "lb"),
  19036. name: "Back",
  19037. image: {
  19038. source: "./media/characters/adinia/back.svg",
  19039. extra: 1834/1684,
  19040. bottom: 14/1848
  19041. },
  19042. extraAttributes: {
  19043. "energyIntake": {
  19044. name: "Energy Intake",
  19045. power: 3,
  19046. type: "energy",
  19047. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19048. },
  19049. }
  19050. },
  19051. maw: {
  19052. height: math.unit(3.79, "feet"),
  19053. name: "Maw",
  19054. image: {
  19055. source: "./media/characters/adinia/maw.svg"
  19056. }
  19057. },
  19058. rump: {
  19059. height: math.unit(4.6, "feet"),
  19060. name: "Rump",
  19061. image: {
  19062. source: "./media/characters/adinia/rump.svg"
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(11 + 5 / 12, "feet"),
  19070. default: true
  19071. },
  19072. ]
  19073. ))
  19074. characterMakers.push(() => makeCharacter(
  19075. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19076. {
  19077. front: {
  19078. height: math.unit(3, "meters"),
  19079. weight: math.unit(200, "kg"),
  19080. name: "Front",
  19081. image: {
  19082. source: "./media/characters/lykasa/front.svg",
  19083. extra: 1076 / 976,
  19084. bottom: 0.06
  19085. }
  19086. },
  19087. },
  19088. [
  19089. {
  19090. name: "Normal",
  19091. height: math.unit(3, "meters")
  19092. },
  19093. {
  19094. name: "Kaiju",
  19095. height: math.unit(120, "meters"),
  19096. default: true
  19097. },
  19098. {
  19099. name: "Mega Kaiju",
  19100. height: math.unit(240, "km")
  19101. },
  19102. {
  19103. name: "Giga Kaiju",
  19104. height: math.unit(400, "megameters")
  19105. },
  19106. {
  19107. name: "Tera Kaiju",
  19108. height: math.unit(800, "gigameters")
  19109. },
  19110. {
  19111. name: "Kaiju Dragon Goddess",
  19112. height: math.unit(26, "zettaparsecs")
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19118. {
  19119. side: {
  19120. height: math.unit(283 / 124 * 6, "feet"),
  19121. weight: math.unit(35000, "lb"),
  19122. name: "Side",
  19123. image: {
  19124. source: "./media/characters/malfaren/side.svg",
  19125. extra: 1310/529,
  19126. bottom: 24/1334
  19127. }
  19128. },
  19129. front: {
  19130. height: math.unit(22.36, "feet"),
  19131. weight: math.unit(35000, "lb"),
  19132. name: "Front",
  19133. image: {
  19134. source: "./media/characters/malfaren/front.svg",
  19135. extra: 1237/1115,
  19136. bottom: 32/1269
  19137. }
  19138. },
  19139. maw: {
  19140. height: math.unit(6.9, "feet"),
  19141. name: "Maw",
  19142. image: {
  19143. source: "./media/characters/malfaren/maw.svg"
  19144. }
  19145. },
  19146. dick: {
  19147. height: math.unit(6.19, "feet"),
  19148. name: "Dick",
  19149. image: {
  19150. source: "./media/characters/malfaren/dick.svg"
  19151. }
  19152. },
  19153. eye: {
  19154. height: math.unit(0.69, "feet"),
  19155. name: "Eye",
  19156. image: {
  19157. source: "./media/characters/malfaren/eye.svg"
  19158. }
  19159. },
  19160. },
  19161. [
  19162. {
  19163. name: "Big",
  19164. height: math.unit(283 / 162 * 6, "feet"),
  19165. },
  19166. {
  19167. name: "Bigger",
  19168. height: math.unit(283 / 124 * 6, "feet")
  19169. },
  19170. {
  19171. name: "Massive",
  19172. height: math.unit(283 / 92 * 6, "feet"),
  19173. default: true
  19174. },
  19175. {
  19176. name: "👀💦",
  19177. height: math.unit(283 / 73 * 6, "feet"),
  19178. },
  19179. ]
  19180. ))
  19181. characterMakers.push(() => makeCharacter(
  19182. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19183. {
  19184. front: {
  19185. height: math.unit(1.7, "m"),
  19186. weight: math.unit(70, "kg"),
  19187. name: "Front",
  19188. image: {
  19189. source: "./media/characters/kernel/front.svg",
  19190. extra: 222 / 210,
  19191. bottom: 0.007
  19192. }
  19193. },
  19194. },
  19195. [
  19196. {
  19197. name: "Nano",
  19198. height: math.unit(17, "micrometers")
  19199. },
  19200. {
  19201. name: "Micro",
  19202. height: math.unit(1.7, "mm")
  19203. },
  19204. {
  19205. name: "Small",
  19206. height: math.unit(1.7, "cm")
  19207. },
  19208. {
  19209. name: "Normal",
  19210. height: math.unit(1.7, "m"),
  19211. default: true
  19212. },
  19213. ]
  19214. ))
  19215. characterMakers.push(() => makeCharacter(
  19216. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19217. {
  19218. front: {
  19219. height: math.unit(1.75, "meters"),
  19220. weight: math.unit(65, "kg"),
  19221. name: "Front",
  19222. image: {
  19223. source: "./media/characters/jayne-folest/front.svg",
  19224. extra: 2115 / 2007,
  19225. bottom: 0.02
  19226. }
  19227. },
  19228. back: {
  19229. height: math.unit(1.75, "meters"),
  19230. weight: math.unit(65, "kg"),
  19231. name: "Back",
  19232. image: {
  19233. source: "./media/characters/jayne-folest/back.svg",
  19234. extra: 2115 / 2007,
  19235. bottom: 0.005
  19236. }
  19237. },
  19238. frontClothed: {
  19239. height: math.unit(1.75, "meters"),
  19240. weight: math.unit(65, "kg"),
  19241. name: "Front (Clothed)",
  19242. image: {
  19243. source: "./media/characters/jayne-folest/front-clothed.svg",
  19244. extra: 2115 / 2007,
  19245. bottom: 0.035
  19246. }
  19247. },
  19248. hand: {
  19249. height: math.unit(1 / 1.260, "feet"),
  19250. name: "Hand",
  19251. image: {
  19252. source: "./media/characters/jayne-folest/hand.svg"
  19253. }
  19254. },
  19255. foot: {
  19256. height: math.unit(1 / 0.918, "feet"),
  19257. name: "Foot",
  19258. image: {
  19259. source: "./media/characters/jayne-folest/foot.svg"
  19260. }
  19261. },
  19262. },
  19263. [
  19264. {
  19265. name: "Micro",
  19266. height: math.unit(4, "cm")
  19267. },
  19268. {
  19269. name: "Normal",
  19270. height: math.unit(1.75, "meters")
  19271. },
  19272. {
  19273. name: "Macro",
  19274. height: math.unit(47.5, "meters"),
  19275. default: true
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19281. {
  19282. front: {
  19283. height: math.unit(180, "cm"),
  19284. weight: math.unit(70, "kg"),
  19285. name: "Front",
  19286. image: {
  19287. source: "./media/characters/algier/front.svg",
  19288. extra: 596 / 572,
  19289. bottom: 0.04
  19290. }
  19291. },
  19292. back: {
  19293. height: math.unit(180, "cm"),
  19294. weight: math.unit(70, "kg"),
  19295. name: "Back",
  19296. image: {
  19297. source: "./media/characters/algier/back.svg",
  19298. extra: 596 / 572,
  19299. bottom: 0.025
  19300. }
  19301. },
  19302. frontdressed: {
  19303. height: math.unit(180, "cm"),
  19304. weight: math.unit(150, "kg"),
  19305. name: "Front-dressed",
  19306. image: {
  19307. source: "./media/characters/algier/front-dressed.svg",
  19308. extra: 596 / 572,
  19309. bottom: 0.038
  19310. }
  19311. },
  19312. },
  19313. [
  19314. {
  19315. name: "Micro",
  19316. height: math.unit(5, "cm")
  19317. },
  19318. {
  19319. name: "Normal",
  19320. height: math.unit(180, "cm"),
  19321. default: true
  19322. },
  19323. {
  19324. name: "Macro",
  19325. height: math.unit(64, "m")
  19326. },
  19327. ]
  19328. ))
  19329. characterMakers.push(() => makeCharacter(
  19330. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19331. {
  19332. upright: {
  19333. height: math.unit(7, "feet"),
  19334. weight: math.unit(300, "lb"),
  19335. name: "Upright",
  19336. image: {
  19337. source: "./media/characters/pretzel/upright.svg",
  19338. extra: 534 / 522,
  19339. bottom: 0.065
  19340. }
  19341. },
  19342. sprawling: {
  19343. height: math.unit(3.75, "feet"),
  19344. weight: math.unit(300, "lb"),
  19345. name: "Sprawling",
  19346. image: {
  19347. source: "./media/characters/pretzel/sprawling.svg",
  19348. extra: 314 / 281,
  19349. bottom: 0.1
  19350. }
  19351. },
  19352. tongue: {
  19353. height: math.unit(2, "feet"),
  19354. name: "Tongue",
  19355. image: {
  19356. source: "./media/characters/pretzel/tongue.svg"
  19357. }
  19358. },
  19359. },
  19360. [
  19361. {
  19362. name: "Normal",
  19363. height: math.unit(7, "feet"),
  19364. default: true
  19365. },
  19366. {
  19367. name: "Oversized",
  19368. height: math.unit(15, "feet")
  19369. },
  19370. {
  19371. name: "Huge",
  19372. height: math.unit(30, "feet")
  19373. },
  19374. {
  19375. name: "Macro",
  19376. height: math.unit(250, "feet")
  19377. },
  19378. ]
  19379. ))
  19380. characterMakers.push(() => makeCharacter(
  19381. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19382. {
  19383. sideFront: {
  19384. height: math.unit(5 + 2 / 12, "feet"),
  19385. weight: math.unit(120, "lb"),
  19386. name: "Front Side",
  19387. image: {
  19388. source: "./media/characters/roxi/side-front.svg",
  19389. extra: 2924 / 2717,
  19390. bottom: 0.08
  19391. }
  19392. },
  19393. sideBack: {
  19394. height: math.unit(5 + 2 / 12, "feet"),
  19395. weight: math.unit(120, "lb"),
  19396. name: "Back Side",
  19397. image: {
  19398. source: "./media/characters/roxi/side-back.svg",
  19399. extra: 2904 / 2693,
  19400. bottom: 0.06
  19401. }
  19402. },
  19403. front: {
  19404. height: math.unit(5 + 2 / 12, "feet"),
  19405. weight: math.unit(120, "lb"),
  19406. name: "Front",
  19407. image: {
  19408. source: "./media/characters/roxi/front.svg",
  19409. extra: 2028 / 1907,
  19410. bottom: 0.01
  19411. }
  19412. },
  19413. frontAlt: {
  19414. height: math.unit(5 + 2 / 12, "feet"),
  19415. weight: math.unit(120, "lb"),
  19416. name: "Front (Alt)",
  19417. image: {
  19418. source: "./media/characters/roxi/front-alt.svg",
  19419. extra: 1828 / 1798,
  19420. bottom: 0.01
  19421. }
  19422. },
  19423. sitting: {
  19424. height: math.unit(2.8, "feet"),
  19425. weight: math.unit(120, "lb"),
  19426. name: "Sitting",
  19427. image: {
  19428. source: "./media/characters/roxi/sitting.svg",
  19429. extra: 2660 / 2462,
  19430. bottom: 0.1
  19431. }
  19432. },
  19433. },
  19434. [
  19435. {
  19436. name: "Normal",
  19437. height: math.unit(5 + 2 / 12, "feet"),
  19438. default: true
  19439. },
  19440. ]
  19441. ))
  19442. characterMakers.push(() => makeCharacter(
  19443. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19444. {
  19445. side: {
  19446. height: math.unit(55, "feet"),
  19447. weight: math.unit(153, "tons"),
  19448. name: "Side",
  19449. image: {
  19450. source: "./media/characters/shadow/side.svg",
  19451. extra: 701 / 628,
  19452. bottom: 0.02
  19453. }
  19454. },
  19455. flying: {
  19456. height: math.unit(145, "feet"),
  19457. weight: math.unit(153, "tons"),
  19458. name: "Flying",
  19459. image: {
  19460. source: "./media/characters/shadow/flying.svg"
  19461. }
  19462. },
  19463. },
  19464. [
  19465. {
  19466. name: "Normal",
  19467. height: math.unit(55, "feet"),
  19468. default: true
  19469. },
  19470. ]
  19471. ))
  19472. characterMakers.push(() => makeCharacter(
  19473. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19474. {
  19475. front: {
  19476. height: math.unit(6, "feet"),
  19477. weight: math.unit(200, "lb"),
  19478. name: "Front",
  19479. image: {
  19480. source: "./media/characters/marcie/front.svg",
  19481. extra: 960 / 876,
  19482. bottom: 58 / 1017.87
  19483. }
  19484. },
  19485. },
  19486. [
  19487. {
  19488. name: "Macro",
  19489. height: math.unit(1, "mile"),
  19490. default: true
  19491. },
  19492. ]
  19493. ))
  19494. characterMakers.push(() => makeCharacter(
  19495. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19496. {
  19497. front: {
  19498. height: math.unit(7, "feet"),
  19499. weight: math.unit(200, "lb"),
  19500. name: "Front",
  19501. image: {
  19502. source: "./media/characters/kachina/front.svg",
  19503. extra: 1290.68 / 1119,
  19504. bottom: 36.5 / 1327.18
  19505. }
  19506. },
  19507. },
  19508. [
  19509. {
  19510. name: "Normal",
  19511. height: math.unit(7, "feet"),
  19512. default: true
  19513. },
  19514. ]
  19515. ))
  19516. characterMakers.push(() => makeCharacter(
  19517. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19518. {
  19519. looking: {
  19520. height: math.unit(2, "meters"),
  19521. weight: math.unit(300, "kg"),
  19522. name: "Looking",
  19523. image: {
  19524. source: "./media/characters/kash/looking.svg",
  19525. extra: 474 / 344,
  19526. bottom: 0.03
  19527. }
  19528. },
  19529. side: {
  19530. height: math.unit(2, "meters"),
  19531. weight: math.unit(300, "kg"),
  19532. name: "Side",
  19533. image: {
  19534. source: "./media/characters/kash/side.svg",
  19535. extra: 302 / 251,
  19536. bottom: 0.03
  19537. }
  19538. },
  19539. front: {
  19540. height: math.unit(2, "meters"),
  19541. weight: math.unit(300, "kg"),
  19542. name: "Front",
  19543. image: {
  19544. source: "./media/characters/kash/front.svg",
  19545. extra: 495 / 360,
  19546. bottom: 0.015
  19547. }
  19548. },
  19549. },
  19550. [
  19551. {
  19552. name: "Normal",
  19553. height: math.unit(2, "meters"),
  19554. default: true
  19555. },
  19556. {
  19557. name: "Big",
  19558. height: math.unit(3, "meters")
  19559. },
  19560. {
  19561. name: "Large",
  19562. height: math.unit(5, "meters")
  19563. },
  19564. ]
  19565. ))
  19566. characterMakers.push(() => makeCharacter(
  19567. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19568. {
  19569. feeding: {
  19570. height: math.unit(6.7, "feet"),
  19571. weight: math.unit(350, "lb"),
  19572. name: "Feeding",
  19573. image: {
  19574. source: "./media/characters/lalim/feeding.svg",
  19575. }
  19576. },
  19577. },
  19578. [
  19579. {
  19580. name: "Normal",
  19581. height: math.unit(6.7, "feet"),
  19582. default: true
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19588. {
  19589. front: {
  19590. height: math.unit(9.5, "feet"),
  19591. weight: math.unit(600, "lb"),
  19592. name: "Front",
  19593. image: {
  19594. source: "./media/characters/de'vout/front.svg",
  19595. extra: 1443 / 1328,
  19596. bottom: 0.025
  19597. }
  19598. },
  19599. back: {
  19600. height: math.unit(9.5, "feet"),
  19601. weight: math.unit(600, "lb"),
  19602. name: "Back",
  19603. image: {
  19604. source: "./media/characters/de'vout/back.svg",
  19605. extra: 1443 / 1328
  19606. }
  19607. },
  19608. frontDressed: {
  19609. height: math.unit(9.5, "feet"),
  19610. weight: math.unit(600, "lb"),
  19611. name: "Front (Dressed",
  19612. image: {
  19613. source: "./media/characters/de'vout/front-dressed.svg",
  19614. extra: 1443 / 1328,
  19615. bottom: 0.025
  19616. }
  19617. },
  19618. backDressed: {
  19619. height: math.unit(9.5, "feet"),
  19620. weight: math.unit(600, "lb"),
  19621. name: "Back (Dressed",
  19622. image: {
  19623. source: "./media/characters/de'vout/back-dressed.svg",
  19624. extra: 1443 / 1328
  19625. }
  19626. },
  19627. },
  19628. [
  19629. {
  19630. name: "Normal",
  19631. height: math.unit(9.5, "feet"),
  19632. default: true
  19633. },
  19634. ]
  19635. ))
  19636. characterMakers.push(() => makeCharacter(
  19637. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19638. {
  19639. front: {
  19640. height: math.unit(8, "feet"),
  19641. weight: math.unit(225, "lb"),
  19642. name: "Front",
  19643. image: {
  19644. source: "./media/characters/talana/front.svg",
  19645. extra: 1410 / 1300,
  19646. bottom: 0.015
  19647. }
  19648. },
  19649. frontDressed: {
  19650. height: math.unit(8, "feet"),
  19651. weight: math.unit(225, "lb"),
  19652. name: "Front (Dressed",
  19653. image: {
  19654. source: "./media/characters/talana/front-dressed.svg",
  19655. extra: 1410 / 1300,
  19656. bottom: 0.015
  19657. }
  19658. },
  19659. },
  19660. [
  19661. {
  19662. name: "Normal",
  19663. height: math.unit(8, "feet"),
  19664. default: true
  19665. },
  19666. ]
  19667. ))
  19668. characterMakers.push(() => makeCharacter(
  19669. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19670. {
  19671. side: {
  19672. height: math.unit(7.2, "feet"),
  19673. weight: math.unit(150, "lb"),
  19674. name: "Side",
  19675. image: {
  19676. source: "./media/characters/xeauvok/side.svg",
  19677. extra: 1975 / 1523,
  19678. bottom: 0.07
  19679. }
  19680. },
  19681. },
  19682. [
  19683. {
  19684. name: "Normal",
  19685. height: math.unit(7.2, "feet"),
  19686. default: true
  19687. },
  19688. ]
  19689. ))
  19690. characterMakers.push(() => makeCharacter(
  19691. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19692. {
  19693. side: {
  19694. height: math.unit(4, "meters"),
  19695. weight: math.unit(2200, "kg"),
  19696. name: "Side",
  19697. image: {
  19698. source: "./media/characters/zara/side.svg",
  19699. extra: 765/744,
  19700. bottom: 156/921
  19701. }
  19702. },
  19703. },
  19704. [
  19705. {
  19706. name: "Normal",
  19707. height: math.unit(4, "meters"),
  19708. default: true
  19709. },
  19710. ]
  19711. ))
  19712. characterMakers.push(() => makeCharacter(
  19713. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19714. {
  19715. side: {
  19716. height: math.unit(6, "feet"),
  19717. weight: math.unit(150, "lb"),
  19718. name: "Side",
  19719. image: {
  19720. source: "./media/characters/richard-dragon/side.svg",
  19721. extra: 845 / 340,
  19722. bottom: 0.017
  19723. }
  19724. },
  19725. maw: {
  19726. height: math.unit(2.97, "feet"),
  19727. name: "Maw",
  19728. image: {
  19729. source: "./media/characters/richard-dragon/maw.svg"
  19730. }
  19731. },
  19732. },
  19733. [
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19738. {
  19739. front: {
  19740. height: math.unit(4, "feet"),
  19741. weight: math.unit(100, "lb"),
  19742. name: "Front",
  19743. image: {
  19744. source: "./media/characters/richard-smeargle/front.svg",
  19745. extra: 2952 / 2820,
  19746. bottom: 0.028
  19747. }
  19748. },
  19749. },
  19750. [
  19751. {
  19752. name: "Normal",
  19753. height: math.unit(4, "feet"),
  19754. default: true
  19755. },
  19756. {
  19757. name: "Dynamax",
  19758. height: math.unit(20, "meters")
  19759. },
  19760. ]
  19761. ))
  19762. characterMakers.push(() => makeCharacter(
  19763. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19764. {
  19765. front: {
  19766. height: math.unit(6, "feet"),
  19767. weight: math.unit(110, "lb"),
  19768. name: "Front",
  19769. image: {
  19770. source: "./media/characters/klay/front.svg",
  19771. extra: 962 / 883,
  19772. bottom: 0.04
  19773. }
  19774. },
  19775. back: {
  19776. height: math.unit(6, "feet"),
  19777. weight: math.unit(110, "lb"),
  19778. name: "Back",
  19779. image: {
  19780. source: "./media/characters/klay/back.svg",
  19781. extra: 962 / 883
  19782. }
  19783. },
  19784. beans: {
  19785. height: math.unit(1.15, "feet"),
  19786. name: "Beans",
  19787. image: {
  19788. source: "./media/characters/klay/beans.svg"
  19789. }
  19790. },
  19791. },
  19792. [
  19793. {
  19794. name: "Micro",
  19795. height: math.unit(6, "inches")
  19796. },
  19797. {
  19798. name: "Mini",
  19799. height: math.unit(3, "feet")
  19800. },
  19801. {
  19802. name: "Normal",
  19803. height: math.unit(6, "feet"),
  19804. default: true
  19805. },
  19806. {
  19807. name: "Big",
  19808. height: math.unit(25, "feet")
  19809. },
  19810. {
  19811. name: "Macro",
  19812. height: math.unit(100, "feet")
  19813. },
  19814. {
  19815. name: "Megamacro",
  19816. height: math.unit(400, "feet")
  19817. },
  19818. ]
  19819. ))
  19820. characterMakers.push(() => makeCharacter(
  19821. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19822. {
  19823. front: {
  19824. height: math.unit(6, "feet"),
  19825. weight: math.unit(160, "lb"),
  19826. name: "Front",
  19827. image: {
  19828. source: "./media/characters/marcus/front.svg",
  19829. extra: 734 / 676,
  19830. bottom: 0.03
  19831. }
  19832. },
  19833. },
  19834. [
  19835. {
  19836. name: "Little",
  19837. height: math.unit(6, "feet")
  19838. },
  19839. {
  19840. name: "Normal",
  19841. height: math.unit(110, "feet"),
  19842. default: true
  19843. },
  19844. {
  19845. name: "Macro",
  19846. height: math.unit(250, "feet")
  19847. },
  19848. {
  19849. name: "Megamacro",
  19850. height: math.unit(1000, "feet")
  19851. },
  19852. ]
  19853. ))
  19854. characterMakers.push(() => makeCharacter(
  19855. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19856. {
  19857. front: {
  19858. height: math.unit(7, "feet"),
  19859. weight: math.unit(275, "lb"),
  19860. name: "Front",
  19861. image: {
  19862. source: "./media/characters/claude-delroute/front.svg",
  19863. extra: 902/827,
  19864. bottom: 26/928
  19865. }
  19866. },
  19867. side: {
  19868. height: math.unit(7, "feet"),
  19869. weight: math.unit(275, "lb"),
  19870. name: "Side",
  19871. image: {
  19872. source: "./media/characters/claude-delroute/side.svg",
  19873. extra: 908/853,
  19874. bottom: 16/924
  19875. }
  19876. },
  19877. back: {
  19878. height: math.unit(7, "feet"),
  19879. weight: math.unit(275, "lb"),
  19880. name: "Back",
  19881. image: {
  19882. source: "./media/characters/claude-delroute/back.svg",
  19883. extra: 911/829,
  19884. bottom: 18/929
  19885. }
  19886. },
  19887. maw: {
  19888. height: math.unit(0.6407, "meters"),
  19889. name: "Maw",
  19890. image: {
  19891. source: "./media/characters/claude-delroute/maw.svg"
  19892. }
  19893. },
  19894. },
  19895. [
  19896. {
  19897. name: "Normal",
  19898. height: math.unit(7, "feet"),
  19899. default: true
  19900. },
  19901. {
  19902. name: "Lorge",
  19903. height: math.unit(20, "feet")
  19904. },
  19905. ]
  19906. ))
  19907. characterMakers.push(() => makeCharacter(
  19908. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19909. {
  19910. front: {
  19911. height: math.unit(8 + 4 / 12, "feet"),
  19912. weight: math.unit(600, "lb"),
  19913. name: "Front",
  19914. image: {
  19915. source: "./media/characters/dragonien/front.svg",
  19916. extra: 100 / 94,
  19917. bottom: 3.3 / 103.3445
  19918. }
  19919. },
  19920. back: {
  19921. height: math.unit(8 + 4 / 12, "feet"),
  19922. weight: math.unit(600, "lb"),
  19923. name: "Back",
  19924. image: {
  19925. source: "./media/characters/dragonien/back.svg",
  19926. extra: 776 / 746,
  19927. bottom: 6.4 / 782.0616
  19928. }
  19929. },
  19930. foot: {
  19931. height: math.unit(1.54, "feet"),
  19932. name: "Foot",
  19933. image: {
  19934. source: "./media/characters/dragonien/foot.svg",
  19935. }
  19936. },
  19937. },
  19938. [
  19939. {
  19940. name: "Normal",
  19941. height: math.unit(8 + 4 / 12, "feet"),
  19942. default: true
  19943. },
  19944. {
  19945. name: "Macro",
  19946. height: math.unit(200, "feet")
  19947. },
  19948. {
  19949. name: "Megamacro",
  19950. height: math.unit(1, "mile")
  19951. },
  19952. {
  19953. name: "Gigamacro",
  19954. height: math.unit(1000, "miles")
  19955. },
  19956. ]
  19957. ))
  19958. characterMakers.push(() => makeCharacter(
  19959. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19960. {
  19961. front: {
  19962. height: math.unit(5 + 2 / 12, "feet"),
  19963. weight: math.unit(110, "lb"),
  19964. name: "Front",
  19965. image: {
  19966. source: "./media/characters/desta/front.svg",
  19967. extra: 767 / 726,
  19968. bottom: 11.7 / 779
  19969. }
  19970. },
  19971. back: {
  19972. height: math.unit(5 + 2 / 12, "feet"),
  19973. weight: math.unit(110, "lb"),
  19974. name: "Back",
  19975. image: {
  19976. source: "./media/characters/desta/back.svg",
  19977. extra: 777 / 728,
  19978. bottom: 6 / 784
  19979. }
  19980. },
  19981. frontAlt: {
  19982. height: math.unit(5 + 2 / 12, "feet"),
  19983. weight: math.unit(110, "lb"),
  19984. name: "Front",
  19985. image: {
  19986. source: "./media/characters/desta/front-alt.svg",
  19987. extra: 1482 / 1417
  19988. }
  19989. },
  19990. side: {
  19991. height: math.unit(5 + 2 / 12, "feet"),
  19992. weight: math.unit(110, "lb"),
  19993. name: "Side",
  19994. image: {
  19995. source: "./media/characters/desta/side.svg",
  19996. extra: 2579 / 2491,
  19997. bottom: 0.053
  19998. }
  19999. },
  20000. },
  20001. [
  20002. {
  20003. name: "Micro",
  20004. height: math.unit(6, "inches")
  20005. },
  20006. {
  20007. name: "Normal",
  20008. height: math.unit(5 + 2 / 12, "feet"),
  20009. default: true
  20010. },
  20011. {
  20012. name: "Macro",
  20013. height: math.unit(62, "feet")
  20014. },
  20015. {
  20016. name: "Megamacro",
  20017. height: math.unit(1800, "feet")
  20018. },
  20019. ]
  20020. ))
  20021. characterMakers.push(() => makeCharacter(
  20022. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20023. {
  20024. front: {
  20025. height: math.unit(10, "feet"),
  20026. weight: math.unit(700, "lb"),
  20027. name: "Front",
  20028. image: {
  20029. source: "./media/characters/storm-alystar/front.svg",
  20030. extra: 2112 / 1898,
  20031. bottom: 0.034
  20032. }
  20033. },
  20034. },
  20035. [
  20036. {
  20037. name: "Micro",
  20038. height: math.unit(3.5, "inches")
  20039. },
  20040. {
  20041. name: "Normal",
  20042. height: math.unit(10, "feet"),
  20043. default: true
  20044. },
  20045. {
  20046. name: "Macro",
  20047. height: math.unit(400, "feet")
  20048. },
  20049. {
  20050. name: "Deific",
  20051. height: math.unit(60, "miles")
  20052. },
  20053. ]
  20054. ))
  20055. characterMakers.push(() => makeCharacter(
  20056. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20057. {
  20058. front: {
  20059. height: math.unit(2.35, "meters"),
  20060. weight: math.unit(119, "kg"),
  20061. name: "Front",
  20062. image: {
  20063. source: "./media/characters/ilia/front.svg",
  20064. extra: 1285 / 1255,
  20065. bottom: 0.06
  20066. }
  20067. },
  20068. },
  20069. [
  20070. {
  20071. name: "Normal",
  20072. height: math.unit(2.35, "meters")
  20073. },
  20074. {
  20075. name: "Macro",
  20076. height: math.unit(140, "meters"),
  20077. default: true
  20078. },
  20079. {
  20080. name: "Megamacro",
  20081. height: math.unit(100, "miles")
  20082. },
  20083. ]
  20084. ))
  20085. characterMakers.push(() => makeCharacter(
  20086. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20087. {
  20088. front: {
  20089. height: math.unit(6 + 5 / 12, "feet"),
  20090. weight: math.unit(190, "lb"),
  20091. name: "Front",
  20092. image: {
  20093. source: "./media/characters/kingdead/front.svg",
  20094. extra: 1228 / 1177
  20095. }
  20096. },
  20097. },
  20098. [
  20099. {
  20100. name: "Micro",
  20101. height: math.unit(7, "inches")
  20102. },
  20103. {
  20104. name: "Normal",
  20105. height: math.unit(6 + 5 / 12, "feet")
  20106. },
  20107. {
  20108. name: "Macro",
  20109. height: math.unit(150, "feet"),
  20110. default: true
  20111. },
  20112. {
  20113. name: "Megamacro",
  20114. height: math.unit(200, "miles")
  20115. },
  20116. ]
  20117. ))
  20118. characterMakers.push(() => makeCharacter(
  20119. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20120. {
  20121. front: {
  20122. height: math.unit(8, "feet"),
  20123. weight: math.unit(600, "lb"),
  20124. name: "Front",
  20125. image: {
  20126. source: "./media/characters/kyrehx/front.svg",
  20127. extra: 1195 / 1095,
  20128. bottom: 0.034
  20129. }
  20130. },
  20131. },
  20132. [
  20133. {
  20134. name: "Micro",
  20135. height: math.unit(2, "inches")
  20136. },
  20137. {
  20138. name: "Normal",
  20139. height: math.unit(8, "feet"),
  20140. default: true
  20141. },
  20142. {
  20143. name: "Macro",
  20144. height: math.unit(255, "feet")
  20145. },
  20146. ]
  20147. ))
  20148. characterMakers.push(() => makeCharacter(
  20149. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20150. {
  20151. front: {
  20152. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20153. weight: math.unit(184, "lb"),
  20154. name: "Front",
  20155. image: {
  20156. source: "./media/characters/xang/front.svg",
  20157. extra: 845 / 755
  20158. }
  20159. },
  20160. },
  20161. [
  20162. {
  20163. name: "Normal",
  20164. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20165. default: true
  20166. },
  20167. {
  20168. name: "Macro",
  20169. height: math.unit(0.935 * 146, "feet")
  20170. },
  20171. {
  20172. name: "Megamacro",
  20173. height: math.unit(0.935 * 3, "miles")
  20174. },
  20175. ]
  20176. ))
  20177. characterMakers.push(() => makeCharacter(
  20178. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20179. {
  20180. frontDressed: {
  20181. height: math.unit(5 + 7 / 12, "feet"),
  20182. weight: math.unit(140, "lb"),
  20183. name: "Front (Dressed)",
  20184. image: {
  20185. source: "./media/characters/doc-weardno/front-dressed.svg",
  20186. extra: 263 / 234
  20187. }
  20188. },
  20189. backDressed: {
  20190. height: math.unit(5 + 7 / 12, "feet"),
  20191. weight: math.unit(140, "lb"),
  20192. name: "Back (Dressed)",
  20193. image: {
  20194. source: "./media/characters/doc-weardno/back-dressed.svg",
  20195. extra: 266 / 238
  20196. }
  20197. },
  20198. front: {
  20199. height: math.unit(5 + 7 / 12, "feet"),
  20200. weight: math.unit(140, "lb"),
  20201. name: "Front",
  20202. image: {
  20203. source: "./media/characters/doc-weardno/front.svg",
  20204. extra: 254 / 233
  20205. }
  20206. },
  20207. },
  20208. [
  20209. {
  20210. name: "Micro",
  20211. height: math.unit(3, "inches")
  20212. },
  20213. {
  20214. name: "Normal",
  20215. height: math.unit(5 + 7 / 12, "feet"),
  20216. default: true
  20217. },
  20218. {
  20219. name: "Macro",
  20220. height: math.unit(25, "feet")
  20221. },
  20222. {
  20223. name: "Megamacro",
  20224. height: math.unit(2, "miles")
  20225. },
  20226. ]
  20227. ))
  20228. characterMakers.push(() => makeCharacter(
  20229. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20230. {
  20231. front: {
  20232. height: math.unit(6 + 2 / 12, "feet"),
  20233. weight: math.unit(153, "lb"),
  20234. name: "Front",
  20235. image: {
  20236. source: "./media/characters/seth-whilst/front.svg",
  20237. bottom: 0.07
  20238. }
  20239. },
  20240. },
  20241. [
  20242. {
  20243. name: "Micro",
  20244. height: math.unit(5, "inches")
  20245. },
  20246. {
  20247. name: "Normal",
  20248. height: math.unit(6 + 2 / 12, "feet"),
  20249. default: true
  20250. },
  20251. ]
  20252. ))
  20253. characterMakers.push(() => makeCharacter(
  20254. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20255. {
  20256. front: {
  20257. height: math.unit(3, "inches"),
  20258. weight: math.unit(8, "grams"),
  20259. name: "Front",
  20260. image: {
  20261. source: "./media/characters/pocket-jabari/front.svg",
  20262. extra: 1024 / 974,
  20263. bottom: 0.039
  20264. }
  20265. },
  20266. },
  20267. [
  20268. {
  20269. name: "Minimicro",
  20270. height: math.unit(8, "mm")
  20271. },
  20272. {
  20273. name: "Micro",
  20274. height: math.unit(3, "inches"),
  20275. default: true
  20276. },
  20277. {
  20278. name: "Normal",
  20279. height: math.unit(3, "feet")
  20280. },
  20281. ]
  20282. ))
  20283. characterMakers.push(() => makeCharacter(
  20284. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20285. {
  20286. frontDressed: {
  20287. height: math.unit(15, "feet"),
  20288. weight: math.unit(3280, "lb"),
  20289. name: "Front (Dressed)",
  20290. image: {
  20291. source: "./media/characters/sapphy/front-dressed.svg",
  20292. extra: 1951/1654,
  20293. bottom: 194/2145
  20294. },
  20295. form: "anthro",
  20296. default: true
  20297. },
  20298. backDressed: {
  20299. height: math.unit(15, "feet"),
  20300. weight: math.unit(3280, "lb"),
  20301. name: "Back (Dressed)",
  20302. image: {
  20303. source: "./media/characters/sapphy/back-dressed.svg",
  20304. extra: 2058/1918,
  20305. bottom: 125/2183
  20306. },
  20307. form: "anthro"
  20308. },
  20309. frontNude: {
  20310. height: math.unit(15, "feet"),
  20311. weight: math.unit(3280, "lb"),
  20312. name: "Front (Nude)",
  20313. image: {
  20314. source: "./media/characters/sapphy/front-nude.svg",
  20315. extra: 1951/1654,
  20316. bottom: 194/2145
  20317. },
  20318. form: "anthro"
  20319. },
  20320. backNude: {
  20321. height: math.unit(15, "feet"),
  20322. weight: math.unit(3280, "lb"),
  20323. name: "Back (Nude)",
  20324. image: {
  20325. source: "./media/characters/sapphy/back-nude.svg",
  20326. extra: 2058/1918,
  20327. bottom: 125/2183
  20328. },
  20329. form: "anthro"
  20330. },
  20331. full: {
  20332. height: math.unit(15, "feet"),
  20333. weight: math.unit(3280, "lb"),
  20334. name: "Full",
  20335. image: {
  20336. source: "./media/characters/sapphy/full.svg",
  20337. extra: 1396/1317,
  20338. bottom: 44/1440
  20339. },
  20340. form: "anthro"
  20341. },
  20342. dick: {
  20343. height: math.unit(3.8, "feet"),
  20344. name: "Dick",
  20345. image: {
  20346. source: "./media/characters/sapphy/dick.svg"
  20347. },
  20348. form: "anthro"
  20349. },
  20350. feral: {
  20351. height: math.unit(35, "feet"),
  20352. weight: math.unit(160, "tons"),
  20353. name: "Feral",
  20354. image: {
  20355. source: "./media/characters/sapphy/feral.svg",
  20356. extra: 1050/573,
  20357. bottom: 60/1110
  20358. },
  20359. form: "feral",
  20360. default: true
  20361. },
  20362. },
  20363. [
  20364. {
  20365. name: "Normal",
  20366. height: math.unit(15, "feet"),
  20367. form: "anthro"
  20368. },
  20369. {
  20370. name: "Casual Macro",
  20371. height: math.unit(120, "feet"),
  20372. form: "anthro"
  20373. },
  20374. {
  20375. name: "Macro",
  20376. height: math.unit(2150, "feet"),
  20377. default: true,
  20378. form: "anthro"
  20379. },
  20380. {
  20381. name: "Megamacro",
  20382. height: math.unit(8, "miles"),
  20383. form: "anthro"
  20384. },
  20385. {
  20386. name: "Galaxy Mom",
  20387. height: math.unit(6, "megalightyears"),
  20388. form: "anthro"
  20389. },
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(35, "feet"),
  20393. form: "feral",
  20394. default: true
  20395. },
  20396. {
  20397. name: "Macro",
  20398. height: math.unit(300, "feet"),
  20399. form: "feral"
  20400. },
  20401. {
  20402. name: "Galaxy Mom",
  20403. height: math.unit(10, "megalightyears"),
  20404. form: "feral"
  20405. },
  20406. ],
  20407. {
  20408. "anthro": {
  20409. name: "Anthro",
  20410. default: true
  20411. },
  20412. "feral": {
  20413. name: "Feral"
  20414. }
  20415. }
  20416. ))
  20417. characterMakers.push(() => makeCharacter(
  20418. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20419. {
  20420. hyenaFront: {
  20421. height: math.unit(6, "feet"),
  20422. weight: math.unit(190, "lb"),
  20423. name: "Front",
  20424. image: {
  20425. source: "./media/characters/kiro/hyena-front.svg",
  20426. extra: 927/839,
  20427. bottom: 91/1018
  20428. },
  20429. form: "hyena",
  20430. default: true
  20431. },
  20432. front: {
  20433. height: math.unit(6, "feet"),
  20434. weight: math.unit(170, "lb"),
  20435. name: "Front",
  20436. image: {
  20437. source: "./media/characters/kiro/front.svg",
  20438. extra: 1064 / 1012,
  20439. bottom: 0.052
  20440. },
  20441. form: "folf",
  20442. default: true
  20443. },
  20444. },
  20445. [
  20446. {
  20447. name: "Micro",
  20448. height: math.unit(6, "inches"),
  20449. form: "folf"
  20450. },
  20451. {
  20452. name: "Normal",
  20453. height: math.unit(6, "feet"),
  20454. form: "folf",
  20455. default: true
  20456. },
  20457. {
  20458. name: "Macro",
  20459. height: math.unit(72, "feet"),
  20460. form: "folf"
  20461. },
  20462. {
  20463. name: "Micro",
  20464. height: math.unit(6, "inches"),
  20465. form: "hyena"
  20466. },
  20467. {
  20468. name: "Normal",
  20469. height: math.unit(6, "feet"),
  20470. form: "hyena",
  20471. default: true
  20472. },
  20473. {
  20474. name: "Macro",
  20475. height: math.unit(72, "feet"),
  20476. form: "hyena"
  20477. },
  20478. ],
  20479. {
  20480. "hyena": {
  20481. name: "Hyena",
  20482. default: true
  20483. },
  20484. "folf": {
  20485. name: "Folf",
  20486. },
  20487. }
  20488. ))
  20489. characterMakers.push(() => makeCharacter(
  20490. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20491. {
  20492. front: {
  20493. height: math.unit(5 + 9 / 12, "feet"),
  20494. weight: math.unit(175, "lb"),
  20495. name: "Front",
  20496. image: {
  20497. source: "./media/characters/irishfox/front.svg",
  20498. extra: 1912 / 1680,
  20499. bottom: 0.02
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Nano",
  20506. height: math.unit(1, "mm")
  20507. },
  20508. {
  20509. name: "Micro",
  20510. height: math.unit(2, "inches")
  20511. },
  20512. {
  20513. name: "Normal",
  20514. height: math.unit(5 + 9 / 12, "feet"),
  20515. default: true
  20516. },
  20517. {
  20518. name: "Macro",
  20519. height: math.unit(45, "feet")
  20520. },
  20521. ]
  20522. ))
  20523. characterMakers.push(() => makeCharacter(
  20524. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20525. {
  20526. front: {
  20527. height: math.unit(6 + 1 / 12, "feet"),
  20528. weight: math.unit(75, "lb"),
  20529. name: "Front",
  20530. image: {
  20531. source: "./media/characters/aronai-sieyes/front.svg",
  20532. extra: 1532/1450,
  20533. bottom: 42/1574
  20534. }
  20535. },
  20536. side: {
  20537. height: math.unit(6 + 1 / 12, "feet"),
  20538. weight: math.unit(75, "lb"),
  20539. name: "Side",
  20540. image: {
  20541. source: "./media/characters/aronai-sieyes/side.svg",
  20542. extra: 1422/1365,
  20543. bottom: 148/1570
  20544. }
  20545. },
  20546. back: {
  20547. height: math.unit(6 + 1 / 12, "feet"),
  20548. weight: math.unit(75, "lb"),
  20549. name: "Back",
  20550. image: {
  20551. source: "./media/characters/aronai-sieyes/back.svg",
  20552. extra: 1526/1464,
  20553. bottom: 51/1577
  20554. }
  20555. },
  20556. dressed: {
  20557. height: math.unit(6 + 1 / 12, "feet"),
  20558. weight: math.unit(75, "lb"),
  20559. name: "Dressed",
  20560. image: {
  20561. source: "./media/characters/aronai-sieyes/dressed.svg",
  20562. extra: 1559/1483,
  20563. bottom: 39/1598
  20564. }
  20565. },
  20566. slit: {
  20567. height: math.unit(1.3, "feet"),
  20568. name: "Slit",
  20569. image: {
  20570. source: "./media/characters/aronai-sieyes/slit.svg"
  20571. }
  20572. },
  20573. slitSpread: {
  20574. height: math.unit(0.9, "feet"),
  20575. name: "Slit (Spread)",
  20576. image: {
  20577. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20578. }
  20579. },
  20580. rump: {
  20581. height: math.unit(1.3, "feet"),
  20582. name: "Rump",
  20583. image: {
  20584. source: "./media/characters/aronai-sieyes/rump.svg"
  20585. }
  20586. },
  20587. maw: {
  20588. height: math.unit(1.25, "feet"),
  20589. name: "Maw",
  20590. image: {
  20591. source: "./media/characters/aronai-sieyes/maw.svg"
  20592. }
  20593. },
  20594. feral: {
  20595. height: math.unit(18, "feet"),
  20596. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20597. name: "Feral",
  20598. image: {
  20599. source: "./media/characters/aronai-sieyes/feral.svg",
  20600. extra: 1530 / 1240,
  20601. bottom: 0.035
  20602. }
  20603. },
  20604. },
  20605. [
  20606. {
  20607. name: "Micro",
  20608. height: math.unit(2, "inches")
  20609. },
  20610. {
  20611. name: "Normal",
  20612. height: math.unit(6 + 1 / 12, "feet"),
  20613. default: true
  20614. }
  20615. ]
  20616. ))
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20619. {
  20620. front: {
  20621. height: math.unit(12, "feet"),
  20622. weight: math.unit(410, "kg"),
  20623. name: "Front",
  20624. image: {
  20625. source: "./media/characters/xuna/front.svg",
  20626. extra: 2184 / 1980
  20627. }
  20628. },
  20629. side: {
  20630. height: math.unit(12, "feet"),
  20631. weight: math.unit(410, "kg"),
  20632. name: "Side",
  20633. image: {
  20634. source: "./media/characters/xuna/side.svg",
  20635. extra: 2184 / 1980
  20636. }
  20637. },
  20638. back: {
  20639. height: math.unit(12, "feet"),
  20640. weight: math.unit(410, "kg"),
  20641. name: "Back",
  20642. image: {
  20643. source: "./media/characters/xuna/back.svg",
  20644. extra: 2184 / 1980
  20645. }
  20646. },
  20647. },
  20648. [
  20649. {
  20650. name: "Nano glow",
  20651. height: math.unit(10, "nm")
  20652. },
  20653. {
  20654. name: "Micro floof",
  20655. height: math.unit(0.3, "m")
  20656. },
  20657. {
  20658. name: "Huggable softy boi",
  20659. height: math.unit(3.6576, "m"),
  20660. default: true
  20661. },
  20662. {
  20663. name: "Admirable floof",
  20664. height: math.unit(80, "meters")
  20665. },
  20666. {
  20667. name: "Gentle macro",
  20668. height: math.unit(300, "meters")
  20669. },
  20670. {
  20671. name: "Very careful floof",
  20672. height: math.unit(3200, "meters")
  20673. },
  20674. {
  20675. name: "The mega floof",
  20676. height: math.unit(36000, "meters")
  20677. },
  20678. {
  20679. name: "Giga-fur-Wicker",
  20680. height: math.unit(4800000, "meters")
  20681. },
  20682. {
  20683. name: "Licky world",
  20684. height: math.unit(20000000, "meters")
  20685. },
  20686. {
  20687. name: "Floofy cyan sun",
  20688. height: math.unit(1500000000, "meters")
  20689. },
  20690. {
  20691. name: "Milky Wicker",
  20692. height: math.unit(1000000000000000000000, "meters")
  20693. },
  20694. {
  20695. name: "The observing Wicker",
  20696. height: math.unit(999999999999999999999999999, "meters")
  20697. },
  20698. ]
  20699. ))
  20700. characterMakers.push(() => makeCharacter(
  20701. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20702. {
  20703. front: {
  20704. height: math.unit(5 + 9 / 12, "feet"),
  20705. weight: math.unit(150, "lb"),
  20706. name: "Front",
  20707. image: {
  20708. source: "./media/characters/arokha-sieyes/front.svg",
  20709. extra: 1425 / 1284,
  20710. bottom: 0.05
  20711. }
  20712. },
  20713. },
  20714. [
  20715. {
  20716. name: "Normal",
  20717. height: math.unit(5 + 9 / 12, "feet")
  20718. },
  20719. {
  20720. name: "Macro",
  20721. height: math.unit(30, "meters"),
  20722. default: true
  20723. },
  20724. ]
  20725. ))
  20726. characterMakers.push(() => makeCharacter(
  20727. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20728. {
  20729. front: {
  20730. height: math.unit(6, "feet"),
  20731. weight: math.unit(180, "lb"),
  20732. name: "Front",
  20733. image: {
  20734. source: "./media/characters/arokh-sieyes/front.svg",
  20735. extra: 1830 / 1769,
  20736. bottom: 0.01
  20737. }
  20738. },
  20739. },
  20740. [
  20741. {
  20742. name: "Normal",
  20743. height: math.unit(6, "feet")
  20744. },
  20745. {
  20746. name: "Macro",
  20747. height: math.unit(30, "meters"),
  20748. default: true
  20749. },
  20750. ]
  20751. ))
  20752. characterMakers.push(() => makeCharacter(
  20753. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20754. {
  20755. side: {
  20756. height: math.unit(13 + 1 / 12, "feet"),
  20757. weight: math.unit(8.5, "tonnes"),
  20758. preyCapacity: math.unit(36, "people"),
  20759. name: "Side",
  20760. image: {
  20761. source: "./media/characters/goldeneye/side.svg",
  20762. extra: 1139/741,
  20763. bottom: 98/1237
  20764. }
  20765. },
  20766. front: {
  20767. height: math.unit(5.1, "feet"),
  20768. weight: math.unit(8.5, "tonnes"),
  20769. preyCapacity: math.unit(36, "people"),
  20770. name: "Front",
  20771. image: {
  20772. source: "./media/characters/goldeneye/front.svg",
  20773. extra: 635/365,
  20774. bottom: 598/1233
  20775. }
  20776. },
  20777. maw: {
  20778. height: math.unit(6.6, "feet"),
  20779. name: "Maw",
  20780. image: {
  20781. source: "./media/characters/goldeneye/maw.svg"
  20782. }
  20783. },
  20784. headFront: {
  20785. height: math.unit(8, "feet"),
  20786. name: "Head (Front)",
  20787. image: {
  20788. source: "./media/characters/goldeneye/head-front.svg"
  20789. }
  20790. },
  20791. headSide: {
  20792. height: math.unit(6, "feet"),
  20793. name: "Head (Side)",
  20794. image: {
  20795. source: "./media/characters/goldeneye/head-side.svg"
  20796. }
  20797. },
  20798. headBack: {
  20799. height: math.unit(8, "feet"),
  20800. name: "Head (Back)",
  20801. image: {
  20802. source: "./media/characters/goldeneye/head-back.svg"
  20803. }
  20804. },
  20805. paw: {
  20806. height: math.unit(3.4, "feet"),
  20807. name: "Paw",
  20808. image: {
  20809. source: "./media/characters/goldeneye/paw.svg"
  20810. }
  20811. },
  20812. toering: {
  20813. height: math.unit(0.45, "feet"),
  20814. name: "Toering",
  20815. image: {
  20816. source: "./media/characters/goldeneye/toering.svg"
  20817. }
  20818. },
  20819. eyes: {
  20820. height: math.unit(0.5, "feet"),
  20821. name: "Eyes",
  20822. image: {
  20823. source: "./media/characters/goldeneye/eyes.svg"
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "Normal",
  20830. height: math.unit(13 + 1 / 12, "feet"),
  20831. default: true
  20832. },
  20833. ]
  20834. ))
  20835. characterMakers.push(() => makeCharacter(
  20836. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20837. {
  20838. front: {
  20839. height: math.unit(6 + 1 / 12, "feet"),
  20840. weight: math.unit(210, "lb"),
  20841. name: "Front",
  20842. image: {
  20843. source: "./media/characters/leonardo-lycheborne/front.svg",
  20844. extra: 776/723,
  20845. bottom: 34/810
  20846. }
  20847. },
  20848. side: {
  20849. height: math.unit(6 + 1 / 12, "feet"),
  20850. weight: math.unit(210, "lb"),
  20851. name: "Side",
  20852. image: {
  20853. source: "./media/characters/leonardo-lycheborne/side.svg",
  20854. extra: 780/728,
  20855. bottom: 12/792
  20856. }
  20857. },
  20858. back: {
  20859. height: math.unit(6 + 1 / 12, "feet"),
  20860. weight: math.unit(210, "lb"),
  20861. name: "Back",
  20862. image: {
  20863. source: "./media/characters/leonardo-lycheborne/back.svg",
  20864. extra: 775/721,
  20865. bottom: 17/792
  20866. }
  20867. },
  20868. hand: {
  20869. height: math.unit(1.08, "feet"),
  20870. name: "Hand",
  20871. image: {
  20872. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20873. }
  20874. },
  20875. foot: {
  20876. height: math.unit(1.32, "feet"),
  20877. name: "Foot",
  20878. image: {
  20879. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20880. }
  20881. },
  20882. maw: {
  20883. height: math.unit(1, "feet"),
  20884. name: "Maw",
  20885. image: {
  20886. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20887. }
  20888. },
  20889. were: {
  20890. height: math.unit(20, "feet"),
  20891. weight: math.unit(7800, "lb"),
  20892. name: "Were",
  20893. image: {
  20894. source: "./media/characters/leonardo-lycheborne/were.svg",
  20895. extra: 1224/1165,
  20896. bottom: 72/1296
  20897. }
  20898. },
  20899. feral: {
  20900. height: math.unit(7.5, "feet"),
  20901. weight: math.unit(600, "lb"),
  20902. name: "Feral",
  20903. image: {
  20904. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20905. extra: 797/702,
  20906. bottom: 139/936
  20907. }
  20908. },
  20909. taur: {
  20910. height: math.unit(11, "feet"),
  20911. weight: math.unit(3300, "lb"),
  20912. name: "Taur",
  20913. image: {
  20914. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20915. extra: 1271/1197,
  20916. bottom: 47/1318
  20917. }
  20918. },
  20919. barghest: {
  20920. height: math.unit(11, "feet"),
  20921. weight: math.unit(1300, "lb"),
  20922. name: "Barghest",
  20923. image: {
  20924. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20925. extra: 1291/1204,
  20926. bottom: 37/1328
  20927. }
  20928. },
  20929. dick: {
  20930. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20931. name: "Dick",
  20932. image: {
  20933. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20934. }
  20935. },
  20936. dickWere: {
  20937. height: math.unit((20) / 3.8, "feet"),
  20938. name: "Dick (Were)",
  20939. image: {
  20940. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20941. }
  20942. },
  20943. },
  20944. [
  20945. {
  20946. name: "Normal",
  20947. height: math.unit(6 + 1 / 12, "feet"),
  20948. default: true
  20949. },
  20950. ]
  20951. ))
  20952. characterMakers.push(() => makeCharacter(
  20953. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20954. {
  20955. front: {
  20956. height: math.unit(10, "feet"),
  20957. weight: math.unit(350, "lb"),
  20958. name: "Front",
  20959. image: {
  20960. source: "./media/characters/jet/front.svg",
  20961. extra: 2050 / 1980,
  20962. bottom: 0.013
  20963. }
  20964. },
  20965. back: {
  20966. height: math.unit(10, "feet"),
  20967. weight: math.unit(350, "lb"),
  20968. name: "Back",
  20969. image: {
  20970. source: "./media/characters/jet/back.svg",
  20971. extra: 2050 / 1980,
  20972. bottom: 0.013
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Micro",
  20979. height: math.unit(6, "inches")
  20980. },
  20981. {
  20982. name: "Normal",
  20983. height: math.unit(10, "feet"),
  20984. default: true
  20985. },
  20986. {
  20987. name: "Macro",
  20988. height: math.unit(100, "feet")
  20989. },
  20990. ]
  20991. ))
  20992. characterMakers.push(() => makeCharacter(
  20993. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20994. {
  20995. front: {
  20996. height: math.unit(15, "feet"),
  20997. weight: math.unit(2800, "lb"),
  20998. name: "Front",
  20999. image: {
  21000. source: "./media/characters/tanarath/front.svg",
  21001. extra: 2392 / 2220,
  21002. bottom: 0.03
  21003. }
  21004. },
  21005. back: {
  21006. height: math.unit(15, "feet"),
  21007. weight: math.unit(2800, "lb"),
  21008. name: "Back",
  21009. image: {
  21010. source: "./media/characters/tanarath/back.svg",
  21011. extra: 2392 / 2220,
  21012. bottom: 0.03
  21013. }
  21014. },
  21015. },
  21016. [
  21017. {
  21018. name: "Normal",
  21019. height: math.unit(15, "feet"),
  21020. default: true
  21021. },
  21022. ]
  21023. ))
  21024. characterMakers.push(() => makeCharacter(
  21025. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21026. {
  21027. front: {
  21028. height: math.unit(7 + 1 / 12, "feet"),
  21029. weight: math.unit(175, "lb"),
  21030. name: "Front",
  21031. image: {
  21032. source: "./media/characters/patty-cattybatty/front.svg",
  21033. extra: 908 / 874,
  21034. bottom: 0.025
  21035. }
  21036. },
  21037. },
  21038. [
  21039. {
  21040. name: "Micro",
  21041. height: math.unit(1, "inch")
  21042. },
  21043. {
  21044. name: "Normal",
  21045. height: math.unit(7 + 1 / 12, "feet")
  21046. },
  21047. {
  21048. name: "Mini Macro",
  21049. height: math.unit(155, "feet")
  21050. },
  21051. {
  21052. name: "Macro",
  21053. height: math.unit(1077, "feet")
  21054. },
  21055. {
  21056. name: "Mega Macro",
  21057. height: math.unit(47650, "feet"),
  21058. default: true
  21059. },
  21060. {
  21061. name: "Giga Macro",
  21062. height: math.unit(440, "miles")
  21063. },
  21064. {
  21065. name: "Tera Macro",
  21066. height: math.unit(8700, "miles")
  21067. },
  21068. {
  21069. name: "Planetary Macro",
  21070. height: math.unit(32700, "miles")
  21071. },
  21072. {
  21073. name: "Solar Macro",
  21074. height: math.unit(550000, "miles")
  21075. },
  21076. {
  21077. name: "Celestial Macro",
  21078. height: math.unit(2.5, "AU")
  21079. },
  21080. ]
  21081. ))
  21082. characterMakers.push(() => makeCharacter(
  21083. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21084. {
  21085. front: {
  21086. height: math.unit(4 + 5 / 12, "feet"),
  21087. weight: math.unit(90, "lb"),
  21088. name: "Front",
  21089. image: {
  21090. source: "./media/characters/cappu/front.svg",
  21091. extra: 1247 / 1152,
  21092. bottom: 0.012
  21093. }
  21094. },
  21095. },
  21096. [
  21097. {
  21098. name: "Normal",
  21099. height: math.unit(4 + 5 / 12, "feet"),
  21100. default: true
  21101. },
  21102. ]
  21103. ))
  21104. characterMakers.push(() => makeCharacter(
  21105. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21106. {
  21107. frontDressed: {
  21108. height: math.unit(70, "cm"),
  21109. weight: math.unit(6, "kg"),
  21110. name: "Front (Dressed)",
  21111. image: {
  21112. source: "./media/characters/sebi/front-dressed.svg",
  21113. extra: 713.5 / 686.5,
  21114. bottom: 0.003
  21115. }
  21116. },
  21117. front: {
  21118. height: math.unit(70, "cm"),
  21119. weight: math.unit(5, "kg"),
  21120. name: "Front",
  21121. image: {
  21122. source: "./media/characters/sebi/front.svg",
  21123. extra: 713.5 / 686.5,
  21124. bottom: 0.003
  21125. }
  21126. }
  21127. },
  21128. [
  21129. {
  21130. name: "Normal",
  21131. height: math.unit(70, "cm"),
  21132. default: true
  21133. },
  21134. {
  21135. name: "Macro",
  21136. height: math.unit(8, "meters")
  21137. },
  21138. ]
  21139. ))
  21140. characterMakers.push(() => makeCharacter(
  21141. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21142. {
  21143. front: {
  21144. height: math.unit(6, "feet"),
  21145. weight: math.unit(150, "lb"),
  21146. name: "Front",
  21147. image: {
  21148. source: "./media/characters/typhek/front.svg",
  21149. extra: 1948 / 1929,
  21150. bottom: 0.025
  21151. }
  21152. },
  21153. side: {
  21154. height: math.unit(6, "feet"),
  21155. weight: math.unit(150, "lb"),
  21156. name: "Side",
  21157. image: {
  21158. source: "./media/characters/typhek/side.svg",
  21159. extra: 2034 / 2010,
  21160. bottom: 0.003
  21161. }
  21162. },
  21163. back: {
  21164. height: math.unit(6, "feet"),
  21165. weight: math.unit(150, "lb"),
  21166. name: "Back",
  21167. image: {
  21168. source: "./media/characters/typhek/back.svg",
  21169. extra: 2005 / 1978,
  21170. bottom: 0.004
  21171. }
  21172. },
  21173. palm: {
  21174. height: math.unit(1.2, "feet"),
  21175. name: "Palm",
  21176. image: {
  21177. source: "./media/characters/typhek/palm.svg"
  21178. }
  21179. },
  21180. fist: {
  21181. height: math.unit(1.1, "feet"),
  21182. name: "Fist",
  21183. image: {
  21184. source: "./media/characters/typhek/fist.svg"
  21185. }
  21186. },
  21187. foot: {
  21188. height: math.unit(1.57, "feet"),
  21189. name: "Foot",
  21190. image: {
  21191. source: "./media/characters/typhek/foot.svg"
  21192. }
  21193. },
  21194. sole: {
  21195. height: math.unit(2.05, "feet"),
  21196. name: "Sole",
  21197. image: {
  21198. source: "./media/characters/typhek/sole.svg"
  21199. }
  21200. },
  21201. },
  21202. [
  21203. {
  21204. name: "Macro",
  21205. height: math.unit(40, "stories"),
  21206. default: true
  21207. },
  21208. {
  21209. name: "Megamacro",
  21210. height: math.unit(1, "mile")
  21211. },
  21212. {
  21213. name: "Gigamacro",
  21214. height: math.unit(4000, "solarradii")
  21215. },
  21216. {
  21217. name: "Universal",
  21218. height: math.unit(1.1, "universes")
  21219. }
  21220. ]
  21221. ))
  21222. characterMakers.push(() => makeCharacter(
  21223. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21224. {
  21225. side: {
  21226. height: math.unit(5 + 7 / 12, "feet"),
  21227. weight: math.unit(150, "lb"),
  21228. name: "Side",
  21229. image: {
  21230. source: "./media/characters/kassy/side.svg",
  21231. extra: 1280 / 1225,
  21232. bottom: 0.002
  21233. }
  21234. },
  21235. front: {
  21236. height: math.unit(5 + 7 / 12, "feet"),
  21237. weight: math.unit(150, "lb"),
  21238. name: "Front",
  21239. image: {
  21240. source: "./media/characters/kassy/front.svg",
  21241. extra: 1280 / 1225,
  21242. bottom: 0.025
  21243. }
  21244. },
  21245. back: {
  21246. height: math.unit(5 + 7 / 12, "feet"),
  21247. weight: math.unit(150, "lb"),
  21248. name: "Back",
  21249. image: {
  21250. source: "./media/characters/kassy/back.svg",
  21251. extra: 1280 / 1225,
  21252. bottom: 0.002
  21253. }
  21254. },
  21255. foot: {
  21256. height: math.unit(1.266, "feet"),
  21257. name: "Foot",
  21258. image: {
  21259. source: "./media/characters/kassy/foot.svg"
  21260. }
  21261. },
  21262. },
  21263. [
  21264. {
  21265. name: "Normal",
  21266. height: math.unit(5 + 7 / 12, "feet")
  21267. },
  21268. {
  21269. name: "Macro",
  21270. height: math.unit(137, "feet"),
  21271. default: true
  21272. },
  21273. {
  21274. name: "Megamacro",
  21275. height: math.unit(1, "mile")
  21276. },
  21277. ]
  21278. ))
  21279. characterMakers.push(() => makeCharacter(
  21280. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21281. {
  21282. front: {
  21283. height: math.unit(6 + 1 / 12, "feet"),
  21284. weight: math.unit(200, "lb"),
  21285. name: "Front",
  21286. image: {
  21287. source: "./media/characters/neil/front.svg",
  21288. extra: 1326 / 1250,
  21289. bottom: 0.023
  21290. }
  21291. },
  21292. },
  21293. [
  21294. {
  21295. name: "Normal",
  21296. height: math.unit(6 + 1 / 12, "feet"),
  21297. default: true
  21298. },
  21299. {
  21300. name: "Macro",
  21301. height: math.unit(200, "feet")
  21302. },
  21303. ]
  21304. ))
  21305. characterMakers.push(() => makeCharacter(
  21306. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21307. {
  21308. front: {
  21309. height: math.unit(5 + 9 / 12, "feet"),
  21310. weight: math.unit(190, "lb"),
  21311. name: "Front",
  21312. image: {
  21313. source: "./media/characters/atticus/front.svg",
  21314. extra: 2934 / 2785,
  21315. bottom: 0.025
  21316. }
  21317. },
  21318. },
  21319. [
  21320. {
  21321. name: "Normal",
  21322. height: math.unit(5 + 9 / 12, "feet"),
  21323. default: true
  21324. },
  21325. {
  21326. name: "Macro",
  21327. height: math.unit(180, "feet")
  21328. },
  21329. ]
  21330. ))
  21331. characterMakers.push(() => makeCharacter(
  21332. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21333. {
  21334. side: {
  21335. height: math.unit(9, "feet"),
  21336. weight: math.unit(650, "lb"),
  21337. name: "Side",
  21338. image: {
  21339. source: "./media/characters/milo/side.svg",
  21340. extra: 2644 / 2310,
  21341. bottom: 0.032
  21342. }
  21343. },
  21344. },
  21345. [
  21346. {
  21347. name: "Normal",
  21348. height: math.unit(9, "feet"),
  21349. default: true
  21350. },
  21351. {
  21352. name: "Macro",
  21353. height: math.unit(300, "feet")
  21354. },
  21355. ]
  21356. ))
  21357. characterMakers.push(() => makeCharacter(
  21358. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21359. {
  21360. side: {
  21361. height: math.unit(8, "meters"),
  21362. weight: math.unit(90000, "kg"),
  21363. name: "Side",
  21364. image: {
  21365. source: "./media/characters/ijzer/side.svg",
  21366. extra: 2756 / 1600,
  21367. bottom: 0.01
  21368. }
  21369. },
  21370. },
  21371. [
  21372. {
  21373. name: "Small",
  21374. height: math.unit(3, "meters")
  21375. },
  21376. {
  21377. name: "Normal",
  21378. height: math.unit(8, "meters"),
  21379. default: true
  21380. },
  21381. {
  21382. name: "Normal+",
  21383. height: math.unit(10, "meters")
  21384. },
  21385. {
  21386. name: "Bigger",
  21387. height: math.unit(24, "meters")
  21388. },
  21389. {
  21390. name: "Huge",
  21391. height: math.unit(80, "meters")
  21392. },
  21393. ]
  21394. ))
  21395. characterMakers.push(() => makeCharacter(
  21396. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21397. {
  21398. front: {
  21399. height: math.unit(6 + 2 / 12, "feet"),
  21400. weight: math.unit(153, "lb"),
  21401. name: "Front",
  21402. image: {
  21403. source: "./media/characters/luca-cervicum/front.svg",
  21404. extra: 370 / 327,
  21405. bottom: 0.015
  21406. }
  21407. },
  21408. back: {
  21409. height: math.unit(6 + 2 / 12, "feet"),
  21410. weight: math.unit(153, "lb"),
  21411. name: "Back",
  21412. image: {
  21413. source: "./media/characters/luca-cervicum/back.svg",
  21414. extra: 367 / 333,
  21415. bottom: 0.005
  21416. }
  21417. },
  21418. frontGear: {
  21419. height: math.unit(6 + 2 / 12, "feet"),
  21420. weight: math.unit(173, "lb"),
  21421. name: "Front (Gear)",
  21422. image: {
  21423. source: "./media/characters/luca-cervicum/front-gear.svg",
  21424. extra: 377 / 333,
  21425. bottom: 0.006
  21426. }
  21427. },
  21428. },
  21429. [
  21430. {
  21431. name: "Normal",
  21432. height: math.unit(6 + 2 / 12, "feet"),
  21433. default: true
  21434. },
  21435. ]
  21436. ))
  21437. characterMakers.push(() => makeCharacter(
  21438. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21439. {
  21440. front: {
  21441. height: math.unit(6 + 1 / 12, "feet"),
  21442. weight: math.unit(304, "lb"),
  21443. name: "Front",
  21444. image: {
  21445. source: "./media/characters/oliver/front.svg",
  21446. extra: 157 / 143,
  21447. bottom: 0.08
  21448. }
  21449. },
  21450. },
  21451. [
  21452. {
  21453. name: "Normal",
  21454. height: math.unit(6 + 1 / 12, "feet"),
  21455. default: true
  21456. },
  21457. ]
  21458. ))
  21459. characterMakers.push(() => makeCharacter(
  21460. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21461. {
  21462. front: {
  21463. height: math.unit(5 + 7 / 12, "feet"),
  21464. weight: math.unit(140, "lb"),
  21465. name: "Front",
  21466. image: {
  21467. source: "./media/characters/shane/front.svg",
  21468. extra: 304 / 289,
  21469. bottom: 0.005
  21470. }
  21471. },
  21472. },
  21473. [
  21474. {
  21475. name: "Normal",
  21476. height: math.unit(5 + 7 / 12, "feet"),
  21477. default: true
  21478. },
  21479. ]
  21480. ))
  21481. characterMakers.push(() => makeCharacter(
  21482. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21483. {
  21484. front: {
  21485. height: math.unit(5 + 9 / 12, "feet"),
  21486. weight: math.unit(178, "lb"),
  21487. name: "Front",
  21488. image: {
  21489. source: "./media/characters/shin/front.svg",
  21490. extra: 159 / 151,
  21491. bottom: 0.015
  21492. }
  21493. },
  21494. },
  21495. [
  21496. {
  21497. name: "Normal",
  21498. height: math.unit(5 + 9 / 12, "feet"),
  21499. default: true
  21500. },
  21501. ]
  21502. ))
  21503. characterMakers.push(() => makeCharacter(
  21504. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21505. {
  21506. front: {
  21507. height: math.unit(5 + 10 / 12, "feet"),
  21508. weight: math.unit(168, "lb"),
  21509. name: "Front",
  21510. image: {
  21511. source: "./media/characters/xerxes/front.svg",
  21512. extra: 282 / 260,
  21513. bottom: 0.045
  21514. }
  21515. },
  21516. },
  21517. [
  21518. {
  21519. name: "Normal",
  21520. height: math.unit(5 + 10 / 12, "feet"),
  21521. default: true
  21522. },
  21523. ]
  21524. ))
  21525. characterMakers.push(() => makeCharacter(
  21526. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21527. {
  21528. front: {
  21529. height: math.unit(6 + 7 / 12, "feet"),
  21530. weight: math.unit(208, "lb"),
  21531. name: "Front",
  21532. image: {
  21533. source: "./media/characters/chaska/front.svg",
  21534. extra: 332 / 319,
  21535. bottom: 0.015
  21536. }
  21537. },
  21538. },
  21539. [
  21540. {
  21541. name: "Normal",
  21542. height: math.unit(6 + 7 / 12, "feet"),
  21543. default: true
  21544. },
  21545. ]
  21546. ))
  21547. characterMakers.push(() => makeCharacter(
  21548. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21549. {
  21550. front: {
  21551. height: math.unit(5 + 8 / 12, "feet"),
  21552. weight: math.unit(208, "lb"),
  21553. name: "Front",
  21554. image: {
  21555. source: "./media/characters/enuk/front.svg",
  21556. extra: 437 / 406,
  21557. bottom: 0.02
  21558. }
  21559. },
  21560. },
  21561. [
  21562. {
  21563. name: "Normal",
  21564. height: math.unit(5 + 8 / 12, "feet"),
  21565. default: true
  21566. },
  21567. ]
  21568. ))
  21569. characterMakers.push(() => makeCharacter(
  21570. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21571. {
  21572. front: {
  21573. height: math.unit(5 + 10 / 12, "feet"),
  21574. weight: math.unit(252, "lb"),
  21575. name: "Front",
  21576. image: {
  21577. source: "./media/characters/bruun/front.svg",
  21578. extra: 197 / 187,
  21579. bottom: 0.012
  21580. }
  21581. },
  21582. },
  21583. [
  21584. {
  21585. name: "Normal",
  21586. height: math.unit(5 + 10 / 12, "feet"),
  21587. default: true
  21588. },
  21589. ]
  21590. ))
  21591. characterMakers.push(() => makeCharacter(
  21592. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21593. {
  21594. front: {
  21595. height: math.unit(6 + 10 / 12, "feet"),
  21596. weight: math.unit(255, "lb"),
  21597. name: "Front",
  21598. image: {
  21599. source: "./media/characters/alexeev/front.svg",
  21600. extra: 213 / 200,
  21601. bottom: 0.05
  21602. }
  21603. },
  21604. },
  21605. [
  21606. {
  21607. name: "Normal",
  21608. height: math.unit(6 + 10 / 12, "feet"),
  21609. default: true
  21610. },
  21611. ]
  21612. ))
  21613. characterMakers.push(() => makeCharacter(
  21614. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21615. {
  21616. front: {
  21617. height: math.unit(2 + 8 / 12, "feet"),
  21618. weight: math.unit(22, "lb"),
  21619. name: "Front",
  21620. image: {
  21621. source: "./media/characters/evelyn/front.svg",
  21622. extra: 208 / 180
  21623. }
  21624. },
  21625. },
  21626. [
  21627. {
  21628. name: "Normal",
  21629. height: math.unit(2 + 8 / 12, "feet"),
  21630. default: true
  21631. },
  21632. ]
  21633. ))
  21634. characterMakers.push(() => makeCharacter(
  21635. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21636. {
  21637. front: {
  21638. height: math.unit(5 + 9 / 12, "feet"),
  21639. weight: math.unit(139, "lb"),
  21640. name: "Front",
  21641. image: {
  21642. source: "./media/characters/inca/front.svg",
  21643. extra: 294 / 291,
  21644. bottom: 0.03
  21645. }
  21646. },
  21647. },
  21648. [
  21649. {
  21650. name: "Normal",
  21651. height: math.unit(5 + 9 / 12, "feet"),
  21652. default: true
  21653. },
  21654. ]
  21655. ))
  21656. characterMakers.push(() => makeCharacter(
  21657. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21658. {
  21659. front: {
  21660. height: math.unit(6 + 3 / 12, "feet"),
  21661. weight: math.unit(185, "lb"),
  21662. name: "Front",
  21663. image: {
  21664. source: "./media/characters/mera/front.svg",
  21665. extra: 291 / 277,
  21666. bottom: 0.03
  21667. }
  21668. },
  21669. },
  21670. [
  21671. {
  21672. name: "Normal",
  21673. height: math.unit(6 + 3 / 12, "feet"),
  21674. default: true
  21675. },
  21676. ]
  21677. ))
  21678. characterMakers.push(() => makeCharacter(
  21679. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21680. {
  21681. front: {
  21682. height: math.unit(6 + 7 / 12, "feet"),
  21683. weight: math.unit(160, "lb"),
  21684. name: "Front",
  21685. image: {
  21686. source: "./media/characters/ceres/front.svg",
  21687. extra: 1023 / 950,
  21688. bottom: 0.027
  21689. }
  21690. },
  21691. back: {
  21692. height: math.unit(6 + 7 / 12, "feet"),
  21693. weight: math.unit(160, "lb"),
  21694. name: "Back",
  21695. image: {
  21696. source: "./media/characters/ceres/back.svg",
  21697. extra: 1023 / 950
  21698. }
  21699. },
  21700. },
  21701. [
  21702. {
  21703. name: "Normal",
  21704. height: math.unit(6 + 7 / 12, "feet"),
  21705. default: true
  21706. },
  21707. ]
  21708. ))
  21709. characterMakers.push(() => makeCharacter(
  21710. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21711. {
  21712. front: {
  21713. height: math.unit(5 + 10 / 12, "feet"),
  21714. weight: math.unit(150, "lb"),
  21715. name: "Front",
  21716. image: {
  21717. source: "./media/characters/kris/front.svg",
  21718. extra: 885 / 803,
  21719. bottom: 0.03
  21720. }
  21721. },
  21722. },
  21723. [
  21724. {
  21725. name: "Normal",
  21726. height: math.unit(5 + 10 / 12, "feet"),
  21727. default: true
  21728. },
  21729. ]
  21730. ))
  21731. characterMakers.push(() => makeCharacter(
  21732. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21733. {
  21734. front: {
  21735. height: math.unit(7, "feet"),
  21736. weight: math.unit(120, "kg"),
  21737. name: "Front",
  21738. image: {
  21739. source: "./media/characters/taluthus/front.svg",
  21740. extra: 903 / 833,
  21741. bottom: 0.015
  21742. }
  21743. },
  21744. },
  21745. [
  21746. {
  21747. name: "Normal",
  21748. height: math.unit(7, "feet"),
  21749. default: true
  21750. },
  21751. {
  21752. name: "Macro",
  21753. height: math.unit(300, "feet")
  21754. },
  21755. ]
  21756. ))
  21757. characterMakers.push(() => makeCharacter(
  21758. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21759. {
  21760. front: {
  21761. height: math.unit(5 + 9 / 12, "feet"),
  21762. weight: math.unit(145, "lb"),
  21763. name: "Front",
  21764. image: {
  21765. source: "./media/characters/dawn/front.svg",
  21766. extra: 2094 / 2016,
  21767. bottom: 0.025
  21768. }
  21769. },
  21770. back: {
  21771. height: math.unit(5 + 9 / 12, "feet"),
  21772. weight: math.unit(160, "lb"),
  21773. name: "Back",
  21774. image: {
  21775. source: "./media/characters/dawn/back.svg",
  21776. extra: 2112 / 2080,
  21777. bottom: 0.005
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(6 + 7 / 12, "feet"),
  21785. default: true
  21786. },
  21787. ]
  21788. ))
  21789. characterMakers.push(() => makeCharacter(
  21790. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21791. {
  21792. anthro: {
  21793. height: math.unit(8 + 3 / 12, "feet"),
  21794. weight: math.unit(450, "lb"),
  21795. name: "Anthro",
  21796. image: {
  21797. source: "./media/characters/arador/anthro.svg",
  21798. extra: 1835 / 1718,
  21799. bottom: 0.025
  21800. }
  21801. },
  21802. feral: {
  21803. height: math.unit(4, "feet"),
  21804. weight: math.unit(200, "lb"),
  21805. name: "Feral",
  21806. image: {
  21807. source: "./media/characters/arador/feral.svg",
  21808. extra: 1683 / 1514,
  21809. bottom: 0.07
  21810. }
  21811. },
  21812. },
  21813. [
  21814. {
  21815. name: "Normal",
  21816. height: math.unit(8 + 3 / 12, "feet")
  21817. },
  21818. {
  21819. name: "Macro",
  21820. height: math.unit(82.5, "feet"),
  21821. default: true
  21822. },
  21823. ]
  21824. ))
  21825. characterMakers.push(() => makeCharacter(
  21826. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21827. {
  21828. front: {
  21829. height: math.unit(5 + 10 / 12, "feet"),
  21830. weight: math.unit(125, "lb"),
  21831. name: "Front",
  21832. image: {
  21833. source: "./media/characters/dharsi/front.svg",
  21834. extra: 716 / 630,
  21835. bottom: 0.035
  21836. }
  21837. },
  21838. },
  21839. [
  21840. {
  21841. name: "Nano",
  21842. height: math.unit(100, "nm")
  21843. },
  21844. {
  21845. name: "Micro",
  21846. height: math.unit(2, "inches")
  21847. },
  21848. {
  21849. name: "Normal",
  21850. height: math.unit(5 + 10 / 12, "feet"),
  21851. default: true
  21852. },
  21853. {
  21854. name: "Macro",
  21855. height: math.unit(1000, "feet")
  21856. },
  21857. {
  21858. name: "Megamacro",
  21859. height: math.unit(10, "miles")
  21860. },
  21861. {
  21862. name: "Gigamacro",
  21863. height: math.unit(3000, "miles")
  21864. },
  21865. {
  21866. name: "Teramacro",
  21867. height: math.unit(500000, "miles")
  21868. },
  21869. {
  21870. name: "Teramacro+",
  21871. height: math.unit(30, "galaxies")
  21872. },
  21873. ]
  21874. ))
  21875. characterMakers.push(() => makeCharacter(
  21876. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21877. {
  21878. front: {
  21879. height: math.unit(6, "feet"),
  21880. weight: math.unit(150, "lb"),
  21881. name: "Front",
  21882. image: {
  21883. source: "./media/characters/deathy/front.svg",
  21884. extra: 1552 / 1463,
  21885. bottom: 0.025
  21886. }
  21887. },
  21888. side: {
  21889. height: math.unit(6, "feet"),
  21890. weight: math.unit(150, "lb"),
  21891. name: "Side",
  21892. image: {
  21893. source: "./media/characters/deathy/side.svg",
  21894. extra: 1604 / 1455,
  21895. bottom: 0.025
  21896. }
  21897. },
  21898. back: {
  21899. height: math.unit(6, "feet"),
  21900. weight: math.unit(150, "lb"),
  21901. name: "Back",
  21902. image: {
  21903. source: "./media/characters/deathy/back.svg",
  21904. extra: 1580 / 1463,
  21905. bottom: 0.005
  21906. }
  21907. },
  21908. },
  21909. [
  21910. {
  21911. name: "Micro",
  21912. height: math.unit(5, "millimeters")
  21913. },
  21914. {
  21915. name: "Normal",
  21916. height: math.unit(6 + 5 / 12, "feet"),
  21917. default: true
  21918. },
  21919. ]
  21920. ))
  21921. characterMakers.push(() => makeCharacter(
  21922. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21923. {
  21924. front: {
  21925. height: math.unit(16, "feet"),
  21926. weight: math.unit(4000, "lb"),
  21927. name: "Front",
  21928. image: {
  21929. source: "./media/characters/juniper/front.svg",
  21930. bottom: 0.04
  21931. }
  21932. },
  21933. },
  21934. [
  21935. {
  21936. name: "Normal",
  21937. height: math.unit(16, "feet"),
  21938. default: true
  21939. },
  21940. ]
  21941. ))
  21942. characterMakers.push(() => makeCharacter(
  21943. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21944. {
  21945. front: {
  21946. height: math.unit(6, "feet"),
  21947. weight: math.unit(150, "lb"),
  21948. name: "Front",
  21949. image: {
  21950. source: "./media/characters/hipster/front.svg",
  21951. extra: 1312 / 1209,
  21952. bottom: 0.025
  21953. }
  21954. },
  21955. back: {
  21956. height: math.unit(6, "feet"),
  21957. weight: math.unit(150, "lb"),
  21958. name: "Back",
  21959. image: {
  21960. source: "./media/characters/hipster/back.svg",
  21961. extra: 1281 / 1196,
  21962. bottom: 0.01
  21963. }
  21964. },
  21965. },
  21966. [
  21967. {
  21968. name: "Micro",
  21969. height: math.unit(1, "mm")
  21970. },
  21971. {
  21972. name: "Normal",
  21973. height: math.unit(4, "inches"),
  21974. default: true
  21975. },
  21976. {
  21977. name: "Macro",
  21978. height: math.unit(500, "feet")
  21979. },
  21980. {
  21981. name: "Megamacro",
  21982. height: math.unit(1000, "miles")
  21983. },
  21984. ]
  21985. ))
  21986. characterMakers.push(() => makeCharacter(
  21987. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21988. {
  21989. front: {
  21990. height: math.unit(6, "feet"),
  21991. weight: math.unit(150, "lb"),
  21992. name: "Front",
  21993. image: {
  21994. source: "./media/characters/tendirmuldr/front.svg",
  21995. extra: 1878 / 1772,
  21996. bottom: 0.015
  21997. }
  21998. },
  21999. },
  22000. [
  22001. {
  22002. name: "Megamacro",
  22003. height: math.unit(1500, "miles"),
  22004. default: true
  22005. },
  22006. ]
  22007. ))
  22008. characterMakers.push(() => makeCharacter(
  22009. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22010. {
  22011. front: {
  22012. height: math.unit(14, "feet"),
  22013. weight: math.unit(12000, "lb"),
  22014. name: "Front",
  22015. image: {
  22016. source: "./media/characters/mort/front.svg",
  22017. extra: 365 / 318,
  22018. bottom: 0.01
  22019. }
  22020. },
  22021. side: {
  22022. height: math.unit(14, "feet"),
  22023. weight: math.unit(12000, "lb"),
  22024. name: "Side",
  22025. image: {
  22026. source: "./media/characters/mort/side.svg",
  22027. extra: 365 / 318,
  22028. bottom: 0.052
  22029. },
  22030. default: true
  22031. },
  22032. back: {
  22033. height: math.unit(14, "feet"),
  22034. weight: math.unit(12000, "lb"),
  22035. name: "Back",
  22036. image: {
  22037. source: "./media/characters/mort/back.svg",
  22038. extra: 371 / 332,
  22039. bottom: 0.18
  22040. }
  22041. },
  22042. },
  22043. [
  22044. {
  22045. name: "Normal",
  22046. height: math.unit(14, "feet"),
  22047. default: true
  22048. },
  22049. ]
  22050. ))
  22051. characterMakers.push(() => makeCharacter(
  22052. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22053. {
  22054. front: {
  22055. height: math.unit(8, "feet"),
  22056. weight: math.unit(1, "ton"),
  22057. name: "Front",
  22058. image: {
  22059. source: "./media/characters/lycoa/front.svg",
  22060. extra: 1836/1728,
  22061. bottom: 81/1917
  22062. }
  22063. },
  22064. back: {
  22065. height: math.unit(8, "feet"),
  22066. weight: math.unit(1, "ton"),
  22067. name: "Back",
  22068. image: {
  22069. source: "./media/characters/lycoa/back.svg",
  22070. extra: 1785/1720,
  22071. bottom: 91/1876
  22072. }
  22073. },
  22074. head: {
  22075. height: math.unit(1.6243, "feet"),
  22076. name: "Head",
  22077. image: {
  22078. source: "./media/characters/lycoa/head.svg",
  22079. extra: 1011/782,
  22080. bottom: 0/1011
  22081. }
  22082. },
  22083. tailmaw: {
  22084. height: math.unit(1.9, "feet"),
  22085. name: "Tailmaw",
  22086. image: {
  22087. source: "./media/characters/lycoa/tailmaw.svg"
  22088. }
  22089. },
  22090. tentacles: {
  22091. height: math.unit(2.1, "feet"),
  22092. name: "Tentacles",
  22093. image: {
  22094. source: "./media/characters/lycoa/tentacles.svg"
  22095. }
  22096. },
  22097. dick: {
  22098. height: math.unit(1.73, "feet"),
  22099. name: "Dick",
  22100. image: {
  22101. source: "./media/characters/lycoa/dick.svg"
  22102. }
  22103. },
  22104. },
  22105. [
  22106. {
  22107. name: "Normal",
  22108. height: math.unit(8, "feet"),
  22109. default: true
  22110. },
  22111. {
  22112. name: "Macro",
  22113. height: math.unit(30, "feet")
  22114. },
  22115. ]
  22116. ))
  22117. characterMakers.push(() => makeCharacter(
  22118. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22119. {
  22120. front: {
  22121. height: math.unit(4 + 2 / 12, "feet"),
  22122. weight: math.unit(70, "lb"),
  22123. name: "Front",
  22124. image: {
  22125. source: "./media/characters/naldara/front.svg",
  22126. extra: 1664/1387,
  22127. bottom: 81/1745
  22128. },
  22129. form: "anthro",
  22130. default: true
  22131. },
  22132. naga: {
  22133. height: math.unit(20, "feet"),
  22134. weight: math.unit(15000, "kg"),
  22135. name: "Front",
  22136. image: {
  22137. source: "./media/characters/naldara/naga.svg",
  22138. extra: 1590/1396,
  22139. bottom: 285/1875
  22140. },
  22141. form: "naga",
  22142. default: true
  22143. },
  22144. },
  22145. [
  22146. {
  22147. name: "Normal",
  22148. height: math.unit(4 + 2 / 12, "feet"),
  22149. form: "anthro",
  22150. default: true
  22151. },
  22152. {
  22153. name: "Normal",
  22154. height: math.unit(20, "feet"),
  22155. form: "naga",
  22156. default: true
  22157. },
  22158. ],
  22159. {
  22160. "anthro": {
  22161. name: "Anthro",
  22162. default: true
  22163. },
  22164. "naga": {
  22165. name: "Naga"
  22166. }
  22167. }
  22168. ))
  22169. characterMakers.push(() => makeCharacter(
  22170. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22171. {
  22172. front: {
  22173. height: math.unit(13 + 7 / 12, "feet"),
  22174. weight: math.unit(1500, "lb"),
  22175. name: "Front",
  22176. image: {
  22177. source: "./media/characters/briar/front.svg",
  22178. extra: 1223/1157,
  22179. bottom: 123/1346
  22180. }
  22181. },
  22182. },
  22183. [
  22184. {
  22185. name: "Normal",
  22186. height: math.unit(13 + 7 / 12, "feet"),
  22187. default: true
  22188. },
  22189. ]
  22190. ))
  22191. characterMakers.push(() => makeCharacter(
  22192. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22193. {
  22194. side: {
  22195. height: math.unit(16, "feet"),
  22196. weight: math.unit(500, "lb"),
  22197. name: "Side",
  22198. image: {
  22199. source: "./media/characters/vanguard/side.svg",
  22200. extra: 1022/914,
  22201. bottom: 30/1052
  22202. }
  22203. },
  22204. sideAlt: {
  22205. height: math.unit(10, "feet"),
  22206. weight: math.unit(500, "lb"),
  22207. name: "Side (Alt)",
  22208. image: {
  22209. source: "./media/characters/vanguard/side-alt.svg",
  22210. extra: 502 / 425,
  22211. bottom: 0.087
  22212. }
  22213. },
  22214. },
  22215. [
  22216. {
  22217. name: "Normal",
  22218. height: math.unit(17.71, "feet"),
  22219. default: true
  22220. },
  22221. ]
  22222. ))
  22223. characterMakers.push(() => makeCharacter(
  22224. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22225. {
  22226. front: {
  22227. height: math.unit(7.5, "feet"),
  22228. weight: math.unit(2, "lb"),
  22229. name: "Front",
  22230. image: {
  22231. source: "./media/characters/artemis/work-safe-front.svg",
  22232. extra: 1192 / 1075,
  22233. bottom: 0.07
  22234. },
  22235. form: "work-safe",
  22236. default: true
  22237. },
  22238. frontNsfw: {
  22239. height: math.unit(7.5, "feet"),
  22240. weight: math.unit(2, "lb"),
  22241. name: "Front",
  22242. image: {
  22243. source: "./media/characters/artemis/calibrating-front.svg",
  22244. extra: 1192 / 1075,
  22245. bottom: 0.07
  22246. },
  22247. form: "calibrating",
  22248. default: true
  22249. },
  22250. frontNsfwer: {
  22251. height: math.unit(7.5, "feet"),
  22252. weight: math.unit(2, "lb"),
  22253. name: "Front",
  22254. image: {
  22255. source: "./media/characters/artemis/oversize-load-front.svg",
  22256. extra: 1192 / 1075,
  22257. bottom: 0.07
  22258. },
  22259. form: "oversize-load",
  22260. default: true
  22261. },
  22262. side: {
  22263. height: math.unit(7.5, "feet"),
  22264. weight: math.unit(2, "lb"),
  22265. name: "Side",
  22266. image: {
  22267. source: "./media/characters/artemis/work-safe-side.svg",
  22268. extra: 1192 / 1075,
  22269. bottom: 0.07
  22270. },
  22271. form: "work-safe"
  22272. },
  22273. sideNsfw: {
  22274. height: math.unit(7.5, "feet"),
  22275. weight: math.unit(2, "lb"),
  22276. name: "Side",
  22277. image: {
  22278. source: "./media/characters/artemis/calibrating-side.svg",
  22279. extra: 1192 / 1075,
  22280. bottom: 0.07
  22281. },
  22282. form: "calibrating"
  22283. },
  22284. sideNsfwer: {
  22285. height: math.unit(7.5, "feet"),
  22286. weight: math.unit(2, "lb"),
  22287. name: "Side",
  22288. image: {
  22289. source: "./media/characters/artemis/oversize-load-side.svg",
  22290. extra: 1192 / 1075,
  22291. bottom: 0.07
  22292. },
  22293. form: "oversize-load"
  22294. },
  22295. maw: {
  22296. height: math.unit(1.1, "feet"),
  22297. name: "Maw",
  22298. image: {
  22299. source: "./media/characters/artemis/maw.svg"
  22300. },
  22301. form: "work-safe"
  22302. },
  22303. stomach: {
  22304. height: math.unit(0.95, "feet"),
  22305. name: "Stomach",
  22306. image: {
  22307. source: "./media/characters/artemis/stomach.svg"
  22308. },
  22309. form: "work-safe"
  22310. },
  22311. dickCanine: {
  22312. height: math.unit(1, "feet"),
  22313. name: "Dick (Canine)",
  22314. image: {
  22315. source: "./media/characters/artemis/dick-canine.svg"
  22316. },
  22317. form: "calibrating"
  22318. },
  22319. dickEquine: {
  22320. height: math.unit(0.85, "feet"),
  22321. name: "Dick (Equine)",
  22322. image: {
  22323. source: "./media/characters/artemis/dick-equine.svg"
  22324. },
  22325. form: "calibrating"
  22326. },
  22327. dickExotic: {
  22328. height: math.unit(0.85, "feet"),
  22329. name: "Dick (Exotic)",
  22330. image: {
  22331. source: "./media/characters/artemis/dick-exotic.svg"
  22332. },
  22333. form: "calibrating"
  22334. },
  22335. dickCanineBigger: {
  22336. height: math.unit(1 * 1.33, "feet"),
  22337. name: "Dick (Canine)",
  22338. image: {
  22339. source: "./media/characters/artemis/dick-canine.svg"
  22340. },
  22341. form: "oversize-load"
  22342. },
  22343. dickEquineBigger: {
  22344. height: math.unit(0.85 * 1.33, "feet"),
  22345. name: "Dick (Equine)",
  22346. image: {
  22347. source: "./media/characters/artemis/dick-equine.svg"
  22348. },
  22349. form: "oversize-load"
  22350. },
  22351. dickExoticBigger: {
  22352. height: math.unit(0.85 * 1.33, "feet"),
  22353. name: "Dick (Exotic)",
  22354. image: {
  22355. source: "./media/characters/artemis/dick-exotic.svg"
  22356. },
  22357. form: "oversize-load"
  22358. },
  22359. },
  22360. [
  22361. {
  22362. name: "Normal",
  22363. height: math.unit(7.5, "feet"),
  22364. form: "work-safe",
  22365. default: true
  22366. },
  22367. {
  22368. name: "Normal",
  22369. height: math.unit(7.5, "feet"),
  22370. form: "calibrating",
  22371. default: true
  22372. },
  22373. {
  22374. name: "Normal",
  22375. height: math.unit(7.5, "feet"),
  22376. form: "oversize-load",
  22377. default: true
  22378. },
  22379. {
  22380. name: "Enlarged",
  22381. height: math.unit(12, "feet"),
  22382. form: "work-safe",
  22383. },
  22384. {
  22385. name: "Enlarged",
  22386. height: math.unit(12, "feet"),
  22387. form: "calibrating",
  22388. },
  22389. {
  22390. name: "Enlarged",
  22391. height: math.unit(12, "feet"),
  22392. form: "oversize-load",
  22393. },
  22394. ],
  22395. {
  22396. "work-safe": {
  22397. name: "Work-Safe",
  22398. default: true
  22399. },
  22400. "calibrating": {
  22401. name: "Calibrating"
  22402. },
  22403. "oversize-load": {
  22404. name: "Oversize Load"
  22405. }
  22406. }
  22407. ))
  22408. characterMakers.push(() => makeCharacter(
  22409. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22410. {
  22411. front: {
  22412. height: math.unit(5 + 3 / 12, "feet"),
  22413. weight: math.unit(160, "lb"),
  22414. name: "Front",
  22415. image: {
  22416. source: "./media/characters/kira/front.svg",
  22417. extra: 906 / 786,
  22418. bottom: 0.01
  22419. }
  22420. },
  22421. back: {
  22422. height: math.unit(5 + 3 / 12, "feet"),
  22423. weight: math.unit(160, "lb"),
  22424. name: "Back",
  22425. image: {
  22426. source: "./media/characters/kira/back.svg",
  22427. extra: 882 / 757,
  22428. bottom: 0.005
  22429. }
  22430. },
  22431. frontDressed: {
  22432. height: math.unit(5 + 3 / 12, "feet"),
  22433. weight: math.unit(160, "lb"),
  22434. name: "Front (Dressed)",
  22435. image: {
  22436. source: "./media/characters/kira/front-dressed.svg",
  22437. extra: 906 / 786,
  22438. bottom: 0.01
  22439. }
  22440. },
  22441. beans: {
  22442. height: math.unit(0.92, "feet"),
  22443. name: "Beans",
  22444. image: {
  22445. source: "./media/characters/kira/beans.svg"
  22446. }
  22447. },
  22448. },
  22449. [
  22450. {
  22451. name: "Normal",
  22452. height: math.unit(5 + 3 / 12, "feet"),
  22453. default: true
  22454. },
  22455. ]
  22456. ))
  22457. characterMakers.push(() => makeCharacter(
  22458. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22459. {
  22460. front: {
  22461. height: math.unit(5 + 4 / 12, "feet"),
  22462. weight: math.unit(145, "lb"),
  22463. name: "Front",
  22464. image: {
  22465. source: "./media/characters/scramble/front.svg",
  22466. extra: 763 / 727,
  22467. bottom: 0.05
  22468. }
  22469. },
  22470. back: {
  22471. height: math.unit(5 + 4 / 12, "feet"),
  22472. weight: math.unit(145, "lb"),
  22473. name: "Back",
  22474. image: {
  22475. source: "./media/characters/scramble/back.svg",
  22476. extra: 826 / 737,
  22477. bottom: 0.002
  22478. }
  22479. },
  22480. },
  22481. [
  22482. {
  22483. name: "Normal",
  22484. height: math.unit(5 + 4 / 12, "feet"),
  22485. default: true
  22486. },
  22487. ]
  22488. ))
  22489. characterMakers.push(() => makeCharacter(
  22490. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22491. {
  22492. side: {
  22493. height: math.unit(6 + 2 / 12, "feet"),
  22494. weight: math.unit(190, "lb"),
  22495. name: "Side",
  22496. image: {
  22497. source: "./media/characters/biscuit/side.svg",
  22498. extra: 858 / 791,
  22499. bottom: 0.044
  22500. }
  22501. },
  22502. },
  22503. [
  22504. {
  22505. name: "Normal",
  22506. height: math.unit(6 + 2 / 12, "feet"),
  22507. default: true
  22508. },
  22509. ]
  22510. ))
  22511. characterMakers.push(() => makeCharacter(
  22512. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22513. {
  22514. front: {
  22515. height: math.unit(5 + 2 / 12, "feet"),
  22516. weight: math.unit(120, "lb"),
  22517. name: "Front",
  22518. image: {
  22519. source: "./media/characters/poffin/front.svg",
  22520. extra: 786 / 680,
  22521. bottom: 0.005
  22522. }
  22523. },
  22524. },
  22525. [
  22526. {
  22527. name: "Normal",
  22528. height: math.unit(5 + 2 / 12, "feet"),
  22529. default: true
  22530. },
  22531. ]
  22532. ))
  22533. characterMakers.push(() => makeCharacter(
  22534. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22535. {
  22536. front: {
  22537. height: math.unit(6 + 3 / 12, "feet"),
  22538. weight: math.unit(519, "lb"),
  22539. name: "Front",
  22540. image: {
  22541. source: "./media/characters/dhari/front.svg",
  22542. extra: 1048 / 946,
  22543. bottom: 0.015
  22544. }
  22545. },
  22546. back: {
  22547. height: math.unit(6 + 3 / 12, "feet"),
  22548. weight: math.unit(519, "lb"),
  22549. name: "Back",
  22550. image: {
  22551. source: "./media/characters/dhari/back.svg",
  22552. extra: 1048 / 931,
  22553. bottom: 0.005
  22554. }
  22555. },
  22556. frontDressed: {
  22557. height: math.unit(6 + 3 / 12, "feet"),
  22558. weight: math.unit(519, "lb"),
  22559. name: "Front (Dressed)",
  22560. image: {
  22561. source: "./media/characters/dhari/front-dressed.svg",
  22562. extra: 1713 / 1546,
  22563. bottom: 0.02
  22564. }
  22565. },
  22566. backDressed: {
  22567. height: math.unit(6 + 3 / 12, "feet"),
  22568. weight: math.unit(519, "lb"),
  22569. name: "Back (Dressed)",
  22570. image: {
  22571. source: "./media/characters/dhari/back-dressed.svg",
  22572. extra: 1699 / 1537,
  22573. bottom: 0.01
  22574. }
  22575. },
  22576. maw: {
  22577. height: math.unit(0.95, "feet"),
  22578. name: "Maw",
  22579. image: {
  22580. source: "./media/characters/dhari/maw.svg"
  22581. }
  22582. },
  22583. wereFront: {
  22584. height: math.unit(12 + 8 / 12, "feet"),
  22585. weight: math.unit(4000, "lb"),
  22586. name: "Front (Were)",
  22587. image: {
  22588. source: "./media/characters/dhari/were-front.svg",
  22589. extra: 1065 / 969,
  22590. bottom: 0.015
  22591. }
  22592. },
  22593. wereBack: {
  22594. height: math.unit(12 + 8 / 12, "feet"),
  22595. weight: math.unit(4000, "lb"),
  22596. name: "Back (Were)",
  22597. image: {
  22598. source: "./media/characters/dhari/were-back.svg",
  22599. extra: 1065 / 969,
  22600. bottom: 0.012
  22601. }
  22602. },
  22603. wereMaw: {
  22604. height: math.unit(0.625, "meters"),
  22605. name: "Maw (Were)",
  22606. image: {
  22607. source: "./media/characters/dhari/were-maw.svg"
  22608. }
  22609. },
  22610. },
  22611. [
  22612. {
  22613. name: "Normal",
  22614. height: math.unit(6 + 3 / 12, "feet"),
  22615. default: true
  22616. },
  22617. ]
  22618. ))
  22619. characterMakers.push(() => makeCharacter(
  22620. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22621. {
  22622. anthro: {
  22623. height: math.unit(5 + 7 / 12, "feet"),
  22624. weight: math.unit(175, "lb"),
  22625. name: "Anthro",
  22626. image: {
  22627. source: "./media/characters/rena-dyne/anthro.svg",
  22628. extra: 1849 / 1785,
  22629. bottom: 0.005
  22630. }
  22631. },
  22632. taur: {
  22633. height: math.unit(15 + 6 / 12, "feet"),
  22634. weight: math.unit(8000, "lb"),
  22635. name: "Taur",
  22636. image: {
  22637. source: "./media/characters/rena-dyne/taur.svg",
  22638. extra: 2315 / 2234,
  22639. bottom: 0.033
  22640. }
  22641. },
  22642. },
  22643. [
  22644. {
  22645. name: "Normal",
  22646. height: math.unit(5 + 7 / 12, "feet"),
  22647. default: true
  22648. },
  22649. ]
  22650. ))
  22651. characterMakers.push(() => makeCharacter(
  22652. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22653. {
  22654. front: {
  22655. height: math.unit(8, "feet"),
  22656. weight: math.unit(600, "lb"),
  22657. name: "Front",
  22658. image: {
  22659. source: "./media/characters/weremeep/front.svg",
  22660. extra: 970/849,
  22661. bottom: 7/977
  22662. }
  22663. },
  22664. },
  22665. [
  22666. {
  22667. name: "Normal",
  22668. height: math.unit(8, "feet"),
  22669. default: true
  22670. },
  22671. {
  22672. name: "Lorg",
  22673. height: math.unit(12, "feet")
  22674. },
  22675. {
  22676. name: "Oh Lawd She Comin'",
  22677. height: math.unit(20, "feet")
  22678. },
  22679. ]
  22680. ))
  22681. characterMakers.push(() => makeCharacter(
  22682. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22683. {
  22684. front: {
  22685. height: math.unit(4, "feet"),
  22686. weight: math.unit(90, "lb"),
  22687. name: "Front",
  22688. image: {
  22689. source: "./media/characters/reza/front.svg",
  22690. extra: 1183 / 1111,
  22691. bottom: 0.017
  22692. }
  22693. },
  22694. back: {
  22695. height: math.unit(4, "feet"),
  22696. weight: math.unit(90, "lb"),
  22697. name: "Back",
  22698. image: {
  22699. source: "./media/characters/reza/back.svg",
  22700. extra: 1183 / 1111,
  22701. bottom: 0.01
  22702. }
  22703. },
  22704. drake: {
  22705. height: math.unit(30, "feet"),
  22706. weight: math.unit(246960, "lb"),
  22707. name: "Drake",
  22708. image: {
  22709. source: "./media/characters/reza/drake.svg",
  22710. extra: 2350 / 2024,
  22711. bottom: 60.7 / 2403
  22712. }
  22713. },
  22714. },
  22715. [
  22716. {
  22717. name: "Normal",
  22718. height: math.unit(4, "feet"),
  22719. default: true
  22720. },
  22721. ]
  22722. ))
  22723. characterMakers.push(() => makeCharacter(
  22724. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22725. {
  22726. side: {
  22727. height: math.unit(15, "feet"),
  22728. weight: math.unit(14, "tons"),
  22729. name: "Side",
  22730. image: {
  22731. source: "./media/characters/athea/side.svg",
  22732. extra: 960 / 540,
  22733. bottom: 0.003
  22734. }
  22735. },
  22736. sitting: {
  22737. height: math.unit(6 * 2.85, "feet"),
  22738. weight: math.unit(14, "tons"),
  22739. name: "Sitting",
  22740. image: {
  22741. source: "./media/characters/athea/sitting.svg",
  22742. extra: 621 / 581,
  22743. bottom: 0.075
  22744. }
  22745. },
  22746. maw: {
  22747. height: math.unit(7.59498031496063, "feet"),
  22748. name: "Maw",
  22749. image: {
  22750. source: "./media/characters/athea/maw.svg"
  22751. }
  22752. },
  22753. },
  22754. [
  22755. {
  22756. name: "Lap Cat",
  22757. height: math.unit(2.5, "feet")
  22758. },
  22759. {
  22760. name: "Minimacro",
  22761. height: math.unit(15, "feet"),
  22762. default: true
  22763. },
  22764. {
  22765. name: "Macro",
  22766. height: math.unit(120, "feet")
  22767. },
  22768. {
  22769. name: "Macro+",
  22770. height: math.unit(640, "feet")
  22771. },
  22772. {
  22773. name: "Colossus",
  22774. height: math.unit(2.2, "miles")
  22775. },
  22776. ]
  22777. ))
  22778. characterMakers.push(() => makeCharacter(
  22779. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22780. {
  22781. front: {
  22782. height: math.unit(8 + 8 / 12, "feet"),
  22783. weight: math.unit(130, "kg"),
  22784. name: "Front",
  22785. image: {
  22786. source: "./media/characters/seroko/front.svg",
  22787. extra: 1385 / 1280,
  22788. bottom: 0.025
  22789. }
  22790. },
  22791. back: {
  22792. height: math.unit(8 + 8 / 12, "feet"),
  22793. weight: math.unit(130, "kg"),
  22794. name: "Back",
  22795. image: {
  22796. source: "./media/characters/seroko/back.svg",
  22797. extra: 1369 / 1238,
  22798. bottom: 0.018
  22799. }
  22800. },
  22801. frontDressed: {
  22802. height: math.unit(8 + 8 / 12, "feet"),
  22803. weight: math.unit(130, "kg"),
  22804. name: "Front (Dressed)",
  22805. image: {
  22806. source: "./media/characters/seroko/front-dressed.svg",
  22807. extra: 1366 / 1275,
  22808. bottom: 0.03
  22809. }
  22810. },
  22811. },
  22812. [
  22813. {
  22814. name: "Normal",
  22815. height: math.unit(8 + 8 / 12, "feet"),
  22816. default: true
  22817. },
  22818. ]
  22819. ))
  22820. characterMakers.push(() => makeCharacter(
  22821. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22822. {
  22823. front: {
  22824. height: math.unit(5.5, "feet"),
  22825. weight: math.unit(160, "lb"),
  22826. name: "Front",
  22827. image: {
  22828. source: "./media/characters/quatzi/front.svg",
  22829. extra: 2346 / 2242,
  22830. bottom: 0.015
  22831. }
  22832. },
  22833. },
  22834. [
  22835. {
  22836. name: "Normal",
  22837. height: math.unit(5.5, "feet"),
  22838. default: true
  22839. },
  22840. {
  22841. name: "Big",
  22842. height: math.unit(7.7, "feet")
  22843. },
  22844. ]
  22845. ))
  22846. characterMakers.push(() => makeCharacter(
  22847. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22848. {
  22849. front: {
  22850. height: math.unit(5 + 11 / 12, "feet"),
  22851. weight: math.unit(180, "lb"),
  22852. name: "Front",
  22853. image: {
  22854. source: "./media/characters/sen/front.svg",
  22855. extra: 1321 / 1254,
  22856. bottom: 0.015
  22857. }
  22858. },
  22859. side: {
  22860. height: math.unit(5 + 11 / 12, "feet"),
  22861. weight: math.unit(180, "lb"),
  22862. name: "Side",
  22863. image: {
  22864. source: "./media/characters/sen/side.svg",
  22865. extra: 1321 / 1254,
  22866. bottom: 0.007
  22867. }
  22868. },
  22869. back: {
  22870. height: math.unit(5 + 11 / 12, "feet"),
  22871. weight: math.unit(180, "lb"),
  22872. name: "Back",
  22873. image: {
  22874. source: "./media/characters/sen/back.svg",
  22875. extra: 1321 / 1254
  22876. }
  22877. },
  22878. },
  22879. [
  22880. {
  22881. name: "Normal",
  22882. height: math.unit(5 + 11 / 12, "feet"),
  22883. default: true
  22884. },
  22885. ]
  22886. ))
  22887. characterMakers.push(() => makeCharacter(
  22888. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22889. {
  22890. front: {
  22891. height: math.unit(166.6, "cm"),
  22892. weight: math.unit(66.6, "kg"),
  22893. name: "Front",
  22894. image: {
  22895. source: "./media/characters/fruity/front.svg",
  22896. extra: 1510 / 1386,
  22897. bottom: 0.04
  22898. }
  22899. },
  22900. back: {
  22901. height: math.unit(166.6, "cm"),
  22902. weight: math.unit(66.6, "lb"),
  22903. name: "Back",
  22904. image: {
  22905. source: "./media/characters/fruity/back.svg",
  22906. extra: 1563 / 1435,
  22907. bottom: 0.005
  22908. }
  22909. },
  22910. },
  22911. [
  22912. {
  22913. name: "Normal",
  22914. height: math.unit(166.6, "cm"),
  22915. default: true
  22916. },
  22917. {
  22918. name: "Demonic",
  22919. height: math.unit(166.6, "feet")
  22920. },
  22921. ]
  22922. ))
  22923. characterMakers.push(() => makeCharacter(
  22924. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22925. {
  22926. side: {
  22927. height: math.unit(10, "feet"),
  22928. weight: math.unit(500, "lb"),
  22929. name: "Side",
  22930. image: {
  22931. source: "./media/characters/zost/side.svg",
  22932. extra: 2870/2533,
  22933. bottom: 252/3122
  22934. }
  22935. },
  22936. mawFront: {
  22937. height: math.unit(1.08, "meters"),
  22938. name: "Maw (Front)",
  22939. image: {
  22940. source: "./media/characters/zost/maw-front.svg"
  22941. }
  22942. },
  22943. mawSide: {
  22944. height: math.unit(2.66, "feet"),
  22945. name: "Maw (Side)",
  22946. image: {
  22947. source: "./media/characters/zost/maw-side.svg"
  22948. }
  22949. },
  22950. wingspan: {
  22951. height: math.unit(7.4, "feet"),
  22952. name: "Wingspan",
  22953. image: {
  22954. source: "./media/characters/zost/wingspan.svg"
  22955. }
  22956. },
  22957. },
  22958. [
  22959. {
  22960. name: "Normal",
  22961. height: math.unit(10, "feet"),
  22962. default: true
  22963. },
  22964. ]
  22965. ))
  22966. characterMakers.push(() => makeCharacter(
  22967. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22968. {
  22969. front: {
  22970. height: math.unit(5 + 4 / 12, "feet"),
  22971. weight: math.unit(120, "lb"),
  22972. name: "Front",
  22973. image: {
  22974. source: "./media/characters/luci/front.svg",
  22975. extra: 1985 / 1884,
  22976. bottom: 0.04
  22977. }
  22978. },
  22979. back: {
  22980. height: math.unit(5 + 4 / 12, "feet"),
  22981. weight: math.unit(120, "lb"),
  22982. name: "Back",
  22983. image: {
  22984. source: "./media/characters/luci/back.svg",
  22985. extra: 1892 / 1791,
  22986. bottom: 0.002
  22987. }
  22988. },
  22989. },
  22990. [
  22991. {
  22992. name: "Normal",
  22993. height: math.unit(5 + 4 / 12, "feet"),
  22994. default: true
  22995. },
  22996. ]
  22997. ))
  22998. characterMakers.push(() => makeCharacter(
  22999. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23000. {
  23001. front: {
  23002. height: math.unit(1500, "feet"),
  23003. weight: math.unit(3.8e6, "tons"),
  23004. name: "Front",
  23005. image: {
  23006. source: "./media/characters/2th/front.svg",
  23007. extra: 3489 / 3350,
  23008. bottom: 0.1
  23009. }
  23010. },
  23011. foot: {
  23012. height: math.unit(461, "feet"),
  23013. name: "Foot",
  23014. image: {
  23015. source: "./media/characters/2th/foot.svg"
  23016. }
  23017. },
  23018. },
  23019. [
  23020. {
  23021. name: "\"Micro\"",
  23022. height: math.unit(15 + 7 / 12, "feet")
  23023. },
  23024. {
  23025. name: "Normal",
  23026. height: math.unit(1500, "feet"),
  23027. default: true
  23028. },
  23029. {
  23030. name: "Macro",
  23031. height: math.unit(5000, "feet")
  23032. },
  23033. {
  23034. name: "Megamacro",
  23035. height: math.unit(15, "miles")
  23036. },
  23037. {
  23038. name: "Gigamacro",
  23039. height: math.unit(4000, "miles")
  23040. },
  23041. {
  23042. name: "Galactic",
  23043. height: math.unit(50, "AU")
  23044. },
  23045. ]
  23046. ))
  23047. characterMakers.push(() => makeCharacter(
  23048. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23049. {
  23050. front: {
  23051. height: math.unit(5 + 6 / 12, "feet"),
  23052. weight: math.unit(220, "lb"),
  23053. name: "Front",
  23054. image: {
  23055. source: "./media/characters/amethyst/front.svg",
  23056. extra: 2078 / 2040,
  23057. bottom: 0.045
  23058. }
  23059. },
  23060. back: {
  23061. height: math.unit(5 + 6 / 12, "feet"),
  23062. weight: math.unit(220, "lb"),
  23063. name: "Back",
  23064. image: {
  23065. source: "./media/characters/amethyst/back.svg",
  23066. extra: 2021 / 1989,
  23067. bottom: 0.02
  23068. }
  23069. },
  23070. },
  23071. [
  23072. {
  23073. name: "Normal",
  23074. height: math.unit(5 + 6 / 12, "feet"),
  23075. default: true
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23081. {
  23082. front: {
  23083. height: math.unit(4 + 11 / 12, "feet"),
  23084. weight: math.unit(120, "lb"),
  23085. name: "Front",
  23086. image: {
  23087. source: "./media/characters/yumi-akiyama/front.svg",
  23088. extra: 1327 / 1235,
  23089. bottom: 0.02
  23090. }
  23091. },
  23092. back: {
  23093. height: math.unit(4 + 11 / 12, "feet"),
  23094. weight: math.unit(120, "lb"),
  23095. name: "Back",
  23096. image: {
  23097. source: "./media/characters/yumi-akiyama/back.svg",
  23098. extra: 1287 / 1245,
  23099. bottom: 0.002
  23100. }
  23101. },
  23102. },
  23103. [
  23104. {
  23105. name: "Galactic",
  23106. height: math.unit(50, "galaxies"),
  23107. default: true
  23108. },
  23109. {
  23110. name: "Universal",
  23111. height: math.unit(100, "universes")
  23112. },
  23113. ]
  23114. ))
  23115. characterMakers.push(() => makeCharacter(
  23116. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23117. {
  23118. front: {
  23119. height: math.unit(8, "feet"),
  23120. weight: math.unit(500, "lb"),
  23121. name: "Front",
  23122. image: {
  23123. source: "./media/characters/rifter-yrmori/front.svg",
  23124. extra: 1180 / 1125,
  23125. bottom: 0.02
  23126. }
  23127. },
  23128. back: {
  23129. height: math.unit(8, "feet"),
  23130. weight: math.unit(500, "lb"),
  23131. name: "Back",
  23132. image: {
  23133. source: "./media/characters/rifter-yrmori/back.svg",
  23134. extra: 1190 / 1145,
  23135. bottom: 0.001
  23136. }
  23137. },
  23138. wings: {
  23139. height: math.unit(7.75, "feet"),
  23140. weight: math.unit(500, "lb"),
  23141. name: "Wings",
  23142. image: {
  23143. source: "./media/characters/rifter-yrmori/wings.svg",
  23144. extra: 1357 / 1285
  23145. }
  23146. },
  23147. maw: {
  23148. height: math.unit(0.8, "feet"),
  23149. name: "Maw",
  23150. image: {
  23151. source: "./media/characters/rifter-yrmori/maw.svg"
  23152. }
  23153. },
  23154. mawfront: {
  23155. height: math.unit(1.45, "feet"),
  23156. name: "Maw (Front)",
  23157. image: {
  23158. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23159. }
  23160. },
  23161. },
  23162. [
  23163. {
  23164. name: "Normal",
  23165. height: math.unit(8, "feet"),
  23166. default: true
  23167. },
  23168. {
  23169. name: "Macro",
  23170. height: math.unit(42, "meters")
  23171. },
  23172. ]
  23173. ))
  23174. characterMakers.push(() => makeCharacter(
  23175. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23176. {
  23177. were: {
  23178. height: math.unit(25 + 6 / 12, "feet"),
  23179. weight: math.unit(10000, "lb"),
  23180. name: "Were",
  23181. image: {
  23182. source: "./media/characters/tahajin/were.svg",
  23183. extra: 801 / 770,
  23184. bottom: 0.042
  23185. }
  23186. },
  23187. aquatic: {
  23188. height: math.unit(6 + 4 / 12, "feet"),
  23189. weight: math.unit(160, "lb"),
  23190. name: "Aquatic",
  23191. image: {
  23192. source: "./media/characters/tahajin/aquatic.svg",
  23193. extra: 572 / 542,
  23194. bottom: 0.04
  23195. }
  23196. },
  23197. chow: {
  23198. height: math.unit(8 + 11 / 12, "feet"),
  23199. weight: math.unit(450, "lb"),
  23200. name: "Chow",
  23201. image: {
  23202. source: "./media/characters/tahajin/chow.svg",
  23203. extra: 660 / 640,
  23204. bottom: 0.015
  23205. }
  23206. },
  23207. demiNaga: {
  23208. height: math.unit(6 + 8 / 12, "feet"),
  23209. weight: math.unit(300, "lb"),
  23210. name: "Demi Naga",
  23211. image: {
  23212. source: "./media/characters/tahajin/demi-naga.svg",
  23213. extra: 643 / 615,
  23214. bottom: 0.1
  23215. }
  23216. },
  23217. data: {
  23218. height: math.unit(5, "inches"),
  23219. weight: math.unit(0.1, "lb"),
  23220. name: "Data",
  23221. image: {
  23222. source: "./media/characters/tahajin/data.svg"
  23223. }
  23224. },
  23225. fluu: {
  23226. height: math.unit(5 + 7 / 12, "feet"),
  23227. weight: math.unit(140, "lb"),
  23228. name: "Fluu",
  23229. image: {
  23230. source: "./media/characters/tahajin/fluu.svg",
  23231. extra: 628 / 592,
  23232. bottom: 0.02
  23233. }
  23234. },
  23235. starWarrior: {
  23236. height: math.unit(4 + 5 / 12, "feet"),
  23237. weight: math.unit(50, "lb"),
  23238. name: "Star Warrior",
  23239. image: {
  23240. source: "./media/characters/tahajin/star-warrior.svg"
  23241. }
  23242. },
  23243. },
  23244. [
  23245. {
  23246. name: "Normal",
  23247. height: math.unit(25 + 6 / 12, "feet"),
  23248. default: true
  23249. },
  23250. ]
  23251. ))
  23252. characterMakers.push(() => makeCharacter(
  23253. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23254. {
  23255. front: {
  23256. height: math.unit(8, "feet"),
  23257. weight: math.unit(350, "lb"),
  23258. name: "Front",
  23259. image: {
  23260. source: "./media/characters/gabira/front.svg",
  23261. extra: 1261/1154,
  23262. bottom: 51/1312
  23263. }
  23264. },
  23265. back: {
  23266. height: math.unit(8, "feet"),
  23267. weight: math.unit(350, "lb"),
  23268. name: "Back",
  23269. image: {
  23270. source: "./media/characters/gabira/back.svg",
  23271. extra: 1265/1163,
  23272. bottom: 46/1311
  23273. }
  23274. },
  23275. head: {
  23276. height: math.unit(2.85, "feet"),
  23277. name: "Head",
  23278. image: {
  23279. source: "./media/characters/gabira/head.svg"
  23280. }
  23281. },
  23282. },
  23283. [
  23284. {
  23285. name: "Normal",
  23286. height: math.unit(8, "feet"),
  23287. default: true
  23288. },
  23289. ]
  23290. ))
  23291. characterMakers.push(() => makeCharacter(
  23292. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23293. {
  23294. front: {
  23295. height: math.unit(5 + 3 / 12, "feet"),
  23296. weight: math.unit(137, "lb"),
  23297. name: "Front",
  23298. image: {
  23299. source: "./media/characters/sasha-katraine/front.svg",
  23300. extra: 1745/1694,
  23301. bottom: 37/1782
  23302. }
  23303. },
  23304. back: {
  23305. height: math.unit(5 + 3 / 12, "feet"),
  23306. weight: math.unit(137, "lb"),
  23307. name: "Back",
  23308. image: {
  23309. source: "./media/characters/sasha-katraine/back.svg",
  23310. extra: 1776/1699,
  23311. bottom: 26/1802
  23312. }
  23313. },
  23314. },
  23315. [
  23316. {
  23317. name: "Micro",
  23318. height: math.unit(5, "inches")
  23319. },
  23320. {
  23321. name: "Normal",
  23322. height: math.unit(5 + 3 / 12, "feet"),
  23323. default: true
  23324. },
  23325. ]
  23326. ))
  23327. characterMakers.push(() => makeCharacter(
  23328. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23329. {
  23330. side: {
  23331. height: math.unit(4, "inches"),
  23332. weight: math.unit(200, "grams"),
  23333. name: "Side",
  23334. image: {
  23335. source: "./media/characters/der/side.svg",
  23336. extra: 719 / 400,
  23337. bottom: 30.6 / 749.9187
  23338. }
  23339. },
  23340. },
  23341. [
  23342. {
  23343. name: "Micro",
  23344. height: math.unit(4, "inches"),
  23345. default: true
  23346. },
  23347. ]
  23348. ))
  23349. characterMakers.push(() => makeCharacter(
  23350. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23351. {
  23352. side: {
  23353. height: math.unit(30, "meters"),
  23354. weight: math.unit(700, "tonnes"),
  23355. name: "Side",
  23356. image: {
  23357. source: "./media/characters/fixerdragon/side.svg",
  23358. extra: (1293.0514 - 116.03) / 1106.86,
  23359. bottom: 116.03 / 1293.0514
  23360. }
  23361. },
  23362. },
  23363. [
  23364. {
  23365. name: "Planck",
  23366. height: math.unit(1.6e-35, "meters")
  23367. },
  23368. {
  23369. name: "Micro",
  23370. height: math.unit(0.4, "meters")
  23371. },
  23372. {
  23373. name: "Normal",
  23374. height: math.unit(30, "meters"),
  23375. default: true
  23376. },
  23377. {
  23378. name: "Megamacro",
  23379. height: math.unit(1.2, "megameters")
  23380. },
  23381. {
  23382. name: "Teramacro",
  23383. height: math.unit(130, "terameters")
  23384. },
  23385. {
  23386. name: "Yottamacro",
  23387. height: math.unit(6200, "yottameters")
  23388. },
  23389. ]
  23390. ));
  23391. characterMakers.push(() => makeCharacter(
  23392. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23393. {
  23394. front: {
  23395. height: math.unit(8, "feet"),
  23396. weight: math.unit(250, "lb"),
  23397. name: "Front",
  23398. image: {
  23399. source: "./media/characters/kite/front.svg",
  23400. extra: 2796 / 2659,
  23401. bottom: 0.002
  23402. }
  23403. },
  23404. },
  23405. [
  23406. {
  23407. name: "Normal",
  23408. height: math.unit(8, "feet"),
  23409. default: true
  23410. },
  23411. {
  23412. name: "Macro",
  23413. height: math.unit(360, "feet")
  23414. },
  23415. {
  23416. name: "Megamacro",
  23417. height: math.unit(1500, "feet")
  23418. },
  23419. ]
  23420. ))
  23421. characterMakers.push(() => makeCharacter(
  23422. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23423. {
  23424. front: {
  23425. height: math.unit(5 + 11/12, "feet"),
  23426. weight: math.unit(170, "lb"),
  23427. name: "Front",
  23428. image: {
  23429. source: "./media/characters/poojawa-vynar/front.svg",
  23430. extra: 1735/1585,
  23431. bottom: 96/1831
  23432. }
  23433. },
  23434. back: {
  23435. height: math.unit(5 + 11/12, "feet"),
  23436. weight: math.unit(170, "lb"),
  23437. name: "Back",
  23438. image: {
  23439. source: "./media/characters/poojawa-vynar/back.svg",
  23440. extra: 1749/1607,
  23441. bottom: 28/1777
  23442. }
  23443. },
  23444. male: {
  23445. height: math.unit(5 + 11/12, "feet"),
  23446. weight: math.unit(170, "lb"),
  23447. name: "Male",
  23448. image: {
  23449. source: "./media/characters/poojawa-vynar/male.svg",
  23450. extra: 1855/1713,
  23451. bottom: 63/1918
  23452. }
  23453. },
  23454. taur: {
  23455. height: math.unit(5 + 11/12, "feet"),
  23456. weight: math.unit(170, "lb"),
  23457. name: "Taur",
  23458. image: {
  23459. source: "./media/characters/poojawa-vynar/taur.svg",
  23460. extra: 1151/1059,
  23461. bottom: 356/1507
  23462. }
  23463. },
  23464. frontDressed: {
  23465. height: math.unit(5 + 11/12, "feet"),
  23466. weight: math.unit(170, "lb"),
  23467. name: "Front (Dressed)",
  23468. image: {
  23469. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23470. extra: 1735/1585,
  23471. bottom: 96/1831
  23472. }
  23473. },
  23474. backDressed: {
  23475. height: math.unit(5 + 11/12, "feet"),
  23476. weight: math.unit(170, "lb"),
  23477. name: "Back (Dressed)",
  23478. image: {
  23479. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23480. extra: 1749/1607,
  23481. bottom: 28/1777
  23482. }
  23483. },
  23484. maleDressed: {
  23485. height: math.unit(5 + 11/12, "feet"),
  23486. weight: math.unit(170, "lb"),
  23487. name: "Male (Dressed)",
  23488. image: {
  23489. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23490. extra: 1855/1713,
  23491. bottom: 63/1918
  23492. }
  23493. },
  23494. taurDressed: {
  23495. height: math.unit(5 + 11/12, "feet"),
  23496. weight: math.unit(170, "lb"),
  23497. name: "Taur (Dressed)",
  23498. image: {
  23499. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23500. extra: 1151/1059,
  23501. bottom: 356/1507
  23502. }
  23503. },
  23504. maw: {
  23505. height: math.unit(1.46, "feet"),
  23506. name: "Maw",
  23507. image: {
  23508. source: "./media/characters/poojawa-vynar/maw.svg"
  23509. }
  23510. },
  23511. head: {
  23512. height: math.unit(2.34, "feet"),
  23513. name: "Head",
  23514. image: {
  23515. source: "./media/characters/poojawa-vynar/head.svg"
  23516. }
  23517. },
  23518. paw: {
  23519. height: math.unit(1.61, "feet"),
  23520. name: "Paw",
  23521. image: {
  23522. source: "./media/characters/poojawa-vynar/paw.svg"
  23523. }
  23524. },
  23525. pawToering: {
  23526. height: math.unit(1.72, "feet"),
  23527. name: "Paw (Toering)",
  23528. image: {
  23529. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23530. }
  23531. },
  23532. toering: {
  23533. height: math.unit(2.9, "inches"),
  23534. name: "Toering",
  23535. image: {
  23536. source: "./media/characters/poojawa-vynar/toering.svg"
  23537. }
  23538. },
  23539. shaft: {
  23540. height: math.unit(0.625, "feet"),
  23541. name: "Shaft",
  23542. image: {
  23543. source: "./media/characters/poojawa-vynar/shaft.svg"
  23544. }
  23545. },
  23546. spade: {
  23547. height: math.unit(0.42, "feet"),
  23548. name: "Spade",
  23549. image: {
  23550. source: "./media/characters/poojawa-vynar/spade.svg"
  23551. }
  23552. },
  23553. },
  23554. [
  23555. {
  23556. name: "Shortstack",
  23557. height: math.unit(4, "feet")
  23558. },
  23559. {
  23560. name: "Normal",
  23561. height: math.unit(5 + 11 / 12, "feet"),
  23562. default: true
  23563. },
  23564. {
  23565. name: "Tauric",
  23566. height: math.unit(4, "meters")
  23567. },
  23568. ]
  23569. ))
  23570. characterMakers.push(() => makeCharacter(
  23571. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23572. {
  23573. front: {
  23574. height: math.unit(293, "meters"),
  23575. weight: math.unit(70400, "tons"),
  23576. name: "Front",
  23577. image: {
  23578. source: "./media/characters/violette/front.svg",
  23579. extra: 1227 / 1180,
  23580. bottom: 0.005
  23581. }
  23582. },
  23583. back: {
  23584. height: math.unit(293, "meters"),
  23585. weight: math.unit(70400, "tons"),
  23586. name: "Back",
  23587. image: {
  23588. source: "./media/characters/violette/back.svg",
  23589. extra: 1227 / 1180,
  23590. bottom: 0.005
  23591. }
  23592. },
  23593. },
  23594. [
  23595. {
  23596. name: "Macro",
  23597. height: math.unit(293, "meters"),
  23598. default: true
  23599. },
  23600. ]
  23601. ))
  23602. characterMakers.push(() => makeCharacter(
  23603. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23604. {
  23605. front: {
  23606. height: math.unit(1050, "feet"),
  23607. weight: math.unit(200000, "tons"),
  23608. name: "Front",
  23609. image: {
  23610. source: "./media/characters/alessandra/front.svg",
  23611. extra: 960 / 912,
  23612. bottom: 0.06
  23613. }
  23614. },
  23615. },
  23616. [
  23617. {
  23618. name: "Macro",
  23619. height: math.unit(1050, "feet")
  23620. },
  23621. {
  23622. name: "Macro+",
  23623. height: math.unit(900, "meters"),
  23624. default: true
  23625. },
  23626. ]
  23627. ))
  23628. characterMakers.push(() => makeCharacter(
  23629. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23630. {
  23631. front: {
  23632. height: math.unit(5, "feet"),
  23633. weight: math.unit(187, "lb"),
  23634. name: "Front",
  23635. image: {
  23636. source: "./media/characters/person/front.svg",
  23637. extra: 3087 / 2945,
  23638. bottom: 91 / 3181
  23639. }
  23640. },
  23641. },
  23642. [
  23643. {
  23644. name: "Micro",
  23645. height: math.unit(3, "inches")
  23646. },
  23647. {
  23648. name: "Normal",
  23649. height: math.unit(5, "feet"),
  23650. default: true
  23651. },
  23652. {
  23653. name: "Macro",
  23654. height: math.unit(90, "feet")
  23655. },
  23656. {
  23657. name: "Max Size",
  23658. height: math.unit(280, "feet")
  23659. },
  23660. ]
  23661. ))
  23662. characterMakers.push(() => makeCharacter(
  23663. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23664. {
  23665. front: {
  23666. height: math.unit(4.5, "meters"),
  23667. weight: math.unit(3200, "lb"),
  23668. name: "Front",
  23669. image: {
  23670. source: "./media/characters/ty/front.svg",
  23671. extra: 1038 / 960,
  23672. bottom: 31.156 / 1068
  23673. }
  23674. },
  23675. back: {
  23676. height: math.unit(4.5, "meters"),
  23677. weight: math.unit(3200, "lb"),
  23678. name: "Back",
  23679. image: {
  23680. source: "./media/characters/ty/back.svg",
  23681. extra: 1044 / 966,
  23682. bottom: 7.48 / 1049
  23683. }
  23684. },
  23685. },
  23686. [
  23687. {
  23688. name: "Normal",
  23689. height: math.unit(4.5, "meters"),
  23690. default: true
  23691. },
  23692. ]
  23693. ))
  23694. characterMakers.push(() => makeCharacter(
  23695. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23696. {
  23697. front: {
  23698. height: math.unit(5 + 4 / 12, "feet"),
  23699. weight: math.unit(115, "lb"),
  23700. name: "Front",
  23701. image: {
  23702. source: "./media/characters/rocky/front.svg",
  23703. extra: 1012 / 975,
  23704. bottom: 54 / 1066
  23705. }
  23706. },
  23707. },
  23708. [
  23709. {
  23710. name: "Normal",
  23711. height: math.unit(5 + 4 / 12, "feet"),
  23712. default: true
  23713. },
  23714. ]
  23715. ))
  23716. characterMakers.push(() => makeCharacter(
  23717. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23718. {
  23719. upright: {
  23720. height: math.unit(6, "meters"),
  23721. weight: math.unit(4000, "kg"),
  23722. name: "Upright",
  23723. image: {
  23724. source: "./media/characters/ruin/upright.svg",
  23725. extra: 668 / 661,
  23726. bottom: 42 / 799.8396
  23727. }
  23728. },
  23729. },
  23730. [
  23731. {
  23732. name: "Normal",
  23733. height: math.unit(6, "meters"),
  23734. default: true
  23735. },
  23736. ]
  23737. ))
  23738. characterMakers.push(() => makeCharacter(
  23739. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23740. {
  23741. front: {
  23742. height: math.unit(5, "feet"),
  23743. weight: math.unit(106, "lb"),
  23744. name: "Front",
  23745. image: {
  23746. source: "./media/characters/robin/front.svg",
  23747. extra: 862 / 799,
  23748. bottom: 42.4 / 914.8856
  23749. }
  23750. },
  23751. },
  23752. [
  23753. {
  23754. name: "Normal",
  23755. height: math.unit(5, "feet"),
  23756. default: true
  23757. },
  23758. ]
  23759. ))
  23760. characterMakers.push(() => makeCharacter(
  23761. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23762. {
  23763. side: {
  23764. height: math.unit(3, "feet"),
  23765. weight: math.unit(225, "lb"),
  23766. name: "Side",
  23767. image: {
  23768. source: "./media/characters/saian/side.svg",
  23769. extra: 566 / 356,
  23770. bottom: 79.7 / 643
  23771. }
  23772. },
  23773. maw: {
  23774. height: math.unit(2.85, "feet"),
  23775. name: "Maw",
  23776. image: {
  23777. source: "./media/characters/saian/maw.svg"
  23778. }
  23779. },
  23780. },
  23781. [
  23782. {
  23783. name: "Normal",
  23784. height: math.unit(3, "feet"),
  23785. default: true
  23786. },
  23787. ]
  23788. ))
  23789. characterMakers.push(() => makeCharacter(
  23790. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23791. {
  23792. side: {
  23793. height: math.unit(8, "feet"),
  23794. weight: math.unit(300, "lb"),
  23795. name: "Side",
  23796. image: {
  23797. source: "./media/characters/equus-silvermane/side.svg",
  23798. extra: 2176 / 2050,
  23799. bottom: 65.7 / 2245
  23800. }
  23801. },
  23802. front: {
  23803. height: math.unit(8, "feet"),
  23804. weight: math.unit(300, "lb"),
  23805. name: "Front",
  23806. image: {
  23807. source: "./media/characters/equus-silvermane/front.svg",
  23808. extra: 4633 / 4400,
  23809. bottom: 71.3 / 4706.915
  23810. }
  23811. },
  23812. sideStepping: {
  23813. height: math.unit(8, "feet"),
  23814. weight: math.unit(300, "lb"),
  23815. name: "Side (Stepping)",
  23816. image: {
  23817. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23818. extra: 1968 / 1860,
  23819. bottom: 16.4 / 1989
  23820. }
  23821. },
  23822. },
  23823. [
  23824. {
  23825. name: "Normal",
  23826. height: math.unit(8, "feet")
  23827. },
  23828. {
  23829. name: "Minimacro",
  23830. height: math.unit(75, "feet"),
  23831. default: true
  23832. },
  23833. {
  23834. name: "Macro",
  23835. height: math.unit(150, "feet")
  23836. },
  23837. {
  23838. name: "Macro+",
  23839. height: math.unit(1000, "feet")
  23840. },
  23841. {
  23842. name: "Megamacro",
  23843. height: math.unit(1, "mile")
  23844. },
  23845. ]
  23846. ))
  23847. characterMakers.push(() => makeCharacter(
  23848. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23849. {
  23850. side: {
  23851. height: math.unit(20, "feet"),
  23852. weight: math.unit(30000, "kg"),
  23853. name: "Side",
  23854. image: {
  23855. source: "./media/characters/windar/side.svg",
  23856. extra: 1491 / 1248,
  23857. bottom: 82.56 / 1568
  23858. }
  23859. },
  23860. },
  23861. [
  23862. {
  23863. name: "Normal",
  23864. height: math.unit(20, "feet"),
  23865. default: true
  23866. },
  23867. ]
  23868. ))
  23869. characterMakers.push(() => makeCharacter(
  23870. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23871. {
  23872. side: {
  23873. height: math.unit(15.66, "feet"),
  23874. weight: math.unit(150, "lb"),
  23875. name: "Side",
  23876. image: {
  23877. source: "./media/characters/melody/side.svg",
  23878. extra: 1097 / 944,
  23879. bottom: 11.8 / 1109
  23880. }
  23881. },
  23882. sideOutfit: {
  23883. height: math.unit(15.66, "feet"),
  23884. weight: math.unit(150, "lb"),
  23885. name: "Side (Outfit)",
  23886. image: {
  23887. source: "./media/characters/melody/side-outfit.svg",
  23888. extra: 1097 / 944,
  23889. bottom: 11.8 / 1109
  23890. }
  23891. },
  23892. },
  23893. [
  23894. {
  23895. name: "Normal",
  23896. height: math.unit(15.66, "feet"),
  23897. default: true
  23898. },
  23899. ]
  23900. ))
  23901. characterMakers.push(() => makeCharacter(
  23902. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23903. {
  23904. armoredFront: {
  23905. height: math.unit(8, "feet"),
  23906. weight: math.unit(325, "lb"),
  23907. name: "Front",
  23908. image: {
  23909. source: "./media/characters/windera/armored-front.svg",
  23910. extra: 1830/1598,
  23911. bottom: 151/1981
  23912. },
  23913. form: "armored",
  23914. default: true
  23915. },
  23916. macroFront: {
  23917. height: math.unit(70, "feet"),
  23918. weight: math.unit(315453, "lb"),
  23919. name: "Front",
  23920. image: {
  23921. source: "./media/characters/windera/macro-front.svg",
  23922. extra: 963/883,
  23923. bottom: 23/986
  23924. },
  23925. form: "macro",
  23926. default: true
  23927. },
  23928. },
  23929. [
  23930. {
  23931. name: "Normal",
  23932. height: math.unit(8, "feet"),
  23933. default: true,
  23934. form: "armored"
  23935. },
  23936. {
  23937. name: "Normal",
  23938. height: math.unit(70, "feet"),
  23939. default: true,
  23940. form: "macro"
  23941. },
  23942. ],
  23943. {
  23944. "armored": {
  23945. name: "Armored",
  23946. default: true
  23947. },
  23948. "macro": {
  23949. name: "Macro",
  23950. },
  23951. }
  23952. ))
  23953. characterMakers.push(() => makeCharacter(
  23954. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23955. {
  23956. front: {
  23957. height: math.unit(28.75, "feet"),
  23958. weight: math.unit(2000, "kg"),
  23959. name: "Front",
  23960. image: {
  23961. source: "./media/characters/sonear/front.svg",
  23962. extra: 1041.1 / 964.9,
  23963. bottom: 53.7 / 1096.6
  23964. }
  23965. },
  23966. },
  23967. [
  23968. {
  23969. name: "Normal",
  23970. height: math.unit(28.75, "feet"),
  23971. default: true
  23972. },
  23973. ]
  23974. ))
  23975. characterMakers.push(() => makeCharacter(
  23976. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23977. {
  23978. side: {
  23979. height: math.unit(25.5, "feet"),
  23980. weight: math.unit(23000, "kg"),
  23981. name: "Side",
  23982. image: {
  23983. source: "./media/characters/kanara/side.svg"
  23984. }
  23985. },
  23986. },
  23987. [
  23988. {
  23989. name: "Normal",
  23990. height: math.unit(25.5, "feet"),
  23991. default: true
  23992. },
  23993. ]
  23994. ))
  23995. characterMakers.push(() => makeCharacter(
  23996. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23997. {
  23998. side: {
  23999. height: math.unit(10, "feet"),
  24000. weight: math.unit(1000, "kg"),
  24001. name: "Side",
  24002. image: {
  24003. source: "./media/characters/ereus/side.svg",
  24004. extra: 1157 / 959,
  24005. bottom: 153 / 1312.5
  24006. }
  24007. },
  24008. },
  24009. [
  24010. {
  24011. name: "Normal",
  24012. height: math.unit(10, "feet"),
  24013. default: true
  24014. },
  24015. ]
  24016. ))
  24017. characterMakers.push(() => makeCharacter(
  24018. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24019. {
  24020. side: {
  24021. height: math.unit(4.5, "feet"),
  24022. weight: math.unit(500, "lb"),
  24023. name: "Side",
  24024. image: {
  24025. source: "./media/characters/e-ter/side.svg",
  24026. extra: 1550 / 1248,
  24027. bottom: 146 / 1694
  24028. }
  24029. },
  24030. },
  24031. [
  24032. {
  24033. name: "Normal",
  24034. height: math.unit(4.5, "feet"),
  24035. default: true
  24036. },
  24037. ]
  24038. ))
  24039. characterMakers.push(() => makeCharacter(
  24040. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24041. {
  24042. side: {
  24043. height: math.unit(9.7, "feet"),
  24044. weight: math.unit(4000, "kg"),
  24045. name: "Side",
  24046. image: {
  24047. source: "./media/characters/yamie/side.svg"
  24048. }
  24049. },
  24050. },
  24051. [
  24052. {
  24053. name: "Normal",
  24054. height: math.unit(9.7, "feet"),
  24055. default: true
  24056. },
  24057. ]
  24058. ))
  24059. characterMakers.push(() => makeCharacter(
  24060. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24061. {
  24062. front: {
  24063. height: math.unit(50, "feet"),
  24064. weight: math.unit(50000, "kg"),
  24065. name: "Front",
  24066. image: {
  24067. source: "./media/characters/anders/front.svg",
  24068. extra: 570 / 539,
  24069. bottom: 14.7 / 586.7
  24070. }
  24071. },
  24072. },
  24073. [
  24074. {
  24075. name: "Large",
  24076. height: math.unit(50, "feet")
  24077. },
  24078. {
  24079. name: "Macro",
  24080. height: math.unit(2000, "feet"),
  24081. default: true
  24082. },
  24083. {
  24084. name: "Megamacro",
  24085. height: math.unit(12, "miles")
  24086. },
  24087. ]
  24088. ))
  24089. characterMakers.push(() => makeCharacter(
  24090. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24091. {
  24092. front: {
  24093. height: math.unit(7 + 2 / 12, "feet"),
  24094. weight: math.unit(300, "lb"),
  24095. name: "Front",
  24096. image: {
  24097. source: "./media/characters/reban/front.svg",
  24098. extra: 1287/1212,
  24099. bottom: 148/1435
  24100. }
  24101. },
  24102. head: {
  24103. height: math.unit(1.95, "feet"),
  24104. name: "Head",
  24105. image: {
  24106. source: "./media/characters/reban/head.svg"
  24107. }
  24108. },
  24109. maw: {
  24110. height: math.unit(0.95, "feet"),
  24111. name: "Maw",
  24112. image: {
  24113. source: "./media/characters/reban/maw.svg"
  24114. }
  24115. },
  24116. foot: {
  24117. height: math.unit(1.65, "feet"),
  24118. name: "Foot",
  24119. image: {
  24120. source: "./media/characters/reban/foot.svg"
  24121. }
  24122. },
  24123. dick: {
  24124. height: math.unit(7 / 5, "feet"),
  24125. name: "Dick",
  24126. image: {
  24127. source: "./media/characters/reban/dick.svg"
  24128. }
  24129. },
  24130. },
  24131. [
  24132. {
  24133. name: "Natural Height",
  24134. height: math.unit(7 + 2 / 12, "feet")
  24135. },
  24136. {
  24137. name: "Macro",
  24138. height: math.unit(500, "feet"),
  24139. default: true
  24140. },
  24141. {
  24142. name: "Canon Height",
  24143. height: math.unit(50, "AU")
  24144. },
  24145. ]
  24146. ))
  24147. characterMakers.push(() => makeCharacter(
  24148. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24149. {
  24150. front: {
  24151. height: math.unit(6, "feet"),
  24152. weight: math.unit(150, "lb"),
  24153. name: "Front",
  24154. image: {
  24155. source: "./media/characters/terrance-keayes/front.svg",
  24156. extra: 1.005,
  24157. bottom: 151 / 1615
  24158. }
  24159. },
  24160. side: {
  24161. height: math.unit(6, "feet"),
  24162. weight: math.unit(150, "lb"),
  24163. name: "Side",
  24164. image: {
  24165. source: "./media/characters/terrance-keayes/side.svg",
  24166. extra: 1.005,
  24167. bottom: 129.4 / 1544
  24168. }
  24169. },
  24170. back: {
  24171. height: math.unit(6, "feet"),
  24172. weight: math.unit(150, "lb"),
  24173. name: "Back",
  24174. image: {
  24175. source: "./media/characters/terrance-keayes/back.svg",
  24176. extra: 1.005,
  24177. bottom: 58.4 / 1557.3
  24178. }
  24179. },
  24180. dick: {
  24181. height: math.unit(6 * 0.208, "feet"),
  24182. name: "Dick",
  24183. image: {
  24184. source: "./media/characters/terrance-keayes/dick.svg"
  24185. }
  24186. },
  24187. },
  24188. [
  24189. {
  24190. name: "Canon Height",
  24191. height: math.unit(35, "miles"),
  24192. default: true
  24193. },
  24194. ]
  24195. ))
  24196. characterMakers.push(() => makeCharacter(
  24197. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24198. {
  24199. front: {
  24200. height: math.unit(6, "feet"),
  24201. weight: math.unit(150, "lb"),
  24202. name: "Front",
  24203. image: {
  24204. source: "./media/characters/ofelia/front.svg",
  24205. extra: 1130/1117,
  24206. bottom: 91/1221
  24207. }
  24208. },
  24209. back: {
  24210. height: math.unit(6, "feet"),
  24211. weight: math.unit(150, "lb"),
  24212. name: "Back",
  24213. image: {
  24214. source: "./media/characters/ofelia/back.svg",
  24215. extra: 1172/1159,
  24216. bottom: 28/1200
  24217. }
  24218. },
  24219. maw: {
  24220. height: math.unit(1, "feet"),
  24221. name: "Maw",
  24222. image: {
  24223. source: "./media/characters/ofelia/maw.svg"
  24224. }
  24225. },
  24226. foot: {
  24227. height: math.unit(1.949, "feet"),
  24228. name: "Foot",
  24229. image: {
  24230. source: "./media/characters/ofelia/foot.svg"
  24231. }
  24232. },
  24233. },
  24234. [
  24235. {
  24236. name: "Canon Height",
  24237. height: math.unit(2000, "miles"),
  24238. default: true
  24239. },
  24240. ]
  24241. ))
  24242. characterMakers.push(() => makeCharacter(
  24243. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24244. {
  24245. front: {
  24246. height: math.unit(6, "feet"),
  24247. weight: math.unit(150, "lb"),
  24248. name: "Front",
  24249. image: {
  24250. source: "./media/characters/samuel/front.svg",
  24251. extra: 265 / 258,
  24252. bottom: 2 / 266.1566
  24253. }
  24254. },
  24255. },
  24256. [
  24257. {
  24258. name: "Macro",
  24259. height: math.unit(100, "feet"),
  24260. default: true
  24261. },
  24262. {
  24263. name: "Full Size",
  24264. height: math.unit(1000, "miles")
  24265. },
  24266. ]
  24267. ))
  24268. characterMakers.push(() => makeCharacter(
  24269. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24270. {
  24271. front: {
  24272. height: math.unit(6, "feet"),
  24273. weight: math.unit(300, "lb"),
  24274. name: "Front",
  24275. image: {
  24276. source: "./media/characters/beishir-kiel/front.svg",
  24277. extra: 569 / 547,
  24278. bottom: 41.9 / 609
  24279. }
  24280. },
  24281. maw: {
  24282. height: math.unit(6 * 0.202, "feet"),
  24283. name: "Maw",
  24284. image: {
  24285. source: "./media/characters/beishir-kiel/maw.svg"
  24286. }
  24287. },
  24288. },
  24289. [
  24290. {
  24291. name: "Macro",
  24292. height: math.unit(300, "feet"),
  24293. default: true
  24294. },
  24295. ]
  24296. ))
  24297. characterMakers.push(() => makeCharacter(
  24298. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24299. {
  24300. front: {
  24301. height: math.unit(5 + 7/12, "feet"),
  24302. weight: math.unit(120, "lb"),
  24303. name: "Front",
  24304. image: {
  24305. source: "./media/characters/logan-grey/front.svg",
  24306. extra: 1836/1738,
  24307. bottom: 108/1944
  24308. }
  24309. },
  24310. back: {
  24311. height: math.unit(5 + 7/12, "feet"),
  24312. weight: math.unit(120, "lb"),
  24313. name: "Back",
  24314. image: {
  24315. source: "./media/characters/logan-grey/back.svg",
  24316. extra: 1880/1794,
  24317. bottom: 24/1904
  24318. }
  24319. },
  24320. frontSfw: {
  24321. height: math.unit(5 + 7/12, "feet"),
  24322. weight: math.unit(120, "lb"),
  24323. name: "Front (SFW)",
  24324. image: {
  24325. source: "./media/characters/logan-grey/front-sfw.svg",
  24326. extra: 1836/1738,
  24327. bottom: 108/1944
  24328. }
  24329. },
  24330. backSfw: {
  24331. height: math.unit(5 + 7/12, "feet"),
  24332. weight: math.unit(120, "lb"),
  24333. name: "Back (SFW)",
  24334. image: {
  24335. source: "./media/characters/logan-grey/back-sfw.svg",
  24336. extra: 1880/1794,
  24337. bottom: 24/1904
  24338. }
  24339. },
  24340. hands: {
  24341. height: math.unit(0.84, "feet"),
  24342. name: "Hands",
  24343. image: {
  24344. source: "./media/characters/logan-grey/hands.svg"
  24345. }
  24346. },
  24347. paws: {
  24348. height: math.unit(0.72, "feet"),
  24349. name: "Paws",
  24350. image: {
  24351. source: "./media/characters/logan-grey/paws.svg"
  24352. }
  24353. },
  24354. cock: {
  24355. height: math.unit(1.45, "feet"),
  24356. name: "Cock",
  24357. image: {
  24358. source: "./media/characters/logan-grey/cock.svg"
  24359. }
  24360. },
  24361. cockAlt: {
  24362. height: math.unit(1.437, "feet"),
  24363. name: "Cock (alt)",
  24364. image: {
  24365. source: "./media/characters/logan-grey/cock-alt.svg"
  24366. }
  24367. },
  24368. },
  24369. [
  24370. {
  24371. name: "Normal",
  24372. height: math.unit(5 + 8 / 12, "feet")
  24373. },
  24374. {
  24375. name: "The 500 Foot Femboy",
  24376. height: math.unit(500, "feet"),
  24377. default: true
  24378. },
  24379. {
  24380. name: "Megmacro",
  24381. height: math.unit(20, "miles")
  24382. },
  24383. ]
  24384. ))
  24385. characterMakers.push(() => makeCharacter(
  24386. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24387. {
  24388. front: {
  24389. height: math.unit(8 + 2 / 12, "feet"),
  24390. weight: math.unit(275, "lb"),
  24391. name: "Front",
  24392. image: {
  24393. source: "./media/characters/draganta/front.svg",
  24394. extra: 1177 / 1135,
  24395. bottom: 33.46 / 1212.1
  24396. }
  24397. },
  24398. },
  24399. [
  24400. {
  24401. name: "Normal",
  24402. height: math.unit(8 + 6 / 12, "feet"),
  24403. default: true
  24404. },
  24405. {
  24406. name: "Macro",
  24407. height: math.unit(150, "feet")
  24408. },
  24409. {
  24410. name: "Megamacro",
  24411. height: math.unit(1000, "miles")
  24412. },
  24413. ]
  24414. ))
  24415. characterMakers.push(() => makeCharacter(
  24416. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24417. {
  24418. front: {
  24419. height: math.unit(1.72, "m"),
  24420. weight: math.unit(80, "lb"),
  24421. name: "Front",
  24422. image: {
  24423. source: "./media/characters/voski/front.svg",
  24424. extra: 2076.22 / 2022.4,
  24425. bottom: 102.7 / 2177.3866
  24426. }
  24427. },
  24428. frontFlaccid: {
  24429. height: math.unit(1.72, "m"),
  24430. weight: math.unit(80, "lb"),
  24431. name: "Front (Flaccid)",
  24432. image: {
  24433. source: "./media/characters/voski/front-flaccid.svg",
  24434. extra: 2076.22 / 2022.4,
  24435. bottom: 102.7 / 2177.3866
  24436. }
  24437. },
  24438. frontErect: {
  24439. height: math.unit(1.72, "m"),
  24440. weight: math.unit(80, "lb"),
  24441. name: "Front (Erect)",
  24442. image: {
  24443. source: "./media/characters/voski/front-erect.svg",
  24444. extra: 2076.22 / 2022.4,
  24445. bottom: 102.7 / 2177.3866
  24446. }
  24447. },
  24448. back: {
  24449. height: math.unit(1.72, "m"),
  24450. weight: math.unit(80, "lb"),
  24451. name: "Back",
  24452. image: {
  24453. source: "./media/characters/voski/back.svg",
  24454. extra: 2104 / 2051,
  24455. bottom: 10.45 / 2113.63
  24456. }
  24457. },
  24458. },
  24459. [
  24460. {
  24461. name: "Normal",
  24462. height: math.unit(1.72, "m")
  24463. },
  24464. {
  24465. name: "Macro",
  24466. height: math.unit(55, "m"),
  24467. default: true
  24468. },
  24469. {
  24470. name: "Macro+",
  24471. height: math.unit(300, "m")
  24472. },
  24473. {
  24474. name: "Macro++",
  24475. height: math.unit(700, "m")
  24476. },
  24477. {
  24478. name: "Macro+++",
  24479. height: math.unit(4500, "m")
  24480. },
  24481. {
  24482. name: "Macro++++",
  24483. height: math.unit(45, "km")
  24484. },
  24485. {
  24486. name: "Macro+++++",
  24487. height: math.unit(1220, "km")
  24488. },
  24489. ]
  24490. ))
  24491. characterMakers.push(() => makeCharacter(
  24492. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24493. {
  24494. front: {
  24495. height: math.unit(2.3, "m"),
  24496. weight: math.unit(304, "kg"),
  24497. name: "Front",
  24498. image: {
  24499. source: "./media/characters/icowom-lee/front.svg",
  24500. extra: 985 / 955,
  24501. bottom: 25.4 / 1012
  24502. }
  24503. },
  24504. fronttentacles: {
  24505. height: math.unit(2.3, "m"),
  24506. weight: math.unit(304, "kg"),
  24507. name: "Front-tentacles",
  24508. image: {
  24509. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24510. extra: 985 / 955,
  24511. bottom: 25.4 / 1012
  24512. }
  24513. },
  24514. back: {
  24515. height: math.unit(2.3, "m"),
  24516. weight: math.unit(304, "kg"),
  24517. name: "Back",
  24518. image: {
  24519. source: "./media/characters/icowom-lee/back.svg",
  24520. extra: 975 / 954,
  24521. bottom: 9.5 / 985
  24522. }
  24523. },
  24524. backtentacles: {
  24525. height: math.unit(2.3, "m"),
  24526. weight: math.unit(304, "kg"),
  24527. name: "Back-tentacles",
  24528. image: {
  24529. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24530. extra: 975 / 954,
  24531. bottom: 9.5 / 985
  24532. }
  24533. },
  24534. frontDressed: {
  24535. height: math.unit(2.3, "m"),
  24536. weight: math.unit(304, "kg"),
  24537. name: "Front (Dressed)",
  24538. image: {
  24539. source: "./media/characters/icowom-lee/front-dressed.svg",
  24540. extra: 3076 / 2933,
  24541. bottom: 51.4 / 3125.1889
  24542. }
  24543. },
  24544. rump: {
  24545. height: math.unit(0.776, "meters"),
  24546. name: "Rump",
  24547. image: {
  24548. source: "./media/characters/icowom-lee/rump.svg"
  24549. }
  24550. },
  24551. genitals: {
  24552. height: math.unit(0.78, "meters"),
  24553. name: "Genitals",
  24554. image: {
  24555. source: "./media/characters/icowom-lee/genitals.svg"
  24556. }
  24557. },
  24558. },
  24559. [
  24560. {
  24561. name: "Normal",
  24562. height: math.unit(2.3, "meters"),
  24563. default: true
  24564. },
  24565. {
  24566. name: "Macro",
  24567. height: math.unit(94, "meters"),
  24568. default: true
  24569. },
  24570. ]
  24571. ))
  24572. characterMakers.push(() => makeCharacter(
  24573. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24574. {
  24575. front: {
  24576. height: math.unit(22, "meters"),
  24577. weight: math.unit(21000, "kg"),
  24578. name: "Front",
  24579. image: {
  24580. source: "./media/characters/shock-diamond/front.svg",
  24581. extra: 2204 / 2053,
  24582. bottom: 65 / 2239.47
  24583. }
  24584. },
  24585. frontNude: {
  24586. height: math.unit(22, "meters"),
  24587. weight: math.unit(21000, "kg"),
  24588. name: "Front (Nude)",
  24589. image: {
  24590. source: "./media/characters/shock-diamond/front-nude.svg",
  24591. extra: 2514 / 2285,
  24592. bottom: 13 / 2527.56
  24593. }
  24594. },
  24595. },
  24596. [
  24597. {
  24598. name: "Normal",
  24599. height: math.unit(3, "meters")
  24600. },
  24601. {
  24602. name: "Macro",
  24603. height: math.unit(22, "meters"),
  24604. default: true
  24605. },
  24606. ]
  24607. ))
  24608. characterMakers.push(() => makeCharacter(
  24609. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24610. {
  24611. frontNsfw: {
  24612. height: math.unit(5 + 4/12, "feet"),
  24613. weight: math.unit(195, "lb"),
  24614. name: "Front",
  24615. image: {
  24616. source: "./media/characters/rory/front.svg",
  24617. extra: 1220/1100,
  24618. bottom: 103/1323
  24619. }
  24620. },
  24621. back: {
  24622. height: math.unit(5 + 4/12, "feet"),
  24623. weight: math.unit(195, "lb"),
  24624. name: "Back",
  24625. image: {
  24626. source: "./media/characters/rory/back.svg",
  24627. extra: 1166/1086,
  24628. bottom: 35/1201
  24629. }
  24630. },
  24631. },
  24632. [
  24633. {
  24634. name: "Micro",
  24635. height: math.unit(3, "inches")
  24636. },
  24637. {
  24638. name: "Normal",
  24639. height: math.unit(5 + 4/12, "feet"),
  24640. default: true
  24641. },
  24642. {
  24643. name: "Macro",
  24644. height: math.unit(90, "feet")
  24645. },
  24646. {
  24647. name: "Supercharged",
  24648. height: math.unit(270, "feet")
  24649. },
  24650. ]
  24651. ))
  24652. characterMakers.push(() => makeCharacter(
  24653. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24654. {
  24655. front: {
  24656. height: math.unit(5 + 9 / 12, "feet"),
  24657. weight: math.unit(190, "lb"),
  24658. name: "Front",
  24659. image: {
  24660. source: "./media/characters/sprisk/front.svg",
  24661. extra: 1225 / 1180,
  24662. bottom: 42.7 / 1266.4
  24663. }
  24664. },
  24665. frontNsfw: {
  24666. height: math.unit(5 + 9 / 12, "feet"),
  24667. weight: math.unit(190, "lb"),
  24668. name: "Front (NSFW)",
  24669. image: {
  24670. source: "./media/characters/sprisk/front-nsfw.svg",
  24671. extra: 1225 / 1180,
  24672. bottom: 42.7 / 1266.4
  24673. }
  24674. },
  24675. back: {
  24676. height: math.unit(5 + 9 / 12, "feet"),
  24677. weight: math.unit(190, "lb"),
  24678. name: "Back",
  24679. image: {
  24680. source: "./media/characters/sprisk/back.svg",
  24681. extra: 1247 / 1200,
  24682. bottom: 5.6 / 1253.04
  24683. }
  24684. },
  24685. },
  24686. [
  24687. {
  24688. name: "Tiny",
  24689. height: math.unit(2, "inches")
  24690. },
  24691. {
  24692. name: "Normal",
  24693. height: math.unit(5 + 9 / 12, "feet"),
  24694. default: true
  24695. },
  24696. {
  24697. name: "Mini Macro",
  24698. height: math.unit(18, "feet")
  24699. },
  24700. {
  24701. name: "Macro",
  24702. height: math.unit(100, "feet")
  24703. },
  24704. {
  24705. name: "MACRO",
  24706. height: math.unit(50, "miles")
  24707. },
  24708. {
  24709. name: "M A C R O",
  24710. height: math.unit(300, "miles")
  24711. },
  24712. ]
  24713. ))
  24714. characterMakers.push(() => makeCharacter(
  24715. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24716. {
  24717. side: {
  24718. height: math.unit(15.6, "meters"),
  24719. weight: math.unit(700000, "kg"),
  24720. name: "Side",
  24721. image: {
  24722. source: "./media/characters/bunsen/side.svg",
  24723. extra: 1644 / 358
  24724. }
  24725. },
  24726. foot: {
  24727. height: math.unit(1.611 * 1644 / 358, "meter"),
  24728. name: "Foot",
  24729. image: {
  24730. source: "./media/characters/bunsen/foot.svg"
  24731. }
  24732. },
  24733. },
  24734. [
  24735. {
  24736. name: "Small",
  24737. height: math.unit(10, "feet")
  24738. },
  24739. {
  24740. name: "Normal",
  24741. height: math.unit(15.6, "meters"),
  24742. default: true
  24743. },
  24744. ]
  24745. ))
  24746. characterMakers.push(() => makeCharacter(
  24747. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24748. {
  24749. front: {
  24750. height: math.unit(4 + 11 / 12, "feet"),
  24751. weight: math.unit(140, "lb"),
  24752. name: "Front",
  24753. image: {
  24754. source: "./media/characters/sesh/front.svg",
  24755. extra: 3420 / 3231,
  24756. bottom: 72 / 3949.5
  24757. }
  24758. },
  24759. },
  24760. [
  24761. {
  24762. name: "Normal",
  24763. height: math.unit(4 + 11 / 12, "feet")
  24764. },
  24765. {
  24766. name: "Grown",
  24767. height: math.unit(15, "feet"),
  24768. default: true
  24769. },
  24770. {
  24771. name: "Macro",
  24772. height: math.unit(1500, "feet")
  24773. },
  24774. {
  24775. name: "Megamacro",
  24776. height: math.unit(30, "miles")
  24777. },
  24778. {
  24779. name: "Continental",
  24780. height: math.unit(3000, "miles")
  24781. },
  24782. {
  24783. name: "Gravity Mass",
  24784. height: math.unit(300000, "miles")
  24785. },
  24786. {
  24787. name: "Planet Buster",
  24788. height: math.unit(30000000, "miles")
  24789. },
  24790. {
  24791. name: "Big",
  24792. height: math.unit(3000000000, "miles")
  24793. },
  24794. ]
  24795. ))
  24796. characterMakers.push(() => makeCharacter(
  24797. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24798. {
  24799. front: {
  24800. height: math.unit(9, "feet"),
  24801. weight: math.unit(350, "lb"),
  24802. name: "Front",
  24803. image: {
  24804. source: "./media/characters/pepper/front.svg",
  24805. extra: 1448 / 1312,
  24806. bottom: 9.4 / 1457.88
  24807. }
  24808. },
  24809. back: {
  24810. height: math.unit(9, "feet"),
  24811. weight: math.unit(350, "lb"),
  24812. name: "Back",
  24813. image: {
  24814. source: "./media/characters/pepper/back.svg",
  24815. extra: 1423 / 1300,
  24816. bottom: 4.6 / 1429
  24817. }
  24818. },
  24819. maw: {
  24820. height: math.unit(0.932, "feet"),
  24821. name: "Maw",
  24822. image: {
  24823. source: "./media/characters/pepper/maw.svg"
  24824. }
  24825. },
  24826. },
  24827. [
  24828. {
  24829. name: "Normal",
  24830. height: math.unit(9, "feet"),
  24831. default: true
  24832. },
  24833. ]
  24834. ))
  24835. characterMakers.push(() => makeCharacter(
  24836. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24837. {
  24838. front: {
  24839. height: math.unit(6, "feet"),
  24840. weight: math.unit(150, "lb"),
  24841. name: "Front",
  24842. image: {
  24843. source: "./media/characters/maelstrom/front.svg",
  24844. extra: 2100 / 1883,
  24845. bottom: 94 / 2196.7
  24846. }
  24847. },
  24848. },
  24849. [
  24850. {
  24851. name: "Less Kaiju",
  24852. height: math.unit(200, "feet")
  24853. },
  24854. {
  24855. name: "Kaiju",
  24856. height: math.unit(400, "feet"),
  24857. default: true
  24858. },
  24859. {
  24860. name: "Kaiju-er",
  24861. height: math.unit(600, "feet")
  24862. },
  24863. ]
  24864. ))
  24865. characterMakers.push(() => makeCharacter(
  24866. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24867. {
  24868. front: {
  24869. height: math.unit(6 + 5 / 12, "feet"),
  24870. weight: math.unit(180, "lb"),
  24871. name: "Front",
  24872. image: {
  24873. source: "./media/characters/lexir/front.svg",
  24874. extra: 180 / 172,
  24875. bottom: 12 / 192
  24876. }
  24877. },
  24878. back: {
  24879. height: math.unit(6 + 5 / 12, "feet"),
  24880. weight: math.unit(180, "lb"),
  24881. name: "Back",
  24882. image: {
  24883. source: "./media/characters/lexir/back.svg",
  24884. extra: 1273/1201,
  24885. bottom: 39/1312
  24886. }
  24887. },
  24888. },
  24889. [
  24890. {
  24891. name: "Very Smal",
  24892. height: math.unit(1, "nm")
  24893. },
  24894. {
  24895. name: "Normal",
  24896. height: math.unit(6 + 5 / 12, "feet"),
  24897. default: true
  24898. },
  24899. {
  24900. name: "Macro",
  24901. height: math.unit(1, "mile")
  24902. },
  24903. {
  24904. name: "Megamacro",
  24905. height: math.unit(50, "miles")
  24906. },
  24907. ]
  24908. ))
  24909. characterMakers.push(() => makeCharacter(
  24910. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24911. {
  24912. front: {
  24913. height: math.unit(1.5, "meters"),
  24914. weight: math.unit(100, "lb"),
  24915. name: "Front",
  24916. image: {
  24917. source: "./media/characters/maksio/front.svg",
  24918. extra: 1549 / 1531,
  24919. bottom: 123.7 / 1674.5429
  24920. }
  24921. },
  24922. back: {
  24923. height: math.unit(1.5, "meters"),
  24924. weight: math.unit(100, "lb"),
  24925. name: "Back",
  24926. image: {
  24927. source: "./media/characters/maksio/back.svg",
  24928. extra: 1541 / 1509,
  24929. bottom: 97 / 1639
  24930. }
  24931. },
  24932. hand: {
  24933. height: math.unit(0.621, "feet"),
  24934. name: "Hand",
  24935. image: {
  24936. source: "./media/characters/maksio/hand.svg"
  24937. }
  24938. },
  24939. foot: {
  24940. height: math.unit(1.611, "feet"),
  24941. name: "Foot",
  24942. image: {
  24943. source: "./media/characters/maksio/foot.svg"
  24944. }
  24945. },
  24946. },
  24947. [
  24948. {
  24949. name: "Shrunken",
  24950. height: math.unit(10, "cm")
  24951. },
  24952. {
  24953. name: "Normal",
  24954. height: math.unit(150, "cm"),
  24955. default: true
  24956. },
  24957. ]
  24958. ))
  24959. characterMakers.push(() => makeCharacter(
  24960. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24961. {
  24962. front: {
  24963. height: math.unit(100, "feet"),
  24964. name: "Front",
  24965. image: {
  24966. source: "./media/characters/erza-bear/front.svg",
  24967. extra: 2449 / 2390,
  24968. bottom: 46 / 2494
  24969. }
  24970. },
  24971. back: {
  24972. height: math.unit(100, "feet"),
  24973. name: "Back",
  24974. image: {
  24975. source: "./media/characters/erza-bear/back.svg",
  24976. extra: 2489 / 2430,
  24977. bottom: 85.4 / 2480
  24978. }
  24979. },
  24980. tail: {
  24981. height: math.unit(42, "feet"),
  24982. name: "Tail",
  24983. image: {
  24984. source: "./media/characters/erza-bear/tail.svg"
  24985. }
  24986. },
  24987. tongue: {
  24988. height: math.unit(8, "feet"),
  24989. name: "Tongue",
  24990. image: {
  24991. source: "./media/characters/erza-bear/tongue.svg"
  24992. }
  24993. },
  24994. dick: {
  24995. height: math.unit(10.5, "feet"),
  24996. name: "Dick",
  24997. image: {
  24998. source: "./media/characters/erza-bear/dick.svg"
  24999. }
  25000. },
  25001. dickVertical: {
  25002. height: math.unit(16.9, "feet"),
  25003. name: "Dick (Vertical)",
  25004. image: {
  25005. source: "./media/characters/erza-bear/dick-vertical.svg"
  25006. }
  25007. },
  25008. },
  25009. [
  25010. {
  25011. name: "Macro",
  25012. height: math.unit(100, "feet"),
  25013. default: true
  25014. },
  25015. ]
  25016. ))
  25017. characterMakers.push(() => makeCharacter(
  25018. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25019. {
  25020. front: {
  25021. height: math.unit(172, "cm"),
  25022. weight: math.unit(73, "kg"),
  25023. name: "Front",
  25024. image: {
  25025. source: "./media/characters/violet-flor/front.svg",
  25026. extra: 1530 / 1442,
  25027. bottom: 61.9 / 1588.8
  25028. }
  25029. },
  25030. back: {
  25031. height: math.unit(180, "cm"),
  25032. weight: math.unit(73, "kg"),
  25033. name: "Back",
  25034. image: {
  25035. source: "./media/characters/violet-flor/back.svg",
  25036. extra: 1692 / 1630,
  25037. bottom: 20 / 1712
  25038. }
  25039. },
  25040. },
  25041. [
  25042. {
  25043. name: "Normal",
  25044. height: math.unit(172, "cm"),
  25045. default: true
  25046. },
  25047. ]
  25048. ))
  25049. characterMakers.push(() => makeCharacter(
  25050. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25051. {
  25052. front: {
  25053. height: math.unit(6, "feet"),
  25054. weight: math.unit(220, "lb"),
  25055. name: "Front",
  25056. image: {
  25057. source: "./media/characters/lynn-rhea/front.svg",
  25058. extra: 310 / 273
  25059. }
  25060. },
  25061. back: {
  25062. height: math.unit(6, "feet"),
  25063. weight: math.unit(220, "lb"),
  25064. name: "Back",
  25065. image: {
  25066. source: "./media/characters/lynn-rhea/back.svg",
  25067. extra: 310 / 273
  25068. }
  25069. },
  25070. dicks: {
  25071. height: math.unit(0.9, "feet"),
  25072. name: "Dicks",
  25073. image: {
  25074. source: "./media/characters/lynn-rhea/dicks.svg"
  25075. }
  25076. },
  25077. slit: {
  25078. height: math.unit(0.4, "feet"),
  25079. name: "Slit",
  25080. image: {
  25081. source: "./media/characters/lynn-rhea/slit.svg"
  25082. }
  25083. },
  25084. },
  25085. [
  25086. {
  25087. name: "Micro",
  25088. height: math.unit(1, "inch")
  25089. },
  25090. {
  25091. name: "Macro",
  25092. height: math.unit(60, "feet"),
  25093. default: true
  25094. },
  25095. {
  25096. name: "Megamacro",
  25097. height: math.unit(2, "miles")
  25098. },
  25099. {
  25100. name: "Gigamacro",
  25101. height: math.unit(3, "earths")
  25102. },
  25103. {
  25104. name: "Galactic",
  25105. height: math.unit(0.8, "galaxies")
  25106. },
  25107. ]
  25108. ))
  25109. characterMakers.push(() => makeCharacter(
  25110. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25111. {
  25112. front: {
  25113. height: math.unit(1600, "feet"),
  25114. weight: math.unit(85758785169, "kg"),
  25115. name: "Front",
  25116. image: {
  25117. source: "./media/characters/valathos/front.svg",
  25118. extra: 1451 / 1339
  25119. }
  25120. },
  25121. },
  25122. [
  25123. {
  25124. name: "Macro",
  25125. height: math.unit(1600, "feet"),
  25126. default: true
  25127. },
  25128. ]
  25129. ))
  25130. characterMakers.push(() => makeCharacter(
  25131. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25132. {
  25133. front: {
  25134. height: math.unit(7 + 5 / 12, "feet"),
  25135. weight: math.unit(300, "lb"),
  25136. name: "Front",
  25137. image: {
  25138. source: "./media/characters/azula/front.svg",
  25139. extra: 3208 / 2880,
  25140. bottom: 80.2 / 3277
  25141. }
  25142. },
  25143. back: {
  25144. height: math.unit(7 + 5 / 12, "feet"),
  25145. weight: math.unit(300, "lb"),
  25146. name: "Back",
  25147. image: {
  25148. source: "./media/characters/azula/back.svg",
  25149. extra: 3169 / 2822,
  25150. bottom: 150.6 / 3321
  25151. }
  25152. },
  25153. },
  25154. [
  25155. {
  25156. name: "Normal",
  25157. height: math.unit(7 + 5 / 12, "feet"),
  25158. default: true
  25159. },
  25160. {
  25161. name: "Big",
  25162. height: math.unit(20, "feet")
  25163. },
  25164. ]
  25165. ))
  25166. characterMakers.push(() => makeCharacter(
  25167. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25168. {
  25169. front: {
  25170. height: math.unit(5 + 1 / 12, "feet"),
  25171. weight: math.unit(110, "lb"),
  25172. name: "Front",
  25173. image: {
  25174. source: "./media/characters/rupert/front.svg",
  25175. extra: 1549 / 1495,
  25176. bottom: 54.2 / 1604.4
  25177. }
  25178. },
  25179. },
  25180. [
  25181. {
  25182. name: "Normal",
  25183. height: math.unit(5 + 1 / 12, "feet"),
  25184. default: true
  25185. },
  25186. ]
  25187. ))
  25188. characterMakers.push(() => makeCharacter(
  25189. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25190. {
  25191. front: {
  25192. height: math.unit(8 + 4 / 12, "feet"),
  25193. weight: math.unit(350, "lb"),
  25194. name: "Front",
  25195. image: {
  25196. source: "./media/characters/sheera-castellar/front.svg",
  25197. extra: 1957 / 1894,
  25198. bottom: 26.97 / 1975.017
  25199. }
  25200. },
  25201. side: {
  25202. height: math.unit(8 + 4 / 12, "feet"),
  25203. weight: math.unit(350, "lb"),
  25204. name: "Side",
  25205. image: {
  25206. source: "./media/characters/sheera-castellar/side.svg",
  25207. extra: 1957 / 1894
  25208. }
  25209. },
  25210. back: {
  25211. height: math.unit(8 + 4 / 12, "feet"),
  25212. weight: math.unit(350, "lb"),
  25213. name: "Back",
  25214. image: {
  25215. source: "./media/characters/sheera-castellar/back.svg",
  25216. extra: 1957 / 1894
  25217. }
  25218. },
  25219. angled: {
  25220. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25221. weight: math.unit(350, "lb"),
  25222. name: "Angled",
  25223. image: {
  25224. source: "./media/characters/sheera-castellar/angled.svg",
  25225. extra: 1807 / 1707,
  25226. bottom: 68 / 1875
  25227. }
  25228. },
  25229. genitals: {
  25230. height: math.unit(2.2, "feet"),
  25231. name: "Genitals",
  25232. image: {
  25233. source: "./media/characters/sheera-castellar/genitals.svg"
  25234. }
  25235. },
  25236. taur: {
  25237. height: math.unit(10 + 6/12, "feet"),
  25238. name: "Taur",
  25239. image: {
  25240. source: "./media/characters/sheera-castellar/taur.svg",
  25241. extra: 2017/1909,
  25242. bottom: 185/2202
  25243. }
  25244. },
  25245. },
  25246. [
  25247. {
  25248. name: "Normal",
  25249. height: math.unit(8 + 4 / 12, "feet")
  25250. },
  25251. {
  25252. name: "Macro",
  25253. height: math.unit(150, "feet"),
  25254. default: true
  25255. },
  25256. {
  25257. name: "Macro+",
  25258. height: math.unit(800, "feet")
  25259. },
  25260. ]
  25261. ))
  25262. characterMakers.push(() => makeCharacter(
  25263. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25264. {
  25265. front: {
  25266. height: math.unit(6, "feet"),
  25267. weight: math.unit(150, "lb"),
  25268. name: "Front",
  25269. image: {
  25270. source: "./media/characters/jaipur/front.svg",
  25271. extra: 3860 / 3731,
  25272. bottom: 287 / 4140
  25273. }
  25274. },
  25275. back: {
  25276. height: math.unit(6, "feet"),
  25277. weight: math.unit(150, "lb"),
  25278. name: "Back",
  25279. image: {
  25280. source: "./media/characters/jaipur/back.svg",
  25281. extra: 1637/1561,
  25282. bottom: 154/1791
  25283. }
  25284. },
  25285. },
  25286. [
  25287. {
  25288. name: "Normal",
  25289. height: math.unit(1.85, "meters"),
  25290. default: true
  25291. },
  25292. {
  25293. name: "Macro",
  25294. height: math.unit(150, "meters")
  25295. },
  25296. {
  25297. name: "Macro+",
  25298. height: math.unit(0.5, "miles")
  25299. },
  25300. {
  25301. name: "Macro++",
  25302. height: math.unit(2.5, "miles")
  25303. },
  25304. {
  25305. name: "Macro+++",
  25306. height: math.unit(12, "miles")
  25307. },
  25308. {
  25309. name: "Macro++++",
  25310. height: math.unit(120, "miles")
  25311. },
  25312. {
  25313. name: "Macro+++++",
  25314. height: math.unit(1200, "miles")
  25315. },
  25316. ]
  25317. ))
  25318. characterMakers.push(() => makeCharacter(
  25319. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25320. {
  25321. front: {
  25322. height: math.unit(6, "feet"),
  25323. weight: math.unit(150, "lb"),
  25324. name: "Front",
  25325. image: {
  25326. source: "./media/characters/sheila-wolf/front.svg",
  25327. extra: 1931 / 1808,
  25328. bottom: 29.5 / 1960
  25329. }
  25330. },
  25331. dick: {
  25332. height: math.unit(1.464, "feet"),
  25333. name: "Dick",
  25334. image: {
  25335. source: "./media/characters/sheila-wolf/dick.svg"
  25336. }
  25337. },
  25338. muzzle: {
  25339. height: math.unit(0.513, "feet"),
  25340. name: "Muzzle",
  25341. image: {
  25342. source: "./media/characters/sheila-wolf/muzzle.svg"
  25343. }
  25344. },
  25345. },
  25346. [
  25347. {
  25348. name: "Macro",
  25349. height: math.unit(70, "feet"),
  25350. default: true
  25351. },
  25352. ]
  25353. ))
  25354. characterMakers.push(() => makeCharacter(
  25355. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25356. {
  25357. front: {
  25358. height: math.unit(32, "meters"),
  25359. weight: math.unit(300000, "kg"),
  25360. name: "Front",
  25361. image: {
  25362. source: "./media/characters/almor/front.svg",
  25363. extra: 1408 / 1322,
  25364. bottom: 94.6 / 1506.5
  25365. }
  25366. },
  25367. },
  25368. [
  25369. {
  25370. name: "Macro",
  25371. height: math.unit(32, "meters"),
  25372. default: true
  25373. },
  25374. ]
  25375. ))
  25376. characterMakers.push(() => makeCharacter(
  25377. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25378. {
  25379. front: {
  25380. height: math.unit(7, "feet"),
  25381. weight: math.unit(200, "lb"),
  25382. name: "Front",
  25383. image: {
  25384. source: "./media/characters/silver/front.svg",
  25385. extra: 472.1 / 450.5,
  25386. bottom: 26.5 / 499.424
  25387. }
  25388. },
  25389. },
  25390. [
  25391. {
  25392. name: "Normal",
  25393. height: math.unit(7, "feet"),
  25394. default: true
  25395. },
  25396. {
  25397. name: "Macro",
  25398. height: math.unit(800, "feet")
  25399. },
  25400. {
  25401. name: "Megamacro",
  25402. height: math.unit(250, "miles")
  25403. },
  25404. ]
  25405. ))
  25406. characterMakers.push(() => makeCharacter(
  25407. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25408. {
  25409. front: {
  25410. height: math.unit(6, "feet"),
  25411. weight: math.unit(150, "lb"),
  25412. name: "Front",
  25413. image: {
  25414. source: "./media/characters/pliskin/front.svg",
  25415. extra: 1469 / 1359,
  25416. bottom: 70 / 1540
  25417. }
  25418. },
  25419. },
  25420. [
  25421. {
  25422. name: "Micro",
  25423. height: math.unit(3, "inches")
  25424. },
  25425. {
  25426. name: "Normal",
  25427. height: math.unit(5 + 11 / 12, "feet"),
  25428. default: true
  25429. },
  25430. {
  25431. name: "Macro",
  25432. height: math.unit(120, "feet")
  25433. },
  25434. ]
  25435. ))
  25436. characterMakers.push(() => makeCharacter(
  25437. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25438. {
  25439. front: {
  25440. height: math.unit(6, "feet"),
  25441. weight: math.unit(150, "lb"),
  25442. name: "Front",
  25443. image: {
  25444. source: "./media/characters/sammy/front.svg",
  25445. extra: 1193 / 1089,
  25446. bottom: 30.5 / 1226
  25447. }
  25448. },
  25449. },
  25450. [
  25451. {
  25452. name: "Macro",
  25453. height: math.unit(1700, "feet"),
  25454. default: true
  25455. },
  25456. {
  25457. name: "Examacro",
  25458. height: math.unit(2.5e9, "lightyears")
  25459. },
  25460. ]
  25461. ))
  25462. characterMakers.push(() => makeCharacter(
  25463. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25464. {
  25465. front: {
  25466. height: math.unit(21, "meters"),
  25467. weight: math.unit(12, "tonnes"),
  25468. name: "Front",
  25469. image: {
  25470. source: "./media/characters/kuru/front.svg",
  25471. extra: 4301 / 3785,
  25472. bottom: 371.3 / 4691
  25473. }
  25474. },
  25475. },
  25476. [
  25477. {
  25478. name: "Macro",
  25479. height: math.unit(21, "meters"),
  25480. default: true
  25481. },
  25482. ]
  25483. ))
  25484. characterMakers.push(() => makeCharacter(
  25485. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25486. {
  25487. front: {
  25488. height: math.unit(23, "meters"),
  25489. weight: math.unit(12.2, "tonnes"),
  25490. name: "Front",
  25491. image: {
  25492. source: "./media/characters/rakka/front.svg",
  25493. extra: 4670 / 4169,
  25494. bottom: 301 / 4968.7
  25495. }
  25496. },
  25497. },
  25498. [
  25499. {
  25500. name: "Macro",
  25501. height: math.unit(23, "meters"),
  25502. default: true
  25503. },
  25504. ]
  25505. ))
  25506. characterMakers.push(() => makeCharacter(
  25507. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25508. {
  25509. front: {
  25510. height: math.unit(6, "feet"),
  25511. weight: math.unit(150, "lb"),
  25512. name: "Front",
  25513. image: {
  25514. source: "./media/characters/rhys-feline/front.svg",
  25515. extra: 2488 / 2308,
  25516. bottom: 35.67 / 2519.19
  25517. }
  25518. },
  25519. },
  25520. [
  25521. {
  25522. name: "Really Small",
  25523. height: math.unit(1, "nm")
  25524. },
  25525. {
  25526. name: "Micro",
  25527. height: math.unit(4, "inches")
  25528. },
  25529. {
  25530. name: "Normal",
  25531. height: math.unit(4 + 10 / 12, "feet"),
  25532. default: true
  25533. },
  25534. {
  25535. name: "Macro",
  25536. height: math.unit(100, "feet")
  25537. },
  25538. {
  25539. name: "Megamacto",
  25540. height: math.unit(50, "miles")
  25541. },
  25542. ]
  25543. ))
  25544. characterMakers.push(() => makeCharacter(
  25545. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25546. {
  25547. side: {
  25548. height: math.unit(30, "feet"),
  25549. weight: math.unit(35000, "kg"),
  25550. name: "Side",
  25551. image: {
  25552. source: "./media/characters/alydar/side.svg",
  25553. extra: 234 / 222,
  25554. bottom: 6.5 / 241
  25555. }
  25556. },
  25557. front: {
  25558. height: math.unit(30, "feet"),
  25559. weight: math.unit(35000, "kg"),
  25560. name: "Front",
  25561. image: {
  25562. source: "./media/characters/alydar/front.svg",
  25563. extra: 223.37 / 210.2,
  25564. bottom: 22.3 / 246.76
  25565. }
  25566. },
  25567. top: {
  25568. height: math.unit(64.54, "feet"),
  25569. weight: math.unit(35000, "kg"),
  25570. name: "Top",
  25571. image: {
  25572. source: "./media/characters/alydar/top.svg"
  25573. }
  25574. },
  25575. anthro: {
  25576. height: math.unit(30, "feet"),
  25577. weight: math.unit(9000, "kg"),
  25578. name: "Anthro",
  25579. image: {
  25580. source: "./media/characters/alydar/anthro.svg",
  25581. extra: 432 / 421,
  25582. bottom: 7.18 / 440
  25583. }
  25584. },
  25585. maw: {
  25586. height: math.unit(11.693, "feet"),
  25587. name: "Maw",
  25588. image: {
  25589. source: "./media/characters/alydar/maw.svg"
  25590. }
  25591. },
  25592. head: {
  25593. height: math.unit(11.693, "feet"),
  25594. name: "Head",
  25595. image: {
  25596. source: "./media/characters/alydar/head.svg"
  25597. }
  25598. },
  25599. headAlt: {
  25600. height: math.unit(12.861, "feet"),
  25601. name: "Head (Alt)",
  25602. image: {
  25603. source: "./media/characters/alydar/head-alt.svg"
  25604. }
  25605. },
  25606. wing: {
  25607. height: math.unit(20.712, "feet"),
  25608. name: "Wing",
  25609. image: {
  25610. source: "./media/characters/alydar/wing.svg"
  25611. }
  25612. },
  25613. wingFeather: {
  25614. height: math.unit(9.662, "feet"),
  25615. name: "Wing Feather",
  25616. image: {
  25617. source: "./media/characters/alydar/wing-feather.svg"
  25618. }
  25619. },
  25620. countourFeather: {
  25621. height: math.unit(4.154, "feet"),
  25622. name: "Contour Feather",
  25623. image: {
  25624. source: "./media/characters/alydar/contour-feather.svg"
  25625. }
  25626. },
  25627. },
  25628. [
  25629. {
  25630. name: "Diplomatic",
  25631. height: math.unit(13, "feet"),
  25632. default: true
  25633. },
  25634. {
  25635. name: "Small",
  25636. height: math.unit(30, "feet")
  25637. },
  25638. {
  25639. name: "Normal",
  25640. height: math.unit(95, "feet"),
  25641. default: true
  25642. },
  25643. {
  25644. name: "Large",
  25645. height: math.unit(285, "feet")
  25646. },
  25647. {
  25648. name: "Incomprehensible",
  25649. height: math.unit(450, "megameters")
  25650. },
  25651. ]
  25652. ))
  25653. characterMakers.push(() => makeCharacter(
  25654. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25655. {
  25656. side: {
  25657. height: math.unit(11, "feet"),
  25658. weight: math.unit(1750, "kg"),
  25659. name: "Side",
  25660. image: {
  25661. source: "./media/characters/selicia/side.svg",
  25662. extra: 440 / 396,
  25663. bottom: 24.8 / 465.979
  25664. }
  25665. },
  25666. maw: {
  25667. height: math.unit(4.665, "feet"),
  25668. name: "Maw",
  25669. image: {
  25670. source: "./media/characters/selicia/maw.svg"
  25671. }
  25672. },
  25673. },
  25674. [
  25675. {
  25676. name: "Normal",
  25677. height: math.unit(11, "feet"),
  25678. default: true
  25679. },
  25680. ]
  25681. ))
  25682. characterMakers.push(() => makeCharacter(
  25683. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25684. {
  25685. side: {
  25686. height: math.unit(2 + 6 / 12, "feet"),
  25687. weight: math.unit(30, "lb"),
  25688. name: "Side",
  25689. image: {
  25690. source: "./media/characters/layla/side.svg",
  25691. extra: 244 / 188,
  25692. bottom: 18.2 / 262.1
  25693. }
  25694. },
  25695. back: {
  25696. height: math.unit(2 + 6 / 12, "feet"),
  25697. weight: math.unit(30, "lb"),
  25698. name: "Back",
  25699. image: {
  25700. source: "./media/characters/layla/back.svg",
  25701. extra: 308 / 241.5,
  25702. bottom: 8.9 / 316.8
  25703. }
  25704. },
  25705. cumming: {
  25706. height: math.unit(2 + 6 / 12, "feet"),
  25707. weight: math.unit(30, "lb"),
  25708. name: "Cumming",
  25709. image: {
  25710. source: "./media/characters/layla/cumming.svg",
  25711. extra: 342 / 279,
  25712. bottom: 595 / 938
  25713. }
  25714. },
  25715. dickFlaccid: {
  25716. height: math.unit(2.595, "feet"),
  25717. name: "Flaccid Genitals",
  25718. image: {
  25719. source: "./media/characters/layla/dick-flaccid.svg"
  25720. }
  25721. },
  25722. dickErect: {
  25723. height: math.unit(2.359, "feet"),
  25724. name: "Erect Genitals",
  25725. image: {
  25726. source: "./media/characters/layla/dick-erect.svg"
  25727. }
  25728. },
  25729. dragon: {
  25730. height: math.unit(40, "feet"),
  25731. name: "Dragon",
  25732. image: {
  25733. source: "./media/characters/layla/dragon.svg",
  25734. extra: 610/535,
  25735. bottom: 367/977
  25736. }
  25737. },
  25738. taur: {
  25739. height: math.unit(30, "feet"),
  25740. name: "Taur",
  25741. image: {
  25742. source: "./media/characters/layla/taur.svg",
  25743. extra: 1268/1199,
  25744. bottom: 112/1380
  25745. }
  25746. },
  25747. },
  25748. [
  25749. {
  25750. name: "Micro",
  25751. height: math.unit(1, "inch")
  25752. },
  25753. {
  25754. name: "Small",
  25755. height: math.unit(1, "foot")
  25756. },
  25757. {
  25758. name: "Normal",
  25759. height: math.unit(2 + 6 / 12, "feet"),
  25760. default: true
  25761. },
  25762. {
  25763. name: "Macro",
  25764. height: math.unit(200, "feet")
  25765. },
  25766. {
  25767. name: "Megamacro",
  25768. height: math.unit(1000, "miles")
  25769. },
  25770. {
  25771. name: "Planetary",
  25772. height: math.unit(8000, "miles")
  25773. },
  25774. {
  25775. name: "True Layla",
  25776. height: math.unit(200000 * 7, "multiverses")
  25777. },
  25778. ]
  25779. ))
  25780. characterMakers.push(() => makeCharacter(
  25781. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25782. {
  25783. back: {
  25784. height: math.unit(10.5, "feet"),
  25785. weight: math.unit(800, "lb"),
  25786. name: "Back",
  25787. image: {
  25788. source: "./media/characters/knox/back.svg",
  25789. extra: 1486 / 1089,
  25790. bottom: 107 / 1601.4
  25791. }
  25792. },
  25793. side: {
  25794. height: math.unit(10.5, "feet"),
  25795. weight: math.unit(800, "lb"),
  25796. name: "Side",
  25797. image: {
  25798. source: "./media/characters/knox/side.svg",
  25799. extra: 244 / 218,
  25800. bottom: 14 / 260
  25801. }
  25802. },
  25803. },
  25804. [
  25805. {
  25806. name: "Compact",
  25807. height: math.unit(10.5, "feet"),
  25808. default: true
  25809. },
  25810. {
  25811. name: "Dynamax",
  25812. height: math.unit(210, "feet")
  25813. },
  25814. {
  25815. name: "Full Macro",
  25816. height: math.unit(850, "feet")
  25817. },
  25818. ]
  25819. ))
  25820. characterMakers.push(() => makeCharacter(
  25821. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25822. {
  25823. front: {
  25824. height: math.unit(28, "feet"),
  25825. weight: math.unit(10500, "lb"),
  25826. name: "Front",
  25827. image: {
  25828. source: "./media/characters/kayda/front.svg",
  25829. extra: 1536 / 1428,
  25830. bottom: 68.7 / 1603
  25831. }
  25832. },
  25833. back: {
  25834. height: math.unit(28, "feet"),
  25835. weight: math.unit(10500, "lb"),
  25836. name: "Back",
  25837. image: {
  25838. source: "./media/characters/kayda/back.svg",
  25839. extra: 1557 / 1464,
  25840. bottom: 39.5 / 1597.49
  25841. }
  25842. },
  25843. dick: {
  25844. height: math.unit(3.858, "feet"),
  25845. name: "Dick",
  25846. image: {
  25847. source: "./media/characters/kayda/dick.svg"
  25848. }
  25849. },
  25850. },
  25851. [
  25852. {
  25853. name: "Macro",
  25854. height: math.unit(28, "feet"),
  25855. default: true
  25856. },
  25857. ]
  25858. ))
  25859. characterMakers.push(() => makeCharacter(
  25860. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25861. {
  25862. front: {
  25863. height: math.unit(10 + 11 / 12, "feet"),
  25864. weight: math.unit(1400, "lb"),
  25865. name: "Front",
  25866. image: {
  25867. source: "./media/characters/brian/front.svg",
  25868. extra: 737 / 692,
  25869. bottom: 55.4 / 785
  25870. }
  25871. },
  25872. },
  25873. [
  25874. {
  25875. name: "Normal",
  25876. height: math.unit(10 + 11 / 12, "feet"),
  25877. default: true
  25878. },
  25879. ]
  25880. ))
  25881. characterMakers.push(() => makeCharacter(
  25882. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25883. {
  25884. front: {
  25885. height: math.unit(5 + 8 / 12, "feet"),
  25886. weight: math.unit(140, "lb"),
  25887. name: "Front",
  25888. image: {
  25889. source: "./media/characters/khemri/front.svg",
  25890. extra: 4780 / 4059,
  25891. bottom: 80.1 / 4859.25
  25892. }
  25893. },
  25894. },
  25895. [
  25896. {
  25897. name: "Micro",
  25898. height: math.unit(6, "inches")
  25899. },
  25900. {
  25901. name: "Normal",
  25902. height: math.unit(5 + 8 / 12, "feet"),
  25903. default: true
  25904. },
  25905. ]
  25906. ))
  25907. characterMakers.push(() => makeCharacter(
  25908. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25909. {
  25910. front: {
  25911. height: math.unit(13, "feet"),
  25912. weight: math.unit(1700, "lb"),
  25913. name: "Front",
  25914. image: {
  25915. source: "./media/characters/felix-braveheart/front.svg",
  25916. extra: 1222 / 1157,
  25917. bottom: 53.2 / 1280
  25918. }
  25919. },
  25920. back: {
  25921. height: math.unit(13, "feet"),
  25922. weight: math.unit(1700, "lb"),
  25923. name: "Back",
  25924. image: {
  25925. source: "./media/characters/felix-braveheart/back.svg",
  25926. extra: 1277 / 1203,
  25927. bottom: 50.2 / 1327
  25928. }
  25929. },
  25930. feral: {
  25931. height: math.unit(6, "feet"),
  25932. weight: math.unit(400, "lb"),
  25933. name: "Feral",
  25934. image: {
  25935. source: "./media/characters/felix-braveheart/feral.svg",
  25936. extra: 682 / 625,
  25937. bottom: 6.9 / 688
  25938. }
  25939. },
  25940. },
  25941. [
  25942. {
  25943. name: "Normal",
  25944. height: math.unit(13, "feet"),
  25945. default: true
  25946. },
  25947. ]
  25948. ))
  25949. characterMakers.push(() => makeCharacter(
  25950. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25951. {
  25952. side: {
  25953. height: math.unit(5 + 11 / 12, "feet"),
  25954. weight: math.unit(1400, "lb"),
  25955. name: "Side",
  25956. image: {
  25957. source: "./media/characters/shadow-blade/side.svg",
  25958. extra: 1726 / 1267,
  25959. bottom: 58.4 / 1785
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "Normal",
  25966. height: math.unit(5 + 11 / 12, "feet"),
  25967. default: true
  25968. },
  25969. ]
  25970. ))
  25971. characterMakers.push(() => makeCharacter(
  25972. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25973. {
  25974. front: {
  25975. height: math.unit(1 + 6 / 12, "feet"),
  25976. weight: math.unit(25, "lb"),
  25977. name: "Front",
  25978. image: {
  25979. source: "./media/characters/karla-halldor/front.svg",
  25980. extra: 1459 / 1383,
  25981. bottom: 12 / 1472
  25982. }
  25983. },
  25984. },
  25985. [
  25986. {
  25987. name: "Normal",
  25988. height: math.unit(1 + 6 / 12, "feet"),
  25989. default: true
  25990. },
  25991. ]
  25992. ))
  25993. characterMakers.push(() => makeCharacter(
  25994. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25995. {
  25996. front: {
  25997. height: math.unit(6 + 2 / 12, "feet"),
  25998. weight: math.unit(160, "lb"),
  25999. name: "Front",
  26000. image: {
  26001. source: "./media/characters/ariam/front.svg",
  26002. extra: 1073/976,
  26003. bottom: 52/1125
  26004. }
  26005. },
  26006. back: {
  26007. height: math.unit(6 + 2/12, "feet"),
  26008. weight: math.unit(160, "lb"),
  26009. name: "Back",
  26010. image: {
  26011. source: "./media/characters/ariam/back.svg",
  26012. extra: 1103/1023,
  26013. bottom: 9/1112
  26014. }
  26015. },
  26016. dressed: {
  26017. height: math.unit(6 + 2/12, "feet"),
  26018. weight: math.unit(160, "lb"),
  26019. name: "Dressed",
  26020. image: {
  26021. source: "./media/characters/ariam/dressed.svg",
  26022. extra: 1099/1009,
  26023. bottom: 25/1124
  26024. }
  26025. },
  26026. squatting: {
  26027. height: math.unit(4.1, "feet"),
  26028. weight: math.unit(160, "lb"),
  26029. name: "Squatting",
  26030. image: {
  26031. source: "./media/characters/ariam/squatting.svg",
  26032. extra: 2617 / 2112,
  26033. bottom: 61.2 / 2681,
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Normal",
  26040. height: math.unit(6 + 2 / 12, "feet"),
  26041. default: true
  26042. },
  26043. {
  26044. name: "Normal+",
  26045. height: math.unit(4, "meters")
  26046. },
  26047. {
  26048. name: "Macro",
  26049. height: math.unit(50, "meters")
  26050. },
  26051. {
  26052. name: "Macro+",
  26053. height: math.unit(100, "meters")
  26054. },
  26055. {
  26056. name: "Megamacro",
  26057. height: math.unit(20, "km")
  26058. },
  26059. {
  26060. name: "Caretaker",
  26061. height: math.unit(444, "megameters")
  26062. },
  26063. ]
  26064. ))
  26065. characterMakers.push(() => makeCharacter(
  26066. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26067. {
  26068. front: {
  26069. height: math.unit(1.67, "meters"),
  26070. weight: math.unit(140, "lb"),
  26071. name: "Front",
  26072. image: {
  26073. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26074. extra: 438 / 410,
  26075. bottom: 0.75 / 439
  26076. }
  26077. },
  26078. },
  26079. [
  26080. {
  26081. name: "Shrunken",
  26082. height: math.unit(7.6, "cm")
  26083. },
  26084. {
  26085. name: "Human Scale",
  26086. height: math.unit(1.67, "meters")
  26087. },
  26088. {
  26089. name: "Wolxi Scale",
  26090. height: math.unit(36.7, "meters"),
  26091. default: true
  26092. },
  26093. ]
  26094. ))
  26095. characterMakers.push(() => makeCharacter(
  26096. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26097. {
  26098. front: {
  26099. height: math.unit(1.73, "meters"),
  26100. weight: math.unit(240, "lb"),
  26101. name: "Front",
  26102. image: {
  26103. source: "./media/characters/izue-two-mothers/front.svg",
  26104. extra: 469 / 437,
  26105. bottom: 1.24 / 470.6
  26106. }
  26107. },
  26108. },
  26109. [
  26110. {
  26111. name: "Shrunken",
  26112. height: math.unit(7.86, "cm")
  26113. },
  26114. {
  26115. name: "Human Scale",
  26116. height: math.unit(1.73, "meters")
  26117. },
  26118. {
  26119. name: "Wolxi Scale",
  26120. height: math.unit(38, "meters"),
  26121. default: true
  26122. },
  26123. ]
  26124. ))
  26125. characterMakers.push(() => makeCharacter(
  26126. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26127. {
  26128. front: {
  26129. height: math.unit(1.55, "meters"),
  26130. weight: math.unit(120, "lb"),
  26131. name: "Front",
  26132. image: {
  26133. source: "./media/characters/teeku-love-shack/front.svg",
  26134. extra: 387 / 362,
  26135. bottom: 1.51 / 388
  26136. }
  26137. },
  26138. },
  26139. [
  26140. {
  26141. name: "Shrunken",
  26142. height: math.unit(7, "cm")
  26143. },
  26144. {
  26145. name: "Human Scale",
  26146. height: math.unit(1.55, "meters")
  26147. },
  26148. {
  26149. name: "Wolxi Scale",
  26150. height: math.unit(34.1, "meters"),
  26151. default: true
  26152. },
  26153. ]
  26154. ))
  26155. characterMakers.push(() => makeCharacter(
  26156. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26157. {
  26158. front: {
  26159. height: math.unit(1.83, "meters"),
  26160. weight: math.unit(135, "lb"),
  26161. name: "Front",
  26162. image: {
  26163. source: "./media/characters/dejma-the-red/front.svg",
  26164. extra: 480 / 458,
  26165. bottom: 1.8 / 482
  26166. }
  26167. },
  26168. },
  26169. [
  26170. {
  26171. name: "Shrunken",
  26172. height: math.unit(8.3, "cm")
  26173. },
  26174. {
  26175. name: "Human Scale",
  26176. height: math.unit(1.83, "meters")
  26177. },
  26178. {
  26179. name: "Wolxi Scale",
  26180. height: math.unit(40, "meters"),
  26181. default: true
  26182. },
  26183. ]
  26184. ))
  26185. characterMakers.push(() => makeCharacter(
  26186. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26187. {
  26188. front: {
  26189. height: math.unit(1.78, "meters"),
  26190. weight: math.unit(65, "kg"),
  26191. name: "Front",
  26192. image: {
  26193. source: "./media/characters/aki/front.svg",
  26194. extra: 452 / 415
  26195. }
  26196. },
  26197. frontNsfw: {
  26198. height: math.unit(1.78, "meters"),
  26199. weight: math.unit(65, "kg"),
  26200. name: "Front (NSFW)",
  26201. image: {
  26202. source: "./media/characters/aki/front-nsfw.svg",
  26203. extra: 452 / 415
  26204. }
  26205. },
  26206. back: {
  26207. height: math.unit(1.78, "meters"),
  26208. weight: math.unit(65, "kg"),
  26209. name: "Back",
  26210. image: {
  26211. source: "./media/characters/aki/back.svg",
  26212. extra: 452 / 415
  26213. }
  26214. },
  26215. rump: {
  26216. height: math.unit(2.05, "feet"),
  26217. name: "Rump",
  26218. image: {
  26219. source: "./media/characters/aki/rump.svg"
  26220. }
  26221. },
  26222. dick: {
  26223. height: math.unit(0.95, "feet"),
  26224. name: "Dick",
  26225. image: {
  26226. source: "./media/characters/aki/dick.svg"
  26227. }
  26228. },
  26229. },
  26230. [
  26231. {
  26232. name: "Micro",
  26233. height: math.unit(15, "cm")
  26234. },
  26235. {
  26236. name: "Normal",
  26237. height: math.unit(178, "cm"),
  26238. default: true
  26239. },
  26240. {
  26241. name: "Macro",
  26242. height: math.unit(214, "m")
  26243. },
  26244. {
  26245. name: "Macro+",
  26246. height: math.unit(534, "m")
  26247. },
  26248. ]
  26249. ))
  26250. characterMakers.push(() => makeCharacter(
  26251. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26252. {
  26253. front: {
  26254. height: math.unit(5 + 5 / 12, "feet"),
  26255. weight: math.unit(120, "lb"),
  26256. name: "Front",
  26257. image: {
  26258. source: "./media/characters/ari/front.svg",
  26259. extra: 1550/1471,
  26260. bottom: 39/1589
  26261. }
  26262. },
  26263. },
  26264. [
  26265. {
  26266. name: "Normal",
  26267. height: math.unit(5 + 5 / 12, "feet")
  26268. },
  26269. {
  26270. name: "Macro",
  26271. height: math.unit(100, "feet"),
  26272. default: true
  26273. },
  26274. {
  26275. name: "Megamacro",
  26276. height: math.unit(100, "miles")
  26277. },
  26278. {
  26279. name: "Gigamacro",
  26280. height: math.unit(80000, "miles")
  26281. },
  26282. ]
  26283. ))
  26284. characterMakers.push(() => makeCharacter(
  26285. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26286. {
  26287. side: {
  26288. height: math.unit(9, "feet"),
  26289. weight: math.unit(400, "kg"),
  26290. name: "Side",
  26291. image: {
  26292. source: "./media/characters/bolt/side.svg",
  26293. extra: 1126 / 896,
  26294. bottom: 60 / 1187.3,
  26295. }
  26296. },
  26297. },
  26298. [
  26299. {
  26300. name: "Micro",
  26301. height: math.unit(5, "inches")
  26302. },
  26303. {
  26304. name: "Normal",
  26305. height: math.unit(9, "feet"),
  26306. default: true
  26307. },
  26308. {
  26309. name: "Macro",
  26310. height: math.unit(700, "feet")
  26311. },
  26312. {
  26313. name: "Max Size",
  26314. height: math.unit(1.52e22, "yottameters")
  26315. },
  26316. ]
  26317. ))
  26318. characterMakers.push(() => makeCharacter(
  26319. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26320. {
  26321. front: {
  26322. height: math.unit(4.3, "meters"),
  26323. weight: math.unit(3, "tons"),
  26324. name: "Front",
  26325. image: {
  26326. source: "./media/characters/draekon-sylviar/front.svg",
  26327. extra: 2072/1512,
  26328. bottom: 74/2146
  26329. }
  26330. },
  26331. back: {
  26332. height: math.unit(4.3, "meters"),
  26333. weight: math.unit(3, "tons"),
  26334. name: "Back",
  26335. image: {
  26336. source: "./media/characters/draekon-sylviar/back.svg",
  26337. extra: 1639/1483,
  26338. bottom: 41/1680
  26339. }
  26340. },
  26341. feral: {
  26342. height: math.unit(1.15, "meters"),
  26343. weight: math.unit(3, "tons"),
  26344. name: "Feral",
  26345. image: {
  26346. source: "./media/characters/draekon-sylviar/feral.svg",
  26347. extra: 1033/395,
  26348. bottom: 130/1163
  26349. }
  26350. },
  26351. maw: {
  26352. height: math.unit(1.3, "meters"),
  26353. name: "Maw",
  26354. image: {
  26355. source: "./media/characters/draekon-sylviar/maw.svg"
  26356. }
  26357. },
  26358. mawSeparated: {
  26359. height: math.unit(1.53, "meters"),
  26360. name: "Separated Maw",
  26361. image: {
  26362. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26363. }
  26364. },
  26365. tail: {
  26366. height: math.unit(1.15, "meters"),
  26367. name: "Tail",
  26368. image: {
  26369. source: "./media/characters/draekon-sylviar/tail.svg"
  26370. }
  26371. },
  26372. tailDick: {
  26373. height: math.unit(1.15, "meters"),
  26374. name: "Tail (Dick)",
  26375. image: {
  26376. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26377. }
  26378. },
  26379. tailDickSeparated: {
  26380. height: math.unit(1.19, "meters"),
  26381. name: "Tail (Separated Dick)",
  26382. image: {
  26383. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26384. }
  26385. },
  26386. slit: {
  26387. height: math.unit(1, "meters"),
  26388. name: "Slit",
  26389. image: {
  26390. source: "./media/characters/draekon-sylviar/slit.svg"
  26391. }
  26392. },
  26393. dick: {
  26394. height: math.unit(1.15, "meters"),
  26395. name: "Dick",
  26396. image: {
  26397. source: "./media/characters/draekon-sylviar/dick.svg"
  26398. }
  26399. },
  26400. dickSeparated: {
  26401. height: math.unit(1.1, "meters"),
  26402. name: "Separated Dick",
  26403. image: {
  26404. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26405. }
  26406. },
  26407. sheath: {
  26408. height: math.unit(1.15, "meters"),
  26409. name: "Sheath",
  26410. image: {
  26411. source: "./media/characters/draekon-sylviar/sheath.svg"
  26412. }
  26413. },
  26414. },
  26415. [
  26416. {
  26417. name: "Small",
  26418. height: math.unit(4.53 / 2, "meters"),
  26419. default: true
  26420. },
  26421. {
  26422. name: "Normal",
  26423. height: math.unit(4.53, "meters"),
  26424. default: true
  26425. },
  26426. {
  26427. name: "Large",
  26428. height: math.unit(4.53 * 2, "meters"),
  26429. },
  26430. ]
  26431. ))
  26432. characterMakers.push(() => makeCharacter(
  26433. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26434. {
  26435. front: {
  26436. height: math.unit(6 + 2 / 12, "feet"),
  26437. weight: math.unit(180, "lb"),
  26438. name: "Front",
  26439. image: {
  26440. source: "./media/characters/brawler/front.svg",
  26441. extra: 3301 / 3027,
  26442. bottom: 138 / 3439
  26443. }
  26444. },
  26445. },
  26446. [
  26447. {
  26448. name: "Normal",
  26449. height: math.unit(6 + 2 / 12, "feet"),
  26450. default: true
  26451. },
  26452. ]
  26453. ))
  26454. characterMakers.push(() => makeCharacter(
  26455. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26456. {
  26457. front: {
  26458. height: math.unit(11, "feet"),
  26459. weight: math.unit(1000, "lb"),
  26460. name: "Front",
  26461. image: {
  26462. source: "./media/characters/alex/front.svg",
  26463. bottom: 44.5 / 620
  26464. }
  26465. },
  26466. },
  26467. [
  26468. {
  26469. name: "Micro",
  26470. height: math.unit(5, "inches")
  26471. },
  26472. {
  26473. name: "Normal",
  26474. height: math.unit(11, "feet"),
  26475. default: true
  26476. },
  26477. {
  26478. name: "Macro",
  26479. height: math.unit(9.5e9, "feet")
  26480. },
  26481. {
  26482. name: "Max Size",
  26483. height: math.unit(1.4e283, "yottameters")
  26484. },
  26485. ]
  26486. ))
  26487. characterMakers.push(() => makeCharacter(
  26488. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26489. {
  26490. female: {
  26491. height: math.unit(29.9, "m"),
  26492. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26493. name: "Female",
  26494. image: {
  26495. source: "./media/characters/zenari/female.svg",
  26496. extra: 3281.6 / 3217,
  26497. bottom: 72.2 / 3353
  26498. }
  26499. },
  26500. male: {
  26501. height: math.unit(27.7, "m"),
  26502. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26503. name: "Male",
  26504. image: {
  26505. source: "./media/characters/zenari/male.svg",
  26506. extra: 3008 / 2991,
  26507. bottom: 54.6 / 3069
  26508. }
  26509. },
  26510. },
  26511. [
  26512. {
  26513. name: "Macro",
  26514. height: math.unit(29.7, "meters"),
  26515. default: true
  26516. },
  26517. ]
  26518. ))
  26519. characterMakers.push(() => makeCharacter(
  26520. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26521. {
  26522. female: {
  26523. height: math.unit(23.8, "m"),
  26524. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26525. name: "Female",
  26526. image: {
  26527. source: "./media/characters/mactarian/female.svg",
  26528. extra: 2662 / 2569,
  26529. bottom: 73 / 2736
  26530. }
  26531. },
  26532. male: {
  26533. height: math.unit(23.8, "m"),
  26534. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26535. name: "Male",
  26536. image: {
  26537. source: "./media/characters/mactarian/male.svg",
  26538. extra: 2673 / 2600,
  26539. bottom: 76 / 2750
  26540. }
  26541. },
  26542. },
  26543. [
  26544. {
  26545. name: "Macro",
  26546. height: math.unit(23.8, "meters"),
  26547. default: true
  26548. },
  26549. ]
  26550. ))
  26551. characterMakers.push(() => makeCharacter(
  26552. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26553. {
  26554. female: {
  26555. height: math.unit(19.3, "m"),
  26556. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26557. name: "Female",
  26558. image: {
  26559. source: "./media/characters/umok/female.svg",
  26560. extra: 2186 / 2078,
  26561. bottom: 87 / 2277
  26562. }
  26563. },
  26564. male: {
  26565. height: math.unit(19.5, "m"),
  26566. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26567. name: "Male",
  26568. image: {
  26569. source: "./media/characters/umok/male.svg",
  26570. extra: 2233 / 2140,
  26571. bottom: 24.4 / 2258
  26572. }
  26573. },
  26574. },
  26575. [
  26576. {
  26577. name: "Macro",
  26578. height: math.unit(19.3, "meters"),
  26579. default: true
  26580. },
  26581. ]
  26582. ))
  26583. characterMakers.push(() => makeCharacter(
  26584. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26585. {
  26586. female: {
  26587. height: math.unit(26.15, "m"),
  26588. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26589. name: "Female",
  26590. image: {
  26591. source: "./media/characters/joraxian/female.svg",
  26592. extra: 2912 / 2824,
  26593. bottom: 36 / 2956
  26594. }
  26595. },
  26596. male: {
  26597. height: math.unit(25.4, "m"),
  26598. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26599. name: "Male",
  26600. image: {
  26601. source: "./media/characters/joraxian/male.svg",
  26602. extra: 2877 / 2721,
  26603. bottom: 82 / 2967
  26604. }
  26605. },
  26606. },
  26607. [
  26608. {
  26609. name: "Macro",
  26610. height: math.unit(26.15, "meters"),
  26611. default: true
  26612. },
  26613. ]
  26614. ))
  26615. characterMakers.push(() => makeCharacter(
  26616. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26617. {
  26618. female: {
  26619. height: math.unit(21.6, "m"),
  26620. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26621. name: "Female",
  26622. image: {
  26623. source: "./media/characters/sthara/female.svg",
  26624. extra: 2516 / 2347,
  26625. bottom: 21.5 / 2537
  26626. }
  26627. },
  26628. male: {
  26629. height: math.unit(24, "m"),
  26630. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26631. name: "Male",
  26632. image: {
  26633. source: "./media/characters/sthara/male.svg",
  26634. extra: 2732 / 2607,
  26635. bottom: 23 / 2732
  26636. }
  26637. },
  26638. },
  26639. [
  26640. {
  26641. name: "Macro",
  26642. height: math.unit(21.6, "meters"),
  26643. default: true
  26644. },
  26645. ]
  26646. ))
  26647. characterMakers.push(() => makeCharacter(
  26648. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26649. {
  26650. front: {
  26651. height: math.unit(6 + 4 / 12, "feet"),
  26652. weight: math.unit(175, "lb"),
  26653. name: "Front",
  26654. image: {
  26655. source: "./media/characters/luka-bryzant/front.svg",
  26656. extra: 311 / 289,
  26657. bottom: 4 / 315
  26658. }
  26659. },
  26660. back: {
  26661. height: math.unit(6 + 4 / 12, "feet"),
  26662. weight: math.unit(175, "lb"),
  26663. name: "Back",
  26664. image: {
  26665. source: "./media/characters/luka-bryzant/back.svg",
  26666. extra: 311 / 289,
  26667. bottom: 3.8 / 313.7
  26668. }
  26669. },
  26670. },
  26671. [
  26672. {
  26673. name: "Micro",
  26674. height: math.unit(10, "inches")
  26675. },
  26676. {
  26677. name: "Normal",
  26678. height: math.unit(6 + 4 / 12, "feet"),
  26679. default: true
  26680. },
  26681. {
  26682. name: "Large",
  26683. height: math.unit(12, "feet")
  26684. },
  26685. ]
  26686. ))
  26687. characterMakers.push(() => makeCharacter(
  26688. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26689. {
  26690. front: {
  26691. height: math.unit(5 + 7 / 12, "feet"),
  26692. weight: math.unit(185, "lb"),
  26693. name: "Front",
  26694. image: {
  26695. source: "./media/characters/aman-aquila/front.svg",
  26696. extra: 1013 / 976,
  26697. bottom: 45.6 / 1057
  26698. }
  26699. },
  26700. side: {
  26701. height: math.unit(5 + 7 / 12, "feet"),
  26702. weight: math.unit(185, "lb"),
  26703. name: "Side",
  26704. image: {
  26705. source: "./media/characters/aman-aquila/side.svg",
  26706. extra: 1054 / 1011,
  26707. bottom: 15 / 1070
  26708. }
  26709. },
  26710. back: {
  26711. height: math.unit(5 + 7 / 12, "feet"),
  26712. weight: math.unit(185, "lb"),
  26713. name: "Back",
  26714. image: {
  26715. source: "./media/characters/aman-aquila/back.svg",
  26716. extra: 1026 / 970,
  26717. bottom: 12 / 1039
  26718. }
  26719. },
  26720. head: {
  26721. height: math.unit(1.211, "feet"),
  26722. name: "Head",
  26723. image: {
  26724. source: "./media/characters/aman-aquila/head.svg",
  26725. }
  26726. },
  26727. },
  26728. [
  26729. {
  26730. name: "Minimicro",
  26731. height: math.unit(0.057, "inches")
  26732. },
  26733. {
  26734. name: "Micro",
  26735. height: math.unit(7, "inches")
  26736. },
  26737. {
  26738. name: "Mini",
  26739. height: math.unit(3 + 7 / 12, "feet")
  26740. },
  26741. {
  26742. name: "Normal",
  26743. height: math.unit(5 + 7 / 12, "feet"),
  26744. default: true
  26745. },
  26746. {
  26747. name: "Macro",
  26748. height: math.unit(157 + 7 / 12, "feet")
  26749. },
  26750. {
  26751. name: "Megamacro",
  26752. height: math.unit(1557 + 7 / 12, "feet")
  26753. },
  26754. {
  26755. name: "Gigamacro",
  26756. height: math.unit(15557 + 7 / 12, "feet")
  26757. },
  26758. ]
  26759. ))
  26760. characterMakers.push(() => makeCharacter(
  26761. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26762. {
  26763. front: {
  26764. height: math.unit(3 + 2 / 12, "inches"),
  26765. weight: math.unit(0.3, "ounces"),
  26766. name: "Front",
  26767. image: {
  26768. source: "./media/characters/hiphae/front.svg",
  26769. extra: 1931 / 1683,
  26770. bottom: 24 / 1955
  26771. }
  26772. },
  26773. },
  26774. [
  26775. {
  26776. name: "Normal",
  26777. height: math.unit(3 + 1 / 2, "inches"),
  26778. default: true
  26779. },
  26780. ]
  26781. ))
  26782. characterMakers.push(() => makeCharacter(
  26783. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26784. {
  26785. front: {
  26786. height: math.unit(5 + 10 / 12, "feet"),
  26787. weight: math.unit(165, "lb"),
  26788. name: "Front",
  26789. image: {
  26790. source: "./media/characters/nicky/front.svg",
  26791. extra: 3144 / 2886,
  26792. bottom: 45.6 / 3192
  26793. }
  26794. },
  26795. back: {
  26796. height: math.unit(5 + 10 / 12, "feet"),
  26797. weight: math.unit(165, "lb"),
  26798. name: "Back",
  26799. image: {
  26800. source: "./media/characters/nicky/back.svg",
  26801. extra: 3055 / 2804,
  26802. bottom: 28.4 / 3087
  26803. }
  26804. },
  26805. frontclothed: {
  26806. height: math.unit(5 + 10 / 12, "feet"),
  26807. weight: math.unit(165, "lb"),
  26808. name: "Front-clothed",
  26809. image: {
  26810. source: "./media/characters/nicky/front-clothed.svg",
  26811. extra: 3184.9 / 2926.9,
  26812. bottom: 86.5 / 3239.9
  26813. }
  26814. },
  26815. foot: {
  26816. height: math.unit(1.16, "feet"),
  26817. name: "Foot",
  26818. image: {
  26819. source: "./media/characters/nicky/foot.svg"
  26820. }
  26821. },
  26822. feet: {
  26823. height: math.unit(1.34, "feet"),
  26824. name: "Feet",
  26825. image: {
  26826. source: "./media/characters/nicky/feet.svg"
  26827. }
  26828. },
  26829. maw: {
  26830. height: math.unit(0.9, "feet"),
  26831. name: "Maw",
  26832. image: {
  26833. source: "./media/characters/nicky/maw.svg"
  26834. }
  26835. },
  26836. },
  26837. [
  26838. {
  26839. name: "Normal",
  26840. height: math.unit(5 + 10 / 12, "feet"),
  26841. default: true
  26842. },
  26843. {
  26844. name: "Macro",
  26845. height: math.unit(60, "feet")
  26846. },
  26847. {
  26848. name: "Megamacro",
  26849. height: math.unit(1, "mile")
  26850. },
  26851. ]
  26852. ))
  26853. characterMakers.push(() => makeCharacter(
  26854. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26855. {
  26856. side: {
  26857. height: math.unit(10, "feet"),
  26858. weight: math.unit(600, "lb"),
  26859. name: "Side",
  26860. image: {
  26861. source: "./media/characters/blair/side.svg",
  26862. bottom: 16.6 / 475,
  26863. extra: 458 / 431
  26864. }
  26865. },
  26866. },
  26867. [
  26868. {
  26869. name: "Micro",
  26870. height: math.unit(8, "inches")
  26871. },
  26872. {
  26873. name: "Normal",
  26874. height: math.unit(10, "feet"),
  26875. default: true
  26876. },
  26877. {
  26878. name: "Macro",
  26879. height: math.unit(180, "feet")
  26880. },
  26881. ]
  26882. ))
  26883. characterMakers.push(() => makeCharacter(
  26884. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26885. {
  26886. front: {
  26887. height: math.unit(5 + 4 / 12, "feet"),
  26888. weight: math.unit(125, "lb"),
  26889. name: "Front",
  26890. image: {
  26891. source: "./media/characters/fisher/front.svg",
  26892. extra: 444 / 390,
  26893. bottom: 2 / 444.8
  26894. }
  26895. },
  26896. },
  26897. [
  26898. {
  26899. name: "Micro",
  26900. height: math.unit(4, "inches")
  26901. },
  26902. {
  26903. name: "Normal",
  26904. height: math.unit(5 + 4 / 12, "feet"),
  26905. default: true
  26906. },
  26907. {
  26908. name: "Macro",
  26909. height: math.unit(100, "feet")
  26910. },
  26911. ]
  26912. ))
  26913. characterMakers.push(() => makeCharacter(
  26914. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26915. {
  26916. front: {
  26917. height: math.unit(6.71, "feet"),
  26918. weight: math.unit(200, "lb"),
  26919. preyCapacity: math.unit(1000000, "people"),
  26920. name: "Front",
  26921. image: {
  26922. source: "./media/characters/gliss/front.svg",
  26923. extra: 2347 / 2231,
  26924. bottom: 113 / 2462
  26925. }
  26926. },
  26927. hammerspaceSize: {
  26928. height: math.unit(6.71 * 717, "feet"),
  26929. weight: math.unit(200, "lb"),
  26930. preyCapacity: math.unit(1000000, "people"),
  26931. name: "Hammerspace Size",
  26932. image: {
  26933. source: "./media/characters/gliss/front.svg",
  26934. extra: 2347 / 2231,
  26935. bottom: 113 / 2462
  26936. }
  26937. },
  26938. },
  26939. [
  26940. {
  26941. name: "Normal",
  26942. height: math.unit(6.71, "feet"),
  26943. default: true
  26944. },
  26945. ]
  26946. ))
  26947. characterMakers.push(() => makeCharacter(
  26948. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26949. {
  26950. side: {
  26951. height: math.unit(1.44, "m"),
  26952. weight: math.unit(80, "kg"),
  26953. name: "Side",
  26954. image: {
  26955. source: "./media/characters/dune-anderson/side.svg",
  26956. bottom: 49 / 1426
  26957. }
  26958. },
  26959. },
  26960. [
  26961. {
  26962. name: "Wolf-sized",
  26963. height: math.unit(1.44, "meters")
  26964. },
  26965. {
  26966. name: "Normal",
  26967. height: math.unit(5.05, "meters"),
  26968. default: true
  26969. },
  26970. {
  26971. name: "Big",
  26972. height: math.unit(14.4, "meters")
  26973. },
  26974. {
  26975. name: "Huge",
  26976. height: math.unit(144, "meters")
  26977. },
  26978. ]
  26979. ))
  26980. characterMakers.push(() => makeCharacter(
  26981. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26982. {
  26983. front: {
  26984. height: math.unit(7, "feet"),
  26985. weight: math.unit(425, "lb"),
  26986. name: "Front",
  26987. image: {
  26988. source: "./media/characters/hind/front.svg",
  26989. extra: 2091 / 1860,
  26990. bottom: 129 / 2220
  26991. }
  26992. },
  26993. back: {
  26994. height: math.unit(7, "feet"),
  26995. weight: math.unit(425, "lb"),
  26996. name: "Back",
  26997. image: {
  26998. source: "./media/characters/hind/back.svg",
  26999. extra: 2091 / 1860,
  27000. bottom: 24.6 / 2309
  27001. }
  27002. },
  27003. tail: {
  27004. height: math.unit(2.8, "feet"),
  27005. name: "Tail",
  27006. image: {
  27007. source: "./media/characters/hind/tail.svg"
  27008. }
  27009. },
  27010. head: {
  27011. height: math.unit(2.55, "feet"),
  27012. name: "Head",
  27013. image: {
  27014. source: "./media/characters/hind/head.svg"
  27015. }
  27016. },
  27017. },
  27018. [
  27019. {
  27020. name: "XS",
  27021. height: math.unit(0.7, "feet")
  27022. },
  27023. {
  27024. name: "Normal",
  27025. height: math.unit(7, "feet"),
  27026. default: true
  27027. },
  27028. {
  27029. name: "XL",
  27030. height: math.unit(70, "feet")
  27031. },
  27032. ]
  27033. ))
  27034. characterMakers.push(() => makeCharacter(
  27035. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27036. {
  27037. front: {
  27038. height: math.unit(2.1, "meters"),
  27039. weight: math.unit(150, "lb"),
  27040. name: "Front",
  27041. image: {
  27042. source: "./media/characters/tharquench-sizestealer/front.svg",
  27043. extra: 1605/1470,
  27044. bottom: 36/1641
  27045. }
  27046. },
  27047. frontAlt: {
  27048. height: math.unit(2.1, "meters"),
  27049. weight: math.unit(150, "lb"),
  27050. name: "Front (Alt)",
  27051. image: {
  27052. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27053. extra: 2318 / 2063,
  27054. bottom: 93.4 / 2410
  27055. }
  27056. },
  27057. },
  27058. [
  27059. {
  27060. name: "Nano",
  27061. height: math.unit(1, "mm")
  27062. },
  27063. {
  27064. name: "Micro",
  27065. height: math.unit(1, "cm")
  27066. },
  27067. {
  27068. name: "Normal",
  27069. height: math.unit(2.1, "meters"),
  27070. default: true
  27071. },
  27072. ]
  27073. ))
  27074. characterMakers.push(() => makeCharacter(
  27075. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27076. {
  27077. front: {
  27078. height: math.unit(7 + 5 / 12, "feet"),
  27079. weight: math.unit(357, "lb"),
  27080. name: "Front",
  27081. image: {
  27082. source: "./media/characters/solex-draconov/front.svg",
  27083. extra: 1993 / 1865,
  27084. bottom: 117 / 2111
  27085. }
  27086. },
  27087. },
  27088. [
  27089. {
  27090. name: "Natural Height",
  27091. height: math.unit(7 + 5 / 12, "feet"),
  27092. default: true
  27093. },
  27094. {
  27095. name: "Macro",
  27096. height: math.unit(350, "feet")
  27097. },
  27098. {
  27099. name: "Macro+",
  27100. height: math.unit(1000, "feet")
  27101. },
  27102. {
  27103. name: "Megamacro",
  27104. height: math.unit(20, "km")
  27105. },
  27106. {
  27107. name: "Megamacro+",
  27108. height: math.unit(1000, "km")
  27109. },
  27110. {
  27111. name: "Gigamacro",
  27112. height: math.unit(2.5, "Gm")
  27113. },
  27114. {
  27115. name: "Teramacro",
  27116. height: math.unit(15, "Tm")
  27117. },
  27118. {
  27119. name: "Galactic",
  27120. height: math.unit(30, "Zm")
  27121. },
  27122. {
  27123. name: "Universal",
  27124. height: math.unit(21000, "Ym")
  27125. },
  27126. {
  27127. name: "Omniversal",
  27128. height: math.unit(9.861e50, "Ym")
  27129. },
  27130. {
  27131. name: "Existential",
  27132. height: math.unit(1e300, "meters")
  27133. },
  27134. ]
  27135. ))
  27136. characterMakers.push(() => makeCharacter(
  27137. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27138. {
  27139. side: {
  27140. height: math.unit(25, "feet"),
  27141. weight: math.unit(90000, "lb"),
  27142. name: "Side",
  27143. image: {
  27144. source: "./media/characters/mandarax/side.svg",
  27145. extra: 614 / 332,
  27146. bottom: 55 / 630
  27147. }
  27148. },
  27149. lounging: {
  27150. height: math.unit(15.4, "feet"),
  27151. weight: math.unit(90000, "lb"),
  27152. name: "Lounging",
  27153. image: {
  27154. source: "./media/characters/mandarax/lounging.svg",
  27155. extra: 817/609,
  27156. bottom: 685/1502
  27157. }
  27158. },
  27159. head: {
  27160. height: math.unit(11.4, "feet"),
  27161. name: "Head",
  27162. image: {
  27163. source: "./media/characters/mandarax/head.svg"
  27164. }
  27165. },
  27166. belly: {
  27167. height: math.unit(33, "feet"),
  27168. name: "Belly",
  27169. preyCapacity: math.unit(500, "people"),
  27170. image: {
  27171. source: "./media/characters/mandarax/belly.svg"
  27172. }
  27173. },
  27174. dick: {
  27175. height: math.unit(8.46, "feet"),
  27176. name: "Dick",
  27177. image: {
  27178. source: "./media/characters/mandarax/dick.svg"
  27179. }
  27180. },
  27181. top: {
  27182. height: math.unit(28, "meters"),
  27183. name: "Top",
  27184. image: {
  27185. source: "./media/characters/mandarax/top.svg"
  27186. }
  27187. },
  27188. },
  27189. [
  27190. {
  27191. name: "Normal",
  27192. height: math.unit(25, "feet"),
  27193. default: true
  27194. },
  27195. ]
  27196. ))
  27197. characterMakers.push(() => makeCharacter(
  27198. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27199. {
  27200. front: {
  27201. height: math.unit(5, "feet"),
  27202. weight: math.unit(90, "lb"),
  27203. name: "Front",
  27204. image: {
  27205. source: "./media/characters/pixil/front.svg",
  27206. extra: 2000 / 1618,
  27207. bottom: 12.3 / 2011
  27208. }
  27209. },
  27210. },
  27211. [
  27212. {
  27213. name: "Normal",
  27214. height: math.unit(5, "feet"),
  27215. default: true
  27216. },
  27217. {
  27218. name: "Megamacro",
  27219. height: math.unit(10, "miles"),
  27220. },
  27221. ]
  27222. ))
  27223. characterMakers.push(() => makeCharacter(
  27224. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27225. {
  27226. front: {
  27227. height: math.unit(7 + 2 / 12, "feet"),
  27228. weight: math.unit(200, "lb"),
  27229. name: "Front",
  27230. image: {
  27231. source: "./media/characters/angel/front.svg",
  27232. extra: 1830 / 1737,
  27233. bottom: 22.6 / 1854,
  27234. }
  27235. },
  27236. },
  27237. [
  27238. {
  27239. name: "Normal",
  27240. height: math.unit(7 + 2 / 12, "feet"),
  27241. default: true
  27242. },
  27243. {
  27244. name: "Macro",
  27245. height: math.unit(1000, "feet")
  27246. },
  27247. {
  27248. name: "Megamacro",
  27249. height: math.unit(2, "miles")
  27250. },
  27251. {
  27252. name: "Gigamacro",
  27253. height: math.unit(20, "earths")
  27254. },
  27255. ]
  27256. ))
  27257. characterMakers.push(() => makeCharacter(
  27258. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27259. {
  27260. front: {
  27261. height: math.unit(5, "feet"),
  27262. weight: math.unit(180, "lb"),
  27263. name: "Front",
  27264. image: {
  27265. source: "./media/characters/mekana/front.svg",
  27266. extra: 1671 / 1605,
  27267. bottom: 3.5 / 1691
  27268. }
  27269. },
  27270. side: {
  27271. height: math.unit(5, "feet"),
  27272. weight: math.unit(180, "lb"),
  27273. name: "Side",
  27274. image: {
  27275. source: "./media/characters/mekana/side.svg",
  27276. extra: 1671 / 1605,
  27277. bottom: 3.5 / 1691
  27278. }
  27279. },
  27280. back: {
  27281. height: math.unit(5, "feet"),
  27282. weight: math.unit(180, "lb"),
  27283. name: "Back",
  27284. image: {
  27285. source: "./media/characters/mekana/back.svg",
  27286. extra: 1671 / 1605,
  27287. bottom: 3.5 / 1691
  27288. }
  27289. },
  27290. },
  27291. [
  27292. {
  27293. name: "Normal",
  27294. height: math.unit(5, "feet"),
  27295. default: true
  27296. },
  27297. ]
  27298. ))
  27299. characterMakers.push(() => makeCharacter(
  27300. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27301. {
  27302. front: {
  27303. height: math.unit(4 + 6 / 12, "feet"),
  27304. weight: math.unit(80, "lb"),
  27305. name: "Front",
  27306. image: {
  27307. source: "./media/characters/pixie/front.svg",
  27308. extra: 1924 / 1825,
  27309. bottom: 22.4 / 1946
  27310. }
  27311. },
  27312. },
  27313. [
  27314. {
  27315. name: "Normal",
  27316. height: math.unit(4 + 6 / 12, "feet"),
  27317. default: true
  27318. },
  27319. {
  27320. name: "Macro",
  27321. height: math.unit(40, "feet")
  27322. },
  27323. ]
  27324. ))
  27325. characterMakers.push(() => makeCharacter(
  27326. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27327. {
  27328. front: {
  27329. height: math.unit(2.1, "meters"),
  27330. weight: math.unit(200, "lb"),
  27331. name: "Front",
  27332. image: {
  27333. source: "./media/characters/the-lascivious/front.svg",
  27334. extra: 1 / 0.893,
  27335. bottom: 3.5 / 573.7
  27336. }
  27337. },
  27338. },
  27339. [
  27340. {
  27341. name: "Human Scale",
  27342. height: math.unit(2.1, "meters")
  27343. },
  27344. {
  27345. name: "Wolxi Scale",
  27346. height: math.unit(46.2, "m"),
  27347. default: true
  27348. },
  27349. {
  27350. name: "Boinker of Buildings",
  27351. height: math.unit(10, "km")
  27352. },
  27353. {
  27354. name: "Shagger of Skyscrapers",
  27355. height: math.unit(40, "km")
  27356. },
  27357. {
  27358. name: "Banger of Boroughs",
  27359. height: math.unit(4000, "km")
  27360. },
  27361. {
  27362. name: "Screwer of States",
  27363. height: math.unit(100000, "km")
  27364. },
  27365. {
  27366. name: "Pounder of Planets",
  27367. height: math.unit(2000000, "km")
  27368. },
  27369. ]
  27370. ))
  27371. characterMakers.push(() => makeCharacter(
  27372. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27373. {
  27374. front: {
  27375. height: math.unit(6, "feet"),
  27376. weight: math.unit(150, "lb"),
  27377. name: "Front",
  27378. image: {
  27379. source: "./media/characters/aj/front.svg",
  27380. extra: 2039 / 1562,
  27381. bottom: 40 / 2079
  27382. }
  27383. },
  27384. },
  27385. [
  27386. {
  27387. name: "Normal",
  27388. height: math.unit(11 + 6 / 12, "feet"),
  27389. default: true
  27390. },
  27391. {
  27392. name: "Megamacro",
  27393. height: math.unit(60, "megameters")
  27394. },
  27395. ]
  27396. ))
  27397. characterMakers.push(() => makeCharacter(
  27398. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27399. {
  27400. side: {
  27401. height: math.unit(31 + 8 / 12, "feet"),
  27402. weight: math.unit(75000, "kg"),
  27403. name: "Side",
  27404. image: {
  27405. source: "./media/characters/koros/side.svg",
  27406. extra: 1442 / 1297,
  27407. bottom: 122.7 / 1562
  27408. }
  27409. },
  27410. dicksKingsCrown: {
  27411. height: math.unit(6, "feet"),
  27412. name: "Dicks (King's Crown)",
  27413. image: {
  27414. source: "./media/characters/koros/dicks-kings-crown.svg"
  27415. }
  27416. },
  27417. dicksTailSet: {
  27418. height: math.unit(3, "feet"),
  27419. name: "Dicks (Tail Set)",
  27420. image: {
  27421. source: "./media/characters/koros/dicks-tail-set.svg"
  27422. }
  27423. },
  27424. dickCumming: {
  27425. height: math.unit(7.98, "feet"),
  27426. name: "Dick (Cumming)",
  27427. image: {
  27428. source: "./media/characters/koros/dick-cumming.svg"
  27429. }
  27430. },
  27431. dicksBack: {
  27432. height: math.unit(5.9, "feet"),
  27433. name: "Dicks (Back)",
  27434. image: {
  27435. source: "./media/characters/koros/dicks-back.svg"
  27436. }
  27437. },
  27438. dicksFront: {
  27439. height: math.unit(3.72, "feet"),
  27440. name: "Dicks (Front)",
  27441. image: {
  27442. source: "./media/characters/koros/dicks-front.svg"
  27443. }
  27444. },
  27445. dicksPeeking: {
  27446. height: math.unit(3.0, "feet"),
  27447. name: "Dicks (Peeking)",
  27448. image: {
  27449. source: "./media/characters/koros/dicks-peeking.svg"
  27450. }
  27451. },
  27452. eye: {
  27453. height: math.unit(1.7, "feet"),
  27454. name: "Eye",
  27455. image: {
  27456. source: "./media/characters/koros/eye.svg"
  27457. }
  27458. },
  27459. headFront: {
  27460. height: math.unit(11.69, "feet"),
  27461. name: "Head (Front)",
  27462. image: {
  27463. source: "./media/characters/koros/head-front.svg"
  27464. }
  27465. },
  27466. headSide: {
  27467. height: math.unit(14, "feet"),
  27468. name: "Head (Side)",
  27469. image: {
  27470. source: "./media/characters/koros/head-side.svg"
  27471. }
  27472. },
  27473. leg: {
  27474. height: math.unit(17, "feet"),
  27475. name: "Leg",
  27476. image: {
  27477. source: "./media/characters/koros/leg.svg"
  27478. }
  27479. },
  27480. mawSide: {
  27481. height: math.unit(12.8, "feet"),
  27482. name: "Maw (Side)",
  27483. image: {
  27484. source: "./media/characters/koros/maw-side.svg"
  27485. }
  27486. },
  27487. mawSpitting: {
  27488. height: math.unit(17, "feet"),
  27489. name: "Maw (Spitting)",
  27490. image: {
  27491. source: "./media/characters/koros/maw-spitting.svg"
  27492. }
  27493. },
  27494. slit: {
  27495. height: math.unit(2.8, "feet"),
  27496. name: "Slit",
  27497. image: {
  27498. source: "./media/characters/koros/slit.svg"
  27499. }
  27500. },
  27501. stomach: {
  27502. height: math.unit(6.8, "feet"),
  27503. preyCapacity: math.unit(20, "people"),
  27504. name: "Stomach",
  27505. image: {
  27506. source: "./media/characters/koros/stomach.svg"
  27507. }
  27508. },
  27509. wingspanBottom: {
  27510. height: math.unit(114, "feet"),
  27511. name: "Wingspan (Bottom)",
  27512. image: {
  27513. source: "./media/characters/koros/wingspan-bottom.svg"
  27514. }
  27515. },
  27516. wingspanTop: {
  27517. height: math.unit(104, "feet"),
  27518. name: "Wingspan (Top)",
  27519. image: {
  27520. source: "./media/characters/koros/wingspan-top.svg"
  27521. }
  27522. },
  27523. },
  27524. [
  27525. {
  27526. name: "Normal",
  27527. height: math.unit(31 + 8 / 12, "feet"),
  27528. default: true
  27529. },
  27530. ]
  27531. ))
  27532. characterMakers.push(() => makeCharacter(
  27533. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27534. {
  27535. front: {
  27536. height: math.unit(18 + 5 / 12, "feet"),
  27537. weight: math.unit(3750, "kg"),
  27538. name: "Front",
  27539. image: {
  27540. source: "./media/characters/vexx/front.svg",
  27541. extra: 426 / 396,
  27542. bottom: 31.5 / 458
  27543. }
  27544. },
  27545. maw: {
  27546. height: math.unit(6, "feet"),
  27547. name: "Maw",
  27548. image: {
  27549. source: "./media/characters/vexx/maw.svg"
  27550. }
  27551. },
  27552. },
  27553. [
  27554. {
  27555. name: "Normal",
  27556. height: math.unit(18 + 5 / 12, "feet"),
  27557. default: true
  27558. },
  27559. ]
  27560. ))
  27561. characterMakers.push(() => makeCharacter(
  27562. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27563. {
  27564. front: {
  27565. height: math.unit(17 + 6 / 12, "feet"),
  27566. weight: math.unit(150, "lb"),
  27567. name: "Front",
  27568. image: {
  27569. source: "./media/characters/baadra/front.svg",
  27570. extra: 1694/1553,
  27571. bottom: 179/1873
  27572. }
  27573. },
  27574. frontAlt: {
  27575. height: math.unit(17 + 6 / 12, "feet"),
  27576. weight: math.unit(150, "lb"),
  27577. name: "Front (Alt)",
  27578. image: {
  27579. source: "./media/characters/baadra/front-alt.svg",
  27580. extra: 3137 / 2890,
  27581. bottom: 168.4 / 3305
  27582. }
  27583. },
  27584. back: {
  27585. height: math.unit(17 + 6 / 12, "feet"),
  27586. weight: math.unit(150, "lb"),
  27587. name: "Back",
  27588. image: {
  27589. source: "./media/characters/baadra/back.svg",
  27590. extra: 3142 / 2890,
  27591. bottom: 220 / 3371
  27592. }
  27593. },
  27594. head: {
  27595. height: math.unit(5.45, "feet"),
  27596. name: "Head",
  27597. image: {
  27598. source: "./media/characters/baadra/head.svg"
  27599. }
  27600. },
  27601. headAngry: {
  27602. height: math.unit(4.95, "feet"),
  27603. name: "Head (Angry)",
  27604. image: {
  27605. source: "./media/characters/baadra/head-angry.svg"
  27606. }
  27607. },
  27608. headOpen: {
  27609. height: math.unit(6, "feet"),
  27610. name: "Head (Open)",
  27611. image: {
  27612. source: "./media/characters/baadra/head-open.svg"
  27613. }
  27614. },
  27615. },
  27616. [
  27617. {
  27618. name: "Normal",
  27619. height: math.unit(17 + 6 / 12, "feet"),
  27620. default: true
  27621. },
  27622. ]
  27623. ))
  27624. characterMakers.push(() => makeCharacter(
  27625. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27626. {
  27627. front: {
  27628. height: math.unit(7 + 3 / 12, "feet"),
  27629. weight: math.unit(180, "lb"),
  27630. name: "Front",
  27631. image: {
  27632. source: "./media/characters/juri/front.svg",
  27633. extra: 1401 / 1237,
  27634. bottom: 18.5 / 1418
  27635. }
  27636. },
  27637. side: {
  27638. height: math.unit(7 + 3 / 12, "feet"),
  27639. weight: math.unit(180, "lb"),
  27640. name: "Side",
  27641. image: {
  27642. source: "./media/characters/juri/side.svg",
  27643. extra: 1424 / 1242,
  27644. bottom: 18.5 / 1447
  27645. }
  27646. },
  27647. sitting: {
  27648. height: math.unit(6, "feet"),
  27649. weight: math.unit(180, "lb"),
  27650. name: "Sitting",
  27651. image: {
  27652. source: "./media/characters/juri/sitting.svg",
  27653. extra: 1270 / 1143,
  27654. bottom: 100 / 1343
  27655. }
  27656. },
  27657. back: {
  27658. height: math.unit(7 + 3 / 12, "feet"),
  27659. weight: math.unit(180, "lb"),
  27660. name: "Back",
  27661. image: {
  27662. source: "./media/characters/juri/back.svg",
  27663. extra: 1377 / 1240,
  27664. bottom: 23.7 / 1405
  27665. }
  27666. },
  27667. maw: {
  27668. height: math.unit(2.8, "feet"),
  27669. name: "Maw",
  27670. image: {
  27671. source: "./media/characters/juri/maw.svg"
  27672. }
  27673. },
  27674. stomach: {
  27675. height: math.unit(0.89, "feet"),
  27676. preyCapacity: math.unit(4, "liters"),
  27677. name: "Stomach",
  27678. image: {
  27679. source: "./media/characters/juri/stomach.svg"
  27680. }
  27681. },
  27682. },
  27683. [
  27684. {
  27685. name: "Normal",
  27686. height: math.unit(7 + 3 / 12, "feet"),
  27687. default: true
  27688. },
  27689. ]
  27690. ))
  27691. characterMakers.push(() => makeCharacter(
  27692. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27693. {
  27694. fox: {
  27695. height: math.unit(5 + 6 / 12, "feet"),
  27696. weight: math.unit(140, "lb"),
  27697. name: "Fox",
  27698. image: {
  27699. source: "./media/characters/maxene-sita/fox.svg",
  27700. extra: 146 / 138,
  27701. bottom: 2.1 / 148.19
  27702. }
  27703. },
  27704. foxLaying: {
  27705. height: math.unit(1.70, "feet"),
  27706. weight: math.unit(140, "lb"),
  27707. name: "Fox (Laying)",
  27708. image: {
  27709. source: "./media/characters/maxene-sita/fox-laying.svg",
  27710. extra: 910 / 572,
  27711. bottom: 71 / 981
  27712. }
  27713. },
  27714. kitsune: {
  27715. height: math.unit(10, "feet"),
  27716. weight: math.unit(800, "lb"),
  27717. name: "Kitsune",
  27718. image: {
  27719. source: "./media/characters/maxene-sita/kitsune.svg",
  27720. extra: 185 / 176,
  27721. bottom: 4.7 / 189.9
  27722. }
  27723. },
  27724. hellhound: {
  27725. height: math.unit(10, "feet"),
  27726. weight: math.unit(700, "lb"),
  27727. name: "Hellhound",
  27728. image: {
  27729. source: "./media/characters/maxene-sita/hellhound.svg",
  27730. extra: 1600 / 1545,
  27731. bottom: 81 / 1681
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Normal",
  27738. height: math.unit(5 + 6 / 12, "feet"),
  27739. default: true
  27740. },
  27741. ]
  27742. ))
  27743. characterMakers.push(() => makeCharacter(
  27744. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27745. {
  27746. front: {
  27747. height: math.unit(3 + 4 / 12, "feet"),
  27748. weight: math.unit(70, "lb"),
  27749. name: "Front",
  27750. image: {
  27751. source: "./media/characters/maia/front.svg",
  27752. extra: 227 / 219.5,
  27753. bottom: 40 / 267
  27754. }
  27755. },
  27756. back: {
  27757. height: math.unit(3 + 4 / 12, "feet"),
  27758. weight: math.unit(70, "lb"),
  27759. name: "Back",
  27760. image: {
  27761. source: "./media/characters/maia/back.svg",
  27762. extra: 237 / 225
  27763. }
  27764. },
  27765. },
  27766. [
  27767. {
  27768. name: "Normal",
  27769. height: math.unit(3 + 4 / 12, "feet"),
  27770. default: true
  27771. },
  27772. ]
  27773. ))
  27774. characterMakers.push(() => makeCharacter(
  27775. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27776. {
  27777. front: {
  27778. height: math.unit(5 + 10 / 12, "feet"),
  27779. weight: math.unit(197, "lb"),
  27780. name: "Front",
  27781. image: {
  27782. source: "./media/characters/jabaro/front.svg",
  27783. extra: 225 / 216,
  27784. bottom: 5.06 / 230
  27785. }
  27786. },
  27787. back: {
  27788. height: math.unit(5 + 10 / 12, "feet"),
  27789. weight: math.unit(197, "lb"),
  27790. name: "Back",
  27791. image: {
  27792. source: "./media/characters/jabaro/back.svg",
  27793. extra: 225 / 219,
  27794. bottom: 1.9 / 227
  27795. }
  27796. },
  27797. },
  27798. [
  27799. {
  27800. name: "Normal",
  27801. height: math.unit(5 + 10 / 12, "feet"),
  27802. default: true
  27803. },
  27804. ]
  27805. ))
  27806. characterMakers.push(() => makeCharacter(
  27807. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27808. {
  27809. front: {
  27810. height: math.unit(5 + 8 / 12, "feet"),
  27811. weight: math.unit(139, "lb"),
  27812. name: "Front",
  27813. image: {
  27814. source: "./media/characters/risa/front.svg",
  27815. extra: 270 / 260,
  27816. bottom: 11.2 / 282
  27817. }
  27818. },
  27819. back: {
  27820. height: math.unit(5 + 8 / 12, "feet"),
  27821. weight: math.unit(139, "lb"),
  27822. name: "Back",
  27823. image: {
  27824. source: "./media/characters/risa/back.svg",
  27825. extra: 264 / 255,
  27826. bottom: 4 / 268
  27827. }
  27828. },
  27829. },
  27830. [
  27831. {
  27832. name: "Normal",
  27833. height: math.unit(5 + 8 / 12, "feet"),
  27834. default: true
  27835. },
  27836. ]
  27837. ))
  27838. characterMakers.push(() => makeCharacter(
  27839. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27840. {
  27841. front: {
  27842. height: math.unit(2 + 11 / 12, "feet"),
  27843. weight: math.unit(30, "lb"),
  27844. name: "Front",
  27845. image: {
  27846. source: "./media/characters/weatley/front.svg",
  27847. bottom: 10.7 / 414,
  27848. extra: 403.5 / 362
  27849. }
  27850. },
  27851. back: {
  27852. height: math.unit(2 + 11 / 12, "feet"),
  27853. weight: math.unit(30, "lb"),
  27854. name: "Back",
  27855. image: {
  27856. source: "./media/characters/weatley/back.svg",
  27857. bottom: 10.7 / 414,
  27858. extra: 403.5 / 362
  27859. }
  27860. },
  27861. },
  27862. [
  27863. {
  27864. name: "Normal",
  27865. height: math.unit(2 + 11 / 12, "feet"),
  27866. default: true
  27867. },
  27868. ]
  27869. ))
  27870. characterMakers.push(() => makeCharacter(
  27871. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27872. {
  27873. front: {
  27874. height: math.unit(5 + 2 / 12, "feet"),
  27875. weight: math.unit(50, "kg"),
  27876. name: "Front",
  27877. image: {
  27878. source: "./media/characters/mercury-crescent/front.svg",
  27879. extra: 1088 / 1033,
  27880. bottom: 18.9 / 1109
  27881. }
  27882. },
  27883. },
  27884. [
  27885. {
  27886. name: "Normal",
  27887. height: math.unit(5 + 2 / 12, "feet"),
  27888. default: true
  27889. },
  27890. ]
  27891. ))
  27892. characterMakers.push(() => makeCharacter(
  27893. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27894. {
  27895. front: {
  27896. height: math.unit(2, "feet"),
  27897. weight: math.unit(15, "kg"),
  27898. name: "Front",
  27899. image: {
  27900. source: "./media/characters/diamond-jones/front.svg",
  27901. extra: 727/723,
  27902. bottom: 46/773
  27903. }
  27904. },
  27905. },
  27906. [
  27907. {
  27908. name: "Normal",
  27909. height: math.unit(2, "feet"),
  27910. default: true
  27911. },
  27912. ]
  27913. ))
  27914. characterMakers.push(() => makeCharacter(
  27915. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27916. {
  27917. front: {
  27918. height: math.unit(3, "feet"),
  27919. weight: math.unit(30, "kg"),
  27920. name: "Front",
  27921. image: {
  27922. source: "./media/characters/sweet-bit/front.svg",
  27923. extra: 675 / 567,
  27924. bottom: 27.7 / 703
  27925. }
  27926. },
  27927. },
  27928. [
  27929. {
  27930. name: "Normal",
  27931. height: math.unit(3, "feet"),
  27932. default: true
  27933. },
  27934. ]
  27935. ))
  27936. characterMakers.push(() => makeCharacter(
  27937. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27938. {
  27939. side: {
  27940. height: math.unit(9.178, "feet"),
  27941. weight: math.unit(500, "lb"),
  27942. name: "Side",
  27943. image: {
  27944. source: "./media/characters/umbrazen/side.svg",
  27945. extra: 1730 / 1473,
  27946. bottom: 34.6 / 1765
  27947. }
  27948. },
  27949. },
  27950. [
  27951. {
  27952. name: "Normal",
  27953. height: math.unit(9.178, "feet"),
  27954. default: true
  27955. },
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27960. {
  27961. front: {
  27962. height: math.unit(10, "feet"),
  27963. weight: math.unit(750, "lb"),
  27964. name: "Front",
  27965. image: {
  27966. source: "./media/characters/arlist/front.svg",
  27967. extra: 961 / 778,
  27968. bottom: 6.2 / 986
  27969. }
  27970. },
  27971. },
  27972. [
  27973. {
  27974. name: "Normal",
  27975. height: math.unit(10, "feet"),
  27976. default: true
  27977. },
  27978. ]
  27979. ))
  27980. characterMakers.push(() => makeCharacter(
  27981. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27982. {
  27983. front: {
  27984. height: math.unit(5 + 1 / 12, "feet"),
  27985. weight: math.unit(110, "lb"),
  27986. name: "Front",
  27987. image: {
  27988. source: "./media/characters/aradel/front.svg",
  27989. extra: 324 / 303,
  27990. bottom: 3.6 / 329.4
  27991. }
  27992. },
  27993. },
  27994. [
  27995. {
  27996. name: "Normal",
  27997. height: math.unit(5 + 1 / 12, "feet"),
  27998. default: true
  27999. },
  28000. ]
  28001. ))
  28002. characterMakers.push(() => makeCharacter(
  28003. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28004. {
  28005. dressed: {
  28006. height: math.unit(3 + 8 / 12, "feet"),
  28007. weight: math.unit(50, "lb"),
  28008. name: "Dressed",
  28009. image: {
  28010. source: "./media/characters/serryn/dressed.svg",
  28011. extra: 1792 / 1656,
  28012. bottom: 43.5 / 1840
  28013. }
  28014. },
  28015. nude: {
  28016. height: math.unit(3 + 8 / 12, "feet"),
  28017. weight: math.unit(50, "lb"),
  28018. name: "Nude",
  28019. image: {
  28020. source: "./media/characters/serryn/nude.svg",
  28021. extra: 1792 / 1656,
  28022. bottom: 43.5 / 1840
  28023. }
  28024. },
  28025. },
  28026. [
  28027. {
  28028. name: "Normal",
  28029. height: math.unit(3 + 8 / 12, "feet"),
  28030. default: true
  28031. },
  28032. ]
  28033. ))
  28034. characterMakers.push(() => makeCharacter(
  28035. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28036. {
  28037. front: {
  28038. height: math.unit(7 + 10 / 12, "feet"),
  28039. weight: math.unit(255, "lb"),
  28040. name: "Front",
  28041. image: {
  28042. source: "./media/characters/xavier-thyme/front.svg",
  28043. extra: 3733 / 3642,
  28044. bottom: 131 / 3869
  28045. }
  28046. },
  28047. frontRaven: {
  28048. height: math.unit(7 + 10 / 12, "feet"),
  28049. weight: math.unit(255, "lb"),
  28050. name: "Front (Raven)",
  28051. image: {
  28052. source: "./media/characters/xavier-thyme/front-raven.svg",
  28053. extra: 4385 / 3642,
  28054. bottom: 131 / 4517
  28055. }
  28056. },
  28057. },
  28058. [
  28059. {
  28060. name: "Normal",
  28061. height: math.unit(7 + 10 / 12, "feet"),
  28062. default: true
  28063. },
  28064. ]
  28065. ))
  28066. characterMakers.push(() => makeCharacter(
  28067. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28068. {
  28069. front: {
  28070. height: math.unit(1.6, "m"),
  28071. weight: math.unit(50, "kg"),
  28072. name: "Front",
  28073. image: {
  28074. source: "./media/characters/kiki/front.svg",
  28075. extra: 4682 / 3610,
  28076. bottom: 115 / 4777
  28077. }
  28078. },
  28079. },
  28080. [
  28081. {
  28082. name: "Normal",
  28083. height: math.unit(1.6, "meters"),
  28084. default: true
  28085. },
  28086. ]
  28087. ))
  28088. characterMakers.push(() => makeCharacter(
  28089. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28090. {
  28091. front: {
  28092. height: math.unit(50, "m"),
  28093. weight: math.unit(500, "tonnes"),
  28094. name: "Front",
  28095. image: {
  28096. source: "./media/characters/ryoko/front.svg",
  28097. extra: 4632 / 3926,
  28098. bottom: 193 / 4823
  28099. }
  28100. },
  28101. },
  28102. [
  28103. {
  28104. name: "Normal",
  28105. height: math.unit(50, "meters"),
  28106. default: true
  28107. },
  28108. ]
  28109. ))
  28110. characterMakers.push(() => makeCharacter(
  28111. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28112. {
  28113. front: {
  28114. height: math.unit(30, "m"),
  28115. weight: math.unit(22, "tonnes"),
  28116. name: "Front",
  28117. image: {
  28118. source: "./media/characters/elio/front.svg",
  28119. extra: 4582 / 3720,
  28120. bottom: 236 / 4828
  28121. }
  28122. },
  28123. },
  28124. [
  28125. {
  28126. name: "Normal",
  28127. height: math.unit(30, "meters"),
  28128. default: true
  28129. },
  28130. ]
  28131. ))
  28132. characterMakers.push(() => makeCharacter(
  28133. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28134. {
  28135. front: {
  28136. height: math.unit(6 + 3 / 12, "feet"),
  28137. weight: math.unit(120, "lb"),
  28138. name: "Front",
  28139. image: {
  28140. source: "./media/characters/azura/front.svg",
  28141. extra: 1149 / 1135,
  28142. bottom: 45 / 1194
  28143. }
  28144. },
  28145. frontClothed: {
  28146. height: math.unit(6 + 3 / 12, "feet"),
  28147. weight: math.unit(120, "lb"),
  28148. name: "Front (Clothed)",
  28149. image: {
  28150. source: "./media/characters/azura/front-clothed.svg",
  28151. extra: 1149 / 1135,
  28152. bottom: 45 / 1194
  28153. }
  28154. },
  28155. },
  28156. [
  28157. {
  28158. name: "Normal",
  28159. height: math.unit(6 + 3 / 12, "feet"),
  28160. default: true
  28161. },
  28162. {
  28163. name: "Macro",
  28164. height: math.unit(20 + 6 / 12, "feet")
  28165. },
  28166. {
  28167. name: "Megamacro",
  28168. height: math.unit(12, "miles")
  28169. },
  28170. {
  28171. name: "Gigamacro",
  28172. height: math.unit(10000, "miles")
  28173. },
  28174. {
  28175. name: "Teramacro",
  28176. height: math.unit(900000, "miles")
  28177. },
  28178. ]
  28179. ))
  28180. characterMakers.push(() => makeCharacter(
  28181. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28182. {
  28183. front: {
  28184. height: math.unit(12, "feet"),
  28185. weight: math.unit(1, "ton"),
  28186. capacity: math.unit(660000, "gallons"),
  28187. name: "Front",
  28188. image: {
  28189. source: "./media/characters/zeus/front.svg",
  28190. extra: 5005 / 4717,
  28191. bottom: 363 / 5388
  28192. }
  28193. },
  28194. },
  28195. [
  28196. {
  28197. name: "Normal",
  28198. height: math.unit(12, "feet")
  28199. },
  28200. {
  28201. name: "Preferred Size",
  28202. height: math.unit(0.5, "miles"),
  28203. default: true
  28204. },
  28205. {
  28206. name: "Giga Horse",
  28207. height: math.unit(300, "miles")
  28208. },
  28209. {
  28210. name: "Riding Planets",
  28211. height: math.unit(30, "megameters")
  28212. },
  28213. {
  28214. name: "Cosmic Giant",
  28215. height: math.unit(3, "zettameters")
  28216. },
  28217. {
  28218. name: "Breeding God",
  28219. height: math.unit(9.92e22, "yottameters")
  28220. },
  28221. ]
  28222. ))
  28223. characterMakers.push(() => makeCharacter(
  28224. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28225. {
  28226. side: {
  28227. height: math.unit(9, "feet"),
  28228. weight: math.unit(1500, "kg"),
  28229. name: "Side",
  28230. image: {
  28231. source: "./media/characters/fang/side.svg",
  28232. extra: 924 / 866,
  28233. bottom: 47.5 / 972.3
  28234. }
  28235. },
  28236. },
  28237. [
  28238. {
  28239. name: "Normal",
  28240. height: math.unit(9, "feet"),
  28241. default: true
  28242. },
  28243. {
  28244. name: "Macro",
  28245. height: math.unit(75 + 6 / 12, "feet")
  28246. },
  28247. {
  28248. name: "Teramacro",
  28249. height: math.unit(50000, "miles")
  28250. },
  28251. ]
  28252. ))
  28253. characterMakers.push(() => makeCharacter(
  28254. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28255. {
  28256. front: {
  28257. height: math.unit(10, "feet"),
  28258. weight: math.unit(2, "tons"),
  28259. name: "Front",
  28260. image: {
  28261. source: "./media/characters/rekhit/front.svg",
  28262. extra: 2796 / 2590,
  28263. bottom: 225 / 3022
  28264. }
  28265. },
  28266. },
  28267. [
  28268. {
  28269. name: "Normal",
  28270. height: math.unit(10, "feet"),
  28271. default: true
  28272. },
  28273. {
  28274. name: "Macro",
  28275. height: math.unit(500, "feet")
  28276. },
  28277. ]
  28278. ))
  28279. characterMakers.push(() => makeCharacter(
  28280. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28281. {
  28282. front: {
  28283. height: math.unit(7 + 6.451 / 12, "feet"),
  28284. weight: math.unit(310, "lb"),
  28285. name: "Front",
  28286. image: {
  28287. source: "./media/characters/dahlia-verrick/front.svg",
  28288. extra: 1488 / 1365,
  28289. bottom: 6.2 / 1495
  28290. }
  28291. },
  28292. back: {
  28293. height: math.unit(7 + 6.451 / 12, "feet"),
  28294. weight: math.unit(310, "lb"),
  28295. name: "Back",
  28296. image: {
  28297. source: "./media/characters/dahlia-verrick/back.svg",
  28298. extra: 1472 / 1351,
  28299. bottom: 5.28 / 1477
  28300. }
  28301. },
  28302. frontBusiness: {
  28303. height: math.unit(7 + 6.451 / 12, "feet"),
  28304. weight: math.unit(200, "lb"),
  28305. name: "Front (Business)",
  28306. image: {
  28307. source: "./media/characters/dahlia-verrick/front-business.svg",
  28308. extra: 1478 / 1381,
  28309. bottom: 5.5 / 1484
  28310. }
  28311. },
  28312. frontCasual: {
  28313. height: math.unit(7 + 6.451 / 12, "feet"),
  28314. weight: math.unit(200, "lb"),
  28315. name: "Front (Casual)",
  28316. image: {
  28317. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28318. extra: 1478 / 1381,
  28319. bottom: 5.5 / 1484
  28320. }
  28321. },
  28322. },
  28323. [
  28324. {
  28325. name: "Travel-Sized",
  28326. height: math.unit(7.45, "inches")
  28327. },
  28328. {
  28329. name: "Normal",
  28330. height: math.unit(7 + 6.451 / 12, "feet"),
  28331. default: true
  28332. },
  28333. {
  28334. name: "Hitting the Town",
  28335. height: math.unit(37 + 8 / 12, "feet")
  28336. },
  28337. {
  28338. name: "Stomp in the Suburbs",
  28339. height: math.unit(964 + 9.728 / 12, "feet")
  28340. },
  28341. {
  28342. name: "Sit on the City",
  28343. height: math.unit(61747 + 10.592 / 12, "feet")
  28344. },
  28345. {
  28346. name: "Glomp the Globe",
  28347. height: math.unit(252919327 + 4.832 / 12, "feet")
  28348. },
  28349. ]
  28350. ))
  28351. characterMakers.push(() => makeCharacter(
  28352. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28353. {
  28354. front: {
  28355. height: math.unit(6 + 4 / 12, "feet"),
  28356. weight: math.unit(320, "lb"),
  28357. name: "Front",
  28358. image: {
  28359. source: "./media/characters/balina-mahigan/front.svg",
  28360. extra: 447 / 428,
  28361. bottom: 18 / 466
  28362. }
  28363. },
  28364. back: {
  28365. height: math.unit(6 + 4 / 12, "feet"),
  28366. weight: math.unit(320, "lb"),
  28367. name: "Back",
  28368. image: {
  28369. source: "./media/characters/balina-mahigan/back.svg",
  28370. extra: 445 / 428,
  28371. bottom: 4.07 / 448
  28372. }
  28373. },
  28374. arm: {
  28375. height: math.unit(1.88, "feet"),
  28376. name: "Arm",
  28377. image: {
  28378. source: "./media/characters/balina-mahigan/arm.svg"
  28379. }
  28380. },
  28381. backPort: {
  28382. height: math.unit(0.685, "feet"),
  28383. name: "Back Port",
  28384. image: {
  28385. source: "./media/characters/balina-mahigan/back-port.svg"
  28386. }
  28387. },
  28388. hoofpaw: {
  28389. height: math.unit(1.41, "feet"),
  28390. name: "Hoofpaw",
  28391. image: {
  28392. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28393. }
  28394. },
  28395. leftHandBack: {
  28396. height: math.unit(0.938, "feet"),
  28397. name: "Left Hand (Back)",
  28398. image: {
  28399. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28400. }
  28401. },
  28402. leftHandFront: {
  28403. height: math.unit(0.938, "feet"),
  28404. name: "Left Hand (Front)",
  28405. image: {
  28406. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28407. }
  28408. },
  28409. rightHandBack: {
  28410. height: math.unit(0.95, "feet"),
  28411. name: "Right Hand (Back)",
  28412. image: {
  28413. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28414. }
  28415. },
  28416. rightHandFront: {
  28417. height: math.unit(0.95, "feet"),
  28418. name: "Right Hand (Front)",
  28419. image: {
  28420. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28421. }
  28422. },
  28423. },
  28424. [
  28425. {
  28426. name: "Normal",
  28427. height: math.unit(6 + 4 / 12, "feet"),
  28428. default: true
  28429. },
  28430. ]
  28431. ))
  28432. characterMakers.push(() => makeCharacter(
  28433. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28434. {
  28435. front: {
  28436. height: math.unit(6, "feet"),
  28437. weight: math.unit(320, "lb"),
  28438. name: "Front",
  28439. image: {
  28440. source: "./media/characters/balina-mejeri/front.svg",
  28441. extra: 517 / 488,
  28442. bottom: 44.2 / 561
  28443. }
  28444. },
  28445. },
  28446. [
  28447. {
  28448. name: "Normal",
  28449. height: math.unit(6 + 4 / 12, "feet")
  28450. },
  28451. {
  28452. name: "Business",
  28453. height: math.unit(155, "feet"),
  28454. default: true
  28455. },
  28456. ]
  28457. ))
  28458. characterMakers.push(() => makeCharacter(
  28459. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28460. {
  28461. kneeling: {
  28462. height: math.unit(6 + 4 / 12, "feet"),
  28463. weight: math.unit(300 * 20, "lb"),
  28464. name: "Kneeling",
  28465. image: {
  28466. source: "./media/characters/balbarian/kneeling.svg",
  28467. extra: 922 / 862,
  28468. bottom: 42.4 / 965
  28469. }
  28470. },
  28471. },
  28472. [
  28473. {
  28474. name: "Normal",
  28475. height: math.unit(6 + 4 / 12, "feet")
  28476. },
  28477. {
  28478. name: "Treasured",
  28479. height: math.unit(18 + 9 / 12, "feet"),
  28480. default: true
  28481. },
  28482. {
  28483. name: "Macro",
  28484. height: math.unit(900, "feet")
  28485. },
  28486. ]
  28487. ))
  28488. characterMakers.push(() => makeCharacter(
  28489. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28490. {
  28491. front: {
  28492. height: math.unit(6 + 4 / 12, "feet"),
  28493. weight: math.unit(325, "lb"),
  28494. name: "Front",
  28495. image: {
  28496. source: "./media/characters/balina-amarini/front.svg",
  28497. extra: 415 / 403,
  28498. bottom: 19 / 433.4
  28499. }
  28500. },
  28501. back: {
  28502. height: math.unit(6 + 4 / 12, "feet"),
  28503. weight: math.unit(325, "lb"),
  28504. name: "Back",
  28505. image: {
  28506. source: "./media/characters/balina-amarini/back.svg",
  28507. extra: 415 / 403,
  28508. bottom: 13.5 / 432
  28509. }
  28510. },
  28511. overdrive: {
  28512. height: math.unit(6 + 4 / 12, "feet"),
  28513. weight: math.unit(400, "lb"),
  28514. name: "Overdrive",
  28515. image: {
  28516. source: "./media/characters/balina-amarini/overdrive.svg",
  28517. extra: 269 / 259,
  28518. bottom: 12 / 282
  28519. }
  28520. },
  28521. },
  28522. [
  28523. {
  28524. name: "Boom",
  28525. height: math.unit(9 + 10 / 12, "feet"),
  28526. default: true
  28527. },
  28528. {
  28529. name: "Macro",
  28530. height: math.unit(280, "feet")
  28531. },
  28532. ]
  28533. ))
  28534. characterMakers.push(() => makeCharacter(
  28535. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28536. {
  28537. goddess: {
  28538. height: math.unit(600, "feet"),
  28539. weight: math.unit(2000000, "tons"),
  28540. name: "Goddess",
  28541. image: {
  28542. source: "./media/characters/lady-kubwa/goddess.svg",
  28543. extra: 1240.5 / 1223,
  28544. bottom: 22 / 1263
  28545. }
  28546. },
  28547. goddesser: {
  28548. height: math.unit(900, "feet"),
  28549. weight: math.unit(20000000, "lb"),
  28550. name: "Goddess-er",
  28551. image: {
  28552. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28553. extra: 899 / 888,
  28554. bottom: 12.6 / 912
  28555. }
  28556. },
  28557. },
  28558. [
  28559. {
  28560. name: "Macro",
  28561. height: math.unit(600, "feet"),
  28562. default: true
  28563. },
  28564. {
  28565. name: "Megamacro",
  28566. height: math.unit(250, "miles")
  28567. },
  28568. ]
  28569. ))
  28570. characterMakers.push(() => makeCharacter(
  28571. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28572. {
  28573. front: {
  28574. height: math.unit(7 + 7 / 12, "feet"),
  28575. weight: math.unit(250, "lb"),
  28576. name: "Front",
  28577. image: {
  28578. source: "./media/characters/tala-grovehorn/front.svg",
  28579. extra: 2636 / 2525,
  28580. bottom: 147 / 2781
  28581. }
  28582. },
  28583. back: {
  28584. height: math.unit(7 + 7 / 12, "feet"),
  28585. weight: math.unit(250, "lb"),
  28586. name: "Back",
  28587. image: {
  28588. source: "./media/characters/tala-grovehorn/back.svg",
  28589. extra: 2635 / 2539,
  28590. bottom: 100 / 2732.8
  28591. }
  28592. },
  28593. mouth: {
  28594. height: math.unit(1.15, "feet"),
  28595. name: "Mouth",
  28596. image: {
  28597. source: "./media/characters/tala-grovehorn/mouth.svg"
  28598. }
  28599. },
  28600. dick: {
  28601. height: math.unit(2.36, "feet"),
  28602. name: "Dick",
  28603. image: {
  28604. source: "./media/characters/tala-grovehorn/dick.svg"
  28605. }
  28606. },
  28607. slit: {
  28608. height: math.unit(0.61, "feet"),
  28609. name: "Slit",
  28610. image: {
  28611. source: "./media/characters/tala-grovehorn/slit.svg"
  28612. }
  28613. },
  28614. },
  28615. [
  28616. ]
  28617. ))
  28618. characterMakers.push(() => makeCharacter(
  28619. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28620. {
  28621. front: {
  28622. height: math.unit(7 + 7 / 12, "feet"),
  28623. weight: math.unit(225, "lb"),
  28624. name: "Front",
  28625. image: {
  28626. source: "./media/characters/epona/front.svg",
  28627. extra: 2445 / 2290,
  28628. bottom: 251 / 2696
  28629. }
  28630. },
  28631. back: {
  28632. height: math.unit(7 + 7 / 12, "feet"),
  28633. weight: math.unit(225, "lb"),
  28634. name: "Back",
  28635. image: {
  28636. source: "./media/characters/epona/back.svg",
  28637. extra: 2546 / 2408,
  28638. bottom: 44 / 2589
  28639. }
  28640. },
  28641. genitals: {
  28642. height: math.unit(1.5, "feet"),
  28643. name: "Genitals",
  28644. image: {
  28645. source: "./media/characters/epona/genitals.svg"
  28646. }
  28647. },
  28648. },
  28649. [
  28650. {
  28651. name: "Normal",
  28652. height: math.unit(7 + 7 / 12, "feet"),
  28653. default: true
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28659. {
  28660. front: {
  28661. height: math.unit(7, "feet"),
  28662. weight: math.unit(518, "lb"),
  28663. name: "Front",
  28664. image: {
  28665. source: "./media/characters/avia-bloodbourn/front.svg",
  28666. extra: 1466 / 1350,
  28667. bottom: 65 / 1527
  28668. }
  28669. },
  28670. },
  28671. [
  28672. ]
  28673. ))
  28674. characterMakers.push(() => makeCharacter(
  28675. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28676. {
  28677. front: {
  28678. height: math.unit(9.35, "feet"),
  28679. weight: math.unit(600, "lb"),
  28680. name: "Front",
  28681. image: {
  28682. source: "./media/characters/amera/front.svg",
  28683. extra: 891 / 818,
  28684. bottom: 30 / 922.7
  28685. }
  28686. },
  28687. back: {
  28688. height: math.unit(9.35, "feet"),
  28689. weight: math.unit(600, "lb"),
  28690. name: "Back",
  28691. image: {
  28692. source: "./media/characters/amera/back.svg",
  28693. extra: 876 / 824,
  28694. bottom: 6.8 / 884
  28695. }
  28696. },
  28697. dick: {
  28698. height: math.unit(2.14, "feet"),
  28699. name: "Dick",
  28700. image: {
  28701. source: "./media/characters/amera/dick.svg"
  28702. }
  28703. },
  28704. },
  28705. [
  28706. {
  28707. name: "Normal",
  28708. height: math.unit(9.35, "feet"),
  28709. default: true
  28710. },
  28711. ]
  28712. ))
  28713. characterMakers.push(() => makeCharacter(
  28714. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28715. {
  28716. kneeling: {
  28717. height: math.unit(3 + 4 / 12, "feet"),
  28718. weight: math.unit(90, "lb"),
  28719. name: "Kneeling",
  28720. image: {
  28721. source: "./media/characters/rosewen/kneeling.svg",
  28722. extra: 1835 / 1571,
  28723. bottom: 27.7 / 1862
  28724. }
  28725. },
  28726. },
  28727. [
  28728. {
  28729. name: "Normal",
  28730. height: math.unit(3 + 4 / 12, "feet"),
  28731. default: true
  28732. },
  28733. ]
  28734. ))
  28735. characterMakers.push(() => makeCharacter(
  28736. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28737. {
  28738. front: {
  28739. height: math.unit(5 + 10 / 12, "feet"),
  28740. weight: math.unit(200, "lb"),
  28741. name: "Front",
  28742. image: {
  28743. source: "./media/characters/sabah/front.svg",
  28744. extra: 849 / 763,
  28745. bottom: 33.9 / 881
  28746. }
  28747. },
  28748. },
  28749. [
  28750. {
  28751. name: "Normal",
  28752. height: math.unit(5 + 10 / 12, "feet"),
  28753. default: true
  28754. },
  28755. ]
  28756. ))
  28757. characterMakers.push(() => makeCharacter(
  28758. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28759. {
  28760. front: {
  28761. height: math.unit(3 + 5 / 12, "feet"),
  28762. weight: math.unit(40, "kg"),
  28763. name: "Front",
  28764. image: {
  28765. source: "./media/characters/purple-flame/front.svg",
  28766. extra: 1577 / 1412,
  28767. bottom: 97 / 1694
  28768. }
  28769. },
  28770. frontDressed: {
  28771. height: math.unit(3 + 5 / 12, "feet"),
  28772. weight: math.unit(40, "kg"),
  28773. name: "Front (Dressed)",
  28774. image: {
  28775. source: "./media/characters/purple-flame/front-dressed.svg",
  28776. extra: 1577 / 1412,
  28777. bottom: 97 / 1694
  28778. }
  28779. },
  28780. headphones: {
  28781. height: math.unit(0.85, "feet"),
  28782. name: "Headphones",
  28783. image: {
  28784. source: "./media/characters/purple-flame/headphones.svg"
  28785. }
  28786. },
  28787. },
  28788. [
  28789. {
  28790. name: "Really Small",
  28791. height: math.unit(5, "cm")
  28792. },
  28793. {
  28794. name: "Micro",
  28795. height: math.unit(1 + 5 / 12, "feet")
  28796. },
  28797. {
  28798. name: "Normal",
  28799. height: math.unit(3 + 5 / 12, "feet"),
  28800. default: true
  28801. },
  28802. {
  28803. name: "Minimacro",
  28804. height: math.unit(125, "feet")
  28805. },
  28806. {
  28807. name: "Macro",
  28808. height: math.unit(0.5, "miles")
  28809. },
  28810. {
  28811. name: "Megamacro",
  28812. height: math.unit(50, "miles")
  28813. },
  28814. {
  28815. name: "Gigantic",
  28816. height: math.unit(750, "miles")
  28817. },
  28818. {
  28819. name: "Planetary",
  28820. height: math.unit(15000, "miles")
  28821. },
  28822. ]
  28823. ))
  28824. characterMakers.push(() => makeCharacter(
  28825. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28826. {
  28827. front: {
  28828. height: math.unit(14, "feet"),
  28829. weight: math.unit(959, "lb"),
  28830. name: "Front",
  28831. image: {
  28832. source: "./media/characters/arsenal/front.svg",
  28833. extra: 2357 / 2157,
  28834. bottom: 93 / 2458
  28835. }
  28836. },
  28837. },
  28838. [
  28839. {
  28840. name: "Normal",
  28841. height: math.unit(14, "feet"),
  28842. default: true
  28843. },
  28844. ]
  28845. ))
  28846. characterMakers.push(() => makeCharacter(
  28847. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28848. {
  28849. front: {
  28850. height: math.unit(6, "feet"),
  28851. weight: math.unit(150, "lb"),
  28852. name: "Front",
  28853. image: {
  28854. source: "./media/characters/adira/front.svg",
  28855. extra: 1078 / 1029,
  28856. bottom: 87 / 1166
  28857. }
  28858. },
  28859. },
  28860. [
  28861. {
  28862. name: "Micro",
  28863. height: math.unit(4, "inches"),
  28864. default: true
  28865. },
  28866. {
  28867. name: "Macro",
  28868. height: math.unit(50, "feet")
  28869. },
  28870. ]
  28871. ))
  28872. characterMakers.push(() => makeCharacter(
  28873. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28874. {
  28875. front: {
  28876. height: math.unit(16, "feet"),
  28877. weight: math.unit(1000, "lb"),
  28878. name: "Front",
  28879. image: {
  28880. source: "./media/characters/grim/front.svg",
  28881. extra: 622 / 614,
  28882. bottom: 18.1 / 642
  28883. }
  28884. },
  28885. back: {
  28886. height: math.unit(16, "feet"),
  28887. weight: math.unit(1000, "lb"),
  28888. name: "Back",
  28889. image: {
  28890. source: "./media/characters/grim/back.svg",
  28891. extra: 610.6 / 602,
  28892. bottom: 40.8 / 652
  28893. }
  28894. },
  28895. hunched: {
  28896. height: math.unit(9.75, "feet"),
  28897. weight: math.unit(1000, "lb"),
  28898. name: "Hunched",
  28899. image: {
  28900. source: "./media/characters/grim/hunched.svg",
  28901. extra: 304 / 297,
  28902. bottom: 35.4 / 394
  28903. }
  28904. },
  28905. },
  28906. [
  28907. {
  28908. name: "Normal",
  28909. height: math.unit(16, "feet"),
  28910. default: true
  28911. },
  28912. ]
  28913. ))
  28914. characterMakers.push(() => makeCharacter(
  28915. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28916. {
  28917. front: {
  28918. height: math.unit(2.3, "meters"),
  28919. weight: math.unit(300, "lb"),
  28920. name: "Front",
  28921. image: {
  28922. source: "./media/characters/sinja/front-sfw.svg",
  28923. extra: 1393 / 1294,
  28924. bottom: 70 / 1463
  28925. }
  28926. },
  28927. frontNsfw: {
  28928. height: math.unit(2.3, "meters"),
  28929. weight: math.unit(300, "lb"),
  28930. name: "Front (NSFW)",
  28931. image: {
  28932. source: "./media/characters/sinja/front-nsfw.svg",
  28933. extra: 1393 / 1294,
  28934. bottom: 70 / 1463
  28935. }
  28936. },
  28937. back: {
  28938. height: math.unit(2.3, "meters"),
  28939. weight: math.unit(300, "lb"),
  28940. name: "Back",
  28941. image: {
  28942. source: "./media/characters/sinja/back.svg",
  28943. extra: 1393 / 1294,
  28944. bottom: 70 / 1463
  28945. }
  28946. },
  28947. head: {
  28948. height: math.unit(1.771, "feet"),
  28949. name: "Head",
  28950. image: {
  28951. source: "./media/characters/sinja/head.svg"
  28952. }
  28953. },
  28954. slit: {
  28955. height: math.unit(0.8, "feet"),
  28956. name: "Slit",
  28957. image: {
  28958. source: "./media/characters/sinja/slit.svg"
  28959. }
  28960. },
  28961. },
  28962. [
  28963. {
  28964. name: "Normal",
  28965. height: math.unit(2.3, "meters")
  28966. },
  28967. {
  28968. name: "Macro",
  28969. height: math.unit(91, "meters"),
  28970. default: true
  28971. },
  28972. {
  28973. name: "Megamacro",
  28974. height: math.unit(91440, "meters")
  28975. },
  28976. {
  28977. name: "Gigamacro",
  28978. height: math.unit(60960000, "meters")
  28979. },
  28980. {
  28981. name: "Teramacro",
  28982. height: math.unit(9144000000, "meters")
  28983. },
  28984. ]
  28985. ))
  28986. characterMakers.push(() => makeCharacter(
  28987. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28988. {
  28989. front: {
  28990. height: math.unit(1.7, "meters"),
  28991. weight: math.unit(130, "lb"),
  28992. name: "Front",
  28993. image: {
  28994. source: "./media/characters/kyu/front.svg",
  28995. extra: 415 / 395,
  28996. bottom: 5 / 420
  28997. }
  28998. },
  28999. head: {
  29000. height: math.unit(1.75, "feet"),
  29001. name: "Head",
  29002. image: {
  29003. source: "./media/characters/kyu/head.svg"
  29004. }
  29005. },
  29006. foot: {
  29007. height: math.unit(0.81, "feet"),
  29008. name: "Foot",
  29009. image: {
  29010. source: "./media/characters/kyu/foot.svg"
  29011. }
  29012. },
  29013. },
  29014. [
  29015. {
  29016. name: "Normal",
  29017. height: math.unit(1.7, "meters")
  29018. },
  29019. {
  29020. name: "Macro",
  29021. height: math.unit(131, "feet"),
  29022. default: true
  29023. },
  29024. {
  29025. name: "Megamacro",
  29026. height: math.unit(91440, "meters")
  29027. },
  29028. {
  29029. name: "Gigamacro",
  29030. height: math.unit(60960000, "meters")
  29031. },
  29032. {
  29033. name: "Teramacro",
  29034. height: math.unit(9144000000, "meters")
  29035. },
  29036. ]
  29037. ))
  29038. characterMakers.push(() => makeCharacter(
  29039. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29040. {
  29041. front: {
  29042. height: math.unit(7 + 1 / 12, "feet"),
  29043. weight: math.unit(250, "lb"),
  29044. name: "Front",
  29045. image: {
  29046. source: "./media/characters/joey/front.svg",
  29047. extra: 1791 / 1537,
  29048. bottom: 28 / 1816
  29049. }
  29050. },
  29051. },
  29052. [
  29053. {
  29054. name: "Micro",
  29055. height: math.unit(3, "inches")
  29056. },
  29057. {
  29058. name: "Normal",
  29059. height: math.unit(7 + 1 / 12, "feet"),
  29060. default: true
  29061. },
  29062. ]
  29063. ))
  29064. characterMakers.push(() => makeCharacter(
  29065. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29066. {
  29067. front: {
  29068. height: math.unit(165, "cm"),
  29069. weight: math.unit(140, "lb"),
  29070. name: "Front",
  29071. image: {
  29072. source: "./media/characters/sam-evans/front.svg",
  29073. extra: 3417 / 3230,
  29074. bottom: 41.3 / 3417
  29075. }
  29076. },
  29077. frontSixTails: {
  29078. height: math.unit(165, "cm"),
  29079. weight: math.unit(140, "lb"),
  29080. name: "Front-six-tails",
  29081. image: {
  29082. source: "./media/characters/sam-evans/front-six-tails.svg",
  29083. extra: 3417 / 3230,
  29084. bottom: 41.3 / 3417
  29085. }
  29086. },
  29087. back: {
  29088. height: math.unit(165, "cm"),
  29089. weight: math.unit(140, "lb"),
  29090. name: "Back",
  29091. image: {
  29092. source: "./media/characters/sam-evans/back.svg",
  29093. extra: 3227 / 3032,
  29094. bottom: 6.8 / 3234
  29095. }
  29096. },
  29097. face: {
  29098. height: math.unit(0.68, "feet"),
  29099. name: "Face",
  29100. image: {
  29101. source: "./media/characters/sam-evans/face.svg"
  29102. }
  29103. },
  29104. },
  29105. [
  29106. {
  29107. name: "Normal",
  29108. height: math.unit(165, "cm"),
  29109. default: true
  29110. },
  29111. {
  29112. name: "Macro",
  29113. height: math.unit(100, "meters")
  29114. },
  29115. {
  29116. name: "Macro+",
  29117. height: math.unit(800, "meters")
  29118. },
  29119. {
  29120. name: "Macro++",
  29121. height: math.unit(3, "km")
  29122. },
  29123. {
  29124. name: "Macro+++",
  29125. height: math.unit(30, "km")
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29131. {
  29132. front: {
  29133. height: math.unit(10, "feet"),
  29134. weight: math.unit(750, "lb"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/juliet-a/front.svg",
  29138. extra: 1766 / 1720,
  29139. bottom: 43 / 1809
  29140. }
  29141. },
  29142. back: {
  29143. height: math.unit(10, "feet"),
  29144. weight: math.unit(750, "lb"),
  29145. name: "Back",
  29146. image: {
  29147. source: "./media/characters/juliet-a/back.svg",
  29148. extra: 1781 / 1734,
  29149. bottom: 35 / 1810,
  29150. }
  29151. },
  29152. },
  29153. [
  29154. {
  29155. name: "Normal",
  29156. height: math.unit(10, "feet"),
  29157. default: true
  29158. },
  29159. {
  29160. name: "Dragon Form",
  29161. height: math.unit(250, "feet")
  29162. },
  29163. {
  29164. name: "Macro",
  29165. height: math.unit(1000, "feet")
  29166. },
  29167. {
  29168. name: "Megamacro",
  29169. height: math.unit(10000, "feet")
  29170. }
  29171. ]
  29172. ))
  29173. characterMakers.push(() => makeCharacter(
  29174. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29175. {
  29176. regular: {
  29177. height: math.unit(7 + 3 / 12, "feet"),
  29178. weight: math.unit(260, "lb"),
  29179. name: "Regular",
  29180. image: {
  29181. source: "./media/characters/wild/regular.svg",
  29182. extra: 97.45 / 92,
  29183. bottom: 6.8 / 104.3
  29184. }
  29185. },
  29186. biggums: {
  29187. height: math.unit(8 + 6 / 12, "feet"),
  29188. weight: math.unit(425, "lb"),
  29189. name: "Biggums",
  29190. image: {
  29191. source: "./media/characters/wild/biggums.svg",
  29192. extra: 97.45 / 92,
  29193. bottom: 7.5 / 132.34
  29194. }
  29195. },
  29196. mawRegular: {
  29197. height: math.unit(1.24, "feet"),
  29198. name: "Maw (Regular)",
  29199. image: {
  29200. source: "./media/characters/wild/maw.svg"
  29201. }
  29202. },
  29203. mawBiggums: {
  29204. height: math.unit(1.47, "feet"),
  29205. name: "Maw (Biggums)",
  29206. image: {
  29207. source: "./media/characters/wild/maw.svg"
  29208. }
  29209. },
  29210. },
  29211. [
  29212. {
  29213. name: "Normal",
  29214. height: math.unit(7 + 3 / 12, "feet"),
  29215. default: true
  29216. },
  29217. ]
  29218. ))
  29219. characterMakers.push(() => makeCharacter(
  29220. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29221. {
  29222. front: {
  29223. height: math.unit(2.5, "meters"),
  29224. weight: math.unit(200, "kg"),
  29225. name: "Front",
  29226. image: {
  29227. source: "./media/characters/vidar/front.svg",
  29228. extra: 2994 / 2795,
  29229. bottom: 56 / 3061
  29230. }
  29231. },
  29232. back: {
  29233. height: math.unit(2.5, "meters"),
  29234. weight: math.unit(200, "kg"),
  29235. name: "Back",
  29236. image: {
  29237. source: "./media/characters/vidar/back.svg",
  29238. extra: 3131 / 2928,
  29239. bottom: 13.5 / 3141.5
  29240. }
  29241. },
  29242. feral: {
  29243. height: math.unit(2.5, "meters"),
  29244. weight: math.unit(2000, "kg"),
  29245. name: "Feral",
  29246. image: {
  29247. source: "./media/characters/vidar/feral.svg",
  29248. extra: 2790 / 1765,
  29249. bottom: 6 / 2796
  29250. }
  29251. },
  29252. },
  29253. [
  29254. {
  29255. name: "Normal",
  29256. height: math.unit(2.5, "meters"),
  29257. default: true
  29258. },
  29259. {
  29260. name: "Macro",
  29261. height: math.unit(100, "meters")
  29262. },
  29263. ]
  29264. ))
  29265. characterMakers.push(() => makeCharacter(
  29266. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29267. {
  29268. front: {
  29269. height: math.unit(5 + 9 / 12, "feet"),
  29270. weight: math.unit(120, "lb"),
  29271. name: "Front",
  29272. image: {
  29273. source: "./media/characters/ash/front.svg",
  29274. extra: 2189 / 1961,
  29275. bottom: 5.2 / 2194
  29276. }
  29277. },
  29278. },
  29279. [
  29280. {
  29281. name: "Normal",
  29282. height: math.unit(5 + 9 / 12, "feet"),
  29283. default: true
  29284. },
  29285. ]
  29286. ))
  29287. characterMakers.push(() => makeCharacter(
  29288. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29289. {
  29290. front: {
  29291. height: math.unit(9, "feet"),
  29292. weight: math.unit(10000, "lb"),
  29293. name: "Front",
  29294. image: {
  29295. source: "./media/characters/gygabite/front.svg",
  29296. bottom: 31.7 / 537.8,
  29297. extra: 505 / 370
  29298. }
  29299. },
  29300. },
  29301. [
  29302. {
  29303. name: "Normal",
  29304. height: math.unit(9, "feet"),
  29305. default: true
  29306. },
  29307. ]
  29308. ))
  29309. characterMakers.push(() => makeCharacter(
  29310. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29311. {
  29312. front: {
  29313. height: math.unit(12, "feet"),
  29314. weight: math.unit(4000, "lb"),
  29315. name: "Front",
  29316. image: {
  29317. source: "./media/characters/p0tat0/front.svg",
  29318. extra: 1065 / 921,
  29319. bottom: 55.7 / 1121.25
  29320. }
  29321. },
  29322. },
  29323. [
  29324. {
  29325. name: "Normal",
  29326. height: math.unit(12, "feet"),
  29327. default: true
  29328. },
  29329. ]
  29330. ))
  29331. characterMakers.push(() => makeCharacter(
  29332. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29333. {
  29334. side: {
  29335. height: math.unit(6.5, "feet"),
  29336. weight: math.unit(800, "lb"),
  29337. name: "Side",
  29338. image: {
  29339. source: "./media/characters/dusk/side.svg",
  29340. extra: 615 / 373,
  29341. bottom: 53 / 664
  29342. }
  29343. },
  29344. sitting: {
  29345. height: math.unit(7, "feet"),
  29346. weight: math.unit(800, "lb"),
  29347. name: "Sitting",
  29348. image: {
  29349. source: "./media/characters/dusk/sitting.svg",
  29350. extra: 753 / 425,
  29351. bottom: 33 / 774
  29352. }
  29353. },
  29354. head: {
  29355. height: math.unit(6.1, "feet"),
  29356. name: "Head",
  29357. image: {
  29358. source: "./media/characters/dusk/head.svg"
  29359. }
  29360. },
  29361. },
  29362. [
  29363. {
  29364. name: "Normal",
  29365. height: math.unit(7, "feet"),
  29366. default: true
  29367. },
  29368. ]
  29369. ))
  29370. characterMakers.push(() => makeCharacter(
  29371. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29372. {
  29373. front: {
  29374. height: math.unit(15, "feet"),
  29375. weight: math.unit(7000, "lb"),
  29376. name: "Front",
  29377. image: {
  29378. source: "./media/characters/jay-direwolf/front.svg",
  29379. extra: 1810 / 1732,
  29380. bottom: 66 / 1892
  29381. }
  29382. },
  29383. },
  29384. [
  29385. {
  29386. name: "Normal",
  29387. height: math.unit(15, "feet"),
  29388. default: true
  29389. },
  29390. ]
  29391. ))
  29392. characterMakers.push(() => makeCharacter(
  29393. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29394. {
  29395. front: {
  29396. height: math.unit(4 + 9 / 12, "feet"),
  29397. weight: math.unit(130, "lb"),
  29398. name: "Front",
  29399. image: {
  29400. source: "./media/characters/anchovie/front.svg",
  29401. extra: 382 / 350,
  29402. bottom: 25 / 409
  29403. }
  29404. },
  29405. back: {
  29406. height: math.unit(4 + 9 / 12, "feet"),
  29407. weight: math.unit(130, "lb"),
  29408. name: "Back",
  29409. image: {
  29410. source: "./media/characters/anchovie/back.svg",
  29411. extra: 385 / 352,
  29412. bottom: 16.6 / 402
  29413. }
  29414. },
  29415. frontDressed: {
  29416. height: math.unit(4 + 9 / 12, "feet"),
  29417. weight: math.unit(130, "lb"),
  29418. name: "Front (Dressed)",
  29419. image: {
  29420. source: "./media/characters/anchovie/front-dressed.svg",
  29421. extra: 382 / 350,
  29422. bottom: 25 / 409
  29423. }
  29424. },
  29425. backDressed: {
  29426. height: math.unit(4 + 9 / 12, "feet"),
  29427. weight: math.unit(130, "lb"),
  29428. name: "Back (Dressed)",
  29429. image: {
  29430. source: "./media/characters/anchovie/back-dressed.svg",
  29431. extra: 385 / 352,
  29432. bottom: 16.6 / 402
  29433. }
  29434. },
  29435. },
  29436. [
  29437. {
  29438. name: "Micro",
  29439. height: math.unit(6.4, "inches")
  29440. },
  29441. {
  29442. name: "Normal",
  29443. height: math.unit(4 + 9 / 12, "feet"),
  29444. default: true
  29445. },
  29446. ]
  29447. ))
  29448. characterMakers.push(() => makeCharacter(
  29449. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29450. {
  29451. front: {
  29452. height: math.unit(2, "meters"),
  29453. weight: math.unit(180, "lb"),
  29454. name: "Front",
  29455. image: {
  29456. source: "./media/characters/acidrenamon/front.svg",
  29457. extra: 987 / 890,
  29458. bottom: 22.8 / 1009
  29459. }
  29460. },
  29461. back: {
  29462. height: math.unit(2, "meters"),
  29463. weight: math.unit(180, "lb"),
  29464. name: "Back",
  29465. image: {
  29466. source: "./media/characters/acidrenamon/back.svg",
  29467. extra: 983 / 891,
  29468. bottom: 8.4 / 992
  29469. }
  29470. },
  29471. head: {
  29472. height: math.unit(1.92, "feet"),
  29473. name: "Head",
  29474. image: {
  29475. source: "./media/characters/acidrenamon/head.svg"
  29476. }
  29477. },
  29478. rump: {
  29479. height: math.unit(1.72, "feet"),
  29480. name: "Rump",
  29481. image: {
  29482. source: "./media/characters/acidrenamon/rump.svg"
  29483. }
  29484. },
  29485. tail: {
  29486. height: math.unit(4.2, "feet"),
  29487. name: "Tail",
  29488. image: {
  29489. source: "./media/characters/acidrenamon/tail.svg"
  29490. }
  29491. },
  29492. },
  29493. [
  29494. {
  29495. name: "Normal",
  29496. height: math.unit(2, "meters"),
  29497. default: true
  29498. },
  29499. {
  29500. name: "Minimacro",
  29501. height: math.unit(7, "meters")
  29502. },
  29503. {
  29504. name: "Macro",
  29505. height: math.unit(200, "meters")
  29506. },
  29507. {
  29508. name: "Gigamacro",
  29509. height: math.unit(0.2, "earths")
  29510. },
  29511. ]
  29512. ))
  29513. characterMakers.push(() => makeCharacter(
  29514. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29515. {
  29516. front: {
  29517. height: math.unit(152, "feet"),
  29518. name: "Front",
  29519. image: {
  29520. source: "./media/characters/kenzie-lee/front.svg",
  29521. extra: 1869/1774,
  29522. bottom: 128/1997
  29523. }
  29524. },
  29525. side: {
  29526. height: math.unit(86, "feet"),
  29527. name: "Side",
  29528. image: {
  29529. source: "./media/characters/kenzie-lee/side.svg",
  29530. extra: 930/815,
  29531. bottom: 177/1107
  29532. }
  29533. },
  29534. paw: {
  29535. height: math.unit(15, "feet"),
  29536. name: "Paw",
  29537. image: {
  29538. source: "./media/characters/kenzie-lee/paw.svg"
  29539. }
  29540. },
  29541. },
  29542. [
  29543. {
  29544. name: "Kenzie Flea",
  29545. height: math.unit(2, "mm"),
  29546. default: true
  29547. },
  29548. {
  29549. name: "Micro",
  29550. height: math.unit(2, "inches")
  29551. },
  29552. {
  29553. name: "Normal",
  29554. height: math.unit(152, "feet")
  29555. },
  29556. {
  29557. name: "Megamacro",
  29558. height: math.unit(7, "miles")
  29559. },
  29560. {
  29561. name: "Gigamacro",
  29562. height: math.unit(8000, "miles")
  29563. },
  29564. ]
  29565. ))
  29566. characterMakers.push(() => makeCharacter(
  29567. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29568. {
  29569. front: {
  29570. height: math.unit(6, "feet"),
  29571. name: "Front",
  29572. image: {
  29573. source: "./media/characters/withers/front.svg",
  29574. extra: 1935/1760,
  29575. bottom: 72/2007
  29576. }
  29577. },
  29578. back: {
  29579. height: math.unit(6, "feet"),
  29580. name: "Back",
  29581. image: {
  29582. source: "./media/characters/withers/back.svg",
  29583. extra: 1944/1792,
  29584. bottom: 12/1956
  29585. }
  29586. },
  29587. dressed: {
  29588. height: math.unit(6, "feet"),
  29589. name: "Dressed",
  29590. image: {
  29591. source: "./media/characters/withers/dressed.svg",
  29592. extra: 1937/1765,
  29593. bottom: 73/2010
  29594. }
  29595. },
  29596. phase1: {
  29597. height: math.unit(1.1, "feet"),
  29598. name: "Phase 1",
  29599. image: {
  29600. source: "./media/characters/withers/phase-1.svg",
  29601. extra: 1885/1232,
  29602. bottom: 0/1885
  29603. }
  29604. },
  29605. phase2: {
  29606. height: math.unit(1.05, "feet"),
  29607. name: "Phase 2",
  29608. image: {
  29609. source: "./media/characters/withers/phase-2.svg",
  29610. extra: 1792/1090,
  29611. bottom: 0/1792
  29612. }
  29613. },
  29614. partyWipe: {
  29615. height: math.unit(1.1, "feet"),
  29616. name: "Party Wipe",
  29617. image: {
  29618. source: "./media/characters/withers/party-wipe.svg",
  29619. extra: 1864/1207,
  29620. bottom: 0/1864
  29621. }
  29622. },
  29623. },
  29624. [
  29625. {
  29626. name: "Macro",
  29627. height: math.unit(167, "feet"),
  29628. default: true
  29629. },
  29630. {
  29631. name: "Megamacro",
  29632. height: math.unit(15, "miles")
  29633. }
  29634. ]
  29635. ))
  29636. characterMakers.push(() => makeCharacter(
  29637. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29638. {
  29639. front: {
  29640. height: math.unit(6 + 7 / 12, "feet"),
  29641. weight: math.unit(250, "lb"),
  29642. name: "Front",
  29643. image: {
  29644. source: "./media/characters/nemoskii/front.svg",
  29645. extra: 2270 / 1734,
  29646. bottom: 86 / 2354
  29647. }
  29648. },
  29649. back: {
  29650. height: math.unit(6 + 7 / 12, "feet"),
  29651. weight: math.unit(250, "lb"),
  29652. name: "Back",
  29653. image: {
  29654. source: "./media/characters/nemoskii/back.svg",
  29655. extra: 1845 / 1788,
  29656. bottom: 10.5 / 1852
  29657. }
  29658. },
  29659. head: {
  29660. height: math.unit(1.31, "feet"),
  29661. name: "Head",
  29662. image: {
  29663. source: "./media/characters/nemoskii/head.svg"
  29664. }
  29665. },
  29666. },
  29667. [
  29668. {
  29669. name: "Micro",
  29670. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29671. },
  29672. {
  29673. name: "Normal",
  29674. height: math.unit(6 + 7 / 12, "feet"),
  29675. default: true
  29676. },
  29677. {
  29678. name: "Macro",
  29679. height: math.unit((6 + 7 / 12) * 150, "feet")
  29680. },
  29681. {
  29682. name: "Macro+",
  29683. height: math.unit((6 + 7 / 12) * 500, "feet")
  29684. },
  29685. {
  29686. name: "Megamacro",
  29687. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29688. },
  29689. ]
  29690. ))
  29691. characterMakers.push(() => makeCharacter(
  29692. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29693. {
  29694. front: {
  29695. height: math.unit(1, "mile"),
  29696. weight: math.unit(265261.9, "lb"),
  29697. name: "Front",
  29698. image: {
  29699. source: "./media/characters/shui/front.svg",
  29700. extra: 1633 / 1564,
  29701. bottom: 91.5 / 1726
  29702. }
  29703. },
  29704. },
  29705. [
  29706. {
  29707. name: "Macro",
  29708. height: math.unit(1, "mile"),
  29709. default: true
  29710. },
  29711. ]
  29712. ))
  29713. characterMakers.push(() => makeCharacter(
  29714. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29715. {
  29716. front: {
  29717. height: math.unit(12 + 6 / 12, "feet"),
  29718. weight: math.unit(1342, "lb"),
  29719. name: "Front",
  29720. image: {
  29721. source: "./media/characters/arokh-takakura/front.svg",
  29722. extra: 1089 / 1043,
  29723. bottom: 77.4 / 1176.7
  29724. }
  29725. },
  29726. back: {
  29727. height: math.unit(12 + 6 / 12, "feet"),
  29728. weight: math.unit(1342, "lb"),
  29729. name: "Back",
  29730. image: {
  29731. source: "./media/characters/arokh-takakura/back.svg",
  29732. extra: 1046 / 1019,
  29733. bottom: 102 / 1150
  29734. }
  29735. },
  29736. },
  29737. [
  29738. {
  29739. name: "Big",
  29740. height: math.unit(12 + 6 / 12, "feet"),
  29741. default: true
  29742. },
  29743. ]
  29744. ))
  29745. characterMakers.push(() => makeCharacter(
  29746. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29747. {
  29748. front: {
  29749. height: math.unit(5 + 6 / 12, "feet"),
  29750. weight: math.unit(150, "lb"),
  29751. name: "Front",
  29752. image: {
  29753. source: "./media/characters/theo/front.svg",
  29754. extra: 1184 / 1131,
  29755. bottom: 7.4 / 1191
  29756. }
  29757. },
  29758. },
  29759. [
  29760. {
  29761. name: "Micro",
  29762. height: math.unit(5, "inches")
  29763. },
  29764. {
  29765. name: "Normal",
  29766. height: math.unit(5 + 6 / 12, "feet"),
  29767. default: true
  29768. },
  29769. ]
  29770. ))
  29771. characterMakers.push(() => makeCharacter(
  29772. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29773. {
  29774. front: {
  29775. height: math.unit(5 + 9 / 12, "feet"),
  29776. weight: math.unit(130, "lb"),
  29777. name: "Front",
  29778. image: {
  29779. source: "./media/characters/cecelia-swift/front.svg",
  29780. extra: 502 / 484,
  29781. bottom: 23 / 523
  29782. }
  29783. },
  29784. back: {
  29785. height: math.unit(5 + 9 / 12, "feet"),
  29786. weight: math.unit(130, "lb"),
  29787. name: "Back",
  29788. image: {
  29789. source: "./media/characters/cecelia-swift/back.svg",
  29790. extra: 499 / 485,
  29791. bottom: 12 / 511
  29792. }
  29793. },
  29794. head: {
  29795. height: math.unit(0.90, "feet"),
  29796. name: "Head",
  29797. image: {
  29798. source: "./media/characters/cecelia-swift/head.svg"
  29799. }
  29800. },
  29801. rump: {
  29802. height: math.unit(1.75, "feet"),
  29803. name: "Rump",
  29804. image: {
  29805. source: "./media/characters/cecelia-swift/rump.svg"
  29806. }
  29807. },
  29808. },
  29809. [
  29810. {
  29811. name: "Normal",
  29812. height: math.unit(5 + 9 / 12, "feet"),
  29813. default: true
  29814. },
  29815. {
  29816. name: "Big",
  29817. height: math.unit(50, "feet")
  29818. },
  29819. {
  29820. name: "Macro",
  29821. height: math.unit(100, "feet")
  29822. },
  29823. {
  29824. name: "Macro+",
  29825. height: math.unit(500, "feet")
  29826. },
  29827. {
  29828. name: "Macro++",
  29829. height: math.unit(1000, "feet")
  29830. },
  29831. ]
  29832. ))
  29833. characterMakers.push(() => makeCharacter(
  29834. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29835. {
  29836. front: {
  29837. height: math.unit(6, "feet"),
  29838. weight: math.unit(150, "lb"),
  29839. name: "Front",
  29840. image: {
  29841. source: "./media/characters/kaunan/front.svg",
  29842. extra: 2890 / 2523,
  29843. bottom: 49 / 2939
  29844. }
  29845. },
  29846. },
  29847. [
  29848. {
  29849. name: "Macro",
  29850. height: math.unit(150, "feet"),
  29851. default: true
  29852. },
  29853. ]
  29854. ))
  29855. characterMakers.push(() => makeCharacter(
  29856. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29857. {
  29858. dressed: {
  29859. height: math.unit(175, "cm"),
  29860. weight: math.unit(60, "kg"),
  29861. name: "Dressed",
  29862. image: {
  29863. source: "./media/characters/fei/dressed.svg",
  29864. extra: 1402/1278,
  29865. bottom: 27/1429
  29866. }
  29867. },
  29868. nude: {
  29869. height: math.unit(175, "cm"),
  29870. weight: math.unit(60, "kg"),
  29871. name: "Nude",
  29872. image: {
  29873. source: "./media/characters/fei/nude.svg",
  29874. extra: 1402/1278,
  29875. bottom: 27/1429
  29876. }
  29877. },
  29878. heels: {
  29879. height: math.unit(0.466, "feet"),
  29880. name: "Heels",
  29881. image: {
  29882. source: "./media/characters/fei/heels.svg",
  29883. extra: 156/152,
  29884. bottom: 28/184
  29885. }
  29886. },
  29887. },
  29888. [
  29889. {
  29890. name: "Mortal",
  29891. height: math.unit(175, "cm")
  29892. },
  29893. {
  29894. name: "Normal",
  29895. height: math.unit(3500, "m")
  29896. },
  29897. {
  29898. name: "Stroll",
  29899. height: math.unit(18.4, "km"),
  29900. default: true
  29901. },
  29902. {
  29903. name: "Showoff",
  29904. height: math.unit(175, "km")
  29905. },
  29906. ]
  29907. ))
  29908. characterMakers.push(() => makeCharacter(
  29909. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29910. {
  29911. front: {
  29912. height: math.unit(7, "feet"),
  29913. weight: math.unit(1000, "kg"),
  29914. name: "Front",
  29915. image: {
  29916. source: "./media/characters/edrax/front.svg",
  29917. extra: 2838 / 2550,
  29918. bottom: 130 / 2968
  29919. }
  29920. },
  29921. },
  29922. [
  29923. {
  29924. name: "Small",
  29925. height: math.unit(7, "feet")
  29926. },
  29927. {
  29928. name: "Normal",
  29929. height: math.unit(1500, "meters")
  29930. },
  29931. {
  29932. name: "Mega",
  29933. height: math.unit(12000000, "km"),
  29934. default: true
  29935. },
  29936. {
  29937. name: "Megamacro",
  29938. height: math.unit(10600000, "lightyears")
  29939. },
  29940. {
  29941. name: "Hypermacro",
  29942. height: math.unit(256, "yottameters")
  29943. },
  29944. ]
  29945. ))
  29946. characterMakers.push(() => makeCharacter(
  29947. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29948. {
  29949. front: {
  29950. height: math.unit(10, "feet"),
  29951. weight: math.unit(750, "lb"),
  29952. name: "Front",
  29953. image: {
  29954. source: "./media/characters/clove/front.svg",
  29955. extra: 1918/1751,
  29956. bottom: 52/1970
  29957. }
  29958. },
  29959. back: {
  29960. height: math.unit(10, "feet"),
  29961. weight: math.unit(750, "lb"),
  29962. name: "Back",
  29963. image: {
  29964. source: "./media/characters/clove/back.svg",
  29965. extra: 1912/1747,
  29966. bottom: 50/1962
  29967. }
  29968. },
  29969. },
  29970. [
  29971. {
  29972. name: "Normal",
  29973. height: math.unit(10, "feet"),
  29974. default: true
  29975. },
  29976. ]
  29977. ))
  29978. characterMakers.push(() => makeCharacter(
  29979. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29980. {
  29981. front: {
  29982. height: math.unit(4, "feet"),
  29983. weight: math.unit(50, "lb"),
  29984. name: "Front",
  29985. image: {
  29986. source: "./media/characters/alex-rabbit/front.svg",
  29987. extra: 507 / 458,
  29988. bottom: 18.5 / 527
  29989. }
  29990. },
  29991. back: {
  29992. height: math.unit(4, "feet"),
  29993. weight: math.unit(50, "lb"),
  29994. name: "Back",
  29995. image: {
  29996. source: "./media/characters/alex-rabbit/back.svg",
  29997. extra: 502 / 460,
  29998. bottom: 18.9 / 521
  29999. }
  30000. },
  30001. },
  30002. [
  30003. {
  30004. name: "Normal",
  30005. height: math.unit(4, "feet"),
  30006. default: true
  30007. },
  30008. ]
  30009. ))
  30010. characterMakers.push(() => makeCharacter(
  30011. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30012. {
  30013. front: {
  30014. height: math.unit(1 + 3 / 12, "feet"),
  30015. weight: math.unit(80, "lb"),
  30016. name: "Front",
  30017. image: {
  30018. source: "./media/characters/zander-rose/front.svg",
  30019. extra: 916 / 797,
  30020. bottom: 17 / 933
  30021. }
  30022. },
  30023. back: {
  30024. height: math.unit(1 + 3 / 12, "feet"),
  30025. weight: math.unit(80, "lb"),
  30026. name: "Back",
  30027. image: {
  30028. source: "./media/characters/zander-rose/back.svg",
  30029. extra: 903 / 779,
  30030. bottom: 31 / 934
  30031. }
  30032. },
  30033. },
  30034. [
  30035. {
  30036. name: "Normal",
  30037. height: math.unit(1 + 3 / 12, "feet"),
  30038. default: true
  30039. },
  30040. ]
  30041. ))
  30042. characterMakers.push(() => makeCharacter(
  30043. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30044. {
  30045. anthro: {
  30046. height: math.unit(6, "feet"),
  30047. weight: math.unit(150, "lb"),
  30048. name: "Anthro",
  30049. image: {
  30050. source: "./media/characters/razz/anthro.svg",
  30051. extra: 1437 / 1343,
  30052. bottom: 48 / 1485
  30053. }
  30054. },
  30055. feral: {
  30056. height: math.unit(6, "feet"),
  30057. weight: math.unit(150, "lb"),
  30058. name: "Feral",
  30059. image: {
  30060. source: "./media/characters/razz/feral.svg",
  30061. extra: 2569 / 1385,
  30062. bottom: 95 / 2664
  30063. }
  30064. },
  30065. },
  30066. [
  30067. {
  30068. name: "Normal",
  30069. height: math.unit(6, "feet"),
  30070. default: true
  30071. },
  30072. ]
  30073. ))
  30074. characterMakers.push(() => makeCharacter(
  30075. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30076. {
  30077. front: {
  30078. height: math.unit(9 + 4 / 12, "feet"),
  30079. weight: math.unit(500, "lb"),
  30080. name: "Front",
  30081. image: {
  30082. source: "./media/characters/morrigan/front.svg",
  30083. extra: 2707 / 2579,
  30084. bottom: 156 / 2863
  30085. }
  30086. },
  30087. },
  30088. [
  30089. {
  30090. name: "Normal",
  30091. height: math.unit(9 + 4 / 12, "feet"),
  30092. default: true
  30093. },
  30094. ]
  30095. ))
  30096. characterMakers.push(() => makeCharacter(
  30097. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30098. {
  30099. front: {
  30100. height: math.unit(5, "stories"),
  30101. weight: math.unit(4000, "lb"),
  30102. name: "Front",
  30103. image: {
  30104. source: "./media/characters/jenene/front.svg",
  30105. extra: 1780 / 1710,
  30106. bottom: 57 / 1837
  30107. }
  30108. },
  30109. },
  30110. [
  30111. {
  30112. name: "Normal",
  30113. height: math.unit(5, "stories"),
  30114. default: true
  30115. },
  30116. ]
  30117. ))
  30118. characterMakers.push(() => makeCharacter(
  30119. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30120. {
  30121. taurSfw: {
  30122. height: math.unit(10, "meters"),
  30123. weight: math.unit(17500, "kg"),
  30124. name: "Taur",
  30125. image: {
  30126. source: "./media/characters/faey/taur-sfw.svg",
  30127. extra: 1200 / 968,
  30128. bottom: 41 / 1241
  30129. }
  30130. },
  30131. chestmaw: {
  30132. height: math.unit(2.01, "meters"),
  30133. name: "Chestmaw",
  30134. image: {
  30135. source: "./media/characters/faey/chestmaw.svg"
  30136. }
  30137. },
  30138. foot: {
  30139. height: math.unit(2.43, "meters"),
  30140. name: "Foot",
  30141. image: {
  30142. source: "./media/characters/faey/foot.svg"
  30143. }
  30144. },
  30145. jaws: {
  30146. height: math.unit(1.66, "meters"),
  30147. name: "Jaws",
  30148. image: {
  30149. source: "./media/characters/faey/jaws.svg"
  30150. }
  30151. },
  30152. tongues: {
  30153. height: math.unit(2.01, "meters"),
  30154. name: "Tongues",
  30155. image: {
  30156. source: "./media/characters/faey/tongues.svg"
  30157. }
  30158. },
  30159. },
  30160. [
  30161. {
  30162. name: "Small",
  30163. height: math.unit(10, "meters"),
  30164. default: true
  30165. },
  30166. {
  30167. name: "Big",
  30168. height: math.unit(500000, "km")
  30169. },
  30170. ]
  30171. ))
  30172. characterMakers.push(() => makeCharacter(
  30173. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30174. {
  30175. front: {
  30176. height: math.unit(7, "feet"),
  30177. weight: math.unit(275, "lb"),
  30178. name: "Front",
  30179. image: {
  30180. source: "./media/characters/roku/front.svg",
  30181. extra: 903 / 878,
  30182. bottom: 37 / 940
  30183. }
  30184. },
  30185. },
  30186. [
  30187. {
  30188. name: "Normal",
  30189. height: math.unit(7, "feet"),
  30190. default: true
  30191. },
  30192. {
  30193. name: "Macro",
  30194. height: math.unit(500, "feet")
  30195. },
  30196. {
  30197. name: "Megamacro",
  30198. height: math.unit(200, "miles")
  30199. },
  30200. ]
  30201. ))
  30202. characterMakers.push(() => makeCharacter(
  30203. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30204. {
  30205. front: {
  30206. height: math.unit(6 + 2 / 12, "feet"),
  30207. weight: math.unit(150, "lb"),
  30208. name: "Front",
  30209. image: {
  30210. source: "./media/characters/lira/front.svg",
  30211. extra: 1727 / 1605,
  30212. bottom: 26 / 1753
  30213. }
  30214. },
  30215. back: {
  30216. height: math.unit(6 + 2 / 12, "feet"),
  30217. weight: math.unit(150, "lb"),
  30218. name: "Back",
  30219. image: {
  30220. source: "./media/characters/lira/back.svg",
  30221. extra: 1713/1621,
  30222. bottom: 20/1733
  30223. }
  30224. },
  30225. hand: {
  30226. height: math.unit(0.75, "feet"),
  30227. name: "Hand",
  30228. image: {
  30229. source: "./media/characters/lira/hand.svg"
  30230. }
  30231. },
  30232. maw: {
  30233. height: math.unit(0.65, "feet"),
  30234. name: "Maw",
  30235. image: {
  30236. source: "./media/characters/lira/maw.svg"
  30237. }
  30238. },
  30239. pawDigi: {
  30240. height: math.unit(1.6, "feet"),
  30241. name: "Paw Digi",
  30242. image: {
  30243. source: "./media/characters/lira/paw-digi.svg"
  30244. }
  30245. },
  30246. pawPlanti: {
  30247. height: math.unit(1.4, "feet"),
  30248. name: "Paw Planti",
  30249. image: {
  30250. source: "./media/characters/lira/paw-planti.svg"
  30251. }
  30252. },
  30253. },
  30254. [
  30255. {
  30256. name: "Normal",
  30257. height: math.unit(6 + 2 / 12, "feet"),
  30258. default: true
  30259. },
  30260. {
  30261. name: "Macro",
  30262. height: math.unit(100, "feet")
  30263. },
  30264. {
  30265. name: "Macro²",
  30266. height: math.unit(1600, "feet")
  30267. },
  30268. {
  30269. name: "Planetary",
  30270. height: math.unit(20, "earths")
  30271. },
  30272. ]
  30273. ))
  30274. characterMakers.push(() => makeCharacter(
  30275. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30276. {
  30277. front: {
  30278. height: math.unit(6, "feet"),
  30279. weight: math.unit(150, "lb"),
  30280. name: "Front",
  30281. image: {
  30282. source: "./media/characters/hadjet/front.svg",
  30283. extra: 1480 / 1346,
  30284. bottom: 26 / 1506
  30285. }
  30286. },
  30287. frontNsfw: {
  30288. height: math.unit(6, "feet"),
  30289. weight: math.unit(150, "lb"),
  30290. name: "Front (NSFW)",
  30291. image: {
  30292. source: "./media/characters/hadjet/front-nsfw.svg",
  30293. extra: 1440 / 1358,
  30294. bottom: 52 / 1492
  30295. }
  30296. },
  30297. },
  30298. [
  30299. {
  30300. name: "Macro",
  30301. height: math.unit(10, "stories"),
  30302. default: true
  30303. },
  30304. {
  30305. name: "Megamacro",
  30306. height: math.unit(1.5, "miles")
  30307. },
  30308. {
  30309. name: "Megamacro+",
  30310. height: math.unit(5, "miles")
  30311. },
  30312. ]
  30313. ))
  30314. characterMakers.push(() => makeCharacter(
  30315. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30316. {
  30317. side: {
  30318. height: math.unit(106, "feet"),
  30319. weight: math.unit(500, "tonnes"),
  30320. name: "Side",
  30321. image: {
  30322. source: "./media/characters/kodran/side.svg",
  30323. extra: 553 / 480,
  30324. bottom: 33 / 586
  30325. }
  30326. },
  30327. front: {
  30328. height: math.unit(132, "feet"),
  30329. weight: math.unit(500, "tonnes"),
  30330. name: "Front",
  30331. image: {
  30332. source: "./media/characters/kodran/front.svg",
  30333. extra: 667 / 643,
  30334. bottom: 42 / 709
  30335. }
  30336. },
  30337. flying: {
  30338. height: math.unit(350, "feet"),
  30339. weight: math.unit(500, "tonnes"),
  30340. name: "Flying",
  30341. image: {
  30342. source: "./media/characters/kodran/flying.svg"
  30343. }
  30344. },
  30345. foot: {
  30346. height: math.unit(33, "feet"),
  30347. name: "Foot",
  30348. image: {
  30349. source: "./media/characters/kodran/foot.svg"
  30350. }
  30351. },
  30352. footFront: {
  30353. height: math.unit(19, "feet"),
  30354. name: "Foot (Front)",
  30355. image: {
  30356. source: "./media/characters/kodran/foot-front.svg",
  30357. extra: 261 / 261,
  30358. bottom: 91 / 352
  30359. }
  30360. },
  30361. headFront: {
  30362. height: math.unit(53, "feet"),
  30363. name: "Head (Front)",
  30364. image: {
  30365. source: "./media/characters/kodran/head-front.svg"
  30366. }
  30367. },
  30368. headSide: {
  30369. height: math.unit(65, "feet"),
  30370. name: "Head (Side)",
  30371. image: {
  30372. source: "./media/characters/kodran/head-side.svg"
  30373. }
  30374. },
  30375. throat: {
  30376. height: math.unit(79, "feet"),
  30377. name: "Throat",
  30378. image: {
  30379. source: "./media/characters/kodran/throat.svg"
  30380. }
  30381. },
  30382. },
  30383. [
  30384. {
  30385. name: "Large",
  30386. height: math.unit(106, "feet"),
  30387. default: true
  30388. },
  30389. ]
  30390. ))
  30391. characterMakers.push(() => makeCharacter(
  30392. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30393. {
  30394. side: {
  30395. height: math.unit(11, "feet"),
  30396. weight: math.unit(150, "lb"),
  30397. name: "Side",
  30398. image: {
  30399. source: "./media/characters/pyxaron/side.svg",
  30400. extra: 305 / 195,
  30401. bottom: 17 / 322
  30402. }
  30403. },
  30404. },
  30405. [
  30406. {
  30407. name: "Normal",
  30408. height: math.unit(11, "feet"),
  30409. default: true
  30410. },
  30411. ]
  30412. ))
  30413. characterMakers.push(() => makeCharacter(
  30414. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30415. {
  30416. front: {
  30417. height: math.unit(6, "feet"),
  30418. weight: math.unit(150, "lb"),
  30419. name: "Front",
  30420. image: {
  30421. source: "./media/characters/meep/front.svg",
  30422. extra: 88 / 80,
  30423. bottom: 6 / 94
  30424. }
  30425. },
  30426. },
  30427. [
  30428. {
  30429. name: "Fun Sized",
  30430. height: math.unit(2, "inches"),
  30431. default: true
  30432. },
  30433. {
  30434. name: "Friend Sized",
  30435. height: math.unit(8, "inches")
  30436. },
  30437. ]
  30438. ))
  30439. characterMakers.push(() => makeCharacter(
  30440. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30441. {
  30442. front: {
  30443. height: math.unit(15, "feet"),
  30444. weight: math.unit(2500, "lb"),
  30445. name: "Front",
  30446. image: {
  30447. source: "./media/characters/holly-rabbit/front.svg",
  30448. extra: 1433 / 1233,
  30449. bottom: 125 / 1558
  30450. }
  30451. },
  30452. dick: {
  30453. height: math.unit(4.6, "feet"),
  30454. name: "Dick",
  30455. image: {
  30456. source: "./media/characters/holly-rabbit/dick.svg"
  30457. }
  30458. },
  30459. },
  30460. [
  30461. {
  30462. name: "Normal",
  30463. height: math.unit(15, "feet"),
  30464. default: true
  30465. },
  30466. {
  30467. name: "Macro",
  30468. height: math.unit(250, "feet")
  30469. },
  30470. {
  30471. name: "Macro+",
  30472. height: math.unit(2500, "feet")
  30473. },
  30474. ]
  30475. ))
  30476. characterMakers.push(() => makeCharacter(
  30477. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30478. {
  30479. front: {
  30480. height: math.unit(3.02, "meters"),
  30481. weight: math.unit(500, "kg"),
  30482. name: "Front",
  30483. image: {
  30484. source: "./media/characters/drena/front.svg",
  30485. extra: 282 / 243,
  30486. bottom: 8 / 290
  30487. }
  30488. },
  30489. side: {
  30490. height: math.unit(3.02, "meters"),
  30491. weight: math.unit(500, "kg"),
  30492. name: "Side",
  30493. image: {
  30494. source: "./media/characters/drena/side.svg",
  30495. extra: 280 / 245,
  30496. bottom: 10 / 290
  30497. }
  30498. },
  30499. back: {
  30500. height: math.unit(3.02, "meters"),
  30501. weight: math.unit(500, "kg"),
  30502. name: "Back",
  30503. image: {
  30504. source: "./media/characters/drena/back.svg",
  30505. extra: 278 / 243,
  30506. bottom: 2 / 280
  30507. }
  30508. },
  30509. foot: {
  30510. height: math.unit(0.75, "meters"),
  30511. name: "Foot",
  30512. image: {
  30513. source: "./media/characters/drena/foot.svg"
  30514. }
  30515. },
  30516. maw: {
  30517. height: math.unit(0.82, "meters"),
  30518. name: "Maw",
  30519. image: {
  30520. source: "./media/characters/drena/maw.svg"
  30521. }
  30522. },
  30523. eating: {
  30524. height: math.unit(0.75, "meters"),
  30525. name: "Eating",
  30526. image: {
  30527. source: "./media/characters/drena/eating.svg"
  30528. }
  30529. },
  30530. rump: {
  30531. height: math.unit(0.93, "meters"),
  30532. name: "Rump",
  30533. image: {
  30534. source: "./media/characters/drena/rump.svg"
  30535. }
  30536. },
  30537. },
  30538. [
  30539. {
  30540. name: "Normal",
  30541. height: math.unit(3.02, "meters"),
  30542. default: true
  30543. },
  30544. ]
  30545. ))
  30546. characterMakers.push(() => makeCharacter(
  30547. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30548. {
  30549. front: {
  30550. height: math.unit(6 + 4 / 12, "feet"),
  30551. weight: math.unit(250, "lb"),
  30552. name: "Front",
  30553. image: {
  30554. source: "./media/characters/remmyzilla/front.svg",
  30555. extra: 4033 / 3588,
  30556. bottom: 123 / 4156
  30557. }
  30558. },
  30559. back: {
  30560. height: math.unit(6 + 4 / 12, "feet"),
  30561. weight: math.unit(250, "lb"),
  30562. name: "Back",
  30563. image: {
  30564. source: "./media/characters/remmyzilla/back.svg",
  30565. extra: 2687 / 2555,
  30566. bottom: 48 / 2735
  30567. }
  30568. },
  30569. paw: {
  30570. height: math.unit(1.73, "feet"),
  30571. name: "Paw",
  30572. image: {
  30573. source: "./media/characters/remmyzilla/paw.svg"
  30574. },
  30575. extraAttributes: {
  30576. "toeSize": {
  30577. name: "Toe Size",
  30578. power: 2,
  30579. type: "area",
  30580. base: math.unit(0.0035, "m^2")
  30581. },
  30582. "padSize": {
  30583. name: "Pad Size",
  30584. power: 2,
  30585. type: "area",
  30586. base: math.unit(0.015, "m^2")
  30587. },
  30588. "pawsize": {
  30589. name: "Paw Size",
  30590. power: 2,
  30591. type: "area",
  30592. base: math.unit(0.072, "m^2")
  30593. },
  30594. }
  30595. },
  30596. maw: {
  30597. height: math.unit(1.73, "feet"),
  30598. name: "Maw",
  30599. image: {
  30600. source: "./media/characters/remmyzilla/maw.svg"
  30601. }
  30602. },
  30603. },
  30604. [
  30605. {
  30606. name: "Normal",
  30607. height: math.unit(6 + 4 / 12, "feet")
  30608. },
  30609. {
  30610. name: "Minimacro",
  30611. height: math.unit(12 + 8 / 12, "feet")
  30612. },
  30613. {
  30614. name: "Normal",
  30615. height: math.unit(640, "feet"),
  30616. default: true
  30617. },
  30618. {
  30619. name: "Megamacro",
  30620. height: math.unit(6400, "feet")
  30621. },
  30622. {
  30623. name: "Gigamacro",
  30624. height: math.unit(64000, "miles")
  30625. },
  30626. ]
  30627. ))
  30628. characterMakers.push(() => makeCharacter(
  30629. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30630. {
  30631. front: {
  30632. height: math.unit(2.5, "meters"),
  30633. weight: math.unit(300, "lb"),
  30634. name: "Front",
  30635. image: {
  30636. source: "./media/characters/lawrence/front.svg",
  30637. extra: 357 / 335,
  30638. bottom: 30 / 387
  30639. }
  30640. },
  30641. back: {
  30642. height: math.unit(2.5, "meters"),
  30643. weight: math.unit(300, "lb"),
  30644. name: "Back",
  30645. image: {
  30646. source: "./media/characters/lawrence/back.svg",
  30647. extra: 357 / 338,
  30648. bottom: 16 / 373
  30649. }
  30650. },
  30651. head: {
  30652. height: math.unit(0.9, "meter"),
  30653. name: "Head",
  30654. image: {
  30655. source: "./media/characters/lawrence/head.svg"
  30656. }
  30657. },
  30658. maw: {
  30659. height: math.unit(0.7, "meter"),
  30660. name: "Maw",
  30661. image: {
  30662. source: "./media/characters/lawrence/maw.svg"
  30663. }
  30664. },
  30665. footBottom: {
  30666. height: math.unit(0.5, "meter"),
  30667. name: "Foot (Bottom)",
  30668. image: {
  30669. source: "./media/characters/lawrence/foot-bottom.svg"
  30670. }
  30671. },
  30672. footTop: {
  30673. height: math.unit(0.5, "meter"),
  30674. name: "Foot (Top)",
  30675. image: {
  30676. source: "./media/characters/lawrence/foot-top.svg"
  30677. }
  30678. },
  30679. },
  30680. [
  30681. {
  30682. name: "Normal",
  30683. height: math.unit(2.5, "meters"),
  30684. default: true
  30685. },
  30686. {
  30687. name: "Macro",
  30688. height: math.unit(95, "meters")
  30689. },
  30690. {
  30691. name: "Megamacro",
  30692. height: math.unit(150, "km")
  30693. },
  30694. ]
  30695. ))
  30696. characterMakers.push(() => makeCharacter(
  30697. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30698. {
  30699. front: {
  30700. height: math.unit(4.2, "meters"),
  30701. preyCapacity: math.unit(50, "m^3"),
  30702. weight: math.unit(30, "tonnes"),
  30703. name: "Front",
  30704. image: {
  30705. source: "./media/characters/sydney/front.svg",
  30706. extra: 1177/1129,
  30707. bottom: 197/1374
  30708. },
  30709. extraAttributes: {
  30710. "length": {
  30711. name: "Length",
  30712. power: 1,
  30713. type: "length",
  30714. base: math.unit(21, "meters")
  30715. },
  30716. }
  30717. },
  30718. },
  30719. [
  30720. {
  30721. name: "Normal",
  30722. height: math.unit(4.2, "meters"),
  30723. default: true
  30724. },
  30725. ]
  30726. ))
  30727. characterMakers.push(() => makeCharacter(
  30728. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30729. {
  30730. back: {
  30731. height: math.unit(201, "feet"),
  30732. name: "Back",
  30733. image: {
  30734. source: "./media/characters/jessica/back.svg",
  30735. extra: 273 / 259,
  30736. bottom: 7 / 280
  30737. }
  30738. },
  30739. },
  30740. [
  30741. {
  30742. name: "Normal",
  30743. height: math.unit(201, "feet"),
  30744. default: true
  30745. },
  30746. {
  30747. name: "Megamacro",
  30748. height: math.unit(8, "miles")
  30749. },
  30750. ]
  30751. ))
  30752. characterMakers.push(() => makeCharacter(
  30753. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30754. {
  30755. side: {
  30756. height: math.unit(5.6, "m"),
  30757. weight: math.unit(8000, "kg"),
  30758. name: "Side",
  30759. image: {
  30760. source: "./media/characters/victoria/side.svg",
  30761. extra: 1542/1229,
  30762. bottom: 124/1666
  30763. }
  30764. },
  30765. maw: {
  30766. height: math.unit(7.14, "feet"),
  30767. name: "Maw",
  30768. image: {
  30769. source: "./media/characters/victoria/maw.svg"
  30770. }
  30771. },
  30772. },
  30773. [
  30774. {
  30775. name: "Normal",
  30776. height: math.unit(5.6, "m"),
  30777. default: true
  30778. },
  30779. ]
  30780. ))
  30781. characterMakers.push(() => makeCharacter(
  30782. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30783. {
  30784. front: {
  30785. height: math.unit(5 + 6 / 12, "feet"),
  30786. name: "Front",
  30787. image: {
  30788. source: "./media/characters/cat/front.svg",
  30789. extra: 1449/1295,
  30790. bottom: 34/1483
  30791. },
  30792. form: "cat",
  30793. default: true
  30794. },
  30795. back: {
  30796. height: math.unit(5 + 6 / 12, "feet"),
  30797. name: "Back",
  30798. image: {
  30799. source: "./media/characters/cat/back.svg",
  30800. extra: 1466/1301,
  30801. bottom: 19/1485
  30802. },
  30803. form: "cat"
  30804. },
  30805. taur: {
  30806. height: math.unit(7, "feet"),
  30807. name: "Taur",
  30808. image: {
  30809. source: "./media/characters/cat/taur.svg",
  30810. extra: 1389/1233,
  30811. bottom: 83/1472
  30812. },
  30813. form: "taur",
  30814. default: true
  30815. },
  30816. lucarioFront: {
  30817. height: math.unit(4, "feet"),
  30818. name: "Lucario (Front)",
  30819. image: {
  30820. source: "./media/characters/cat/lucario-front.svg",
  30821. extra: 1149/1019,
  30822. bottom: 84/1233
  30823. },
  30824. form: "lucario",
  30825. default: true
  30826. },
  30827. lucarioBack: {
  30828. height: math.unit(4, "feet"),
  30829. name: "Lucario (Back)",
  30830. image: {
  30831. source: "./media/characters/cat/lucario-back.svg",
  30832. extra: 1190/1059,
  30833. bottom: 33/1223
  30834. },
  30835. form: "lucario"
  30836. },
  30837. megaLucario: {
  30838. height: math.unit(4, "feet"),
  30839. name: "Mega Lucario",
  30840. image: {
  30841. source: "./media/characters/cat/mega-lucario.svg",
  30842. extra: 1515 / 1319,
  30843. bottom: 63 / 1578
  30844. },
  30845. form: "lucario"
  30846. },
  30847. nickit: {
  30848. height: math.unit(2, "feet"),
  30849. name: "Nickit",
  30850. image: {
  30851. source: "./media/characters/cat/nickit.svg",
  30852. extra: 1980 / 1585,
  30853. bottom: 102 / 2082
  30854. },
  30855. form: "nickit",
  30856. default: true
  30857. },
  30858. lopunnyFront: {
  30859. height: math.unit(5, "feet"),
  30860. name: "Lopunny (Front)",
  30861. image: {
  30862. source: "./media/characters/cat/lopunny-front.svg",
  30863. extra: 1782 / 1469,
  30864. bottom: 38 / 1820
  30865. },
  30866. form: "lopunny",
  30867. default: true
  30868. },
  30869. lopunnyBack: {
  30870. height: math.unit(5, "feet"),
  30871. name: "Lopunny (Back)",
  30872. image: {
  30873. source: "./media/characters/cat/lopunny-back.svg",
  30874. extra: 1660 / 1490,
  30875. bottom: 25 / 1685
  30876. },
  30877. form: "lopunny"
  30878. },
  30879. },
  30880. [
  30881. {
  30882. name: "Really small",
  30883. height: math.unit(1, "nm")
  30884. },
  30885. {
  30886. name: "Micro",
  30887. height: math.unit(5, "inches")
  30888. },
  30889. {
  30890. name: "Normal",
  30891. height: math.unit(5 + 6 / 12, "feet"),
  30892. default: true
  30893. },
  30894. {
  30895. name: "Macro",
  30896. height: math.unit(50, "feet")
  30897. },
  30898. {
  30899. name: "Macro+",
  30900. height: math.unit(150, "feet")
  30901. },
  30902. {
  30903. name: "Megamacro",
  30904. height: math.unit(100, "miles")
  30905. },
  30906. ]
  30907. ))
  30908. characterMakers.push(() => makeCharacter(
  30909. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30910. {
  30911. front: {
  30912. height: math.unit(63.4, "meters"),
  30913. weight: math.unit(3.28349e+6, "kilograms"),
  30914. name: "Front",
  30915. image: {
  30916. source: "./media/characters/kirina-violet/front.svg",
  30917. extra: 2812 / 2725,
  30918. bottom: 0 / 2812
  30919. }
  30920. },
  30921. back: {
  30922. height: math.unit(63.4, "meters"),
  30923. weight: math.unit(3.28349e+6, "kilograms"),
  30924. name: "Back",
  30925. image: {
  30926. source: "./media/characters/kirina-violet/back.svg",
  30927. extra: 2812 / 2725,
  30928. bottom: 0 / 2812
  30929. }
  30930. },
  30931. mouth: {
  30932. height: math.unit(4.35, "meters"),
  30933. name: "Mouth",
  30934. image: {
  30935. source: "./media/characters/kirina-violet/mouth.svg"
  30936. }
  30937. },
  30938. paw: {
  30939. height: math.unit(5.6, "meters"),
  30940. name: "Paw",
  30941. image: {
  30942. source: "./media/characters/kirina-violet/paw.svg"
  30943. }
  30944. },
  30945. tail: {
  30946. height: math.unit(18, "meters"),
  30947. name: "Tail",
  30948. image: {
  30949. source: "./media/characters/kirina-violet/tail.svg"
  30950. }
  30951. },
  30952. },
  30953. [
  30954. {
  30955. name: "Macro",
  30956. height: math.unit(63.4, "meters"),
  30957. default: true
  30958. },
  30959. ]
  30960. ))
  30961. characterMakers.push(() => makeCharacter(
  30962. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30963. {
  30964. front: {
  30965. height: math.unit(75, "feet"),
  30966. name: "Front",
  30967. image: {
  30968. source: "./media/characters/cat-gigachu/front.svg",
  30969. extra: 1239/1027,
  30970. bottom: 32/1271
  30971. }
  30972. },
  30973. back: {
  30974. height: math.unit(75, "feet"),
  30975. name: "Back",
  30976. image: {
  30977. source: "./media/characters/cat-gigachu/back.svg",
  30978. extra: 1229/1030,
  30979. bottom: 9/1238
  30980. }
  30981. },
  30982. },
  30983. [
  30984. {
  30985. name: "Dynamax",
  30986. height: math.unit(75, "feet"),
  30987. default: true
  30988. },
  30989. ]
  30990. ))
  30991. characterMakers.push(() => makeCharacter(
  30992. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30993. {
  30994. front: {
  30995. height: math.unit(6, "feet"),
  30996. weight: math.unit(150, "lb"),
  30997. name: "Front",
  30998. image: {
  30999. source: "./media/characters/sfaiyan/front.svg",
  31000. extra: 999 / 978,
  31001. bottom: 5 / 1004
  31002. }
  31003. },
  31004. },
  31005. [
  31006. {
  31007. name: "Normal",
  31008. height: math.unit(1.82, "meters")
  31009. },
  31010. {
  31011. name: "Giant",
  31012. height: math.unit(2.27, "km"),
  31013. default: true
  31014. },
  31015. ]
  31016. ))
  31017. characterMakers.push(() => makeCharacter(
  31018. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31019. {
  31020. front: {
  31021. height: math.unit(179, "cm"),
  31022. weight: math.unit(100, "kg"),
  31023. name: "Front",
  31024. image: {
  31025. source: "./media/characters/raunehkeli/front.svg",
  31026. extra: 1934 / 1926,
  31027. bottom: 0 / 1934
  31028. }
  31029. },
  31030. },
  31031. [
  31032. {
  31033. name: "Normal",
  31034. height: math.unit(179, "cm")
  31035. },
  31036. {
  31037. name: "Maximum",
  31038. height: math.unit(575, "meters"),
  31039. default: true
  31040. },
  31041. ]
  31042. ))
  31043. characterMakers.push(() => makeCharacter(
  31044. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31045. {
  31046. front: {
  31047. height: math.unit(6, "feet"),
  31048. weight: math.unit(150, "lb"),
  31049. name: "Front",
  31050. image: {
  31051. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31052. extra: 2625 / 2518,
  31053. bottom: 60 / 2685
  31054. }
  31055. },
  31056. },
  31057. [
  31058. {
  31059. name: "Normal",
  31060. height: math.unit(6 + 2 / 12, "feet")
  31061. },
  31062. {
  31063. name: "Macro",
  31064. height: math.unit(1180, "feet"),
  31065. default: true
  31066. },
  31067. ]
  31068. ))
  31069. characterMakers.push(() => makeCharacter(
  31070. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31071. {
  31072. front: {
  31073. height: math.unit(5 + 6 / 12, "feet"),
  31074. weight: math.unit(108, "lb"),
  31075. name: "Front",
  31076. image: {
  31077. source: "./media/characters/lilith-zott/front.svg",
  31078. extra: 2510 / 2238,
  31079. bottom: 100 / 2610
  31080. }
  31081. },
  31082. frontDressed: {
  31083. height: math.unit(5 + 6 / 12, "feet"),
  31084. weight: math.unit(108, "lb"),
  31085. name: "Front (Dressed)",
  31086. image: {
  31087. source: "./media/characters/lilith-zott/front-dressed.svg",
  31088. extra: 2510 / 2238,
  31089. bottom: 100 / 2610
  31090. }
  31091. },
  31092. },
  31093. [
  31094. {
  31095. name: "Normal",
  31096. height: math.unit(5 + 6 / 12, "feet")
  31097. },
  31098. {
  31099. name: "Macro",
  31100. height: math.unit(1030, "feet"),
  31101. default: true
  31102. },
  31103. ]
  31104. ))
  31105. characterMakers.push(() => makeCharacter(
  31106. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31107. {
  31108. front: {
  31109. height: math.unit(6, "feet"),
  31110. weight: math.unit(150, "lb"),
  31111. name: "Front",
  31112. image: {
  31113. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31114. extra: 2567 / 2435,
  31115. bottom: 39 / 2606
  31116. }
  31117. },
  31118. frontSuper: {
  31119. height: math.unit(6, "feet"),
  31120. name: "Front (Super)",
  31121. image: {
  31122. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31123. extra: 2567 / 2435,
  31124. bottom: 39 / 2606
  31125. }
  31126. },
  31127. },
  31128. [
  31129. {
  31130. name: "Normal",
  31131. height: math.unit(5 + 10 / 12, "feet")
  31132. },
  31133. {
  31134. name: "Macro",
  31135. height: math.unit(1100, "feet"),
  31136. default: true
  31137. },
  31138. ]
  31139. ))
  31140. characterMakers.push(() => makeCharacter(
  31141. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31142. {
  31143. front: {
  31144. height: math.unit(100, "miles"),
  31145. name: "Front",
  31146. image: {
  31147. source: "./media/characters/sona/front.svg",
  31148. extra: 2433 / 2201,
  31149. bottom: 53 / 2486
  31150. }
  31151. },
  31152. foot: {
  31153. height: math.unit(16.1, "miles"),
  31154. name: "Foot",
  31155. image: {
  31156. source: "./media/characters/sona/foot.svg"
  31157. }
  31158. },
  31159. },
  31160. [
  31161. {
  31162. name: "Macro",
  31163. height: math.unit(100, "miles"),
  31164. default: true
  31165. },
  31166. ]
  31167. ))
  31168. characterMakers.push(() => makeCharacter(
  31169. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31170. {
  31171. front: {
  31172. height: math.unit(6, "feet"),
  31173. weight: math.unit(150, "lb"),
  31174. name: "Front",
  31175. image: {
  31176. source: "./media/characters/bailey/front.svg",
  31177. extra: 1778 / 1724,
  31178. bottom: 30 / 1808
  31179. }
  31180. },
  31181. },
  31182. [
  31183. {
  31184. name: "Micro",
  31185. height: math.unit(4, "inches")
  31186. },
  31187. {
  31188. name: "Normal",
  31189. height: math.unit(5 + 5 / 12, "feet"),
  31190. default: true
  31191. },
  31192. {
  31193. name: "Macro",
  31194. height: math.unit(250, "feet")
  31195. },
  31196. {
  31197. name: "Megamacro",
  31198. height: math.unit(100, "miles")
  31199. },
  31200. ]
  31201. ))
  31202. characterMakers.push(() => makeCharacter(
  31203. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31204. {
  31205. front: {
  31206. height: math.unit(5 + 2 / 12, "feet"),
  31207. weight: math.unit(120, "lb"),
  31208. name: "Front",
  31209. image: {
  31210. source: "./media/characters/snaps/front.svg",
  31211. extra: 2370 / 2177,
  31212. bottom: 48 / 2418
  31213. }
  31214. },
  31215. back: {
  31216. height: math.unit(5 + 2 / 12, "feet"),
  31217. weight: math.unit(120, "lb"),
  31218. name: "Back",
  31219. image: {
  31220. source: "./media/characters/snaps/back.svg",
  31221. extra: 2408 / 2258,
  31222. bottom: 15 / 2423
  31223. }
  31224. },
  31225. },
  31226. [
  31227. {
  31228. name: "Micro",
  31229. height: math.unit(9, "inches")
  31230. },
  31231. {
  31232. name: "Normal",
  31233. height: math.unit(5 + 2 / 12, "feet"),
  31234. default: true
  31235. },
  31236. {
  31237. name: "Mini Macro",
  31238. height: math.unit(10, "feet")
  31239. },
  31240. ]
  31241. ))
  31242. characterMakers.push(() => makeCharacter(
  31243. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31244. {
  31245. front: {
  31246. height: math.unit(1.8, "meters"),
  31247. weight: math.unit(85, "kg"),
  31248. name: "Front",
  31249. image: {
  31250. source: "./media/characters/azteck/front.svg",
  31251. extra: 2815 / 2625,
  31252. bottom: 89 / 2904
  31253. }
  31254. },
  31255. back: {
  31256. height: math.unit(1.8, "meters"),
  31257. weight: math.unit(85, "kg"),
  31258. name: "Back",
  31259. image: {
  31260. source: "./media/characters/azteck/back.svg",
  31261. extra: 2856 / 2648,
  31262. bottom: 85 / 2941
  31263. }
  31264. },
  31265. frontDressed: {
  31266. height: math.unit(1.8, "meters"),
  31267. weight: math.unit(85, "kg"),
  31268. name: "Front (Dressed)",
  31269. image: {
  31270. source: "./media/characters/azteck/front-dressed.svg",
  31271. extra: 2147 / 2003,
  31272. bottom: 68 / 2215
  31273. }
  31274. },
  31275. head: {
  31276. height: math.unit(0.47, "meters"),
  31277. weight: math.unit(85, "kg"),
  31278. name: "Head",
  31279. image: {
  31280. source: "./media/characters/azteck/head.svg"
  31281. }
  31282. },
  31283. },
  31284. [
  31285. {
  31286. name: "Bite sized",
  31287. height: math.unit(16, "cm")
  31288. },
  31289. {
  31290. name: "Normal",
  31291. height: math.unit(1.8, "meters"),
  31292. default: true
  31293. },
  31294. ]
  31295. ))
  31296. characterMakers.push(() => makeCharacter(
  31297. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31298. {
  31299. front: {
  31300. height: math.unit(6, "feet"),
  31301. weight: math.unit(150, "lb"),
  31302. name: "Front",
  31303. image: {
  31304. source: "./media/characters/pidge/front.svg",
  31305. extra: 1936/1820,
  31306. bottom: 0/1936
  31307. }
  31308. },
  31309. back: {
  31310. height: math.unit(6, "feet"),
  31311. weight: math.unit(150, "lb"),
  31312. name: "Back",
  31313. image: {
  31314. source: "./media/characters/pidge/back.svg",
  31315. extra: 1938/1843,
  31316. bottom: 0/1938
  31317. }
  31318. },
  31319. casual: {
  31320. height: math.unit(6, "feet"),
  31321. weight: math.unit(150, "lb"),
  31322. name: "Casual",
  31323. image: {
  31324. source: "./media/characters/pidge/casual.svg",
  31325. extra: 1936/1820,
  31326. bottom: 0/1936
  31327. }
  31328. },
  31329. tech: {
  31330. height: math.unit(6, "feet"),
  31331. weight: math.unit(150, "lb"),
  31332. name: "Tech",
  31333. image: {
  31334. source: "./media/characters/pidge/tech.svg",
  31335. extra: 1802/1682,
  31336. bottom: 0/1802
  31337. }
  31338. },
  31339. head: {
  31340. height: math.unit(1.61, "feet"),
  31341. name: "Head",
  31342. image: {
  31343. source: "./media/characters/pidge/head.svg"
  31344. }
  31345. },
  31346. collar: {
  31347. height: math.unit(0.82, "feet"),
  31348. name: "Collar",
  31349. image: {
  31350. source: "./media/characters/pidge/collar.svg"
  31351. }
  31352. },
  31353. },
  31354. [
  31355. {
  31356. name: "Macro",
  31357. height: math.unit(2, "mile"),
  31358. default: true
  31359. },
  31360. {
  31361. name: "PUPPY",
  31362. height: math.unit(20, "miles")
  31363. },
  31364. ]
  31365. ))
  31366. characterMakers.push(() => makeCharacter(
  31367. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31368. {
  31369. front: {
  31370. height: math.unit(6, "feet"),
  31371. weight: math.unit(150, "lb"),
  31372. name: "Front",
  31373. image: {
  31374. source: "./media/characters/en/front.svg",
  31375. extra: 1697 / 1563,
  31376. bottom: 103 / 1800
  31377. }
  31378. },
  31379. back: {
  31380. height: math.unit(6, "feet"),
  31381. weight: math.unit(150, "lb"),
  31382. name: "Back",
  31383. image: {
  31384. source: "./media/characters/en/back.svg",
  31385. extra: 1700 / 1570,
  31386. bottom: 51 / 1751
  31387. }
  31388. },
  31389. frontDressed: {
  31390. height: math.unit(6, "feet"),
  31391. weight: math.unit(150, "lb"),
  31392. name: "Front (Dressed)",
  31393. image: {
  31394. source: "./media/characters/en/front-dressed.svg",
  31395. extra: 1697 / 1563,
  31396. bottom: 103 / 1800
  31397. }
  31398. },
  31399. backDressed: {
  31400. height: math.unit(6, "feet"),
  31401. weight: math.unit(150, "lb"),
  31402. name: "Back (Dressed)",
  31403. image: {
  31404. source: "./media/characters/en/back-dressed.svg",
  31405. extra: 1700 / 1570,
  31406. bottom: 51 / 1751
  31407. }
  31408. },
  31409. },
  31410. [
  31411. {
  31412. name: "Macro",
  31413. height: math.unit(210, "feet"),
  31414. default: true
  31415. },
  31416. ]
  31417. ))
  31418. characterMakers.push(() => makeCharacter(
  31419. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31420. {
  31421. front: {
  31422. height: math.unit(6, "feet"),
  31423. weight: math.unit(150, "lb"),
  31424. name: "Front",
  31425. image: {
  31426. source: "./media/characters/haze-orris/front.svg",
  31427. extra: 3975 / 3525,
  31428. bottom: 137 / 4112
  31429. }
  31430. },
  31431. },
  31432. [
  31433. {
  31434. name: "Micro",
  31435. height: math.unit(150, "mm"),
  31436. default: true
  31437. },
  31438. ]
  31439. ))
  31440. characterMakers.push(() => makeCharacter(
  31441. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31442. {
  31443. front: {
  31444. height: math.unit(6, "feet"),
  31445. weight: math.unit(150, "lb"),
  31446. name: "Front",
  31447. image: {
  31448. source: "./media/characters/casselene-yaro/front.svg",
  31449. extra: 4721 / 4541,
  31450. bottom: 82 / 4803
  31451. }
  31452. },
  31453. back: {
  31454. height: math.unit(6, "feet"),
  31455. weight: math.unit(150, "lb"),
  31456. name: "Back",
  31457. image: {
  31458. source: "./media/characters/casselene-yaro/back.svg",
  31459. extra: 4569 / 4377,
  31460. bottom: 69 / 4638
  31461. }
  31462. },
  31463. dressed: {
  31464. height: math.unit(6, "feet"),
  31465. weight: math.unit(150, "lb"),
  31466. name: "Dressed",
  31467. image: {
  31468. source: "./media/characters/casselene-yaro/dressed.svg",
  31469. extra: 4721 / 4541,
  31470. bottom: 82 / 4803
  31471. }
  31472. },
  31473. maw: {
  31474. height: math.unit(1, "feet"),
  31475. name: "Maw",
  31476. image: {
  31477. source: "./media/characters/casselene-yaro/maw.svg"
  31478. }
  31479. },
  31480. },
  31481. [
  31482. {
  31483. name: "Macro",
  31484. height: math.unit(190, "feet"),
  31485. default: true
  31486. },
  31487. ]
  31488. ))
  31489. characterMakers.push(() => makeCharacter(
  31490. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31491. {
  31492. front: {
  31493. height: math.unit(10, "feet"),
  31494. weight: math.unit(15015, "lb"),
  31495. name: "Front",
  31496. image: {
  31497. source: "./media/characters/platine/front.svg",
  31498. extra: 1741/1650,
  31499. bottom: 84/1825
  31500. }
  31501. },
  31502. side: {
  31503. height: math.unit(10, "feet"),
  31504. weight: math.unit(15015, "lb"),
  31505. name: "Side",
  31506. image: {
  31507. source: "./media/characters/platine/side.svg",
  31508. extra: 1790/1705,
  31509. bottom: 29/1819
  31510. }
  31511. },
  31512. },
  31513. [
  31514. {
  31515. name: "Normal",
  31516. height: math.unit(10, "feet"),
  31517. default: true
  31518. },
  31519. {
  31520. name: "Macro",
  31521. height: math.unit(100, "feet")
  31522. },
  31523. {
  31524. name: "Megamacro",
  31525. height: math.unit(1000, "feet")
  31526. },
  31527. ]
  31528. ))
  31529. characterMakers.push(() => makeCharacter(
  31530. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31531. {
  31532. front: {
  31533. height: math.unit(15 + 5 / 12, "feet"),
  31534. weight: math.unit(4600, "lb"),
  31535. name: "Front",
  31536. image: {
  31537. source: "./media/characters/neapolitan-ananassa/front.svg",
  31538. extra: 2903 / 2736,
  31539. bottom: 0 / 2903
  31540. }
  31541. },
  31542. side: {
  31543. height: math.unit(15 + 5 / 12, "feet"),
  31544. weight: math.unit(4600, "lb"),
  31545. name: "Side",
  31546. image: {
  31547. source: "./media/characters/neapolitan-ananassa/side.svg",
  31548. extra: 2925 / 2719,
  31549. bottom: 0 / 2925
  31550. }
  31551. },
  31552. back: {
  31553. height: math.unit(15 + 5 / 12, "feet"),
  31554. weight: math.unit(4600, "lb"),
  31555. name: "Back",
  31556. image: {
  31557. source: "./media/characters/neapolitan-ananassa/back.svg",
  31558. extra: 2903 / 2736,
  31559. bottom: 0 / 2903
  31560. }
  31561. },
  31562. },
  31563. [
  31564. {
  31565. name: "Normal",
  31566. height: math.unit(15 + 5 / 12, "feet"),
  31567. default: true
  31568. },
  31569. {
  31570. name: "Post-Millenium",
  31571. height: math.unit(35 + 5 / 12, "feet")
  31572. },
  31573. {
  31574. name: "Post-Era",
  31575. height: math.unit(450 + 5 / 12, "feet")
  31576. },
  31577. ]
  31578. ))
  31579. characterMakers.push(() => makeCharacter(
  31580. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31581. {
  31582. front: {
  31583. height: math.unit(300, "meters"),
  31584. weight: math.unit(125000, "tonnes"),
  31585. name: "Front",
  31586. image: {
  31587. source: "./media/characters/pazuzu/front.svg",
  31588. extra: 877 / 794,
  31589. bottom: 47 / 924
  31590. }
  31591. },
  31592. },
  31593. [
  31594. {
  31595. name: "Macro",
  31596. height: math.unit(300, "meters"),
  31597. default: true
  31598. },
  31599. ]
  31600. ))
  31601. characterMakers.push(() => makeCharacter(
  31602. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31603. {
  31604. side: {
  31605. height: math.unit(10 + 7 / 12, "feet"),
  31606. weight: math.unit(2.5, "tons"),
  31607. name: "Side",
  31608. image: {
  31609. source: "./media/characters/aasha/side.svg",
  31610. extra: 1345 / 1245,
  31611. bottom: 111 / 1456
  31612. }
  31613. },
  31614. back: {
  31615. height: math.unit(10 + 7 / 12, "feet"),
  31616. weight: math.unit(2.5, "tons"),
  31617. name: "Back",
  31618. image: {
  31619. source: "./media/characters/aasha/back.svg",
  31620. extra: 1133 / 1057,
  31621. bottom: 257 / 1390
  31622. }
  31623. },
  31624. },
  31625. [
  31626. {
  31627. name: "Normal",
  31628. height: math.unit(10 + 7 / 12, "feet"),
  31629. default: true
  31630. },
  31631. ]
  31632. ))
  31633. characterMakers.push(() => makeCharacter(
  31634. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31635. {
  31636. front: {
  31637. height: math.unit(6 + 3 / 12, "feet"),
  31638. name: "Front",
  31639. image: {
  31640. source: "./media/characters/nevan/front.svg",
  31641. extra: 704 / 704,
  31642. bottom: 28 / 732
  31643. }
  31644. },
  31645. back: {
  31646. height: math.unit(6 + 3 / 12, "feet"),
  31647. name: "Back",
  31648. image: {
  31649. source: "./media/characters/nevan/back.svg",
  31650. extra: 714 / 714,
  31651. bottom: 21 / 735
  31652. }
  31653. },
  31654. frontFlaccid: {
  31655. height: math.unit(6 + 3 / 12, "feet"),
  31656. name: "Front (Flaccid)",
  31657. image: {
  31658. source: "./media/characters/nevan/front-flaccid.svg",
  31659. extra: 704 / 704,
  31660. bottom: 28 / 732
  31661. }
  31662. },
  31663. frontErect: {
  31664. height: math.unit(6 + 3 / 12, "feet"),
  31665. name: "Front (Erect)",
  31666. image: {
  31667. source: "./media/characters/nevan/front-erect.svg",
  31668. extra: 704 / 704,
  31669. bottom: 28 / 732
  31670. }
  31671. },
  31672. backFlaccid: {
  31673. height: math.unit(6 + 3 / 12, "feet"),
  31674. name: "Back (Flaccid)",
  31675. image: {
  31676. source: "./media/characters/nevan/back-flaccid.svg",
  31677. extra: 714 / 714,
  31678. bottom: 21 / 735
  31679. }
  31680. },
  31681. },
  31682. [
  31683. {
  31684. name: "Normal",
  31685. height: math.unit(6 + 3 / 12, "feet"),
  31686. default: true
  31687. },
  31688. ]
  31689. ))
  31690. characterMakers.push(() => makeCharacter(
  31691. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31692. {
  31693. front: {
  31694. height: math.unit(4, "feet"),
  31695. name: "Front",
  31696. image: {
  31697. source: "./media/characters/arhan/front.svg",
  31698. extra: 3368 / 3133,
  31699. bottom: 0 / 3368
  31700. }
  31701. },
  31702. side: {
  31703. height: math.unit(4, "feet"),
  31704. name: "Side",
  31705. image: {
  31706. source: "./media/characters/arhan/side.svg",
  31707. extra: 3347 / 3105,
  31708. bottom: 0 / 3347
  31709. }
  31710. },
  31711. tongue: {
  31712. height: math.unit(1.42, "feet"),
  31713. name: "Tongue",
  31714. image: {
  31715. source: "./media/characters/arhan/tongue.svg"
  31716. }
  31717. },
  31718. head: {
  31719. height: math.unit(0.85, "feet"),
  31720. name: "Head",
  31721. image: {
  31722. source: "./media/characters/arhan/head.svg"
  31723. }
  31724. },
  31725. },
  31726. [
  31727. {
  31728. name: "Normal",
  31729. height: math.unit(4, "feet"),
  31730. default: true
  31731. },
  31732. ]
  31733. ))
  31734. characterMakers.push(() => makeCharacter(
  31735. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31736. {
  31737. front: {
  31738. height: math.unit(5 + 7.5 / 12, "feet"),
  31739. weight: math.unit(120, "lb"),
  31740. name: "Front",
  31741. image: {
  31742. source: "./media/characters/digi-duncan/front.svg",
  31743. extra: 330 / 326,
  31744. bottom: 16 / 346
  31745. }
  31746. },
  31747. side: {
  31748. height: math.unit(5 + 7.5 / 12, "feet"),
  31749. weight: math.unit(120, "lb"),
  31750. name: "Side",
  31751. image: {
  31752. source: "./media/characters/digi-duncan/side.svg",
  31753. extra: 341 / 337,
  31754. bottom: 1 / 342
  31755. }
  31756. },
  31757. back: {
  31758. height: math.unit(5 + 7.5 / 12, "feet"),
  31759. weight: math.unit(120, "lb"),
  31760. name: "Back",
  31761. image: {
  31762. source: "./media/characters/digi-duncan/back.svg",
  31763. extra: 330 / 326,
  31764. bottom: 12 / 342
  31765. }
  31766. },
  31767. },
  31768. [
  31769. {
  31770. name: "Speck",
  31771. height: math.unit(0.25, "mm")
  31772. },
  31773. {
  31774. name: "Micro",
  31775. height: math.unit(5, "mm")
  31776. },
  31777. {
  31778. name: "Tiny",
  31779. height: math.unit(0.5, "inches"),
  31780. default: true
  31781. },
  31782. {
  31783. name: "Human",
  31784. height: math.unit(5 + 7.5 / 12, "feet")
  31785. },
  31786. {
  31787. name: "Minigiant",
  31788. height: math.unit(8 + 5.25, "feet")
  31789. },
  31790. {
  31791. name: "Giant",
  31792. height: math.unit(2000, "feet")
  31793. },
  31794. {
  31795. name: "Mega",
  31796. height: math.unit(371.1, "miles")
  31797. },
  31798. ]
  31799. ))
  31800. characterMakers.push(() => makeCharacter(
  31801. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31802. {
  31803. front: {
  31804. height: math.unit(2, "meters"),
  31805. weight: math.unit(350, "kg"),
  31806. name: "Front",
  31807. image: {
  31808. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31809. extra: 898 / 838,
  31810. bottom: 9 / 907
  31811. }
  31812. },
  31813. },
  31814. [
  31815. {
  31816. name: "Micro",
  31817. height: math.unit(8, "meters")
  31818. },
  31819. {
  31820. name: "Normal",
  31821. height: math.unit(50, "meters"),
  31822. default: true
  31823. },
  31824. {
  31825. name: "Macro",
  31826. height: math.unit(500, "meters")
  31827. },
  31828. ]
  31829. ))
  31830. characterMakers.push(() => makeCharacter(
  31831. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31832. {
  31833. front: {
  31834. height: math.unit(6 + 6 / 12, "feet"),
  31835. name: "Front",
  31836. image: {
  31837. source: "./media/characters/khardesh/front.svg",
  31838. extra: 1788/1596,
  31839. bottom: 66/1854
  31840. }
  31841. },
  31842. back: {
  31843. height: math.unit(6 + 6 / 12, "feet"),
  31844. name: "Back",
  31845. image: {
  31846. source: "./media/characters/khardesh/back.svg",
  31847. extra: 1781/1584,
  31848. bottom: 68/1849
  31849. }
  31850. },
  31851. },
  31852. [
  31853. {
  31854. name: "Normal",
  31855. height: math.unit(6 + 6 / 12, "feet"),
  31856. default: true
  31857. },
  31858. {
  31859. name: "Normal+",
  31860. height: math.unit(4, "meters")
  31861. },
  31862. {
  31863. name: "Macro",
  31864. height: math.unit(50, "meters")
  31865. },
  31866. {
  31867. name: "Macro+",
  31868. height: math.unit(100, "meters")
  31869. },
  31870. {
  31871. name: "Megamacro",
  31872. height: math.unit(20, "km")
  31873. },
  31874. ]
  31875. ))
  31876. characterMakers.push(() => makeCharacter(
  31877. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31878. {
  31879. front: {
  31880. height: math.unit(6, "feet"),
  31881. weight: math.unit(150, "lb"),
  31882. name: "Front",
  31883. image: {
  31884. source: "./media/characters/kosho/front.svg",
  31885. extra: 1847 / 1847,
  31886. bottom: 86 / 1933
  31887. }
  31888. },
  31889. },
  31890. [
  31891. {
  31892. name: "Second-stage micro",
  31893. height: math.unit(0.5, "inches")
  31894. },
  31895. {
  31896. name: "First-stage micro",
  31897. height: math.unit(6, "inches")
  31898. },
  31899. {
  31900. name: "Normal",
  31901. height: math.unit(6, "feet"),
  31902. default: true
  31903. },
  31904. {
  31905. name: "First-stage macro",
  31906. height: math.unit(72, "feet")
  31907. },
  31908. {
  31909. name: "Second-stage macro",
  31910. height: math.unit(864, "feet")
  31911. },
  31912. ]
  31913. ))
  31914. characterMakers.push(() => makeCharacter(
  31915. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31916. {
  31917. normal: {
  31918. height: math.unit(4 + 6 / 12, "feet"),
  31919. name: "Normal",
  31920. image: {
  31921. source: "./media/characters/hydra/normal.svg",
  31922. extra: 2833 / 2634,
  31923. bottom: 68 / 2901
  31924. }
  31925. },
  31926. smol: {
  31927. height: math.unit(0.705, "inches"),
  31928. name: "Smol",
  31929. image: {
  31930. source: "./media/characters/hydra/smol.svg",
  31931. extra: 2715 / 2540,
  31932. bottom: 0 / 2715
  31933. }
  31934. },
  31935. },
  31936. [
  31937. {
  31938. name: "Normal",
  31939. height: math.unit(4 + 6 / 12, "feet"),
  31940. default: true
  31941. }
  31942. ]
  31943. ))
  31944. characterMakers.push(() => makeCharacter(
  31945. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31946. {
  31947. front: {
  31948. height: math.unit(0.6, "cm"),
  31949. name: "Front",
  31950. image: {
  31951. source: "./media/characters/daz/front.svg",
  31952. extra: 1682 / 1164,
  31953. bottom: 42 / 1724
  31954. }
  31955. },
  31956. },
  31957. [
  31958. {
  31959. name: "Normal",
  31960. height: math.unit(0.6, "cm"),
  31961. default: true
  31962. },
  31963. ]
  31964. ))
  31965. characterMakers.push(() => makeCharacter(
  31966. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31967. {
  31968. front: {
  31969. height: math.unit(6, "feet"),
  31970. weight: math.unit(235, "lb"),
  31971. name: "Front",
  31972. image: {
  31973. source: "./media/characters/theo-pangolin/front.svg",
  31974. extra: 1996 / 1969,
  31975. bottom: 115 / 2111
  31976. }
  31977. },
  31978. back: {
  31979. height: math.unit(6, "feet"),
  31980. weight: math.unit(235, "lb"),
  31981. name: "Back",
  31982. image: {
  31983. source: "./media/characters/theo-pangolin/back.svg",
  31984. extra: 1979 / 1979,
  31985. bottom: 40 / 2019
  31986. }
  31987. },
  31988. feral: {
  31989. height: math.unit(2, "feet"),
  31990. weight: math.unit(30, "lb"),
  31991. name: "Feral",
  31992. image: {
  31993. source: "./media/characters/theo-pangolin/feral.svg",
  31994. extra: 803 / 791,
  31995. bottom: 181 / 984
  31996. }
  31997. },
  31998. footFive: {
  31999. height: math.unit(1.43, "feet"),
  32000. name: "Foot (Five Toes)",
  32001. image: {
  32002. source: "./media/characters/theo-pangolin/foot-five.svg"
  32003. }
  32004. },
  32005. footFour: {
  32006. height: math.unit(1.43, "feet"),
  32007. name: "Foot (Four Toes)",
  32008. image: {
  32009. source: "./media/characters/theo-pangolin/foot-four.svg"
  32010. }
  32011. },
  32012. handFour: {
  32013. height: math.unit(0.81, "feet"),
  32014. name: "Hand (Four Fingers)",
  32015. image: {
  32016. source: "./media/characters/theo-pangolin/hand-four.svg"
  32017. }
  32018. },
  32019. handThree: {
  32020. height: math.unit(0.81, "feet"),
  32021. name: "Hand (Three Fingers)",
  32022. image: {
  32023. source: "./media/characters/theo-pangolin/hand-three.svg"
  32024. }
  32025. },
  32026. headFront: {
  32027. height: math.unit(1.37, "feet"),
  32028. name: "Head (Front)",
  32029. image: {
  32030. source: "./media/characters/theo-pangolin/head-front.svg"
  32031. }
  32032. },
  32033. headSide: {
  32034. height: math.unit(1.43, "feet"),
  32035. name: "Head (Side)",
  32036. image: {
  32037. source: "./media/characters/theo-pangolin/head-side.svg"
  32038. }
  32039. },
  32040. tongue: {
  32041. height: math.unit(2.29, "feet"),
  32042. name: "Tongue",
  32043. image: {
  32044. source: "./media/characters/theo-pangolin/tongue.svg"
  32045. }
  32046. },
  32047. },
  32048. [
  32049. {
  32050. name: "Normal",
  32051. height: math.unit(6, "feet")
  32052. },
  32053. {
  32054. name: "Macro",
  32055. height: math.unit(400, "feet"),
  32056. default: true
  32057. },
  32058. ]
  32059. ))
  32060. characterMakers.push(() => makeCharacter(
  32061. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32062. {
  32063. front: {
  32064. height: math.unit(6, "inches"),
  32065. weight: math.unit(0.036, "kg"),
  32066. name: "Front",
  32067. image: {
  32068. source: "./media/characters/renée/front.svg",
  32069. extra: 900 / 886,
  32070. bottom: 8 / 908
  32071. }
  32072. },
  32073. },
  32074. [
  32075. {
  32076. name: "Nano",
  32077. height: math.unit(1, "nm")
  32078. },
  32079. {
  32080. name: "Micro",
  32081. height: math.unit(1, "mm")
  32082. },
  32083. {
  32084. name: "Normal",
  32085. height: math.unit(6, "inches")
  32086. },
  32087. {
  32088. name: "Macro",
  32089. height: math.unit(2000, "feet"),
  32090. default: true
  32091. },
  32092. {
  32093. name: "Megamacro",
  32094. height: math.unit(2, "km")
  32095. },
  32096. {
  32097. name: "Gigamacro",
  32098. height: math.unit(2000, "km")
  32099. },
  32100. {
  32101. name: "Teramacro",
  32102. height: math.unit(250000, "km")
  32103. },
  32104. ]
  32105. ))
  32106. characterMakers.push(() => makeCharacter(
  32107. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32108. {
  32109. front: {
  32110. height: math.unit(4, "meters"),
  32111. weight: math.unit(150, "kg"),
  32112. name: "Front",
  32113. image: {
  32114. source: "./media/characters/caledvwlch/front.svg",
  32115. extra: 1757/1537,
  32116. bottom: 31/1788
  32117. }
  32118. },
  32119. side: {
  32120. height: math.unit(4, "meters"),
  32121. weight: math.unit(150, "kg"),
  32122. name: "Side",
  32123. image: {
  32124. source: "./media/characters/caledvwlch/side.svg",
  32125. extra: 1605 / 1536,
  32126. bottom: 31 / 1636
  32127. }
  32128. },
  32129. back: {
  32130. height: math.unit(4, "meters"),
  32131. weight: math.unit(150, "kg"),
  32132. name: "Back",
  32133. image: {
  32134. source: "./media/characters/caledvwlch/back.svg",
  32135. extra: 1635 / 1565,
  32136. bottom: 27 / 1662
  32137. }
  32138. },
  32139. },
  32140. [
  32141. {
  32142. name: "\"Incognito\"",
  32143. height: math.unit(4, "meters")
  32144. },
  32145. {
  32146. name: "Small rampage",
  32147. height: math.unit(600, "meters")
  32148. },
  32149. {
  32150. name: "Mega",
  32151. height: math.unit(30, "km")
  32152. },
  32153. {
  32154. name: "Home-size",
  32155. height: math.unit(50, "km"),
  32156. default: true
  32157. },
  32158. {
  32159. name: "Giga",
  32160. height: math.unit(300, "km")
  32161. },
  32162. {
  32163. name: "Lounging",
  32164. height: math.unit(11000, "km")
  32165. },
  32166. {
  32167. name: "Planet snacking",
  32168. height: math.unit(2000000, "km")
  32169. },
  32170. ]
  32171. ))
  32172. characterMakers.push(() => makeCharacter(
  32173. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32174. {
  32175. front: {
  32176. height: math.unit(6, "feet"),
  32177. weight: math.unit(215, "lb"),
  32178. name: "Front",
  32179. image: {
  32180. source: "./media/characters/sapphire-svell/front.svg",
  32181. extra: 495 / 455,
  32182. bottom: 20 / 515
  32183. }
  32184. },
  32185. back: {
  32186. height: math.unit(6, "feet"),
  32187. weight: math.unit(216, "lb"),
  32188. name: "Back",
  32189. image: {
  32190. source: "./media/characters/sapphire-svell/back.svg",
  32191. extra: 497 / 477,
  32192. bottom: 7 / 504
  32193. }
  32194. },
  32195. maw: {
  32196. height: math.unit(1.57, "feet"),
  32197. name: "Maw",
  32198. image: {
  32199. source: "./media/characters/sapphire-svell/maw.svg"
  32200. }
  32201. },
  32202. foot: {
  32203. height: math.unit(1.07, "feet"),
  32204. name: "Foot",
  32205. image: {
  32206. source: "./media/characters/sapphire-svell/foot.svg"
  32207. }
  32208. },
  32209. toering: {
  32210. height: math.unit(1.7, "inch"),
  32211. name: "Toering",
  32212. image: {
  32213. source: "./media/characters/sapphire-svell/toering.svg"
  32214. }
  32215. },
  32216. },
  32217. [
  32218. {
  32219. name: "Normal",
  32220. height: math.unit(300, "feet"),
  32221. default: true
  32222. },
  32223. {
  32224. name: "Augmented",
  32225. height: math.unit(1250, "feet")
  32226. },
  32227. {
  32228. name: "Unleashed",
  32229. height: math.unit(3000, "feet")
  32230. },
  32231. ]
  32232. ))
  32233. characterMakers.push(() => makeCharacter(
  32234. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32235. {
  32236. side: {
  32237. height: math.unit(2 + 3 / 12, "feet"),
  32238. weight: math.unit(110, "lb"),
  32239. name: "Side",
  32240. image: {
  32241. source: "./media/characters/glitch-flux/side.svg",
  32242. extra: 997 / 805,
  32243. bottom: 20 / 1017
  32244. }
  32245. },
  32246. },
  32247. [
  32248. {
  32249. name: "Normal",
  32250. height: math.unit(2 + 3 / 12, "feet"),
  32251. default: true
  32252. },
  32253. ]
  32254. ))
  32255. characterMakers.push(() => makeCharacter(
  32256. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32257. {
  32258. front: {
  32259. height: math.unit(4, "meters"),
  32260. name: "Front",
  32261. image: {
  32262. source: "./media/characters/mid/front.svg",
  32263. extra: 507 / 476,
  32264. bottom: 17 / 524
  32265. }
  32266. },
  32267. back: {
  32268. height: math.unit(4, "meters"),
  32269. name: "Back",
  32270. image: {
  32271. source: "./media/characters/mid/back.svg",
  32272. extra: 519 / 487,
  32273. bottom: 7 / 526
  32274. }
  32275. },
  32276. stuck: {
  32277. height: math.unit(2.2, "meters"),
  32278. name: "Stuck",
  32279. image: {
  32280. source: "./media/characters/mid/stuck.svg",
  32281. extra: 1951 / 1869,
  32282. bottom: 88 / 2039
  32283. }
  32284. }
  32285. },
  32286. [
  32287. {
  32288. name: "Normal",
  32289. height: math.unit(4, "meters"),
  32290. default: true
  32291. },
  32292. {
  32293. name: "Big",
  32294. height: math.unit(10, "meters")
  32295. },
  32296. {
  32297. name: "Macro",
  32298. height: math.unit(800, "meters")
  32299. },
  32300. {
  32301. name: "Megamacro",
  32302. height: math.unit(100, "km")
  32303. },
  32304. {
  32305. name: "Overgrown",
  32306. height: math.unit(1, "parsec")
  32307. },
  32308. ]
  32309. ))
  32310. characterMakers.push(() => makeCharacter(
  32311. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32312. {
  32313. front: {
  32314. height: math.unit(2.5, "meters"),
  32315. weight: math.unit(225, "kg"),
  32316. name: "Front",
  32317. image: {
  32318. source: "./media/characters/iris/front.svg",
  32319. extra: 3348 / 3251,
  32320. bottom: 205 / 3553
  32321. }
  32322. },
  32323. maw: {
  32324. height: math.unit(0.56, "meter"),
  32325. name: "Maw",
  32326. image: {
  32327. source: "./media/characters/iris/maw.svg"
  32328. }
  32329. },
  32330. },
  32331. [
  32332. {
  32333. name: "Mewter cat",
  32334. height: math.unit(1.2, "meters")
  32335. },
  32336. {
  32337. name: "Normal",
  32338. height: math.unit(2.5, "meters"),
  32339. default: true
  32340. },
  32341. {
  32342. name: "Minimacro",
  32343. height: math.unit(18, "feet")
  32344. },
  32345. {
  32346. name: "Macro",
  32347. height: math.unit(140, "feet")
  32348. },
  32349. {
  32350. name: "Macro+",
  32351. height: math.unit(180, "meters")
  32352. },
  32353. {
  32354. name: "Megamacro",
  32355. height: math.unit(2746, "meters")
  32356. },
  32357. ]
  32358. ))
  32359. characterMakers.push(() => makeCharacter(
  32360. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32361. {
  32362. front: {
  32363. height: math.unit(6, "feet"),
  32364. weight: math.unit(135, "lb"),
  32365. name: "Front",
  32366. image: {
  32367. source: "./media/characters/axel/front.svg",
  32368. extra: 908 / 908,
  32369. bottom: 58 / 966
  32370. }
  32371. },
  32372. side: {
  32373. height: math.unit(6, "feet"),
  32374. weight: math.unit(135, "lb"),
  32375. name: "Side",
  32376. image: {
  32377. source: "./media/characters/axel/side.svg",
  32378. extra: 958 / 958,
  32379. bottom: 11 / 969
  32380. }
  32381. },
  32382. back: {
  32383. height: math.unit(6, "feet"),
  32384. weight: math.unit(135, "lb"),
  32385. name: "Back",
  32386. image: {
  32387. source: "./media/characters/axel/back.svg",
  32388. extra: 887 / 887,
  32389. bottom: 34 / 921
  32390. }
  32391. },
  32392. head: {
  32393. height: math.unit(1.07, "feet"),
  32394. name: "Head",
  32395. image: {
  32396. source: "./media/characters/axel/head.svg"
  32397. }
  32398. },
  32399. beak: {
  32400. height: math.unit(1.4, "feet"),
  32401. name: "Beak",
  32402. image: {
  32403. source: "./media/characters/axel/beak.svg"
  32404. }
  32405. },
  32406. beakSide: {
  32407. height: math.unit(1.4, "feet"),
  32408. name: "Beak Side",
  32409. image: {
  32410. source: "./media/characters/axel/beak-side.svg"
  32411. }
  32412. },
  32413. sheath: {
  32414. height: math.unit(0.5, "feet"),
  32415. name: "Sheath",
  32416. image: {
  32417. source: "./media/characters/axel/sheath.svg"
  32418. }
  32419. },
  32420. dick: {
  32421. height: math.unit(0.98, "feet"),
  32422. name: "Dick",
  32423. image: {
  32424. source: "./media/characters/axel/dick.svg"
  32425. }
  32426. },
  32427. },
  32428. [
  32429. {
  32430. name: "Macro",
  32431. height: math.unit(68, "meters"),
  32432. default: true
  32433. },
  32434. ]
  32435. ))
  32436. characterMakers.push(() => makeCharacter(
  32437. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32438. {
  32439. front: {
  32440. height: math.unit(3.5, "meters"),
  32441. weight: math.unit(1200, "kg"),
  32442. name: "Front",
  32443. image: {
  32444. source: "./media/characters/joanna/front.svg",
  32445. extra: 1596 / 1488,
  32446. bottom: 29 / 1625
  32447. }
  32448. },
  32449. back: {
  32450. height: math.unit(3.5, "meters"),
  32451. weight: math.unit(1200, "kg"),
  32452. name: "Back",
  32453. image: {
  32454. source: "./media/characters/joanna/back.svg",
  32455. extra: 1594 / 1495,
  32456. bottom: 26 / 1620
  32457. }
  32458. },
  32459. frontShorts: {
  32460. height: math.unit(3.5, "meters"),
  32461. weight: math.unit(1200, "kg"),
  32462. name: "Front (Shorts)",
  32463. image: {
  32464. source: "./media/characters/joanna/front-shorts.svg",
  32465. extra: 1596 / 1488,
  32466. bottom: 29 / 1625
  32467. }
  32468. },
  32469. frontBiker: {
  32470. height: math.unit(3.5, "meters"),
  32471. weight: math.unit(1200, "kg"),
  32472. name: "Front (Biker)",
  32473. image: {
  32474. source: "./media/characters/joanna/front-biker.svg",
  32475. extra: 1596 / 1488,
  32476. bottom: 29 / 1625
  32477. }
  32478. },
  32479. backBiker: {
  32480. height: math.unit(3.5, "meters"),
  32481. weight: math.unit(1200, "kg"),
  32482. name: "Back (Biker)",
  32483. image: {
  32484. source: "./media/characters/joanna/back-biker.svg",
  32485. extra: 1594 / 1495,
  32486. bottom: 88 / 1682
  32487. }
  32488. },
  32489. bikeLeft: {
  32490. height: math.unit(2.4, "meters"),
  32491. weight: math.unit(1600, "kg"),
  32492. name: "Bike (Left)",
  32493. image: {
  32494. source: "./media/characters/joanna/bike-left.svg",
  32495. extra: 720 / 720,
  32496. bottom: 8 / 728
  32497. }
  32498. },
  32499. bikeRight: {
  32500. height: math.unit(2.4, "meters"),
  32501. weight: math.unit(1600, "kg"),
  32502. name: "Bike (Right)",
  32503. image: {
  32504. source: "./media/characters/joanna/bike-right.svg",
  32505. extra: 720 / 720,
  32506. bottom: 8 / 728
  32507. }
  32508. },
  32509. },
  32510. [
  32511. {
  32512. name: "Incognito",
  32513. height: math.unit(3.5, "meters")
  32514. },
  32515. {
  32516. name: "Casual Big",
  32517. height: math.unit(200, "meters")
  32518. },
  32519. {
  32520. name: "Macro",
  32521. height: math.unit(600, "meters")
  32522. },
  32523. {
  32524. name: "Original",
  32525. height: math.unit(20, "km"),
  32526. default: true
  32527. },
  32528. {
  32529. name: "Giga",
  32530. height: math.unit(400, "km")
  32531. },
  32532. {
  32533. name: "Lounging",
  32534. height: math.unit(1500, "km")
  32535. },
  32536. {
  32537. name: "Planetary",
  32538. height: math.unit(200000, "km")
  32539. },
  32540. ]
  32541. ))
  32542. characterMakers.push(() => makeCharacter(
  32543. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32544. {
  32545. front: {
  32546. height: math.unit(6, "feet"),
  32547. weight: math.unit(150, "lb"),
  32548. name: "Front",
  32549. image: {
  32550. source: "./media/characters/hugo-sigil/front.svg",
  32551. extra: 522 / 500,
  32552. bottom: 2 / 524
  32553. }
  32554. },
  32555. back: {
  32556. height: math.unit(6, "feet"),
  32557. weight: math.unit(150, "lb"),
  32558. name: "Back",
  32559. image: {
  32560. source: "./media/characters/hugo-sigil/back.svg",
  32561. extra: 519 / 495,
  32562. bottom: 5 / 524
  32563. }
  32564. },
  32565. maw: {
  32566. height: math.unit(1.4, "feet"),
  32567. weight: math.unit(150, "lb"),
  32568. name: "Maw",
  32569. image: {
  32570. source: "./media/characters/hugo-sigil/maw.svg"
  32571. }
  32572. },
  32573. feet: {
  32574. height: math.unit(1.56, "feet"),
  32575. weight: math.unit(150, "lb"),
  32576. name: "Feet",
  32577. image: {
  32578. source: "./media/characters/hugo-sigil/feet.svg",
  32579. extra: 177 / 177,
  32580. bottom: 12 / 189
  32581. }
  32582. },
  32583. },
  32584. [
  32585. {
  32586. name: "Normal",
  32587. height: math.unit(6, "feet")
  32588. },
  32589. {
  32590. name: "Macro",
  32591. height: math.unit(200, "feet"),
  32592. default: true
  32593. },
  32594. ]
  32595. ))
  32596. characterMakers.push(() => makeCharacter(
  32597. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32598. {
  32599. front: {
  32600. height: math.unit(6, "feet"),
  32601. weight: math.unit(150, "lb"),
  32602. name: "Front",
  32603. image: {
  32604. source: "./media/characters/peri/front.svg",
  32605. extra: 2354 / 2233,
  32606. bottom: 49 / 2403
  32607. }
  32608. },
  32609. },
  32610. [
  32611. {
  32612. name: "Really Small",
  32613. height: math.unit(1, "nm")
  32614. },
  32615. {
  32616. name: "Micro",
  32617. height: math.unit(4, "inches")
  32618. },
  32619. {
  32620. name: "Normal",
  32621. height: math.unit(7, "inches"),
  32622. default: true
  32623. },
  32624. {
  32625. name: "Macro",
  32626. height: math.unit(400, "feet")
  32627. },
  32628. {
  32629. name: "Megamacro",
  32630. height: math.unit(100, "miles")
  32631. },
  32632. ]
  32633. ))
  32634. characterMakers.push(() => makeCharacter(
  32635. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32636. {
  32637. frontSlim: {
  32638. height: math.unit(7, "feet"),
  32639. name: "Front (Slim)",
  32640. image: {
  32641. source: "./media/characters/issilora/front-slim.svg",
  32642. extra: 529 / 449,
  32643. bottom: 53 / 582
  32644. }
  32645. },
  32646. sideSlim: {
  32647. height: math.unit(7, "feet"),
  32648. name: "Side (Slim)",
  32649. image: {
  32650. source: "./media/characters/issilora/side-slim.svg",
  32651. extra: 570 / 480,
  32652. bottom: 30 / 600
  32653. }
  32654. },
  32655. backSlim: {
  32656. height: math.unit(7, "feet"),
  32657. name: "Back (Slim)",
  32658. image: {
  32659. source: "./media/characters/issilora/back-slim.svg",
  32660. extra: 537 / 455,
  32661. bottom: 46 / 583
  32662. }
  32663. },
  32664. frontBuff: {
  32665. height: math.unit(7, "feet"),
  32666. name: "Front (Buff)",
  32667. image: {
  32668. source: "./media/characters/issilora/front-buff.svg",
  32669. extra: 2310 / 2035,
  32670. bottom: 335 / 2645
  32671. }
  32672. },
  32673. head: {
  32674. height: math.unit(1.94, "feet"),
  32675. name: "Head",
  32676. image: {
  32677. source: "./media/characters/issilora/head.svg"
  32678. }
  32679. },
  32680. },
  32681. [
  32682. {
  32683. name: "Minimum",
  32684. height: math.unit(7, "feet")
  32685. },
  32686. {
  32687. name: "Comfortable",
  32688. height: math.unit(17, "feet")
  32689. },
  32690. {
  32691. name: "Fun Size",
  32692. height: math.unit(47, "feet")
  32693. },
  32694. {
  32695. name: "Natural Macro",
  32696. height: math.unit(137, "feet"),
  32697. default: true
  32698. },
  32699. {
  32700. name: "Maximum Kaiju",
  32701. height: math.unit(397, "feet")
  32702. },
  32703. ]
  32704. ))
  32705. characterMakers.push(() => makeCharacter(
  32706. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32707. {
  32708. front: {
  32709. height: math.unit(50 + 9/12, "feet"),
  32710. weight: math.unit(32.8, "tons"),
  32711. name: "Front",
  32712. image: {
  32713. source: "./media/characters/irb'iiritaahn/front.svg",
  32714. extra: 1878/1826,
  32715. bottom: 326/2204
  32716. }
  32717. },
  32718. back: {
  32719. height: math.unit(50 + 9/12, "feet"),
  32720. weight: math.unit(32.8, "tons"),
  32721. name: "Back",
  32722. image: {
  32723. source: "./media/characters/irb'iiritaahn/back.svg",
  32724. extra: 2052/2018,
  32725. bottom: 152/2204
  32726. }
  32727. },
  32728. head: {
  32729. height: math.unit(12.86, "feet"),
  32730. name: "Head",
  32731. image: {
  32732. source: "./media/characters/irb'iiritaahn/head.svg"
  32733. }
  32734. },
  32735. maw: {
  32736. height: math.unit(9.66, "feet"),
  32737. name: "Maw",
  32738. image: {
  32739. source: "./media/characters/irb'iiritaahn/maw.svg"
  32740. }
  32741. },
  32742. frontDick: {
  32743. height: math.unit(8.78461, "feet"),
  32744. name: "Front Dick",
  32745. image: {
  32746. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32747. }
  32748. },
  32749. rearDick: {
  32750. height: math.unit(8.78461, "feet"),
  32751. name: "Rear Dick",
  32752. image: {
  32753. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32754. }
  32755. },
  32756. rearDickUnfolded: {
  32757. height: math.unit(8.78, "feet"),
  32758. name: "Rear Dick (Unfolded)",
  32759. image: {
  32760. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32761. }
  32762. },
  32763. wings: {
  32764. height: math.unit(43, "feet"),
  32765. name: "Wings",
  32766. image: {
  32767. source: "./media/characters/irb'iiritaahn/wings.svg"
  32768. }
  32769. },
  32770. },
  32771. [
  32772. {
  32773. name: "Macro",
  32774. height: math.unit(50 + 9/12, "feet"),
  32775. default: true
  32776. },
  32777. ]
  32778. ))
  32779. characterMakers.push(() => makeCharacter(
  32780. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32781. {
  32782. front: {
  32783. height: math.unit(205, "cm"),
  32784. weight: math.unit(102, "kg"),
  32785. name: "Front",
  32786. image: {
  32787. source: "./media/characters/irbisgreif/front.svg",
  32788. extra: 785/706,
  32789. bottom: 13/798
  32790. }
  32791. },
  32792. back: {
  32793. height: math.unit(205, "cm"),
  32794. weight: math.unit(102, "kg"),
  32795. name: "Back",
  32796. image: {
  32797. source: "./media/characters/irbisgreif/back.svg",
  32798. extra: 713/701,
  32799. bottom: 26/739
  32800. }
  32801. },
  32802. frontDressed: {
  32803. height: math.unit(216, "cm"),
  32804. weight: math.unit(102, "kg"),
  32805. name: "Front-dressed",
  32806. image: {
  32807. source: "./media/characters/irbisgreif/front-dressed.svg",
  32808. extra: 902/776,
  32809. bottom: 14/916
  32810. }
  32811. },
  32812. sideDressed: {
  32813. height: math.unit(195, "cm"),
  32814. weight: math.unit(102, "kg"),
  32815. name: "Side-dressed",
  32816. image: {
  32817. source: "./media/characters/irbisgreif/side-dressed.svg",
  32818. extra: 788/688,
  32819. bottom: 21/809
  32820. }
  32821. },
  32822. backDressed: {
  32823. height: math.unit(216, "cm"),
  32824. weight: math.unit(102, "kg"),
  32825. name: "Back-dressed",
  32826. image: {
  32827. source: "./media/characters/irbisgreif/back-dressed.svg",
  32828. extra: 901/783,
  32829. bottom: 10/911
  32830. }
  32831. },
  32832. dick: {
  32833. height: math.unit(0.49, "feet"),
  32834. name: "Dick",
  32835. image: {
  32836. source: "./media/characters/irbisgreif/dick.svg"
  32837. }
  32838. },
  32839. wingTop: {
  32840. height: math.unit(1.93 , "feet"),
  32841. name: "Wing-top",
  32842. image: {
  32843. source: "./media/characters/irbisgreif/wing-top.svg"
  32844. }
  32845. },
  32846. wingBottom: {
  32847. height: math.unit(1.93 , "feet"),
  32848. name: "Wing-bottom",
  32849. image: {
  32850. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32851. }
  32852. },
  32853. },
  32854. [
  32855. {
  32856. name: "Normal",
  32857. height: math.unit(216, "cm"),
  32858. default: true
  32859. },
  32860. ]
  32861. ))
  32862. characterMakers.push(() => makeCharacter(
  32863. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32864. {
  32865. front: {
  32866. height: math.unit(6, "feet"),
  32867. weight: math.unit(150, "lb"),
  32868. name: "Front",
  32869. image: {
  32870. source: "./media/characters/pride/front.svg",
  32871. extra: 1299/1230,
  32872. bottom: 18/1317
  32873. }
  32874. },
  32875. },
  32876. [
  32877. {
  32878. name: "Normal",
  32879. height: math.unit(7, "feet")
  32880. },
  32881. {
  32882. name: "Mini-macro",
  32883. height: math.unit(11, "feet")
  32884. },
  32885. {
  32886. name: "Macro",
  32887. height: math.unit(15, "meters"),
  32888. default: true
  32889. },
  32890. {
  32891. name: "Macro+",
  32892. height: math.unit(40, "meters")
  32893. },
  32894. ]
  32895. ))
  32896. characterMakers.push(() => makeCharacter(
  32897. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32898. {
  32899. front: {
  32900. height: math.unit(4 + 2 / 12, "feet"),
  32901. weight: math.unit(95, "lb"),
  32902. name: "Front",
  32903. image: {
  32904. source: "./media/characters/vaelophis-nyx/front.svg",
  32905. extra: 2532/2330,
  32906. bottom: 0/2532
  32907. }
  32908. },
  32909. back: {
  32910. height: math.unit(4 + 2 / 12, "feet"),
  32911. weight: math.unit(95, "lb"),
  32912. name: "Back",
  32913. image: {
  32914. source: "./media/characters/vaelophis-nyx/back.svg",
  32915. extra: 2484/2361,
  32916. bottom: 0/2484
  32917. }
  32918. },
  32919. feralSide: {
  32920. height: math.unit(2 + 1/12, "feet"),
  32921. weight: math.unit(20, "lb"),
  32922. name: "Feral (Side)",
  32923. image: {
  32924. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32925. extra: 1721/1581,
  32926. bottom: 70/1791
  32927. }
  32928. },
  32929. feralLazing: {
  32930. height: math.unit(1.08, "feet"),
  32931. weight: math.unit(20, "lb"),
  32932. name: "Feral (Lazing)",
  32933. image: {
  32934. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32935. extra: 822/822,
  32936. bottom: 248/1070
  32937. }
  32938. },
  32939. ear: {
  32940. height: math.unit(0.416, "feet"),
  32941. name: "Ear",
  32942. image: {
  32943. source: "./media/characters/vaelophis-nyx/ear.svg"
  32944. }
  32945. },
  32946. eye: {
  32947. height: math.unit(0.0748, "feet"),
  32948. name: "Eye",
  32949. image: {
  32950. source: "./media/characters/vaelophis-nyx/eye.svg"
  32951. }
  32952. },
  32953. mouth: {
  32954. height: math.unit(0.378, "feet"),
  32955. name: "Mouth",
  32956. image: {
  32957. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32958. }
  32959. },
  32960. spade: {
  32961. height: math.unit(0.55, "feet"),
  32962. name: "Spade",
  32963. image: {
  32964. source: "./media/characters/vaelophis-nyx/spade.svg"
  32965. }
  32966. },
  32967. },
  32968. [
  32969. {
  32970. name: "Normal",
  32971. height: math.unit(4 + 2/12, "feet"),
  32972. default: true
  32973. },
  32974. ]
  32975. ))
  32976. characterMakers.push(() => makeCharacter(
  32977. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32978. {
  32979. front: {
  32980. height: math.unit(7, "feet"),
  32981. weight: math.unit(231, "lb"),
  32982. name: "Front",
  32983. image: {
  32984. source: "./media/characters/flux/front.svg",
  32985. extra: 919/871,
  32986. bottom: 0/919
  32987. }
  32988. },
  32989. back: {
  32990. height: math.unit(7, "feet"),
  32991. weight: math.unit(231, "lb"),
  32992. name: "Back",
  32993. image: {
  32994. source: "./media/characters/flux/back.svg",
  32995. extra: 1040/992,
  32996. bottom: 0/1040
  32997. }
  32998. },
  32999. frontDressed: {
  33000. height: math.unit(7, "feet"),
  33001. weight: math.unit(231, "lb"),
  33002. name: "Front (Dressed)",
  33003. image: {
  33004. source: "./media/characters/flux/front-dressed.svg",
  33005. extra: 919/871,
  33006. bottom: 0/919
  33007. }
  33008. },
  33009. feralSide: {
  33010. height: math.unit(5, "feet"),
  33011. weight: math.unit(150, "lb"),
  33012. name: "Feral (Side)",
  33013. image: {
  33014. source: "./media/characters/flux/feral-side.svg",
  33015. extra: 598/528,
  33016. bottom: 28/626
  33017. }
  33018. },
  33019. head: {
  33020. height: math.unit(1.585, "feet"),
  33021. name: "Head",
  33022. image: {
  33023. source: "./media/characters/flux/head.svg"
  33024. }
  33025. },
  33026. headSide: {
  33027. height: math.unit(1.74, "feet"),
  33028. name: "Head (Side)",
  33029. image: {
  33030. source: "./media/characters/flux/head-side.svg"
  33031. }
  33032. },
  33033. headSideFire: {
  33034. height: math.unit(1.76, "feet"),
  33035. name: "Head (Side, Fire)",
  33036. image: {
  33037. source: "./media/characters/flux/head-side-fire.svg"
  33038. }
  33039. },
  33040. },
  33041. [
  33042. {
  33043. name: "Normal",
  33044. height: math.unit(7, "feet"),
  33045. default: true
  33046. },
  33047. ]
  33048. ))
  33049. characterMakers.push(() => makeCharacter(
  33050. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33051. {
  33052. front: {
  33053. height: math.unit(9, "feet"),
  33054. weight: math.unit(1012, "lb"),
  33055. name: "Front",
  33056. image: {
  33057. source: "./media/characters/ulfra-lupae/front.svg",
  33058. extra: 1083/1011,
  33059. bottom: 67/1150
  33060. }
  33061. },
  33062. },
  33063. [
  33064. {
  33065. name: "Micro",
  33066. height: math.unit(6, "inches")
  33067. },
  33068. {
  33069. name: "Socializing",
  33070. height: math.unit(6 + 5/12, "feet")
  33071. },
  33072. {
  33073. name: "Normal",
  33074. height: math.unit(9, "feet"),
  33075. default: true
  33076. },
  33077. {
  33078. name: "Macro",
  33079. height: math.unit(150, "feet")
  33080. },
  33081. ]
  33082. ))
  33083. characterMakers.push(() => makeCharacter(
  33084. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33085. {
  33086. front: {
  33087. height: math.unit(5 + 2/12, "feet"),
  33088. weight: math.unit(120, "lb"),
  33089. name: "Front",
  33090. image: {
  33091. source: "./media/characters/timber/front.svg",
  33092. extra: 2814/2705,
  33093. bottom: 181/2995
  33094. }
  33095. },
  33096. },
  33097. [
  33098. {
  33099. name: "Normal",
  33100. height: math.unit(5 + 2/12, "feet"),
  33101. default: true
  33102. },
  33103. ]
  33104. ))
  33105. characterMakers.push(() => makeCharacter(
  33106. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33107. {
  33108. front: {
  33109. height: math.unit(9, "feet"),
  33110. name: "Front",
  33111. image: {
  33112. source: "./media/characters/nicki/front.svg",
  33113. extra: 1240/990,
  33114. bottom: 45/1285
  33115. },
  33116. form: "anthro",
  33117. default: true
  33118. },
  33119. side: {
  33120. height: math.unit(9, "feet"),
  33121. name: "Side",
  33122. image: {
  33123. source: "./media/characters/nicki/side.svg",
  33124. extra: 1047/973,
  33125. bottom: 61/1108
  33126. },
  33127. form: "anthro"
  33128. },
  33129. back: {
  33130. height: math.unit(9, "feet"),
  33131. name: "Back",
  33132. image: {
  33133. source: "./media/characters/nicki/back.svg",
  33134. extra: 1006/965,
  33135. bottom: 39/1045
  33136. },
  33137. form: "anthro"
  33138. },
  33139. taur: {
  33140. height: math.unit(15, "feet"),
  33141. name: "Taur",
  33142. image: {
  33143. source: "./media/characters/nicki/taur.svg",
  33144. extra: 1592/1347,
  33145. bottom: 0/1592
  33146. },
  33147. form: "taur",
  33148. default: true
  33149. },
  33150. },
  33151. [
  33152. {
  33153. name: "Normal",
  33154. height: math.unit(9, "feet"),
  33155. form: "anthro",
  33156. default: true
  33157. },
  33158. {
  33159. name: "Normal",
  33160. height: math.unit(15, "feet"),
  33161. form: "taur",
  33162. default: true
  33163. }
  33164. ],
  33165. {
  33166. "anthro": {
  33167. name: "Anthro",
  33168. default: true
  33169. },
  33170. "taur": {
  33171. name: "Taur"
  33172. }
  33173. }
  33174. ))
  33175. characterMakers.push(() => makeCharacter(
  33176. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33177. {
  33178. front: {
  33179. height: math.unit(7 + 10/12, "feet"),
  33180. weight: math.unit(3.5, "tons"),
  33181. name: "Front",
  33182. image: {
  33183. source: "./media/characters/lee/front.svg",
  33184. extra: 1773/1615,
  33185. bottom: 86/1859
  33186. }
  33187. },
  33188. hand: {
  33189. height: math.unit(1.78, "feet"),
  33190. name: "Hand",
  33191. image: {
  33192. source: "./media/characters/lee/hand.svg"
  33193. }
  33194. },
  33195. maw: {
  33196. height: math.unit(1.18, "feet"),
  33197. name: "Maw",
  33198. image: {
  33199. source: "./media/characters/lee/maw.svg"
  33200. }
  33201. },
  33202. },
  33203. [
  33204. {
  33205. name: "Normal",
  33206. height: math.unit(7 + 10/12, "feet"),
  33207. default: true
  33208. },
  33209. ]
  33210. ))
  33211. characterMakers.push(() => makeCharacter(
  33212. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33213. {
  33214. front: {
  33215. height: math.unit(9, "feet"),
  33216. name: "Front",
  33217. image: {
  33218. source: "./media/characters/guti/front.svg",
  33219. extra: 4551/4355,
  33220. bottom: 123/4674
  33221. }
  33222. },
  33223. tongue: {
  33224. height: math.unit(1, "feet"),
  33225. name: "Tongue",
  33226. image: {
  33227. source: "./media/characters/guti/tongue.svg"
  33228. }
  33229. },
  33230. paw: {
  33231. height: math.unit(1.18, "feet"),
  33232. name: "Paw",
  33233. image: {
  33234. source: "./media/characters/guti/paw.svg"
  33235. }
  33236. },
  33237. },
  33238. [
  33239. {
  33240. name: "Normal",
  33241. height: math.unit(9, "feet"),
  33242. default: true
  33243. },
  33244. ]
  33245. ))
  33246. characterMakers.push(() => makeCharacter(
  33247. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33248. {
  33249. side: {
  33250. height: math.unit(5, "meters"),
  33251. name: "Side",
  33252. image: {
  33253. source: "./media/characters/vesper/side.svg",
  33254. extra: 1605/1518,
  33255. bottom: 0/1605
  33256. }
  33257. },
  33258. },
  33259. [
  33260. {
  33261. name: "Small",
  33262. height: math.unit(5, "meters")
  33263. },
  33264. {
  33265. name: "Sage",
  33266. height: math.unit(100, "meters"),
  33267. default: true
  33268. },
  33269. {
  33270. name: "Fun Size",
  33271. height: math.unit(600, "meters")
  33272. },
  33273. {
  33274. name: "Goddess",
  33275. height: math.unit(20000, "km")
  33276. },
  33277. {
  33278. name: "Maximum",
  33279. height: math.unit(5, "galaxies")
  33280. },
  33281. ]
  33282. ))
  33283. characterMakers.push(() => makeCharacter(
  33284. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33285. {
  33286. front: {
  33287. height: math.unit(6 + 3/12, "feet"),
  33288. weight: math.unit(190, "lb"),
  33289. name: "Front",
  33290. image: {
  33291. source: "./media/characters/gawain/front.svg",
  33292. extra: 2222/2139,
  33293. bottom: 90/2312
  33294. }
  33295. },
  33296. back: {
  33297. height: math.unit(6 + 3/12, "feet"),
  33298. weight: math.unit(190, "lb"),
  33299. name: "Back",
  33300. image: {
  33301. source: "./media/characters/gawain/back.svg",
  33302. extra: 2199/2111,
  33303. bottom: 73/2272
  33304. }
  33305. },
  33306. },
  33307. [
  33308. {
  33309. name: "Normal",
  33310. height: math.unit(6 + 3/12, "feet"),
  33311. default: true
  33312. },
  33313. ]
  33314. ))
  33315. characterMakers.push(() => makeCharacter(
  33316. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33317. {
  33318. side: {
  33319. height: math.unit(3.5, "meters"),
  33320. weight: math.unit(16000, "lb"),
  33321. name: "Side",
  33322. image: {
  33323. source: "./media/characters/dascalti/side.svg",
  33324. extra: 392/273,
  33325. bottom: 47/439
  33326. }
  33327. },
  33328. breath: {
  33329. height: math.unit(7.4, "feet"),
  33330. name: "Breath",
  33331. image: {
  33332. source: "./media/characters/dascalti/breath.svg"
  33333. }
  33334. },
  33335. fed: {
  33336. height: math.unit(3.6, "meters"),
  33337. weight: math.unit(16000, "lb"),
  33338. name: "Fed",
  33339. image: {
  33340. source: "./media/characters/dascalti/fed.svg",
  33341. extra: 1419/820,
  33342. bottom: 95/1514
  33343. }
  33344. },
  33345. },
  33346. [
  33347. {
  33348. name: "Normal",
  33349. height: math.unit(3.5, "meters"),
  33350. default: true
  33351. },
  33352. ]
  33353. ))
  33354. characterMakers.push(() => makeCharacter(
  33355. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33356. {
  33357. front: {
  33358. height: math.unit(3 + 5/12, "feet"),
  33359. name: "Front",
  33360. image: {
  33361. source: "./media/characters/mauve/front.svg",
  33362. extra: 1126/1033,
  33363. bottom: 65/1191
  33364. }
  33365. },
  33366. side: {
  33367. height: math.unit(3 + 5/12, "feet"),
  33368. name: "Side",
  33369. image: {
  33370. source: "./media/characters/mauve/side.svg",
  33371. extra: 1089/1001,
  33372. bottom: 29/1118
  33373. }
  33374. },
  33375. back: {
  33376. height: math.unit(3 + 5/12, "feet"),
  33377. name: "Back",
  33378. image: {
  33379. source: "./media/characters/mauve/back.svg",
  33380. extra: 1173/1053,
  33381. bottom: 109/1282
  33382. }
  33383. },
  33384. },
  33385. [
  33386. {
  33387. name: "Normal",
  33388. height: math.unit(3 + 5/12, "feet"),
  33389. default: true
  33390. },
  33391. ]
  33392. ))
  33393. characterMakers.push(() => makeCharacter(
  33394. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33395. {
  33396. front: {
  33397. height: math.unit(6 + 3/12, "feet"),
  33398. weight: math.unit(430, "lb"),
  33399. name: "Front",
  33400. image: {
  33401. source: "./media/characters/carlos/front.svg",
  33402. extra: 1964/1913,
  33403. bottom: 70/2034
  33404. }
  33405. },
  33406. },
  33407. [
  33408. {
  33409. name: "Normal",
  33410. height: math.unit(6 + 3/12, "feet"),
  33411. default: true
  33412. },
  33413. ]
  33414. ))
  33415. characterMakers.push(() => makeCharacter(
  33416. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33417. {
  33418. back: {
  33419. height: math.unit(5 + 10/12, "feet"),
  33420. weight: math.unit(200, "lb"),
  33421. name: "Back",
  33422. image: {
  33423. source: "./media/characters/jax/back.svg",
  33424. extra: 764/739,
  33425. bottom: 25/789
  33426. }
  33427. },
  33428. },
  33429. [
  33430. {
  33431. name: "Normal",
  33432. height: math.unit(5 + 10/12, "feet"),
  33433. default: true
  33434. },
  33435. ]
  33436. ))
  33437. characterMakers.push(() => makeCharacter(
  33438. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33439. {
  33440. front: {
  33441. height: math.unit(8, "feet"),
  33442. weight: math.unit(250, "lb"),
  33443. name: "Front",
  33444. image: {
  33445. source: "./media/characters/eikthynir/front.svg",
  33446. extra: 1332/1166,
  33447. bottom: 82/1414
  33448. }
  33449. },
  33450. back: {
  33451. height: math.unit(8, "feet"),
  33452. weight: math.unit(250, "lb"),
  33453. name: "Back",
  33454. image: {
  33455. source: "./media/characters/eikthynir/back.svg",
  33456. extra: 1342/1190,
  33457. bottom: 19/1361
  33458. }
  33459. },
  33460. dick: {
  33461. height: math.unit(2.35, "feet"),
  33462. name: "Dick",
  33463. image: {
  33464. source: "./media/characters/eikthynir/dick.svg"
  33465. }
  33466. },
  33467. },
  33468. [
  33469. {
  33470. name: "Normal",
  33471. height: math.unit(8, "feet"),
  33472. default: true
  33473. },
  33474. ]
  33475. ))
  33476. characterMakers.push(() => makeCharacter(
  33477. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33478. {
  33479. front: {
  33480. height: math.unit(99, "meters"),
  33481. weight: math.unit(13000, "tons"),
  33482. name: "Front",
  33483. image: {
  33484. source: "./media/characters/zlmos/front.svg",
  33485. extra: 2202/1992,
  33486. bottom: 315/2517
  33487. }
  33488. },
  33489. },
  33490. [
  33491. {
  33492. name: "Macro",
  33493. height: math.unit(99, "meters"),
  33494. default: true
  33495. },
  33496. ]
  33497. ))
  33498. characterMakers.push(() => makeCharacter(
  33499. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33500. {
  33501. front: {
  33502. height: math.unit(6 + 5/12, "feet"),
  33503. name: "Front",
  33504. image: {
  33505. source: "./media/characters/purri/front.svg",
  33506. extra: 1698/1610,
  33507. bottom: 32/1730
  33508. }
  33509. },
  33510. frontAlt: {
  33511. height: math.unit(6 + 5/12, "feet"),
  33512. name: "Front (Alt)",
  33513. image: {
  33514. source: "./media/characters/purri/front-alt.svg",
  33515. extra: 450/420,
  33516. bottom: 26/476
  33517. }
  33518. },
  33519. boots: {
  33520. height: math.unit(5.5, "feet"),
  33521. name: "Boots",
  33522. image: {
  33523. source: "./media/characters/purri/boots.svg",
  33524. extra: 905/853,
  33525. bottom: 18/923
  33526. }
  33527. },
  33528. lying: {
  33529. height: math.unit(2, "feet"),
  33530. name: "Lying",
  33531. image: {
  33532. source: "./media/characters/purri/lying.svg",
  33533. extra: 940/843,
  33534. bottom: 146/1086
  33535. }
  33536. },
  33537. devious: {
  33538. height: math.unit(1.77, "feet"),
  33539. name: "Devious",
  33540. image: {
  33541. source: "./media/characters/purri/devious.svg",
  33542. extra: 1440/1155,
  33543. bottom: 147/1587
  33544. }
  33545. },
  33546. bean: {
  33547. height: math.unit(1.94, "feet"),
  33548. name: "Bean",
  33549. image: {
  33550. source: "./media/characters/purri/bean.svg"
  33551. }
  33552. },
  33553. },
  33554. [
  33555. {
  33556. name: "Micro",
  33557. height: math.unit(1, "mm")
  33558. },
  33559. {
  33560. name: "Normal",
  33561. height: math.unit(6 + 5/12, "feet"),
  33562. default: true
  33563. },
  33564. {
  33565. name: "Macro :3c",
  33566. height: math.unit(2, "miles")
  33567. },
  33568. ]
  33569. ))
  33570. characterMakers.push(() => makeCharacter(
  33571. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33572. {
  33573. front: {
  33574. height: math.unit(6 + 2/12, "feet"),
  33575. weight: math.unit(250, "lb"),
  33576. name: "Front",
  33577. image: {
  33578. source: "./media/characters/moonlight/front.svg",
  33579. extra: 1044/908,
  33580. bottom: 56/1100
  33581. }
  33582. },
  33583. feral: {
  33584. height: math.unit(3 + 1/12, "feet"),
  33585. weight: math.unit(50, "kg"),
  33586. name: "Feral",
  33587. image: {
  33588. source: "./media/characters/moonlight/feral.svg",
  33589. extra: 3705/2791,
  33590. bottom: 145/3850
  33591. }
  33592. },
  33593. paw: {
  33594. height: math.unit(1, "feet"),
  33595. name: "Paw",
  33596. image: {
  33597. source: "./media/characters/moonlight/paw.svg"
  33598. }
  33599. },
  33600. paws: {
  33601. height: math.unit(0.98, "feet"),
  33602. name: "Paws",
  33603. image: {
  33604. source: "./media/characters/moonlight/paws.svg",
  33605. extra: 939/939,
  33606. bottom: 50/989
  33607. }
  33608. },
  33609. mouth: {
  33610. height: math.unit(0.48, "feet"),
  33611. name: "Mouth",
  33612. image: {
  33613. source: "./media/characters/moonlight/mouth.svg"
  33614. }
  33615. },
  33616. dick: {
  33617. height: math.unit(1.46, "feet"),
  33618. name: "Dick",
  33619. image: {
  33620. source: "./media/characters/moonlight/dick.svg"
  33621. }
  33622. },
  33623. },
  33624. [
  33625. {
  33626. name: "Normal",
  33627. height: math.unit(6 + 2/12, "feet"),
  33628. default: true
  33629. },
  33630. {
  33631. name: "Macro",
  33632. height: math.unit(300, "feet")
  33633. },
  33634. {
  33635. name: "Macro+",
  33636. height: math.unit(1, "mile")
  33637. },
  33638. {
  33639. name: "Mt. Moon",
  33640. height: math.unit(5, "miles")
  33641. },
  33642. {
  33643. name: "Megamacro",
  33644. height: math.unit(15, "miles")
  33645. },
  33646. ]
  33647. ))
  33648. characterMakers.push(() => makeCharacter(
  33649. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33650. {
  33651. back: {
  33652. height: math.unit(6, "feet"),
  33653. weight: math.unit(150, "lb"),
  33654. name: "Back",
  33655. image: {
  33656. source: "./media/characters/sylen/back.svg",
  33657. extra: 1335/1273,
  33658. bottom: 107/1442
  33659. }
  33660. },
  33661. },
  33662. [
  33663. {
  33664. name: "Normal",
  33665. height: math.unit(5 + 5/12, "feet")
  33666. },
  33667. {
  33668. name: "Megamacro",
  33669. height: math.unit(3, "miles"),
  33670. default: true
  33671. },
  33672. ]
  33673. ))
  33674. characterMakers.push(() => makeCharacter(
  33675. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33676. {
  33677. front: {
  33678. height: math.unit(6, "feet"),
  33679. weight: math.unit(190, "lb"),
  33680. name: "Front",
  33681. image: {
  33682. source: "./media/characters/huttser/front.svg",
  33683. extra: 1152/1058,
  33684. bottom: 23/1175
  33685. }
  33686. },
  33687. side: {
  33688. height: math.unit(6, "feet"),
  33689. weight: math.unit(190, "lb"),
  33690. name: "Side",
  33691. image: {
  33692. source: "./media/characters/huttser/side.svg",
  33693. extra: 1174/1065,
  33694. bottom: 18/1192
  33695. }
  33696. },
  33697. back: {
  33698. height: math.unit(6, "feet"),
  33699. weight: math.unit(190, "lb"),
  33700. name: "Back",
  33701. image: {
  33702. source: "./media/characters/huttser/back.svg",
  33703. extra: 1158/1056,
  33704. bottom: 12/1170
  33705. }
  33706. },
  33707. },
  33708. [
  33709. ]
  33710. ))
  33711. characterMakers.push(() => makeCharacter(
  33712. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33713. {
  33714. side: {
  33715. height: math.unit(12 + 9/12, "feet"),
  33716. weight: math.unit(15000, "lb"),
  33717. name: "Side",
  33718. image: {
  33719. source: "./media/characters/faan/side.svg",
  33720. extra: 2747/2697,
  33721. bottom: 0/2747
  33722. }
  33723. },
  33724. front: {
  33725. height: math.unit(12 + 9/12, "feet"),
  33726. weight: math.unit(15000, "lb"),
  33727. name: "Front",
  33728. image: {
  33729. source: "./media/characters/faan/front.svg",
  33730. extra: 607/571,
  33731. bottom: 24/631
  33732. }
  33733. },
  33734. head: {
  33735. height: math.unit(2.85, "feet"),
  33736. name: "Head",
  33737. image: {
  33738. source: "./media/characters/faan/head.svg"
  33739. }
  33740. },
  33741. headAlt: {
  33742. height: math.unit(3.13, "feet"),
  33743. name: "Head-alt",
  33744. image: {
  33745. source: "./media/characters/faan/head-alt.svg"
  33746. }
  33747. },
  33748. },
  33749. [
  33750. {
  33751. name: "Normal",
  33752. height: math.unit(12 + 9/12, "feet"),
  33753. default: true
  33754. },
  33755. ]
  33756. ))
  33757. characterMakers.push(() => makeCharacter(
  33758. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33759. {
  33760. front: {
  33761. height: math.unit(6, "feet"),
  33762. weight: math.unit(300, "lb"),
  33763. name: "Front",
  33764. image: {
  33765. source: "./media/characters/tanio/front.svg",
  33766. extra: 711/673,
  33767. bottom: 25/736
  33768. }
  33769. },
  33770. },
  33771. [
  33772. {
  33773. name: "Normal",
  33774. height: math.unit(6, "feet"),
  33775. default: true
  33776. },
  33777. ]
  33778. ))
  33779. characterMakers.push(() => makeCharacter(
  33780. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33781. {
  33782. front: {
  33783. height: math.unit(3, "inches"),
  33784. name: "Front",
  33785. image: {
  33786. source: "./media/characters/noboru/front.svg",
  33787. extra: 1039/932,
  33788. bottom: 18/1057
  33789. }
  33790. },
  33791. },
  33792. [
  33793. {
  33794. name: "Micro",
  33795. height: math.unit(3, "inches"),
  33796. default: true
  33797. },
  33798. ]
  33799. ))
  33800. characterMakers.push(() => makeCharacter(
  33801. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33802. {
  33803. front: {
  33804. height: math.unit(1.85, "meters"),
  33805. weight: math.unit(80, "kg"),
  33806. name: "Front",
  33807. image: {
  33808. source: "./media/characters/daniel-barrett/front.svg",
  33809. extra: 355/337,
  33810. bottom: 9/364
  33811. }
  33812. },
  33813. },
  33814. [
  33815. {
  33816. name: "Pico",
  33817. height: math.unit(0.0433, "mm")
  33818. },
  33819. {
  33820. name: "Nano",
  33821. height: math.unit(1.5, "mm")
  33822. },
  33823. {
  33824. name: "Micro",
  33825. height: math.unit(5.3, "cm"),
  33826. default: true
  33827. },
  33828. {
  33829. name: "Normal",
  33830. height: math.unit(1.85, "meters")
  33831. },
  33832. {
  33833. name: "Macro",
  33834. height: math.unit(64.7, "meters")
  33835. },
  33836. {
  33837. name: "Megamacro",
  33838. height: math.unit(2.26, "km")
  33839. },
  33840. {
  33841. name: "Gigamacro",
  33842. height: math.unit(79, "km")
  33843. },
  33844. {
  33845. name: "Teramacro",
  33846. height: math.unit(2765, "km")
  33847. },
  33848. {
  33849. name: "Petamacro",
  33850. height: math.unit(96678, "km")
  33851. },
  33852. ]
  33853. ))
  33854. characterMakers.push(() => makeCharacter(
  33855. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33856. {
  33857. front: {
  33858. height: math.unit(30, "meters"),
  33859. weight: math.unit(400, "tons"),
  33860. name: "Front",
  33861. image: {
  33862. source: "./media/characters/zeel/front.svg",
  33863. extra: 2599/2599,
  33864. bottom: 226/2825
  33865. }
  33866. },
  33867. },
  33868. [
  33869. {
  33870. name: "Macro",
  33871. height: math.unit(30, "meters"),
  33872. default: true
  33873. },
  33874. ]
  33875. ))
  33876. characterMakers.push(() => makeCharacter(
  33877. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33878. {
  33879. front: {
  33880. height: math.unit(6 + 7/12, "feet"),
  33881. weight: math.unit(210, "lb"),
  33882. name: "Front",
  33883. image: {
  33884. source: "./media/characters/tarn/front.svg",
  33885. extra: 3517/3220,
  33886. bottom: 91/3608
  33887. }
  33888. },
  33889. back: {
  33890. height: math.unit(6 + 7/12, "feet"),
  33891. weight: math.unit(210, "lb"),
  33892. name: "Back",
  33893. image: {
  33894. source: "./media/characters/tarn/back.svg",
  33895. extra: 3566/3241,
  33896. bottom: 34/3600
  33897. }
  33898. },
  33899. dick: {
  33900. height: math.unit(1.65, "feet"),
  33901. name: "Dick",
  33902. image: {
  33903. source: "./media/characters/tarn/dick.svg"
  33904. }
  33905. },
  33906. paw: {
  33907. height: math.unit(1.80, "feet"),
  33908. name: "Paw",
  33909. image: {
  33910. source: "./media/characters/tarn/paw.svg"
  33911. }
  33912. },
  33913. tongue: {
  33914. height: math.unit(0.97, "feet"),
  33915. name: "Tongue",
  33916. image: {
  33917. source: "./media/characters/tarn/tongue.svg"
  33918. }
  33919. },
  33920. },
  33921. [
  33922. {
  33923. name: "Micro",
  33924. height: math.unit(4, "inches")
  33925. },
  33926. {
  33927. name: "Normal",
  33928. height: math.unit(6 + 7/12, "feet"),
  33929. default: true
  33930. },
  33931. {
  33932. name: "Macro",
  33933. height: math.unit(300, "feet")
  33934. },
  33935. ]
  33936. ))
  33937. characterMakers.push(() => makeCharacter(
  33938. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33939. {
  33940. front: {
  33941. height: math.unit(5 + 7/12, "feet"),
  33942. weight: math.unit(80, "kg"),
  33943. name: "Front",
  33944. image: {
  33945. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33946. extra: 3023/2865,
  33947. bottom: 33/3056
  33948. }
  33949. },
  33950. back: {
  33951. height: math.unit(5 + 7/12, "feet"),
  33952. weight: math.unit(80, "kg"),
  33953. name: "Back",
  33954. image: {
  33955. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33956. extra: 3020/2886,
  33957. bottom: 30/3050
  33958. }
  33959. },
  33960. dick: {
  33961. height: math.unit(0.98, "feet"),
  33962. name: "Dick",
  33963. image: {
  33964. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33965. }
  33966. },
  33967. anatomy: {
  33968. height: math.unit(2.86, "feet"),
  33969. name: "Anatomy",
  33970. image: {
  33971. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33972. }
  33973. },
  33974. },
  33975. [
  33976. {
  33977. name: "Really Small",
  33978. height: math.unit(2, "inches")
  33979. },
  33980. {
  33981. name: "Micro",
  33982. height: math.unit(5.583, "inches")
  33983. },
  33984. {
  33985. name: "Normal",
  33986. height: math.unit(5 + 7/12, "feet"),
  33987. default: true
  33988. },
  33989. {
  33990. name: "Macro",
  33991. height: math.unit(67, "feet")
  33992. },
  33993. {
  33994. name: "Megamacro",
  33995. height: math.unit(134, "feet")
  33996. },
  33997. ]
  33998. ))
  33999. characterMakers.push(() => makeCharacter(
  34000. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34001. {
  34002. front: {
  34003. height: math.unit(9, "feet"),
  34004. weight: math.unit(120, "lb"),
  34005. name: "Front",
  34006. image: {
  34007. source: "./media/characters/sally/front.svg",
  34008. extra: 1506/1349,
  34009. bottom: 66/1572
  34010. }
  34011. },
  34012. },
  34013. [
  34014. {
  34015. name: "Normal",
  34016. height: math.unit(9, "feet"),
  34017. default: true
  34018. },
  34019. ]
  34020. ))
  34021. characterMakers.push(() => makeCharacter(
  34022. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34023. {
  34024. front: {
  34025. height: math.unit(8, "feet"),
  34026. weight: math.unit(900, "lb"),
  34027. name: "Front",
  34028. image: {
  34029. source: "./media/characters/owen/front.svg",
  34030. extra: 1761/1657,
  34031. bottom: 74/1835
  34032. }
  34033. },
  34034. side: {
  34035. height: math.unit(8, "feet"),
  34036. weight: math.unit(900, "lb"),
  34037. name: "Side",
  34038. image: {
  34039. source: "./media/characters/owen/side.svg",
  34040. extra: 1797/1734,
  34041. bottom: 30/1827
  34042. }
  34043. },
  34044. back: {
  34045. height: math.unit(8, "feet"),
  34046. weight: math.unit(900, "lb"),
  34047. name: "Back",
  34048. image: {
  34049. source: "./media/characters/owen/back.svg",
  34050. extra: 1796/1706,
  34051. bottom: 59/1855
  34052. }
  34053. },
  34054. maw: {
  34055. height: math.unit(1.76, "feet"),
  34056. name: "Maw",
  34057. image: {
  34058. source: "./media/characters/owen/maw.svg"
  34059. }
  34060. },
  34061. },
  34062. [
  34063. {
  34064. name: "Normal",
  34065. height: math.unit(8, "feet"),
  34066. default: true
  34067. },
  34068. ]
  34069. ))
  34070. characterMakers.push(() => makeCharacter(
  34071. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34072. {
  34073. front: {
  34074. height: math.unit(4, "feet"),
  34075. weight: math.unit(400, "lb"),
  34076. name: "Front",
  34077. image: {
  34078. source: "./media/characters/ryth/front.svg",
  34079. extra: 1920/1748,
  34080. bottom: 42/1962
  34081. }
  34082. },
  34083. back: {
  34084. height: math.unit(4, "feet"),
  34085. weight: math.unit(400, "lb"),
  34086. name: "Back",
  34087. image: {
  34088. source: "./media/characters/ryth/back.svg",
  34089. extra: 1897/1690,
  34090. bottom: 89/1986
  34091. }
  34092. },
  34093. mouth: {
  34094. height: math.unit(1.39, "feet"),
  34095. name: "Mouth",
  34096. image: {
  34097. source: "./media/characters/ryth/mouth.svg"
  34098. }
  34099. },
  34100. tailmaw: {
  34101. height: math.unit(1.23, "feet"),
  34102. name: "Tailmaw",
  34103. image: {
  34104. source: "./media/characters/ryth/tailmaw.svg"
  34105. }
  34106. },
  34107. goia: {
  34108. height: math.unit(4, "meters"),
  34109. weight: math.unit(10800, "lb"),
  34110. name: "Goia",
  34111. image: {
  34112. source: "./media/characters/ryth/goia.svg",
  34113. extra: 745/640,
  34114. bottom: 107/852
  34115. }
  34116. },
  34117. goiaFront: {
  34118. height: math.unit(4, "meters"),
  34119. weight: math.unit(10800, "lb"),
  34120. name: "Goia (Front)",
  34121. image: {
  34122. source: "./media/characters/ryth/goia-front.svg",
  34123. extra: 750/586,
  34124. bottom: 114/864
  34125. }
  34126. },
  34127. goiaMaw: {
  34128. height: math.unit(5.55, "feet"),
  34129. name: "Goia Maw",
  34130. image: {
  34131. source: "./media/characters/ryth/goia-maw.svg"
  34132. }
  34133. },
  34134. goiaForepaw: {
  34135. height: math.unit(3.5, "feet"),
  34136. name: "Goia Forepaw",
  34137. image: {
  34138. source: "./media/characters/ryth/goia-forepaw.svg"
  34139. }
  34140. },
  34141. goiaHindpaw: {
  34142. height: math.unit(5.55, "feet"),
  34143. name: "Goia Hindpaw",
  34144. image: {
  34145. source: "./media/characters/ryth/goia-hindpaw.svg"
  34146. }
  34147. },
  34148. },
  34149. [
  34150. {
  34151. name: "Normal",
  34152. height: math.unit(4, "feet"),
  34153. default: true
  34154. },
  34155. ]
  34156. ))
  34157. characterMakers.push(() => makeCharacter(
  34158. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34159. {
  34160. front: {
  34161. height: math.unit(7, "feet"),
  34162. weight: math.unit(180, "lb"),
  34163. name: "Front",
  34164. image: {
  34165. source: "./media/characters/necrolance/front.svg",
  34166. extra: 1062/947,
  34167. bottom: 41/1103
  34168. }
  34169. },
  34170. back: {
  34171. height: math.unit(7, "feet"),
  34172. weight: math.unit(180, "lb"),
  34173. name: "Back",
  34174. image: {
  34175. source: "./media/characters/necrolance/back.svg",
  34176. extra: 1045/984,
  34177. bottom: 14/1059
  34178. }
  34179. },
  34180. wing: {
  34181. height: math.unit(2.67, "feet"),
  34182. name: "Wing",
  34183. image: {
  34184. source: "./media/characters/necrolance/wing.svg"
  34185. }
  34186. },
  34187. },
  34188. [
  34189. {
  34190. name: "Normal",
  34191. height: math.unit(7, "feet"),
  34192. default: true
  34193. },
  34194. ]
  34195. ))
  34196. characterMakers.push(() => makeCharacter(
  34197. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34198. {
  34199. front: {
  34200. height: math.unit(76, "meters"),
  34201. weight: math.unit(30000, "tons"),
  34202. name: "Front",
  34203. image: {
  34204. source: "./media/characters/tyler/front.svg",
  34205. extra: 1640/1640,
  34206. bottom: 114/1754
  34207. }
  34208. },
  34209. },
  34210. [
  34211. {
  34212. name: "Macro",
  34213. height: math.unit(76, "meters"),
  34214. default: true
  34215. },
  34216. ]
  34217. ))
  34218. characterMakers.push(() => makeCharacter(
  34219. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34220. {
  34221. front: {
  34222. height: math.unit(4 + 11/12, "feet"),
  34223. weight: math.unit(132, "lb"),
  34224. name: "Front",
  34225. image: {
  34226. source: "./media/characters/icey/front.svg",
  34227. extra: 2750/2550,
  34228. bottom: 33/2783
  34229. }
  34230. },
  34231. back: {
  34232. height: math.unit(4 + 11/12, "feet"),
  34233. weight: math.unit(132, "lb"),
  34234. name: "Back",
  34235. image: {
  34236. source: "./media/characters/icey/back.svg",
  34237. extra: 2624/2481,
  34238. bottom: 35/2659
  34239. }
  34240. },
  34241. },
  34242. [
  34243. {
  34244. name: "Normal",
  34245. height: math.unit(4 + 11/12, "feet"),
  34246. default: true
  34247. },
  34248. ]
  34249. ))
  34250. characterMakers.push(() => makeCharacter(
  34251. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34252. {
  34253. front: {
  34254. height: math.unit(100, "feet"),
  34255. weight: math.unit(0, "lb"),
  34256. name: "Front",
  34257. image: {
  34258. source: "./media/characters/smile/front.svg",
  34259. extra: 2983/2912,
  34260. bottom: 162/3145
  34261. }
  34262. },
  34263. back: {
  34264. height: math.unit(100, "feet"),
  34265. weight: math.unit(0, "lb"),
  34266. name: "Back",
  34267. image: {
  34268. source: "./media/characters/smile/back.svg",
  34269. extra: 3143/3031,
  34270. bottom: 91/3234
  34271. }
  34272. },
  34273. head: {
  34274. height: math.unit(26.3, "feet"),
  34275. weight: math.unit(0, "lb"),
  34276. name: "Head",
  34277. image: {
  34278. source: "./media/characters/smile/head.svg"
  34279. }
  34280. },
  34281. collar: {
  34282. height: math.unit(5.3, "feet"),
  34283. weight: math.unit(0, "lb"),
  34284. name: "Collar",
  34285. image: {
  34286. source: "./media/characters/smile/collar.svg"
  34287. }
  34288. },
  34289. },
  34290. [
  34291. {
  34292. name: "Macro",
  34293. height: math.unit(100, "feet"),
  34294. default: true
  34295. },
  34296. ]
  34297. ))
  34298. characterMakers.push(() => makeCharacter(
  34299. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34300. {
  34301. dragon: {
  34302. height: math.unit(26, "feet"),
  34303. weight: math.unit(36, "tons"),
  34304. name: "Dragon",
  34305. image: {
  34306. source: "./media/characters/arimphae/dragon.svg",
  34307. extra: 1574/983,
  34308. bottom: 357/1931
  34309. }
  34310. },
  34311. drake: {
  34312. height: math.unit(9, "feet"),
  34313. weight: math.unit(1.5, "tons"),
  34314. name: "Drake",
  34315. image: {
  34316. source: "./media/characters/arimphae/drake.svg",
  34317. extra: 1120/925,
  34318. bottom: 435/1555
  34319. }
  34320. },
  34321. },
  34322. [
  34323. {
  34324. name: "Small",
  34325. height: math.unit(26*5/9, "feet")
  34326. },
  34327. {
  34328. name: "Normal",
  34329. height: math.unit(26, "feet"),
  34330. default: true
  34331. },
  34332. ]
  34333. ))
  34334. characterMakers.push(() => makeCharacter(
  34335. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34336. {
  34337. front: {
  34338. height: math.unit(8 + 9/12, "feet"),
  34339. name: "Front",
  34340. image: {
  34341. source: "./media/characters/xander/front.svg",
  34342. extra: 1237/974,
  34343. bottom: 94/1331
  34344. }
  34345. },
  34346. },
  34347. [
  34348. {
  34349. name: "Normal",
  34350. height: math.unit(8 + 9/12, "feet"),
  34351. default: true
  34352. },
  34353. {
  34354. name: "Gaze Grabber",
  34355. height: math.unit(13 + 8/12, "feet")
  34356. },
  34357. {
  34358. name: "Jaw Dropper",
  34359. height: math.unit(27, "feet")
  34360. },
  34361. {
  34362. name: "Show Stopper",
  34363. height: math.unit(136, "feet")
  34364. },
  34365. {
  34366. name: "Superstar",
  34367. height: math.unit(1.9e6, "miles")
  34368. },
  34369. ]
  34370. ))
  34371. characterMakers.push(() => makeCharacter(
  34372. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34373. {
  34374. side: {
  34375. height: math.unit(2100, "feet"),
  34376. name: "Side",
  34377. image: {
  34378. source: "./media/characters/osiris/side.svg",
  34379. extra: 1105/939,
  34380. bottom: 167/1272
  34381. }
  34382. },
  34383. },
  34384. [
  34385. {
  34386. name: "Macro",
  34387. height: math.unit(2100, "feet"),
  34388. default: true
  34389. },
  34390. ]
  34391. ))
  34392. characterMakers.push(() => makeCharacter(
  34393. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34394. {
  34395. front: {
  34396. height: math.unit(6 + 8/12, "feet"),
  34397. weight: math.unit(225, "lb"),
  34398. name: "Front",
  34399. image: {
  34400. source: "./media/characters/rhys-londe/front.svg",
  34401. extra: 2258/2141,
  34402. bottom: 188/2446
  34403. }
  34404. },
  34405. back: {
  34406. height: math.unit(6 + 8/12, "feet"),
  34407. weight: math.unit(225, "lb"),
  34408. name: "Back",
  34409. image: {
  34410. source: "./media/characters/rhys-londe/back.svg",
  34411. extra: 2237/2137,
  34412. bottom: 63/2300
  34413. }
  34414. },
  34415. frontNsfw: {
  34416. height: math.unit(6 + 8/12, "feet"),
  34417. weight: math.unit(225, "lb"),
  34418. name: "Front (NSFW)",
  34419. image: {
  34420. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34421. extra: 2258/2141,
  34422. bottom: 188/2446
  34423. }
  34424. },
  34425. backNsfw: {
  34426. height: math.unit(6 + 8/12, "feet"),
  34427. weight: math.unit(225, "lb"),
  34428. name: "Back (NSFW)",
  34429. image: {
  34430. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34431. extra: 2237/2137,
  34432. bottom: 63/2300
  34433. }
  34434. },
  34435. dick: {
  34436. height: math.unit(30, "inches"),
  34437. name: "Dick",
  34438. image: {
  34439. source: "./media/characters/rhys-londe/dick.svg"
  34440. }
  34441. },
  34442. maw: {
  34443. height: math.unit(1.6, "feet"),
  34444. name: "Maw",
  34445. image: {
  34446. source: "./media/characters/rhys-londe/maw.svg"
  34447. }
  34448. },
  34449. },
  34450. [
  34451. {
  34452. name: "Normal",
  34453. height: math.unit(6 + 8/12, "feet"),
  34454. default: true
  34455. },
  34456. ]
  34457. ))
  34458. characterMakers.push(() => makeCharacter(
  34459. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34460. {
  34461. front: {
  34462. height: math.unit(3 + 10/12, "feet"),
  34463. weight: math.unit(90, "lb"),
  34464. name: "Front",
  34465. image: {
  34466. source: "./media/characters/taivas-ensim/front.svg",
  34467. extra: 1327/1216,
  34468. bottom: 96/1423
  34469. }
  34470. },
  34471. back: {
  34472. height: math.unit(3 + 10/12, "feet"),
  34473. weight: math.unit(90, "lb"),
  34474. name: "Back",
  34475. image: {
  34476. source: "./media/characters/taivas-ensim/back.svg",
  34477. extra: 1355/1247,
  34478. bottom: 11/1366
  34479. }
  34480. },
  34481. frontNsfw: {
  34482. height: math.unit(3 + 10/12, "feet"),
  34483. weight: math.unit(90, "lb"),
  34484. name: "Front (NSFW)",
  34485. image: {
  34486. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34487. extra: 1327/1216,
  34488. bottom: 96/1423
  34489. }
  34490. },
  34491. backNsfw: {
  34492. height: math.unit(3 + 10/12, "feet"),
  34493. weight: math.unit(90, "lb"),
  34494. name: "Back (NSFW)",
  34495. image: {
  34496. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34497. extra: 1355/1247,
  34498. bottom: 11/1366
  34499. }
  34500. },
  34501. },
  34502. [
  34503. {
  34504. name: "Normal",
  34505. height: math.unit(3 + 10/12, "feet"),
  34506. default: true
  34507. },
  34508. ]
  34509. ))
  34510. characterMakers.push(() => makeCharacter(
  34511. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34512. {
  34513. front: {
  34514. height: math.unit(9 + 6/12, "feet"),
  34515. weight: math.unit(940, "lb"),
  34516. name: "Front",
  34517. image: {
  34518. source: "./media/characters/byliss/front.svg",
  34519. extra: 1327/1290,
  34520. bottom: 82/1409
  34521. }
  34522. },
  34523. back: {
  34524. height: math.unit(9 + 6/12, "feet"),
  34525. weight: math.unit(940, "lb"),
  34526. name: "Back",
  34527. image: {
  34528. source: "./media/characters/byliss/back.svg",
  34529. extra: 1376/1349,
  34530. bottom: 9/1385
  34531. }
  34532. },
  34533. frontNsfw: {
  34534. height: math.unit(9 + 6/12, "feet"),
  34535. weight: math.unit(940, "lb"),
  34536. name: "Front (NSFW)",
  34537. image: {
  34538. source: "./media/characters/byliss/front-nsfw.svg",
  34539. extra: 1327/1290,
  34540. bottom: 82/1409
  34541. }
  34542. },
  34543. backNsfw: {
  34544. height: math.unit(9 + 6/12, "feet"),
  34545. weight: math.unit(940, "lb"),
  34546. name: "Back (NSFW)",
  34547. image: {
  34548. source: "./media/characters/byliss/back-nsfw.svg",
  34549. extra: 1376/1349,
  34550. bottom: 9/1385
  34551. }
  34552. },
  34553. },
  34554. [
  34555. {
  34556. name: "Normal",
  34557. height: math.unit(9 + 6/12, "feet"),
  34558. default: true
  34559. },
  34560. ]
  34561. ))
  34562. characterMakers.push(() => makeCharacter(
  34563. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34564. {
  34565. front: {
  34566. height: math.unit(5 + 2/12, "feet"),
  34567. weight: math.unit(200, "lb"),
  34568. name: "Front",
  34569. image: {
  34570. source: "./media/characters/noraly/front.svg",
  34571. extra: 4985/4773,
  34572. bottom: 150/5135
  34573. }
  34574. },
  34575. full: {
  34576. height: math.unit(5 + 2/12, "feet"),
  34577. weight: math.unit(164, "lb"),
  34578. name: "Full",
  34579. image: {
  34580. source: "./media/characters/noraly/full.svg",
  34581. extra: 1114/1059,
  34582. bottom: 35/1149
  34583. }
  34584. },
  34585. fuller: {
  34586. height: math.unit(5 + 2/12, "feet"),
  34587. weight: math.unit(230, "lb"),
  34588. name: "Fuller",
  34589. image: {
  34590. source: "./media/characters/noraly/fuller.svg",
  34591. extra: 1114/1059,
  34592. bottom: 35/1149
  34593. }
  34594. },
  34595. fullest: {
  34596. height: math.unit(5 + 2/12, "feet"),
  34597. weight: math.unit(300, "lb"),
  34598. name: "Fullest",
  34599. image: {
  34600. source: "./media/characters/noraly/fullest.svg",
  34601. extra: 1114/1059,
  34602. bottom: 35/1149
  34603. }
  34604. },
  34605. },
  34606. [
  34607. {
  34608. name: "Normal",
  34609. height: math.unit(5 + 2/12, "feet"),
  34610. default: true
  34611. },
  34612. ]
  34613. ))
  34614. characterMakers.push(() => makeCharacter(
  34615. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34616. {
  34617. front: {
  34618. height: math.unit(5 + 2/12, "feet"),
  34619. weight: math.unit(210, "lb"),
  34620. name: "Front",
  34621. image: {
  34622. source: "./media/characters/pera/front.svg",
  34623. extra: 1560/1531,
  34624. bottom: 165/1725
  34625. }
  34626. },
  34627. back: {
  34628. height: math.unit(5 + 2/12, "feet"),
  34629. weight: math.unit(210, "lb"),
  34630. name: "Back",
  34631. image: {
  34632. source: "./media/characters/pera/back.svg",
  34633. extra: 1523/1493,
  34634. bottom: 152/1675
  34635. }
  34636. },
  34637. dick: {
  34638. height: math.unit(2.4, "feet"),
  34639. name: "Dick",
  34640. image: {
  34641. source: "./media/characters/pera/dick.svg"
  34642. }
  34643. },
  34644. },
  34645. [
  34646. {
  34647. name: "Normal",
  34648. height: math.unit(5 + 2/12, "feet"),
  34649. default: true
  34650. },
  34651. ]
  34652. ))
  34653. characterMakers.push(() => makeCharacter(
  34654. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34655. {
  34656. front: {
  34657. height: math.unit(12, "feet"),
  34658. weight: math.unit(3200, "lb"),
  34659. name: "Front",
  34660. image: {
  34661. source: "./media/characters/julian/front.svg",
  34662. extra: 2962/2701,
  34663. bottom: 184/3146
  34664. }
  34665. },
  34666. maw: {
  34667. height: math.unit(5.35, "feet"),
  34668. name: "Maw",
  34669. image: {
  34670. source: "./media/characters/julian/maw.svg"
  34671. }
  34672. },
  34673. paw: {
  34674. height: math.unit(3.07, "feet"),
  34675. name: "Paw",
  34676. image: {
  34677. source: "./media/characters/julian/paw.svg"
  34678. }
  34679. },
  34680. },
  34681. [
  34682. {
  34683. name: "Default",
  34684. height: math.unit(12, "feet"),
  34685. default: true
  34686. },
  34687. {
  34688. name: "Big",
  34689. height: math.unit(50, "feet")
  34690. },
  34691. {
  34692. name: "Really Big",
  34693. height: math.unit(1, "mile")
  34694. },
  34695. {
  34696. name: "Extremely Big",
  34697. height: math.unit(100, "miles")
  34698. },
  34699. {
  34700. name: "Planet Hugger",
  34701. height: math.unit(200, "megameters")
  34702. },
  34703. {
  34704. name: "Unreasonably Big",
  34705. height: math.unit(1e300, "meters")
  34706. },
  34707. ]
  34708. ))
  34709. characterMakers.push(() => makeCharacter(
  34710. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34711. {
  34712. solgooleo: {
  34713. height: math.unit(4, "meters"),
  34714. weight: math.unit(6000*1.5, "kg"),
  34715. volume: math.unit(6000, "liters"),
  34716. name: "Solgooleo",
  34717. image: {
  34718. source: "./media/characters/pi/solgooleo.svg",
  34719. extra: 388/331,
  34720. bottom: 29/417
  34721. }
  34722. },
  34723. },
  34724. [
  34725. {
  34726. name: "Normal",
  34727. height: math.unit(4, "meters"),
  34728. default: true
  34729. },
  34730. ]
  34731. ))
  34732. characterMakers.push(() => makeCharacter(
  34733. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34734. {
  34735. front: {
  34736. height: math.unit(8, "feet"),
  34737. weight: math.unit(4, "tons"),
  34738. name: "Front",
  34739. image: {
  34740. source: "./media/characters/shaun/front.svg",
  34741. extra: 503/495,
  34742. bottom: 20/523
  34743. }
  34744. },
  34745. back: {
  34746. height: math.unit(8, "feet"),
  34747. weight: math.unit(4, "tons"),
  34748. name: "Back",
  34749. image: {
  34750. source: "./media/characters/shaun/back.svg",
  34751. extra: 487/480,
  34752. bottom: 20/507
  34753. }
  34754. },
  34755. },
  34756. [
  34757. {
  34758. name: "Lorg",
  34759. height: math.unit(8, "feet"),
  34760. default: true
  34761. },
  34762. ]
  34763. ))
  34764. characterMakers.push(() => makeCharacter(
  34765. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34766. {
  34767. frontAnthro: {
  34768. height: math.unit(7, "feet"),
  34769. name: "Front",
  34770. image: {
  34771. source: "./media/characters/sini/front-anthro.svg",
  34772. extra: 726/678,
  34773. bottom: 35/761
  34774. },
  34775. form: "anthro",
  34776. default: true
  34777. },
  34778. backAnthro: {
  34779. height: math.unit(7, "feet"),
  34780. name: "Back",
  34781. image: {
  34782. source: "./media/characters/sini/back-anthro.svg",
  34783. extra: 743/701,
  34784. bottom: 12/755
  34785. },
  34786. form: "anthro",
  34787. },
  34788. frontAnthroNsfw: {
  34789. height: math.unit(7, "feet"),
  34790. name: "Front (NSFW)",
  34791. image: {
  34792. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34793. extra: 726/678,
  34794. bottom: 35/761
  34795. },
  34796. form: "anthro"
  34797. },
  34798. backAnthroNsfw: {
  34799. height: math.unit(7, "feet"),
  34800. name: "Back (NSFW)",
  34801. image: {
  34802. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34803. extra: 743/701,
  34804. bottom: 12/755
  34805. },
  34806. form: "anthro",
  34807. },
  34808. mawAnthro: {
  34809. height: math.unit(2.14, "feet"),
  34810. name: "Maw",
  34811. image: {
  34812. source: "./media/characters/sini/maw-anthro.svg"
  34813. },
  34814. form: "anthro"
  34815. },
  34816. dick: {
  34817. height: math.unit(1.45, "feet"),
  34818. name: "Dick",
  34819. image: {
  34820. source: "./media/characters/sini/dick-anthro.svg"
  34821. },
  34822. form: "anthro"
  34823. },
  34824. feral: {
  34825. height: math.unit(16, "feet"),
  34826. name: "Feral",
  34827. image: {
  34828. source: "./media/characters/sini/feral.svg",
  34829. extra: 814/605,
  34830. bottom: 11/825
  34831. },
  34832. form: "feral",
  34833. default: true
  34834. },
  34835. feralNsfw: {
  34836. height: math.unit(16, "feet"),
  34837. name: "Feral (NSFW)",
  34838. image: {
  34839. source: "./media/characters/sini/feral-nsfw.svg",
  34840. extra: 814/605,
  34841. bottom: 11/825
  34842. },
  34843. form: "feral"
  34844. },
  34845. mawFeral: {
  34846. height: math.unit(5.66, "feet"),
  34847. name: "Maw",
  34848. image: {
  34849. source: "./media/characters/sini/maw-feral.svg"
  34850. },
  34851. form: "feral",
  34852. },
  34853. pawFeral: {
  34854. height: math.unit(5.17, "feet"),
  34855. name: "Paw",
  34856. image: {
  34857. source: "./media/characters/sini/paw-feral.svg"
  34858. },
  34859. form: "feral",
  34860. },
  34861. rumpFeral: {
  34862. height: math.unit(13.11, "feet"),
  34863. name: "Rump",
  34864. image: {
  34865. source: "./media/characters/sini/rump-feral.svg"
  34866. },
  34867. form: "feral",
  34868. },
  34869. dickFeral: {
  34870. height: math.unit(1, "feet"),
  34871. name: "Dick",
  34872. image: {
  34873. source: "./media/characters/sini/dick-feral.svg"
  34874. },
  34875. form: "feral",
  34876. },
  34877. eyeFeral: {
  34878. height: math.unit(1.23, "feet"),
  34879. name: "Eye",
  34880. image: {
  34881. source: "./media/characters/sini/eye-feral.svg"
  34882. },
  34883. form: "feral",
  34884. },
  34885. },
  34886. [
  34887. {
  34888. name: "Normal",
  34889. height: math.unit(7, "feet"),
  34890. default: true,
  34891. form: "anthro"
  34892. },
  34893. {
  34894. name: "Normal",
  34895. height: math.unit(16, "feet"),
  34896. default: true,
  34897. form: "feral"
  34898. },
  34899. ],
  34900. {
  34901. "anthro": {
  34902. name: "Anthro",
  34903. default: true
  34904. },
  34905. "feral": {
  34906. name: "Feral",
  34907. }
  34908. }
  34909. ))
  34910. characterMakers.push(() => makeCharacter(
  34911. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34912. {
  34913. side: {
  34914. height: math.unit(47.2, "meters"),
  34915. weight: math.unit(10000, "tons"),
  34916. name: "Side",
  34917. image: {
  34918. source: "./media/characters/raylldo/side.svg",
  34919. extra: 2363/642,
  34920. bottom: 221/2584
  34921. }
  34922. },
  34923. top: {
  34924. height: math.unit(240, "meters"),
  34925. weight: math.unit(10000, "tons"),
  34926. name: "Top",
  34927. image: {
  34928. source: "./media/characters/raylldo/top.svg"
  34929. }
  34930. },
  34931. bottom: {
  34932. height: math.unit(240, "meters"),
  34933. weight: math.unit(10000, "tons"),
  34934. name: "Bottom",
  34935. image: {
  34936. source: "./media/characters/raylldo/bottom.svg"
  34937. }
  34938. },
  34939. head: {
  34940. height: math.unit(38.6, "meters"),
  34941. name: "Head",
  34942. image: {
  34943. source: "./media/characters/raylldo/head.svg",
  34944. extra: 1335/1112,
  34945. bottom: 0/1335
  34946. }
  34947. },
  34948. maw: {
  34949. height: math.unit(16.37, "meters"),
  34950. name: "Maw",
  34951. image: {
  34952. source: "./media/characters/raylldo/maw.svg",
  34953. extra: 883/660,
  34954. bottom: 0/883
  34955. },
  34956. extraAttributes: {
  34957. preyCapacity: {
  34958. name: "Capacity",
  34959. power: 3,
  34960. type: "volume",
  34961. base: math.unit(1000, "people")
  34962. },
  34963. tongueSize: {
  34964. name: "Tongue Size",
  34965. power: 2,
  34966. type: "area",
  34967. base: math.unit(21, "m^2")
  34968. }
  34969. }
  34970. },
  34971. forepaw: {
  34972. height: math.unit(18, "meters"),
  34973. name: "Forepaw",
  34974. image: {
  34975. source: "./media/characters/raylldo/forepaw.svg"
  34976. }
  34977. },
  34978. hindpaw: {
  34979. height: math.unit(23, "meters"),
  34980. name: "Hindpaw",
  34981. image: {
  34982. source: "./media/characters/raylldo/hindpaw.svg"
  34983. }
  34984. },
  34985. genitals: {
  34986. height: math.unit(42, "meters"),
  34987. name: "Genitals",
  34988. image: {
  34989. source: "./media/characters/raylldo/genitals.svg"
  34990. }
  34991. },
  34992. },
  34993. [
  34994. {
  34995. name: "Normal",
  34996. height: math.unit(47.2, "meters"),
  34997. default: true
  34998. },
  34999. ]
  35000. ))
  35001. characterMakers.push(() => makeCharacter(
  35002. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35003. {
  35004. anthroFront: {
  35005. height: math.unit(9, "feet"),
  35006. weight: math.unit(600, "lb"),
  35007. name: "Anthro (Front)",
  35008. image: {
  35009. source: "./media/characters/glint/anthro-front.svg",
  35010. extra: 1097/1018,
  35011. bottom: 28/1125
  35012. }
  35013. },
  35014. anthroBack: {
  35015. height: math.unit(9, "feet"),
  35016. weight: math.unit(600, "lb"),
  35017. name: "Anthro (Back)",
  35018. image: {
  35019. source: "./media/characters/glint/anthro-back.svg",
  35020. extra: 1154/997,
  35021. bottom: 36/1190
  35022. }
  35023. },
  35024. feral: {
  35025. height: math.unit(11, "feet"),
  35026. weight: math.unit(50000, "lb"),
  35027. name: "Feral",
  35028. image: {
  35029. source: "./media/characters/glint/feral.svg",
  35030. extra: 3035/1585,
  35031. bottom: 1169/4204
  35032. }
  35033. },
  35034. dickAnthro: {
  35035. height: math.unit(0.7, "meters"),
  35036. name: "Dick (Anthro)",
  35037. image: {
  35038. source: "./media/characters/glint/dick-anthro.svg"
  35039. }
  35040. },
  35041. dickFeral: {
  35042. height: math.unit(2.65, "meters"),
  35043. name: "Dick (Feral)",
  35044. image: {
  35045. source: "./media/characters/glint/dick-feral.svg"
  35046. }
  35047. },
  35048. slitHidden: {
  35049. height: math.unit(5.85, "meters"),
  35050. name: "Slit (Hidden)",
  35051. image: {
  35052. source: "./media/characters/glint/slit-hidden.svg"
  35053. }
  35054. },
  35055. slitErect: {
  35056. height: math.unit(5.85, "meters"),
  35057. name: "Slit (Erect)",
  35058. image: {
  35059. source: "./media/characters/glint/slit-erect.svg"
  35060. }
  35061. },
  35062. mawAnthro: {
  35063. height: math.unit(0.63, "meters"),
  35064. name: "Maw (Anthro)",
  35065. image: {
  35066. source: "./media/characters/glint/maw.svg"
  35067. }
  35068. },
  35069. mawFeral: {
  35070. height: math.unit(2.89, "meters"),
  35071. name: "Maw (Feral)",
  35072. image: {
  35073. source: "./media/characters/glint/maw.svg"
  35074. }
  35075. },
  35076. },
  35077. [
  35078. {
  35079. name: "Normal",
  35080. height: math.unit(9, "feet"),
  35081. default: true
  35082. },
  35083. ]
  35084. ))
  35085. characterMakers.push(() => makeCharacter(
  35086. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35087. {
  35088. side: {
  35089. height: math.unit(15, "feet"),
  35090. weight: math.unit(5000, "kg"),
  35091. name: "Side",
  35092. image: {
  35093. source: "./media/characters/kairne/side.svg",
  35094. extra: 979/811,
  35095. bottom: 13/992
  35096. }
  35097. },
  35098. front: {
  35099. height: math.unit(15, "feet"),
  35100. weight: math.unit(5000, "kg"),
  35101. name: "Front",
  35102. image: {
  35103. source: "./media/characters/kairne/front.svg",
  35104. extra: 908/814,
  35105. bottom: 26/934
  35106. }
  35107. },
  35108. sideNsfw: {
  35109. height: math.unit(15, "feet"),
  35110. weight: math.unit(5000, "kg"),
  35111. name: "Side (NSFW)",
  35112. image: {
  35113. source: "./media/characters/kairne/side-nsfw.svg",
  35114. extra: 979/811,
  35115. bottom: 13/992
  35116. }
  35117. },
  35118. frontNsfw: {
  35119. height: math.unit(15, "feet"),
  35120. weight: math.unit(5000, "kg"),
  35121. name: "Front (NSFW)",
  35122. image: {
  35123. source: "./media/characters/kairne/front-nsfw.svg",
  35124. extra: 908/814,
  35125. bottom: 26/934
  35126. }
  35127. },
  35128. dickCaged: {
  35129. height: math.unit(0.65, "meters"),
  35130. name: "Dick-caged",
  35131. image: {
  35132. source: "./media/characters/kairne/dick-caged.svg"
  35133. }
  35134. },
  35135. dick: {
  35136. height: math.unit(0.79, "meters"),
  35137. name: "Dick",
  35138. image: {
  35139. source: "./media/characters/kairne/dick.svg"
  35140. }
  35141. },
  35142. genitals: {
  35143. height: math.unit(1.29, "meters"),
  35144. name: "Genitals",
  35145. image: {
  35146. source: "./media/characters/kairne/genitals.svg"
  35147. }
  35148. },
  35149. maw: {
  35150. height: math.unit(1.73, "meters"),
  35151. name: "Maw",
  35152. image: {
  35153. source: "./media/characters/kairne/maw.svg"
  35154. }
  35155. },
  35156. },
  35157. [
  35158. {
  35159. name: "Normal",
  35160. height: math.unit(15, "feet"),
  35161. default: true
  35162. },
  35163. ]
  35164. ))
  35165. characterMakers.push(() => makeCharacter(
  35166. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35167. {
  35168. front: {
  35169. height: math.unit(5 + 8/12, "feet"),
  35170. weight: math.unit(139, "lb"),
  35171. name: "Front",
  35172. image: {
  35173. source: "./media/characters/biscuit-jackal/front.svg",
  35174. extra: 2106/1961,
  35175. bottom: 58/2164
  35176. }
  35177. },
  35178. back: {
  35179. height: math.unit(5 + 8/12, "feet"),
  35180. weight: math.unit(139, "lb"),
  35181. name: "Back",
  35182. image: {
  35183. source: "./media/characters/biscuit-jackal/back.svg",
  35184. extra: 2132/1976,
  35185. bottom: 57/2189
  35186. }
  35187. },
  35188. werejackal: {
  35189. height: math.unit(6 + 3/12, "feet"),
  35190. weight: math.unit(188, "lb"),
  35191. name: "Werejackal",
  35192. image: {
  35193. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35194. extra: 2373/2178,
  35195. bottom: 53/2426
  35196. }
  35197. },
  35198. },
  35199. [
  35200. {
  35201. name: "Normal",
  35202. height: math.unit(5 + 8/12, "feet"),
  35203. default: true
  35204. },
  35205. ]
  35206. ))
  35207. characterMakers.push(() => makeCharacter(
  35208. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35209. {
  35210. front: {
  35211. height: math.unit(140, "cm"),
  35212. weight: math.unit(45, "kg"),
  35213. name: "Front",
  35214. image: {
  35215. source: "./media/characters/tayra-white/front.svg",
  35216. extra: 2229/2192,
  35217. bottom: 75/2304
  35218. }
  35219. },
  35220. },
  35221. [
  35222. {
  35223. name: "Normal",
  35224. height: math.unit(140, "cm"),
  35225. default: true
  35226. },
  35227. ]
  35228. ))
  35229. characterMakers.push(() => makeCharacter(
  35230. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35231. {
  35232. front: {
  35233. height: math.unit(4 + 5/12, "feet"),
  35234. name: "Front",
  35235. image: {
  35236. source: "./media/characters/scoop/front.svg",
  35237. extra: 1257/1136,
  35238. bottom: 69/1326
  35239. }
  35240. },
  35241. back: {
  35242. height: math.unit(4 + 5/12, "feet"),
  35243. name: "Back",
  35244. image: {
  35245. source: "./media/characters/scoop/back.svg",
  35246. extra: 1321/1152,
  35247. bottom: 32/1353
  35248. }
  35249. },
  35250. maw: {
  35251. height: math.unit(0.68, "feet"),
  35252. name: "Maw",
  35253. image: {
  35254. source: "./media/characters/scoop/maw.svg"
  35255. }
  35256. },
  35257. },
  35258. [
  35259. {
  35260. name: "Really Small",
  35261. height: math.unit(1, "mm")
  35262. },
  35263. {
  35264. name: "Micro",
  35265. height: math.unit(1, "inch")
  35266. },
  35267. {
  35268. name: "Normal",
  35269. height: math.unit(4 + 5/12, "feet"),
  35270. default: true
  35271. },
  35272. {
  35273. name: "Macro",
  35274. height: math.unit(200, "feet")
  35275. },
  35276. {
  35277. name: "Megamacro",
  35278. height: math.unit(3240, "feet")
  35279. },
  35280. {
  35281. name: "Teramacro",
  35282. height: math.unit(2500, "miles")
  35283. },
  35284. ]
  35285. ))
  35286. characterMakers.push(() => makeCharacter(
  35287. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35288. {
  35289. front: {
  35290. height: math.unit(15 + 7/12, "feet"),
  35291. weight: math.unit(1150, "tons"),
  35292. name: "Front",
  35293. image: {
  35294. source: "./media/characters/saphinara/front.svg",
  35295. extra: 1837/1643,
  35296. bottom: 84/1921
  35297. },
  35298. form: "normal",
  35299. default: true
  35300. },
  35301. side: {
  35302. height: math.unit(15 + 7/12, "feet"),
  35303. weight: math.unit(1150, "tons"),
  35304. name: "Side",
  35305. image: {
  35306. source: "./media/characters/saphinara/side.svg",
  35307. extra: 605/547,
  35308. bottom: 6/611
  35309. },
  35310. form: "normal"
  35311. },
  35312. back: {
  35313. height: math.unit(15 + 7/12, "feet"),
  35314. weight: math.unit(1150, "tons"),
  35315. name: "Back",
  35316. image: {
  35317. source: "./media/characters/saphinara/back.svg",
  35318. extra: 591/531,
  35319. bottom: 13/604
  35320. },
  35321. form: "normal"
  35322. },
  35323. frontTail: {
  35324. height: math.unit(15 + 7/12, "feet"),
  35325. weight: math.unit(1150, "tons"),
  35326. name: "Front (Full Tail)",
  35327. image: {
  35328. source: "./media/characters/saphinara/front-tail.svg",
  35329. extra: 2256/1630,
  35330. bottom: 261/2517
  35331. },
  35332. form: "normal"
  35333. },
  35334. insides: {
  35335. height: math.unit(11.92, "feet"),
  35336. name: "Insides",
  35337. image: {
  35338. source: "./media/characters/saphinara/insides.svg"
  35339. },
  35340. form: "normal"
  35341. },
  35342. head: {
  35343. height: math.unit(4.17, "feet"),
  35344. name: "Head",
  35345. image: {
  35346. source: "./media/characters/saphinara/head.svg"
  35347. },
  35348. form: "normal"
  35349. },
  35350. tongue: {
  35351. height: math.unit(4.60, "feet"),
  35352. name: "Tongue",
  35353. image: {
  35354. source: "./media/characters/saphinara/tongue.svg"
  35355. },
  35356. form: "normal"
  35357. },
  35358. headEnraged: {
  35359. height: math.unit(5.55, "feet"),
  35360. name: "Head (Enraged)",
  35361. image: {
  35362. source: "./media/characters/saphinara/head-enraged.svg"
  35363. },
  35364. form: "normal"
  35365. },
  35366. wings: {
  35367. height: math.unit(11.95, "feet"),
  35368. name: "Wings",
  35369. image: {
  35370. source: "./media/characters/saphinara/wings.svg"
  35371. },
  35372. form: "normal"
  35373. },
  35374. feathers: {
  35375. height: math.unit(8.92, "feet"),
  35376. name: "Feathers",
  35377. image: {
  35378. source: "./media/characters/saphinara/feathers.svg"
  35379. },
  35380. form: "normal"
  35381. },
  35382. shackles: {
  35383. height: math.unit(2, "feet"),
  35384. name: "Shackles",
  35385. image: {
  35386. source: "./media/characters/saphinara/shackles.svg"
  35387. },
  35388. form: "normal"
  35389. },
  35390. eyes: {
  35391. height: math.unit(1.331, "feet"),
  35392. name: "Eyes",
  35393. image: {
  35394. source: "./media/characters/saphinara/eyes.svg"
  35395. },
  35396. form: "normal"
  35397. },
  35398. eyesEnraged: {
  35399. height: math.unit(1.331, "feet"),
  35400. name: "Eyes (Enraged)",
  35401. image: {
  35402. source: "./media/characters/saphinara/eyes-enraged.svg"
  35403. },
  35404. form: "normal"
  35405. },
  35406. trueFormSide: {
  35407. height: math.unit(200, "feet"),
  35408. weight: math.unit(1e7, "tons"),
  35409. name: "Side",
  35410. image: {
  35411. source: "./media/characters/saphinara/true-form-side.svg",
  35412. extra: 1399/770,
  35413. bottom: 97/1496
  35414. },
  35415. form: "true-form",
  35416. default: true
  35417. },
  35418. trueFormMaw: {
  35419. height: math.unit(71.5, "feet"),
  35420. name: "Maw",
  35421. image: {
  35422. source: "./media/characters/saphinara/true-form-maw.svg",
  35423. extra: 2302/1453,
  35424. bottom: 0/2302
  35425. },
  35426. form: "true-form"
  35427. },
  35428. meowberusSide: {
  35429. height: math.unit(75, "feet"),
  35430. weight: math.unit(180000, "kg"),
  35431. preyCapacity: math.unit(50000, "people"),
  35432. name: "Side",
  35433. image: {
  35434. source: "./media/characters/saphinara/meowberus-side.svg",
  35435. extra: 1400/711,
  35436. bottom: 126/1526
  35437. },
  35438. form: "meowberus",
  35439. extraAttributes: {
  35440. "pawArea": {
  35441. name: "Paw Size",
  35442. power: 2,
  35443. type: "area",
  35444. base: math.unit(35, "m^2")
  35445. }
  35446. }
  35447. },
  35448. },
  35449. [
  35450. {
  35451. name: "Normal",
  35452. height: math.unit(15 + 7/12, "feet"),
  35453. default: true,
  35454. form: "normal"
  35455. },
  35456. {
  35457. name: "Angry",
  35458. height: math.unit(30 + 6/12, "feet"),
  35459. form: "normal"
  35460. },
  35461. {
  35462. name: "Enraged",
  35463. height: math.unit(102 + 1/12, "feet"),
  35464. form: "normal"
  35465. },
  35466. {
  35467. name: "True",
  35468. height: math.unit(200, "feet"),
  35469. default: true,
  35470. form: "true-form"
  35471. },
  35472. {
  35473. name: "Normal",
  35474. height: math.unit(75, "feet"),
  35475. default: true,
  35476. form: "meowberus"
  35477. },
  35478. ],
  35479. {
  35480. "normal": {
  35481. name: "Normal",
  35482. default: true
  35483. },
  35484. "true-form": {
  35485. name: "True Form"
  35486. },
  35487. "meowberus": {
  35488. name: "Meowberus",
  35489. },
  35490. }
  35491. ))
  35492. characterMakers.push(() => makeCharacter(
  35493. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35494. {
  35495. front: {
  35496. height: math.unit(6 + 8/12, "feet"),
  35497. weight: math.unit(300, "lb"),
  35498. name: "Front",
  35499. image: {
  35500. source: "./media/characters/jrain/front.svg",
  35501. extra: 3039/2865,
  35502. bottom: 399/3438
  35503. }
  35504. },
  35505. back: {
  35506. height: math.unit(6 + 8/12, "feet"),
  35507. weight: math.unit(300, "lb"),
  35508. name: "Back",
  35509. image: {
  35510. source: "./media/characters/jrain/back.svg",
  35511. extra: 3089/2938,
  35512. bottom: 172/3261
  35513. }
  35514. },
  35515. head: {
  35516. height: math.unit(2.14, "feet"),
  35517. name: "Head",
  35518. image: {
  35519. source: "./media/characters/jrain/head.svg"
  35520. }
  35521. },
  35522. maw: {
  35523. height: math.unit(1.77, "feet"),
  35524. name: "Maw",
  35525. image: {
  35526. source: "./media/characters/jrain/maw.svg"
  35527. }
  35528. },
  35529. leftHand: {
  35530. height: math.unit(1.1, "feet"),
  35531. name: "Left Hand",
  35532. image: {
  35533. source: "./media/characters/jrain/left-hand.svg"
  35534. }
  35535. },
  35536. rightHand: {
  35537. height: math.unit(1.1, "feet"),
  35538. name: "Right Hand",
  35539. image: {
  35540. source: "./media/characters/jrain/right-hand.svg"
  35541. }
  35542. },
  35543. eye: {
  35544. height: math.unit(0.35, "feet"),
  35545. name: "Eye",
  35546. image: {
  35547. source: "./media/characters/jrain/eye.svg"
  35548. }
  35549. },
  35550. },
  35551. [
  35552. {
  35553. name: "Normal",
  35554. height: math.unit(6 + 8/12, "feet"),
  35555. default: true
  35556. },
  35557. {
  35558. name: "Casually Large",
  35559. height: math.unit(25, "feet")
  35560. },
  35561. {
  35562. name: "Giant",
  35563. height: math.unit(100, "feet")
  35564. },
  35565. {
  35566. name: "Kaiju",
  35567. height: math.unit(300, "feet")
  35568. },
  35569. ]
  35570. ))
  35571. characterMakers.push(() => makeCharacter(
  35572. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35573. {
  35574. dragon: {
  35575. height: math.unit(5, "meters"),
  35576. name: "Dragon",
  35577. image: {
  35578. source: "./media/characters/sabrina/dragon.svg",
  35579. extra: 3670 / 2365,
  35580. bottom: 333 / 4003
  35581. }
  35582. },
  35583. gryphon: {
  35584. height: math.unit(3, "meters"),
  35585. name: "Gryphon",
  35586. image: {
  35587. source: "./media/characters/sabrina/gryphon.svg",
  35588. extra: 1576 / 945,
  35589. bottom: 71 / 1647
  35590. }
  35591. },
  35592. snake: {
  35593. height: math.unit(12, "meters"),
  35594. name: "Snake",
  35595. image: {
  35596. source: "./media/characters/sabrina/snake.svg",
  35597. extra: 1758 / 1320,
  35598. bottom: 186 / 1944
  35599. }
  35600. },
  35601. collar: {
  35602. height: math.unit(1.86, "meters"),
  35603. name: "Collar",
  35604. image: {
  35605. source: "./media/characters/sabrina/collar.svg"
  35606. }
  35607. },
  35608. eye: {
  35609. height: math.unit(0.53, "meters"),
  35610. name: "Eye",
  35611. image: {
  35612. source: "./media/characters/sabrina/eye.svg"
  35613. }
  35614. },
  35615. foot: {
  35616. height: math.unit(1.86, "meters"),
  35617. name: "Foot",
  35618. image: {
  35619. source: "./media/characters/sabrina/foot.svg"
  35620. }
  35621. },
  35622. hand: {
  35623. height: math.unit(1.32, "meters"),
  35624. name: "Hand",
  35625. image: {
  35626. source: "./media/characters/sabrina/hand.svg"
  35627. }
  35628. },
  35629. head: {
  35630. height: math.unit(2.44, "meters"),
  35631. name: "Head",
  35632. image: {
  35633. source: "./media/characters/sabrina/head.svg"
  35634. }
  35635. },
  35636. headAngry: {
  35637. height: math.unit(2.44, "meters"),
  35638. name: "Head (Angry))",
  35639. image: {
  35640. source: "./media/characters/sabrina/head-angry.svg"
  35641. }
  35642. },
  35643. maw: {
  35644. height: math.unit(1.65, "meters"),
  35645. name: "Maw",
  35646. image: {
  35647. source: "./media/characters/sabrina/maw.svg"
  35648. }
  35649. },
  35650. spikes: {
  35651. height: math.unit(1.69, "meters"),
  35652. name: "Spikes",
  35653. image: {
  35654. source: "./media/characters/sabrina/spikes.svg"
  35655. }
  35656. },
  35657. stomach: {
  35658. height: math.unit(1.15, "meters"),
  35659. name: "Stomach",
  35660. image: {
  35661. source: "./media/characters/sabrina/stomach.svg"
  35662. }
  35663. },
  35664. tongue: {
  35665. height: math.unit(1.27, "meters"),
  35666. name: "Tongue",
  35667. image: {
  35668. source: "./media/characters/sabrina/tongue.svg"
  35669. }
  35670. },
  35671. wingDorsal: {
  35672. height: math.unit(4.85, "meters"),
  35673. name: "Wing (Dorsal)",
  35674. image: {
  35675. source: "./media/characters/sabrina/wing-dorsal.svg"
  35676. }
  35677. },
  35678. wingVentral: {
  35679. height: math.unit(4.85, "meters"),
  35680. name: "Wing (Ventral)",
  35681. image: {
  35682. source: "./media/characters/sabrina/wing-ventral.svg"
  35683. }
  35684. },
  35685. },
  35686. [
  35687. {
  35688. name: "Normal",
  35689. height: math.unit(5, "meters"),
  35690. default: true
  35691. },
  35692. ]
  35693. ))
  35694. characterMakers.push(() => makeCharacter(
  35695. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35696. {
  35697. frontMaid: {
  35698. height: math.unit(5 + 5/12, "feet"),
  35699. weight: math.unit(130, "lb"),
  35700. name: "Front (Maid)",
  35701. image: {
  35702. source: "./media/characters/midnight-tales/front-maid.svg",
  35703. extra: 489/454,
  35704. bottom: 61/550
  35705. }
  35706. },
  35707. frontFormal: {
  35708. height: math.unit(5 + 5/12, "feet"),
  35709. weight: math.unit(130, "lb"),
  35710. name: "Front (Formal)",
  35711. image: {
  35712. source: "./media/characters/midnight-tales/front-formal.svg",
  35713. extra: 489/454,
  35714. bottom: 61/550
  35715. }
  35716. },
  35717. back: {
  35718. height: math.unit(5 + 5/12, "feet"),
  35719. weight: math.unit(130, "lb"),
  35720. name: "Back",
  35721. image: {
  35722. source: "./media/characters/midnight-tales/back.svg",
  35723. extra: 498/456,
  35724. bottom: 33/531
  35725. }
  35726. },
  35727. frontBeast: {
  35728. height: math.unit(40, "feet"),
  35729. weight: math.unit(64000, "lb"),
  35730. name: "Front (Beast)",
  35731. image: {
  35732. source: "./media/characters/midnight-tales/front-beast.svg",
  35733. extra: 927/860,
  35734. bottom: 53/980
  35735. }
  35736. },
  35737. backBeast: {
  35738. height: math.unit(40, "feet"),
  35739. weight: math.unit(64000, "lb"),
  35740. name: "Back (Beast)",
  35741. image: {
  35742. source: "./media/characters/midnight-tales/back-beast.svg",
  35743. extra: 929/855,
  35744. bottom: 16/945
  35745. }
  35746. },
  35747. footBeast: {
  35748. height: math.unit(6.7, "feet"),
  35749. name: "Foot (Beast)",
  35750. image: {
  35751. source: "./media/characters/midnight-tales/foot-beast.svg"
  35752. }
  35753. },
  35754. headBeast: {
  35755. height: math.unit(8, "feet"),
  35756. name: "Head (Beast)",
  35757. image: {
  35758. source: "./media/characters/midnight-tales/head-beast.svg"
  35759. }
  35760. },
  35761. },
  35762. [
  35763. {
  35764. name: "Normal",
  35765. height: math.unit(5 + 5 / 12, "feet"),
  35766. default: true
  35767. },
  35768. {
  35769. name: "Macro",
  35770. height: math.unit(25, "feet")
  35771. },
  35772. ]
  35773. ))
  35774. characterMakers.push(() => makeCharacter(
  35775. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35776. {
  35777. front: {
  35778. height: math.unit(5 + 10/12, "feet"),
  35779. name: "Front",
  35780. image: {
  35781. source: "./media/characters/argon/front.svg",
  35782. extra: 2009/1935,
  35783. bottom: 118/2127
  35784. }
  35785. },
  35786. back: {
  35787. height: math.unit(5 + 10/12, "feet"),
  35788. name: "Back",
  35789. image: {
  35790. source: "./media/characters/argon/back.svg",
  35791. extra: 2047/1992,
  35792. bottom: 20/2067
  35793. }
  35794. },
  35795. frontDressed: {
  35796. height: math.unit(5 + 10/12, "feet"),
  35797. name: "Front (Dressed)",
  35798. image: {
  35799. source: "./media/characters/argon/front-dressed.svg",
  35800. extra: 2009/1935,
  35801. bottom: 118/2127
  35802. }
  35803. },
  35804. },
  35805. [
  35806. {
  35807. name: "Normal",
  35808. height: math.unit(5 + 10/12, "feet"),
  35809. default: true
  35810. },
  35811. ]
  35812. ))
  35813. characterMakers.push(() => makeCharacter(
  35814. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35815. {
  35816. front: {
  35817. height: math.unit(8 + 6/12, "feet"),
  35818. weight: math.unit(1150, "lb"),
  35819. name: "Front",
  35820. image: {
  35821. source: "./media/characters/kichi/front.svg",
  35822. extra: 1267/1164,
  35823. bottom: 61/1328
  35824. }
  35825. },
  35826. back: {
  35827. height: math.unit(8 + 6/12, "feet"),
  35828. weight: math.unit(1150, "lb"),
  35829. name: "Back",
  35830. image: {
  35831. source: "./media/characters/kichi/back.svg",
  35832. extra: 1273/1166,
  35833. bottom: 33/1306
  35834. }
  35835. },
  35836. },
  35837. [
  35838. {
  35839. name: "Normal",
  35840. height: math.unit(8 + 6/12, "feet"),
  35841. default: true
  35842. },
  35843. ]
  35844. ))
  35845. characterMakers.push(() => makeCharacter(
  35846. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35847. {
  35848. front: {
  35849. height: math.unit(6, "feet"),
  35850. weight: math.unit(210, "lb"),
  35851. name: "Front",
  35852. image: {
  35853. source: "./media/characters/manetel-greyscale/front.svg",
  35854. extra: 350/312,
  35855. bottom: 8/358
  35856. }
  35857. },
  35858. },
  35859. [
  35860. {
  35861. name: "Micro",
  35862. height: math.unit(2, "inches")
  35863. },
  35864. {
  35865. name: "Normal",
  35866. height: math.unit(6, "feet"),
  35867. default: true
  35868. },
  35869. {
  35870. name: "Minimacro",
  35871. height: math.unit(17, "feet")
  35872. },
  35873. {
  35874. name: "Macro",
  35875. height: math.unit(117, "feet")
  35876. },
  35877. ]
  35878. ))
  35879. characterMakers.push(() => makeCharacter(
  35880. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35881. {
  35882. side: {
  35883. height: math.unit(5 + 1/12, "feet"),
  35884. weight: math.unit(418, "lb"),
  35885. name: "Side",
  35886. image: {
  35887. source: "./media/characters/softpurr/side.svg",
  35888. extra: 1993/1945,
  35889. bottom: 134/2127
  35890. }
  35891. },
  35892. front: {
  35893. height: math.unit(5 + 1/12, "feet"),
  35894. weight: math.unit(418, "lb"),
  35895. name: "Front",
  35896. image: {
  35897. source: "./media/characters/softpurr/front.svg",
  35898. extra: 1950/1856,
  35899. bottom: 174/2124
  35900. }
  35901. },
  35902. paw: {
  35903. height: math.unit(1, "feet"),
  35904. name: "Paw",
  35905. image: {
  35906. source: "./media/characters/softpurr/paw.svg"
  35907. }
  35908. },
  35909. },
  35910. [
  35911. {
  35912. name: "Normal",
  35913. height: math.unit(5 + 1/12, "feet"),
  35914. default: true
  35915. },
  35916. ]
  35917. ))
  35918. characterMakers.push(() => makeCharacter(
  35919. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35920. {
  35921. front: {
  35922. height: math.unit(260, "meters"),
  35923. name: "Front",
  35924. image: {
  35925. source: "./media/characters/anahita/front.svg",
  35926. extra: 665/635,
  35927. bottom: 89/754
  35928. }
  35929. },
  35930. },
  35931. [
  35932. {
  35933. name: "Macro",
  35934. height: math.unit(260, "meters"),
  35935. default: true
  35936. },
  35937. ]
  35938. ))
  35939. characterMakers.push(() => makeCharacter(
  35940. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35941. {
  35942. front: {
  35943. height: math.unit(4 + 10/12, "feet"),
  35944. weight: math.unit(160, "lb"),
  35945. name: "Front",
  35946. image: {
  35947. source: "./media/characters/chip-mouse/front.svg",
  35948. extra: 3528/3408,
  35949. bottom: 0/3528
  35950. }
  35951. },
  35952. frontNsfw: {
  35953. height: math.unit(4 + 10/12, "feet"),
  35954. weight: math.unit(160, "lb"),
  35955. name: "Front (NSFW)",
  35956. image: {
  35957. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35958. extra: 3528/3408,
  35959. bottom: 0/3528
  35960. }
  35961. },
  35962. },
  35963. [
  35964. {
  35965. name: "Normal",
  35966. height: math.unit(4 + 10/12, "feet"),
  35967. default: true
  35968. },
  35969. ]
  35970. ))
  35971. characterMakers.push(() => makeCharacter(
  35972. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35973. {
  35974. side: {
  35975. height: math.unit(10, "feet"),
  35976. weight: math.unit(14000, "lb"),
  35977. name: "Side",
  35978. image: {
  35979. source: "./media/characters/kremm/side.svg",
  35980. extra: 1390/1053,
  35981. bottom: 90/1480
  35982. }
  35983. },
  35984. gut: {
  35985. height: math.unit(5.8, "feet"),
  35986. name: "Gut",
  35987. image: {
  35988. source: "./media/characters/kremm/gut.svg"
  35989. }
  35990. },
  35991. ass: {
  35992. height: math.unit(6.1, "feet"),
  35993. name: "Ass",
  35994. image: {
  35995. source: "./media/characters/kremm/ass.svg"
  35996. }
  35997. },
  35998. jaws: {
  35999. height: math.unit(2.2, "feet"),
  36000. name: "Jaws",
  36001. image: {
  36002. source: "./media/characters/kremm/jaws.svg"
  36003. }
  36004. },
  36005. dick: {
  36006. height: math.unit(4.26, "feet"),
  36007. name: "Dick",
  36008. image: {
  36009. source: "./media/characters/kremm/dick.svg"
  36010. }
  36011. },
  36012. },
  36013. [
  36014. {
  36015. name: "Normal",
  36016. height: math.unit(10, "feet"),
  36017. default: true
  36018. },
  36019. ]
  36020. ))
  36021. characterMakers.push(() => makeCharacter(
  36022. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36023. {
  36024. front: {
  36025. height: math.unit(30, "stories"),
  36026. name: "Front",
  36027. image: {
  36028. source: "./media/characters/kai/front.svg",
  36029. extra: 1892/1718,
  36030. bottom: 162/2054
  36031. }
  36032. },
  36033. },
  36034. [
  36035. {
  36036. name: "Macro",
  36037. height: math.unit(30, "stories"),
  36038. default: true
  36039. },
  36040. ]
  36041. ))
  36042. characterMakers.push(() => makeCharacter(
  36043. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36044. {
  36045. front: {
  36046. height: math.unit(6 + 4/12, "feet"),
  36047. weight: math.unit(145, "lb"),
  36048. name: "Front",
  36049. image: {
  36050. source: "./media/characters/sykes/front.svg",
  36051. extra: 1321 / 1187,
  36052. bottom: 66 / 1387
  36053. }
  36054. },
  36055. back: {
  36056. height: math.unit(6 + 4/12, "feet"),
  36057. weight: math.unit(145, "lb"),
  36058. name: "Back",
  36059. image: {
  36060. source: "./media/characters/sykes/back.svg",
  36061. extra: 1326/1181,
  36062. bottom: 31/1357
  36063. }
  36064. },
  36065. traditionalOutfit: {
  36066. height: math.unit(6 + 4/12, "feet"),
  36067. weight: math.unit(145, "lb"),
  36068. name: "Traditional Outfit",
  36069. image: {
  36070. source: "./media/characters/sykes/traditional-outfit.svg",
  36071. extra: 1321 / 1187,
  36072. bottom: 66 / 1387
  36073. }
  36074. },
  36075. adventureOutfit: {
  36076. height: math.unit(6 + 4/12, "feet"),
  36077. weight: math.unit(145, "lb"),
  36078. name: "Adventure Outfit",
  36079. image: {
  36080. source: "./media/characters/sykes/adventure-outfit.svg",
  36081. extra: 1321 / 1187,
  36082. bottom: 66 / 1387
  36083. }
  36084. },
  36085. handLeft: {
  36086. height: math.unit(0.9, "feet"),
  36087. name: "Hand (Left)",
  36088. image: {
  36089. source: "./media/characters/sykes/hand-left.svg"
  36090. }
  36091. },
  36092. handRight: {
  36093. height: math.unit(0.839, "feet"),
  36094. name: "Hand (Right)",
  36095. image: {
  36096. source: "./media/characters/sykes/hand-right.svg"
  36097. }
  36098. },
  36099. leftFoot: {
  36100. height: math.unit(1.2, "feet"),
  36101. name: "Foot (Left)",
  36102. image: {
  36103. source: "./media/characters/sykes/foot-left.svg"
  36104. }
  36105. },
  36106. rightFoot: {
  36107. height: math.unit(1.2, "feet"),
  36108. name: "Foot (Right)",
  36109. image: {
  36110. source: "./media/characters/sykes/foot-right.svg"
  36111. }
  36112. },
  36113. maw: {
  36114. height: math.unit(1.93, "feet"),
  36115. name: "Maw",
  36116. image: {
  36117. source: "./media/characters/sykes/maw.svg"
  36118. }
  36119. },
  36120. teeth: {
  36121. height: math.unit(0.51, "feet"),
  36122. name: "Teeth",
  36123. image: {
  36124. source: "./media/characters/sykes/teeth.svg"
  36125. }
  36126. },
  36127. tongue: {
  36128. height: math.unit(2.13, "feet"),
  36129. name: "Tongue",
  36130. image: {
  36131. source: "./media/characters/sykes/tongue.svg"
  36132. }
  36133. },
  36134. uvula: {
  36135. height: math.unit(0.16, "feet"),
  36136. name: "Uvula",
  36137. image: {
  36138. source: "./media/characters/sykes/uvula.svg"
  36139. }
  36140. },
  36141. collar: {
  36142. height: math.unit(0.287, "feet"),
  36143. name: "Collar",
  36144. image: {
  36145. source: "./media/characters/sykes/collar.svg"
  36146. }
  36147. },
  36148. tail: {
  36149. height: math.unit(3.8, "feet"),
  36150. name: "Tail",
  36151. image: {
  36152. source: "./media/characters/sykes/tail.svg"
  36153. }
  36154. },
  36155. },
  36156. [
  36157. {
  36158. name: "Shrunken",
  36159. height: math.unit(5, "inches")
  36160. },
  36161. {
  36162. name: "Normal",
  36163. height: math.unit(6 + 4 / 12, "feet"),
  36164. default: true
  36165. },
  36166. {
  36167. name: "Big",
  36168. height: math.unit(15, "feet")
  36169. },
  36170. ]
  36171. ))
  36172. characterMakers.push(() => makeCharacter(
  36173. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36174. {
  36175. front: {
  36176. height: math.unit(5 + 8/12, "feet"),
  36177. weight: math.unit(190, "lb"),
  36178. name: "Front",
  36179. image: {
  36180. source: "./media/characters/oven-otter/front.svg",
  36181. extra: 1809/1740,
  36182. bottom: 181/1990
  36183. }
  36184. },
  36185. back: {
  36186. height: math.unit(5 + 8/12, "feet"),
  36187. weight: math.unit(190, "lb"),
  36188. name: "Back",
  36189. image: {
  36190. source: "./media/characters/oven-otter/back.svg",
  36191. extra: 1709/1635,
  36192. bottom: 118/1827
  36193. }
  36194. },
  36195. hand: {
  36196. height: math.unit(1.07, "feet"),
  36197. name: "Hand",
  36198. image: {
  36199. source: "./media/characters/oven-otter/hand.svg"
  36200. }
  36201. },
  36202. beans: {
  36203. height: math.unit(1.74, "feet"),
  36204. name: "Beans",
  36205. image: {
  36206. source: "./media/characters/oven-otter/beans.svg"
  36207. }
  36208. },
  36209. },
  36210. [
  36211. {
  36212. name: "Micro",
  36213. height: math.unit(0.5, "inches")
  36214. },
  36215. {
  36216. name: "Normal",
  36217. height: math.unit(5 + 8/12, "feet"),
  36218. default: true
  36219. },
  36220. {
  36221. name: "Macro",
  36222. height: math.unit(250, "feet")
  36223. },
  36224. {
  36225. name: "Really High",
  36226. height: math.unit(420, "feet")
  36227. },
  36228. ]
  36229. ))
  36230. characterMakers.push(() => makeCharacter(
  36231. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36232. {
  36233. front: {
  36234. height: math.unit(5, "meters"),
  36235. weight: math.unit(292000000000000, "kg"),
  36236. name: "Front",
  36237. image: {
  36238. source: "./media/characters/devourer/front.svg",
  36239. extra: 1800/1733,
  36240. bottom: 211/2011
  36241. }
  36242. },
  36243. maw: {
  36244. height: math.unit(1.1, "meter"),
  36245. name: "Maw",
  36246. image: {
  36247. source: "./media/characters/devourer/maw.svg"
  36248. }
  36249. },
  36250. },
  36251. [
  36252. {
  36253. name: "Small",
  36254. height: math.unit(3, "meters")
  36255. },
  36256. {
  36257. name: "Large",
  36258. height: math.unit(5, "meters"),
  36259. default: true
  36260. },
  36261. ]
  36262. ))
  36263. characterMakers.push(() => makeCharacter(
  36264. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36265. {
  36266. front: {
  36267. height: math.unit(6, "feet"),
  36268. weight: math.unit(400, "lb"),
  36269. name: "Front",
  36270. image: {
  36271. source: "./media/characters/ellarby/front.svg",
  36272. extra: 1909/1763,
  36273. bottom: 80/1989
  36274. }
  36275. },
  36276. back: {
  36277. height: math.unit(6, "feet"),
  36278. weight: math.unit(400, "lb"),
  36279. name: "Back",
  36280. image: {
  36281. source: "./media/characters/ellarby/back.svg",
  36282. extra: 1914/1784,
  36283. bottom: 172/2086
  36284. }
  36285. },
  36286. },
  36287. [
  36288. {
  36289. name: "Mischief",
  36290. height: math.unit(18, "inches")
  36291. },
  36292. {
  36293. name: "Trouble",
  36294. height: math.unit(12, "feet")
  36295. },
  36296. {
  36297. name: "Havoc",
  36298. height: math.unit(200, "feet"),
  36299. default: true
  36300. },
  36301. {
  36302. name: "Pandemonium",
  36303. height: math.unit(1, "mile")
  36304. },
  36305. {
  36306. name: "Catastrophe",
  36307. height: math.unit(100, "miles")
  36308. },
  36309. ]
  36310. ))
  36311. characterMakers.push(() => makeCharacter(
  36312. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36313. {
  36314. front: {
  36315. height: math.unit(4.7, "meters"),
  36316. weight: math.unit(6500, "kg"),
  36317. name: "Front",
  36318. image: {
  36319. source: "./media/characters/vex/front.svg",
  36320. extra: 1288/1140,
  36321. bottom: 100/1388
  36322. }
  36323. },
  36324. },
  36325. [
  36326. {
  36327. name: "Normal",
  36328. height: math.unit(4.7, "meters"),
  36329. default: true
  36330. },
  36331. ]
  36332. ))
  36333. characterMakers.push(() => makeCharacter(
  36334. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36335. {
  36336. normal: {
  36337. height: math.unit(6, "feet"),
  36338. weight: math.unit(350, "lb"),
  36339. name: "Normal",
  36340. image: {
  36341. source: "./media/characters/teshy/normal.svg",
  36342. extra: 1795/1735,
  36343. bottom: 16/1811
  36344. }
  36345. },
  36346. monsterFront: {
  36347. height: math.unit(12, "feet"),
  36348. weight: math.unit(4700, "lb"),
  36349. name: "Monster (Front)",
  36350. image: {
  36351. source: "./media/characters/teshy/monster-front.svg",
  36352. extra: 2042/2034,
  36353. bottom: 128/2170
  36354. }
  36355. },
  36356. monsterSide: {
  36357. height: math.unit(12, "feet"),
  36358. weight: math.unit(4700, "lb"),
  36359. name: "Monster (Side)",
  36360. image: {
  36361. source: "./media/characters/teshy/monster-side.svg",
  36362. extra: 2067/2056,
  36363. bottom: 70/2137
  36364. }
  36365. },
  36366. monsterBack: {
  36367. height: math.unit(12, "feet"),
  36368. weight: math.unit(4700, "lb"),
  36369. name: "Monster (Back)",
  36370. image: {
  36371. source: "./media/characters/teshy/monster-back.svg",
  36372. extra: 1921/1914,
  36373. bottom: 171/2092
  36374. }
  36375. },
  36376. },
  36377. [
  36378. {
  36379. name: "Normal",
  36380. height: math.unit(6, "feet"),
  36381. default: true
  36382. },
  36383. ]
  36384. ))
  36385. characterMakers.push(() => makeCharacter(
  36386. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36387. {
  36388. front: {
  36389. height: math.unit(6, "feet"),
  36390. name: "Front",
  36391. image: {
  36392. source: "./media/characters/ramey/front.svg",
  36393. extra: 790/787,
  36394. bottom: 27/817
  36395. }
  36396. },
  36397. },
  36398. [
  36399. {
  36400. name: "Normal",
  36401. height: math.unit(6, "feet"),
  36402. default: true
  36403. },
  36404. ]
  36405. ))
  36406. characterMakers.push(() => makeCharacter(
  36407. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36408. {
  36409. front: {
  36410. height: math.unit(5 + 5/12, "feet"),
  36411. weight: math.unit(120, "lb"),
  36412. name: "Front",
  36413. image: {
  36414. source: "./media/characters/phirae/front.svg",
  36415. extra: 2491/2436,
  36416. bottom: 38/2529
  36417. }
  36418. },
  36419. },
  36420. [
  36421. {
  36422. name: "Normal",
  36423. height: math.unit(5 + 5/12, "feet"),
  36424. default: true
  36425. },
  36426. ]
  36427. ))
  36428. characterMakers.push(() => makeCharacter(
  36429. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36430. {
  36431. front: {
  36432. height: math.unit(5 + 3/12, "feet"),
  36433. name: "Front",
  36434. image: {
  36435. source: "./media/characters/stagglas/front.svg",
  36436. extra: 962/882,
  36437. bottom: 53/1015
  36438. }
  36439. },
  36440. feral: {
  36441. height: math.unit(335, "cm"),
  36442. name: "Feral",
  36443. image: {
  36444. source: "./media/characters/stagglas/feral.svg",
  36445. extra: 1732/1090,
  36446. bottom: 48/1780
  36447. }
  36448. },
  36449. },
  36450. [
  36451. {
  36452. name: "Normal",
  36453. height: math.unit(5 + 3/12, "feet"),
  36454. default: true
  36455. },
  36456. ]
  36457. ))
  36458. characterMakers.push(() => makeCharacter(
  36459. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36460. {
  36461. front: {
  36462. height: math.unit(5 + 4/12, "feet"),
  36463. weight: math.unit(145, "lb"),
  36464. name: "Front",
  36465. image: {
  36466. source: "./media/characters/starra/front.svg",
  36467. extra: 1790/1691,
  36468. bottom: 91/1881
  36469. }
  36470. },
  36471. },
  36472. [
  36473. {
  36474. name: "Normal",
  36475. height: math.unit(5 + 4/12, "feet"),
  36476. default: true
  36477. },
  36478. ]
  36479. ))
  36480. characterMakers.push(() => makeCharacter(
  36481. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36482. {
  36483. front: {
  36484. height: math.unit(2.2, "meters"),
  36485. name: "Front",
  36486. image: {
  36487. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36488. extra: 1248/972,
  36489. bottom: 38/1286
  36490. }
  36491. },
  36492. },
  36493. [
  36494. {
  36495. name: "Normal",
  36496. height: math.unit(2.2, "meters"),
  36497. default: true
  36498. },
  36499. ]
  36500. ))
  36501. characterMakers.push(() => makeCharacter(
  36502. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36503. {
  36504. side: {
  36505. height: math.unit(8 + 2/12, "feet"),
  36506. weight: math.unit(1240, "lb"),
  36507. name: "Side",
  36508. image: {
  36509. source: "./media/characters/mika-valentine/side.svg",
  36510. extra: 2670/2501,
  36511. bottom: 250/2920
  36512. }
  36513. },
  36514. },
  36515. [
  36516. {
  36517. name: "Normal",
  36518. height: math.unit(8 + 2/12, "feet"),
  36519. default: true
  36520. },
  36521. ]
  36522. ))
  36523. characterMakers.push(() => makeCharacter(
  36524. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36525. {
  36526. front: {
  36527. height: math.unit(7 + 2/12, "feet"),
  36528. name: "Front",
  36529. image: {
  36530. source: "./media/characters/xoltol/front.svg",
  36531. extra: 2212/2124,
  36532. bottom: 84/2296
  36533. }
  36534. },
  36535. side: {
  36536. height: math.unit(7 + 2/12, "feet"),
  36537. name: "Side",
  36538. image: {
  36539. source: "./media/characters/xoltol/side.svg",
  36540. extra: 2273/2197,
  36541. bottom: 26/2299
  36542. }
  36543. },
  36544. hand: {
  36545. height: math.unit(2.5, "feet"),
  36546. name: "Hand",
  36547. image: {
  36548. source: "./media/characters/xoltol/hand.svg"
  36549. }
  36550. },
  36551. },
  36552. [
  36553. {
  36554. name: "Small-ish",
  36555. height: math.unit(5 + 11/12, "feet")
  36556. },
  36557. {
  36558. name: "Normal",
  36559. height: math.unit(7 + 2/12, "feet")
  36560. },
  36561. {
  36562. name: "\"Macro\"",
  36563. height: math.unit(14 + 9/12, "feet"),
  36564. default: true
  36565. },
  36566. {
  36567. name: "Alternate Height",
  36568. height: math.unit(20, "feet")
  36569. },
  36570. {
  36571. name: "Actually Macro",
  36572. height: math.unit(100, "feet")
  36573. },
  36574. ]
  36575. ))
  36576. characterMakers.push(() => makeCharacter(
  36577. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36578. {
  36579. front: {
  36580. height: math.unit(5 + 2/12, "feet"),
  36581. name: "Front",
  36582. image: {
  36583. source: "./media/characters/kotetsu-redwood/front.svg",
  36584. extra: 1053/942,
  36585. bottom: 60/1113
  36586. }
  36587. },
  36588. },
  36589. [
  36590. {
  36591. name: "Normal",
  36592. height: math.unit(5 + 2/12, "feet"),
  36593. default: true
  36594. },
  36595. ]
  36596. ))
  36597. characterMakers.push(() => makeCharacter(
  36598. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36599. {
  36600. front: {
  36601. height: math.unit(2.4, "meters"),
  36602. weight: math.unit(125, "kg"),
  36603. name: "Front",
  36604. image: {
  36605. source: "./media/characters/lilith/front.svg",
  36606. extra: 1590/1513,
  36607. bottom: 203/1793
  36608. }
  36609. },
  36610. },
  36611. [
  36612. {
  36613. name: "Humanoid",
  36614. height: math.unit(2.4, "meters")
  36615. },
  36616. {
  36617. name: "Normal",
  36618. height: math.unit(6, "meters"),
  36619. default: true
  36620. },
  36621. {
  36622. name: "Largest",
  36623. height: math.unit(55, "meters")
  36624. },
  36625. ]
  36626. ))
  36627. characterMakers.push(() => makeCharacter(
  36628. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36629. {
  36630. front: {
  36631. height: math.unit(8 + 4/12, "feet"),
  36632. weight: math.unit(535, "lb"),
  36633. name: "Front",
  36634. image: {
  36635. source: "./media/characters/beh'kah-bolger/front.svg",
  36636. extra: 1660/1603,
  36637. bottom: 37/1697
  36638. }
  36639. },
  36640. },
  36641. [
  36642. {
  36643. name: "Normal",
  36644. height: math.unit(8 + 4/12, "feet"),
  36645. default: true
  36646. },
  36647. {
  36648. name: "Kaiju",
  36649. height: math.unit(250, "feet")
  36650. },
  36651. {
  36652. name: "Still Growing",
  36653. height: math.unit(10, "miles")
  36654. },
  36655. {
  36656. name: "Continental",
  36657. height: math.unit(5000, "miles")
  36658. },
  36659. {
  36660. name: "Final Form",
  36661. height: math.unit(2500000, "miles")
  36662. },
  36663. ]
  36664. ))
  36665. characterMakers.push(() => makeCharacter(
  36666. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36667. {
  36668. front: {
  36669. height: math.unit(7 + 2/12, "feet"),
  36670. weight: math.unit(230, "kg"),
  36671. name: "Front",
  36672. image: {
  36673. source: "./media/characters/tatyana-milewska/front.svg",
  36674. extra: 1199/1150,
  36675. bottom: 86/1285
  36676. }
  36677. },
  36678. },
  36679. [
  36680. {
  36681. name: "Normal",
  36682. height: math.unit(7 + 2/12, "feet"),
  36683. default: true
  36684. },
  36685. {
  36686. name: "Big",
  36687. height: math.unit(12, "feet")
  36688. },
  36689. {
  36690. name: "Minimacro",
  36691. height: math.unit(20, "feet")
  36692. },
  36693. {
  36694. name: "Macro",
  36695. height: math.unit(120, "feet")
  36696. },
  36697. ]
  36698. ))
  36699. characterMakers.push(() => makeCharacter(
  36700. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36701. {
  36702. front: {
  36703. height: math.unit(7 + 8/12, "feet"),
  36704. weight: math.unit(152, "kg"),
  36705. name: "Front",
  36706. image: {
  36707. source: "./media/characters/helen-arri/front.svg",
  36708. extra: 440/423,
  36709. bottom: 14/454
  36710. }
  36711. },
  36712. back: {
  36713. height: math.unit(7 + 8/12, "feet"),
  36714. weight: math.unit(152, "kg"),
  36715. name: "Back",
  36716. image: {
  36717. source: "./media/characters/helen-arri/back.svg",
  36718. extra: 443/426,
  36719. bottom: 8/451
  36720. }
  36721. },
  36722. },
  36723. [
  36724. {
  36725. name: "Normal",
  36726. height: math.unit(7 + 8/12, "feet"),
  36727. default: true
  36728. },
  36729. {
  36730. name: "Big",
  36731. height: math.unit(14, "feet")
  36732. },
  36733. {
  36734. name: "Minimacro",
  36735. height: math.unit(24, "feet")
  36736. },
  36737. {
  36738. name: "Macro",
  36739. height: math.unit(140, "feet")
  36740. },
  36741. ]
  36742. ))
  36743. characterMakers.push(() => makeCharacter(
  36744. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36745. {
  36746. front: {
  36747. height: math.unit(6, "meters"),
  36748. name: "Front",
  36749. image: {
  36750. source: "./media/characters/ehanu-rehu/front.svg",
  36751. extra: 1800/1800,
  36752. bottom: 59/1859
  36753. }
  36754. },
  36755. },
  36756. [
  36757. {
  36758. name: "Normal",
  36759. height: math.unit(6, "meters"),
  36760. default: true
  36761. },
  36762. ]
  36763. ))
  36764. characterMakers.push(() => makeCharacter(
  36765. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36766. {
  36767. front: {
  36768. height: math.unit(7 + 3/12, "feet"),
  36769. name: "Front",
  36770. image: {
  36771. source: "./media/characters/renholder/front.svg",
  36772. extra: 3096/2960,
  36773. bottom: 250/3346
  36774. }
  36775. },
  36776. },
  36777. [
  36778. {
  36779. name: "Normal Bat",
  36780. height: math.unit(7 + 3/12, "feet"),
  36781. default: true
  36782. },
  36783. {
  36784. name: "Slightly Tall Bat",
  36785. height: math.unit(100, "feet")
  36786. },
  36787. {
  36788. name: "Big Bat",
  36789. height: math.unit(1000, "feet")
  36790. },
  36791. {
  36792. name: "City-Sized Bat",
  36793. height: math.unit(200000, "feet")
  36794. },
  36795. {
  36796. name: "Bigger Bat",
  36797. height: math.unit(10000, "miles")
  36798. },
  36799. {
  36800. name: "Solar Sized Bat",
  36801. height: math.unit(100, "AU")
  36802. },
  36803. {
  36804. name: "Galactic Bat",
  36805. height: math.unit(200000, "lightyears")
  36806. },
  36807. {
  36808. name: "Universally Known Bat",
  36809. height: math.unit(1, "universe")
  36810. },
  36811. ]
  36812. ))
  36813. characterMakers.push(() => makeCharacter(
  36814. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36815. {
  36816. front: {
  36817. height: math.unit(6 + 11/12, "feet"),
  36818. weight: math.unit(250, "lb"),
  36819. name: "Front",
  36820. image: {
  36821. source: "./media/characters/cookiecat/front.svg",
  36822. extra: 893/827,
  36823. bottom: 14/907
  36824. }
  36825. },
  36826. },
  36827. [
  36828. {
  36829. name: "Micro",
  36830. height: math.unit(3, "inches")
  36831. },
  36832. {
  36833. name: "Normal",
  36834. height: math.unit(6 + 11/12, "feet"),
  36835. default: true
  36836. },
  36837. {
  36838. name: "Macro",
  36839. height: math.unit(100, "feet")
  36840. },
  36841. {
  36842. name: "Macro+",
  36843. height: math.unit(404, "feet")
  36844. },
  36845. {
  36846. name: "Megamacro",
  36847. height: math.unit(165, "miles")
  36848. },
  36849. {
  36850. name: "Planetary",
  36851. height: math.unit(4600, "miles")
  36852. },
  36853. ]
  36854. ))
  36855. characterMakers.push(() => makeCharacter(
  36856. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36857. {
  36858. front: {
  36859. height: math.unit(10 + 3/12, "feet"),
  36860. weight: math.unit(1500, "lb"),
  36861. name: "Front",
  36862. image: {
  36863. source: "./media/characters/tux-kusanagi/front.svg",
  36864. extra: 944/840,
  36865. bottom: 39/983
  36866. }
  36867. },
  36868. back: {
  36869. height: math.unit(10 + 3/12, "feet"),
  36870. weight: math.unit(1500, "lb"),
  36871. name: "Back",
  36872. image: {
  36873. source: "./media/characters/tux-kusanagi/back.svg",
  36874. extra: 941/842,
  36875. bottom: 28/969
  36876. }
  36877. },
  36878. rump: {
  36879. height: math.unit(5.25, "feet"),
  36880. name: "Rump",
  36881. image: {
  36882. source: "./media/characters/tux-kusanagi/rump.svg"
  36883. }
  36884. },
  36885. beak: {
  36886. height: math.unit(1.54, "feet"),
  36887. name: "Beak",
  36888. image: {
  36889. source: "./media/characters/tux-kusanagi/beak.svg"
  36890. }
  36891. },
  36892. },
  36893. [
  36894. {
  36895. name: "Normal",
  36896. height: math.unit(10 + 3/12, "feet"),
  36897. default: true
  36898. },
  36899. ]
  36900. ))
  36901. characterMakers.push(() => makeCharacter(
  36902. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36903. {
  36904. front: {
  36905. height: math.unit(58, "feet"),
  36906. weight: math.unit(200, "tons"),
  36907. name: "Front",
  36908. image: {
  36909. source: "./media/characters/uzarmazari/front.svg",
  36910. extra: 1575/1455,
  36911. bottom: 152/1727
  36912. }
  36913. },
  36914. back: {
  36915. height: math.unit(58, "feet"),
  36916. weight: math.unit(200, "tons"),
  36917. name: "Back",
  36918. image: {
  36919. source: "./media/characters/uzarmazari/back.svg",
  36920. extra: 1585/1510,
  36921. bottom: 157/1742
  36922. }
  36923. },
  36924. head: {
  36925. height: math.unit(26, "feet"),
  36926. name: "Head",
  36927. image: {
  36928. source: "./media/characters/uzarmazari/head.svg"
  36929. }
  36930. },
  36931. },
  36932. [
  36933. {
  36934. name: "Normal",
  36935. height: math.unit(58, "feet"),
  36936. default: true
  36937. },
  36938. ]
  36939. ))
  36940. characterMakers.push(() => makeCharacter(
  36941. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36942. {
  36943. side: {
  36944. height: math.unit(15, "feet"),
  36945. name: "Side",
  36946. image: {
  36947. source: "./media/characters/akitu/side.svg",
  36948. extra: 1421/1321,
  36949. bottom: 157/1578
  36950. }
  36951. },
  36952. front: {
  36953. height: math.unit(15, "feet"),
  36954. name: "Front",
  36955. image: {
  36956. source: "./media/characters/akitu/front.svg",
  36957. extra: 1435/1326,
  36958. bottom: 232/1667
  36959. }
  36960. },
  36961. },
  36962. [
  36963. {
  36964. name: "Normal",
  36965. height: math.unit(15, "feet"),
  36966. default: true
  36967. },
  36968. ]
  36969. ))
  36970. characterMakers.push(() => makeCharacter(
  36971. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36972. {
  36973. front: {
  36974. height: math.unit(10 + 8/12, "feet"),
  36975. name: "Front",
  36976. image: {
  36977. source: "./media/characters/azalie-croixland/front.svg",
  36978. extra: 1972/1856,
  36979. bottom: 31/2003
  36980. }
  36981. },
  36982. },
  36983. [
  36984. {
  36985. name: "Original Height",
  36986. height: math.unit(5 + 4/12, "feet")
  36987. },
  36988. {
  36989. name: "Normal Height",
  36990. height: math.unit(10 + 8/12, "feet"),
  36991. default: true
  36992. },
  36993. ]
  36994. ))
  36995. characterMakers.push(() => makeCharacter(
  36996. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36997. {
  36998. side: {
  36999. height: math.unit(7 + 1/12, "feet"),
  37000. weight: math.unit(245, "lb"),
  37001. name: "Side",
  37002. image: {
  37003. source: "./media/characters/kavus-kazian/side.svg",
  37004. extra: 349/342,
  37005. bottom: 15/364
  37006. }
  37007. },
  37008. },
  37009. [
  37010. {
  37011. name: "Normal",
  37012. height: math.unit(7 + 1/12, "feet"),
  37013. default: true
  37014. },
  37015. ]
  37016. ))
  37017. characterMakers.push(() => makeCharacter(
  37018. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37019. {
  37020. normalFront: {
  37021. height: math.unit(5 + 11/12, "feet"),
  37022. name: "Front",
  37023. image: {
  37024. source: "./media/characters/moonlight-rose/normal-front.svg",
  37025. extra: 1980/1825,
  37026. bottom: 18/1998
  37027. },
  37028. form: "normal",
  37029. default: true
  37030. },
  37031. normalBack: {
  37032. height: math.unit(5 + 11/12, "feet"),
  37033. name: "Back",
  37034. image: {
  37035. source: "./media/characters/moonlight-rose/normal-back.svg",
  37036. extra: 2010/1839,
  37037. bottom: 10/2020
  37038. },
  37039. form: "normal"
  37040. },
  37041. demonFront: {
  37042. height: math.unit(1.5, "earths"),
  37043. name: "Front",
  37044. image: {
  37045. source: "./media/characters/moonlight-rose/demon.svg",
  37046. extra: 1400/1294,
  37047. bottom: 45/1445
  37048. },
  37049. form: "demon",
  37050. default: true
  37051. },
  37052. terraFront: {
  37053. height: math.unit(1.5, "earths"),
  37054. name: "Front",
  37055. image: {
  37056. source: "./media/characters/moonlight-rose/terra.svg"
  37057. },
  37058. form: "terra",
  37059. default: true
  37060. },
  37061. jupiterFront: {
  37062. height: math.unit(69911*2, "km"),
  37063. name: "Front",
  37064. image: {
  37065. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37066. extra: 1367/1286,
  37067. bottom: 55/1422
  37068. },
  37069. form: "jupiter",
  37070. default: true
  37071. },
  37072. neptuneFront: {
  37073. height: math.unit(24622*2, "feet"),
  37074. name: "Front",
  37075. image: {
  37076. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37077. extra: 1851/1712,
  37078. bottom: 0/1851
  37079. },
  37080. form: "neptune",
  37081. default: true
  37082. },
  37083. },
  37084. [
  37085. {
  37086. name: "\"Natural\" Height",
  37087. height: math.unit(5 + 11/12, "feet"),
  37088. form: "normal"
  37089. },
  37090. {
  37091. name: "Smallest comfortable size",
  37092. height: math.unit(40, "meters"),
  37093. form: "normal"
  37094. },
  37095. {
  37096. name: "Common size",
  37097. height: math.unit(50, "km"),
  37098. form: "normal",
  37099. default: true
  37100. },
  37101. {
  37102. name: "Normal",
  37103. height: math.unit(1.5, "earths"),
  37104. form: "demon",
  37105. default: true
  37106. },
  37107. {
  37108. name: "Universal",
  37109. height: math.unit(15, "universes"),
  37110. form: "demon"
  37111. },
  37112. {
  37113. name: "Earth",
  37114. height: math.unit(1.5, "earths"),
  37115. form: "terra",
  37116. default: true
  37117. },
  37118. {
  37119. name: "Super Earth",
  37120. height: math.unit(67.5, "earths"),
  37121. form: "terra"
  37122. },
  37123. {
  37124. name: "Doesn't fit in a solar system...",
  37125. height: math.unit(1, "galaxy"),
  37126. form: "terra"
  37127. },
  37128. {
  37129. name: "Saturn",
  37130. height: math.unit(58232*2, "km"),
  37131. form: "jupiter"
  37132. },
  37133. {
  37134. name: "Jupiter",
  37135. height: math.unit(69911*2, "km"),
  37136. form: "jupiter",
  37137. default: true
  37138. },
  37139. {
  37140. name: "HD 100546 b",
  37141. height: math.unit(482938, "km"),
  37142. form: "jupiter"
  37143. },
  37144. {
  37145. name: "Enceladus",
  37146. height: math.unit(513*2, "km"),
  37147. form: "neptune"
  37148. },
  37149. {
  37150. name: "Europe",
  37151. height: math.unit(1560*2, "km"),
  37152. form: "neptune"
  37153. },
  37154. {
  37155. name: "Neptune",
  37156. height: math.unit(24622*2, "km"),
  37157. form: "neptune",
  37158. default: true
  37159. },
  37160. {
  37161. name: "CoRoT-9b",
  37162. height: math.unit(75067*2, "km"),
  37163. form: "neptune"
  37164. },
  37165. ],
  37166. {
  37167. "normal": {
  37168. name: "Normal",
  37169. default: true
  37170. },
  37171. "demon": {
  37172. name: "Demon"
  37173. },
  37174. "terra": {
  37175. name: "Terra"
  37176. },
  37177. "jupiter": {
  37178. name: "Jupiter"
  37179. },
  37180. "neptune": {
  37181. name: "Neptune"
  37182. }
  37183. }
  37184. ))
  37185. characterMakers.push(() => makeCharacter(
  37186. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37187. {
  37188. front: {
  37189. height: math.unit(16, "feet"),
  37190. weight: math.unit(610, "kg"),
  37191. name: "Front",
  37192. image: {
  37193. source: "./media/characters/huckle/front.svg",
  37194. extra: 1731/1625,
  37195. bottom: 33/1764
  37196. }
  37197. },
  37198. back: {
  37199. height: math.unit(16, "feet"),
  37200. weight: math.unit(610, "kg"),
  37201. name: "Back",
  37202. image: {
  37203. source: "./media/characters/huckle/back.svg",
  37204. extra: 1738/1651,
  37205. bottom: 37/1775
  37206. }
  37207. },
  37208. laughing: {
  37209. height: math.unit(3.75, "feet"),
  37210. name: "Laughing",
  37211. image: {
  37212. source: "./media/characters/huckle/laughing.svg"
  37213. }
  37214. },
  37215. angry: {
  37216. height: math.unit(4.15, "feet"),
  37217. name: "Angry",
  37218. image: {
  37219. source: "./media/characters/huckle/angry.svg"
  37220. }
  37221. },
  37222. },
  37223. [
  37224. {
  37225. name: "Normal",
  37226. height: math.unit(16, "feet"),
  37227. default: true
  37228. },
  37229. {
  37230. name: "Mini Macro",
  37231. height: math.unit(463, "feet")
  37232. },
  37233. {
  37234. name: "Macro",
  37235. height: math.unit(1680, "meters")
  37236. },
  37237. {
  37238. name: "Mega Macro",
  37239. height: math.unit(175, "km")
  37240. },
  37241. {
  37242. name: "Terra Macro",
  37243. height: math.unit(32, "gigameters")
  37244. },
  37245. {
  37246. name: "Multiverse+",
  37247. height: math.unit(2.56e23, "yottameters")
  37248. },
  37249. ]
  37250. ))
  37251. characterMakers.push(() => makeCharacter(
  37252. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37253. {
  37254. front: {
  37255. height: math.unit(6 + 9/12, "feet"),
  37256. weight: math.unit(280, "lb"),
  37257. name: "Front",
  37258. image: {
  37259. source: "./media/characters/candy/front.svg",
  37260. extra: 234/217,
  37261. bottom: 11/245
  37262. }
  37263. },
  37264. },
  37265. [
  37266. {
  37267. name: "Really Small",
  37268. height: math.unit(0.1, "nm")
  37269. },
  37270. {
  37271. name: "Micro",
  37272. height: math.unit(2, "inches")
  37273. },
  37274. {
  37275. name: "Normal",
  37276. height: math.unit(6 + 9/12, "feet"),
  37277. default: true
  37278. },
  37279. {
  37280. name: "Small Macro",
  37281. height: math.unit(69, "feet")
  37282. },
  37283. {
  37284. name: "Macro",
  37285. height: math.unit(160, "feet")
  37286. },
  37287. {
  37288. name: "Megamacro",
  37289. height: math.unit(22000, "miles")
  37290. },
  37291. {
  37292. name: "Gigamacro",
  37293. height: math.unit(50000, "miles")
  37294. },
  37295. ]
  37296. ))
  37297. characterMakers.push(() => makeCharacter(
  37298. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37299. {
  37300. front: {
  37301. height: math.unit(4, "feet"),
  37302. weight: math.unit(90, "lb"),
  37303. name: "Front",
  37304. image: {
  37305. source: "./media/characters/joey-mcdonald/front.svg",
  37306. extra: 1059/852,
  37307. bottom: 33/1092
  37308. }
  37309. },
  37310. back: {
  37311. height: math.unit(4, "feet"),
  37312. weight: math.unit(90, "lb"),
  37313. name: "Back",
  37314. image: {
  37315. source: "./media/characters/joey-mcdonald/back.svg",
  37316. extra: 1077/879,
  37317. bottom: 5/1082
  37318. }
  37319. },
  37320. frontKobold: {
  37321. height: math.unit(4, "feet"),
  37322. weight: math.unit(100, "lb"),
  37323. name: "Front-kobold",
  37324. image: {
  37325. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37326. extra: 1480/1367,
  37327. bottom: 0/1480
  37328. }
  37329. },
  37330. backKobold: {
  37331. height: math.unit(4, "feet"),
  37332. weight: math.unit(100, "lb"),
  37333. name: "Back-kobold",
  37334. image: {
  37335. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37336. extra: 1449/1361,
  37337. bottom: 0/1449
  37338. }
  37339. },
  37340. },
  37341. [
  37342. {
  37343. name: "Normal",
  37344. height: math.unit(4, "feet"),
  37345. default: true
  37346. },
  37347. ]
  37348. ))
  37349. characterMakers.push(() => makeCharacter(
  37350. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37351. {
  37352. front: {
  37353. height: math.unit(12 + 6/12, "feet"),
  37354. name: "Front",
  37355. image: {
  37356. source: "./media/characters/kass-lockheed/front.svg",
  37357. extra: 354/343,
  37358. bottom: 9/363
  37359. }
  37360. },
  37361. back: {
  37362. height: math.unit(12 + 6/12, "feet"),
  37363. name: "Back",
  37364. image: {
  37365. source: "./media/characters/kass-lockheed/back.svg",
  37366. extra: 364/352,
  37367. bottom: 3/367
  37368. }
  37369. },
  37370. dick: {
  37371. height: math.unit(3.12, "feet"),
  37372. name: "Dick",
  37373. image: {
  37374. source: "./media/characters/kass-lockheed/dick.svg"
  37375. }
  37376. },
  37377. head: {
  37378. height: math.unit(2.6, "feet"),
  37379. name: "Head",
  37380. image: {
  37381. source: "./media/characters/kass-lockheed/head.svg"
  37382. }
  37383. },
  37384. bleh: {
  37385. height: math.unit(2.85, "feet"),
  37386. name: "Bleh",
  37387. image: {
  37388. source: "./media/characters/kass-lockheed/bleh.svg"
  37389. }
  37390. },
  37391. smug: {
  37392. height: math.unit(2.85, "feet"),
  37393. name: "Smug",
  37394. image: {
  37395. source: "./media/characters/kass-lockheed/smug.svg"
  37396. }
  37397. },
  37398. },
  37399. [
  37400. {
  37401. name: "Normal",
  37402. height: math.unit(12 + 6/12, "feet"),
  37403. default: true
  37404. },
  37405. ]
  37406. ))
  37407. characterMakers.push(() => makeCharacter(
  37408. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37409. {
  37410. front: {
  37411. height: math.unit(6 + 2/12, "feet"),
  37412. name: "Front",
  37413. image: {
  37414. source: "./media/characters/taylor/front.svg",
  37415. extra: 639/495,
  37416. bottom: 12/651
  37417. }
  37418. },
  37419. },
  37420. [
  37421. {
  37422. name: "Normal",
  37423. height: math.unit(6 + 2/12, "feet"),
  37424. default: true
  37425. },
  37426. {
  37427. name: "Big",
  37428. height: math.unit(15, "feet")
  37429. },
  37430. {
  37431. name: "Lorg",
  37432. height: math.unit(80, "feet")
  37433. },
  37434. {
  37435. name: "Too Lorg",
  37436. height: math.unit(120, "feet")
  37437. },
  37438. ]
  37439. ))
  37440. characterMakers.push(() => makeCharacter(
  37441. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37442. {
  37443. front: {
  37444. height: math.unit(15, "feet"),
  37445. name: "Front",
  37446. image: {
  37447. source: "./media/characters/kaizer/front.svg",
  37448. extra: 1612/1436,
  37449. bottom: 43/1655
  37450. }
  37451. },
  37452. },
  37453. [
  37454. {
  37455. name: "Normal",
  37456. height: math.unit(15, "feet"),
  37457. default: true
  37458. },
  37459. ]
  37460. ))
  37461. characterMakers.push(() => makeCharacter(
  37462. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37463. {
  37464. front: {
  37465. height: math.unit(2, "feet"),
  37466. weight: math.unit(30, "lb"),
  37467. name: "Front",
  37468. image: {
  37469. source: "./media/characters/sandy/front.svg",
  37470. extra: 1439/1307,
  37471. bottom: 194/1633
  37472. }
  37473. },
  37474. },
  37475. [
  37476. {
  37477. name: "Normal",
  37478. height: math.unit(2, "feet"),
  37479. default: true
  37480. },
  37481. ]
  37482. ))
  37483. characterMakers.push(() => makeCharacter(
  37484. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37485. {
  37486. front: {
  37487. height: math.unit(3, "feet"),
  37488. name: "Front",
  37489. image: {
  37490. source: "./media/characters/mellvi/front.svg",
  37491. extra: 1831/1630,
  37492. bottom: 58/1889
  37493. }
  37494. },
  37495. },
  37496. [
  37497. {
  37498. name: "Normal",
  37499. height: math.unit(3, "feet"),
  37500. default: true
  37501. },
  37502. ]
  37503. ))
  37504. characterMakers.push(() => makeCharacter(
  37505. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37506. {
  37507. front: {
  37508. height: math.unit(5 + 11/12, "feet"),
  37509. weight: math.unit(200, "lb"),
  37510. name: "Front",
  37511. image: {
  37512. source: "./media/characters/shirou/front.svg",
  37513. extra: 2491/2383,
  37514. bottom: 189/2680
  37515. }
  37516. },
  37517. back: {
  37518. height: math.unit(5 + 11/12, "feet"),
  37519. weight: math.unit(200, "lb"),
  37520. name: "Back",
  37521. image: {
  37522. source: "./media/characters/shirou/back.svg",
  37523. extra: 2554/2450,
  37524. bottom: 76/2630
  37525. }
  37526. },
  37527. },
  37528. [
  37529. {
  37530. name: "Normal",
  37531. height: math.unit(5 + 11/12, "feet"),
  37532. default: true
  37533. },
  37534. ]
  37535. ))
  37536. characterMakers.push(() => makeCharacter(
  37537. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37538. {
  37539. front: {
  37540. height: math.unit(6 + 3/12, "feet"),
  37541. weight: math.unit(177, "lb"),
  37542. name: "Front",
  37543. image: {
  37544. source: "./media/characters/noryu/front.svg",
  37545. extra: 973/885,
  37546. bottom: 10/983
  37547. }
  37548. },
  37549. },
  37550. [
  37551. {
  37552. name: "Normal",
  37553. height: math.unit(6 + 3/12, "feet"),
  37554. default: true
  37555. },
  37556. ]
  37557. ))
  37558. characterMakers.push(() => makeCharacter(
  37559. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37560. {
  37561. front: {
  37562. height: math.unit(5 + 6/12, "feet"),
  37563. weight: math.unit(170, "lb"),
  37564. name: "Front",
  37565. image: {
  37566. source: "./media/characters/mevolas-rubenido/front.svg",
  37567. extra: 2109/1901,
  37568. bottom: 96/2205
  37569. }
  37570. },
  37571. },
  37572. [
  37573. {
  37574. name: "Normal",
  37575. height: math.unit(5 + 6/12, "feet"),
  37576. default: true
  37577. },
  37578. ]
  37579. ))
  37580. characterMakers.push(() => makeCharacter(
  37581. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37582. {
  37583. front: {
  37584. height: math.unit(100, "feet"),
  37585. name: "Front",
  37586. image: {
  37587. source: "./media/characters/dee/front.svg",
  37588. extra: 2153/2036,
  37589. bottom: 59/2212
  37590. }
  37591. },
  37592. back: {
  37593. height: math.unit(100, "feet"),
  37594. name: "Back",
  37595. image: {
  37596. source: "./media/characters/dee/back.svg",
  37597. extra: 2183/2058,
  37598. bottom: 75/2258
  37599. }
  37600. },
  37601. foot: {
  37602. height: math.unit(19.43, "feet"),
  37603. name: "Foot",
  37604. image: {
  37605. source: "./media/characters/dee/foot.svg"
  37606. }
  37607. },
  37608. hoof: {
  37609. height: math.unit(20.6, "feet"),
  37610. name: "Hoof",
  37611. image: {
  37612. source: "./media/characters/dee/hoof.svg"
  37613. }
  37614. },
  37615. },
  37616. [
  37617. {
  37618. name: "Macro",
  37619. height: math.unit(100, "feet"),
  37620. default: true
  37621. },
  37622. ]
  37623. ))
  37624. characterMakers.push(() => makeCharacter(
  37625. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37626. {
  37627. front: {
  37628. height: math.unit(5 + 6/12, "feet"),
  37629. name: "Front",
  37630. image: {
  37631. source: "./media/characters/teh/front.svg",
  37632. extra: 1002/847,
  37633. bottom: 62/1064
  37634. }
  37635. },
  37636. },
  37637. [
  37638. {
  37639. name: "Normal",
  37640. height: math.unit(5 + 6/12, "feet"),
  37641. default: true
  37642. },
  37643. ]
  37644. ))
  37645. characterMakers.push(() => makeCharacter(
  37646. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37647. {
  37648. side: {
  37649. height: math.unit(6 + 1/12, "feet"),
  37650. weight: math.unit(204, "lb"),
  37651. name: "Side",
  37652. image: {
  37653. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37654. extra: 974/775,
  37655. bottom: 169/1143
  37656. }
  37657. },
  37658. sitting: {
  37659. height: math.unit(6 + 2/12, "feet"),
  37660. weight: math.unit(204, "lb"),
  37661. name: "Sitting",
  37662. image: {
  37663. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37664. extra: 1175/964,
  37665. bottom: 378/1553
  37666. }
  37667. },
  37668. },
  37669. [
  37670. {
  37671. name: "Normal",
  37672. height: math.unit(6 + 1/12, "feet"),
  37673. default: true
  37674. },
  37675. ]
  37676. ))
  37677. characterMakers.push(() => makeCharacter(
  37678. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37679. {
  37680. front: {
  37681. height: math.unit(6, "inches"),
  37682. name: "Front",
  37683. image: {
  37684. source: "./media/characters/tululi/front.svg",
  37685. extra: 1997/1876,
  37686. bottom: 20/2017
  37687. }
  37688. },
  37689. },
  37690. [
  37691. {
  37692. name: "Normal",
  37693. height: math.unit(6, "inches"),
  37694. default: true
  37695. },
  37696. ]
  37697. ))
  37698. characterMakers.push(() => makeCharacter(
  37699. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37700. {
  37701. front: {
  37702. height: math.unit(4 + 1/12, "feet"),
  37703. name: "Front",
  37704. image: {
  37705. source: "./media/characters/star/front.svg",
  37706. extra: 1493/1189,
  37707. bottom: 48/1541
  37708. }
  37709. },
  37710. },
  37711. [
  37712. {
  37713. name: "Normal",
  37714. height: math.unit(4 + 1/12, "feet"),
  37715. default: true
  37716. },
  37717. ]
  37718. ))
  37719. characterMakers.push(() => makeCharacter(
  37720. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37721. {
  37722. front: {
  37723. height: math.unit(6 + 3/12, "feet"),
  37724. name: "Front",
  37725. image: {
  37726. source: "./media/characters/comet/front.svg",
  37727. extra: 1681/1462,
  37728. bottom: 26/1707
  37729. }
  37730. },
  37731. },
  37732. [
  37733. {
  37734. name: "Normal",
  37735. height: math.unit(6 + 3/12, "feet"),
  37736. default: true
  37737. },
  37738. ]
  37739. ))
  37740. characterMakers.push(() => makeCharacter(
  37741. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37742. {
  37743. front: {
  37744. height: math.unit(950, "feet"),
  37745. name: "Front",
  37746. image: {
  37747. source: "./media/characters/vortex/front.svg",
  37748. extra: 1497/1434,
  37749. bottom: 56/1553
  37750. }
  37751. },
  37752. maw: {
  37753. height: math.unit(285, "feet"),
  37754. name: "Maw",
  37755. image: {
  37756. source: "./media/characters/vortex/maw.svg"
  37757. }
  37758. },
  37759. },
  37760. [
  37761. {
  37762. name: "Macro",
  37763. height: math.unit(950, "feet"),
  37764. default: true
  37765. },
  37766. ]
  37767. ))
  37768. characterMakers.push(() => makeCharacter(
  37769. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37770. {
  37771. front: {
  37772. height: math.unit(600, "feet"),
  37773. weight: math.unit(0.02, "grams"),
  37774. name: "Front",
  37775. image: {
  37776. source: "./media/characters/doodle/front.svg",
  37777. extra: 1578/1413,
  37778. bottom: 37/1615
  37779. }
  37780. },
  37781. },
  37782. [
  37783. {
  37784. name: "Macro",
  37785. height: math.unit(600, "feet"),
  37786. default: true
  37787. },
  37788. ]
  37789. ))
  37790. characterMakers.push(() => makeCharacter(
  37791. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37792. {
  37793. front: {
  37794. height: math.unit(6 + 6/12, "feet"),
  37795. name: "Front",
  37796. image: {
  37797. source: "./media/characters/jai/front.svg",
  37798. extra: 1645/1534,
  37799. bottom: 115/1760
  37800. }
  37801. },
  37802. },
  37803. [
  37804. {
  37805. name: "Normal",
  37806. height: math.unit(6 + 6/12, "feet"),
  37807. default: true
  37808. },
  37809. ]
  37810. ))
  37811. characterMakers.push(() => makeCharacter(
  37812. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37813. {
  37814. front: {
  37815. height: math.unit(6 + 8/12, "feet"),
  37816. name: "Front",
  37817. image: {
  37818. source: "./media/characters/pixel/front.svg",
  37819. extra: 1900/1735,
  37820. bottom: 63/1963
  37821. }
  37822. },
  37823. },
  37824. [
  37825. {
  37826. name: "Normal",
  37827. height: math.unit(6 + 8/12, "feet"),
  37828. default: true
  37829. },
  37830. ]
  37831. ))
  37832. characterMakers.push(() => makeCharacter(
  37833. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37834. {
  37835. back: {
  37836. height: math.unit(4 + 1/12, "feet"),
  37837. weight: math.unit(75, "lb"),
  37838. name: "Back",
  37839. image: {
  37840. source: "./media/characters/rhett/back.svg",
  37841. extra: 930/878,
  37842. bottom: 25/955
  37843. }
  37844. },
  37845. front: {
  37846. height: math.unit(4 + 1/12, "feet"),
  37847. weight: math.unit(75, "lb"),
  37848. name: "Front",
  37849. image: {
  37850. source: "./media/characters/rhett/front.svg",
  37851. extra: 1682/1586,
  37852. bottom: 92/1774
  37853. }
  37854. },
  37855. },
  37856. [
  37857. {
  37858. name: "Micro",
  37859. height: math.unit(8, "inches")
  37860. },
  37861. {
  37862. name: "Tiny",
  37863. height: math.unit(2, "feet")
  37864. },
  37865. {
  37866. name: "Normal",
  37867. height: math.unit(4 + 1/12, "feet"),
  37868. default: true
  37869. },
  37870. ]
  37871. ))
  37872. characterMakers.push(() => makeCharacter(
  37873. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37874. {
  37875. front: {
  37876. height: math.unit(3 + 3/12, "feet"),
  37877. name: "Front",
  37878. image: {
  37879. source: "./media/characters/penny/front.svg",
  37880. extra: 1406/1311,
  37881. bottom: 26/1432
  37882. }
  37883. },
  37884. },
  37885. [
  37886. {
  37887. name: "Normal",
  37888. height: math.unit(3 + 3/12, "feet"),
  37889. default: true
  37890. },
  37891. ]
  37892. ))
  37893. characterMakers.push(() => makeCharacter(
  37894. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37895. {
  37896. front: {
  37897. height: math.unit(4 + 11/12, "feet"),
  37898. name: "Front",
  37899. image: {
  37900. source: "./media/characters/monty/front.svg",
  37901. extra: 1479/1209,
  37902. bottom: 0/1479
  37903. }
  37904. },
  37905. },
  37906. [
  37907. {
  37908. name: "Normal",
  37909. height: math.unit(4 + 11/12, "feet"),
  37910. default: true
  37911. },
  37912. ]
  37913. ))
  37914. characterMakers.push(() => makeCharacter(
  37915. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37916. {
  37917. front: {
  37918. height: math.unit(8 + 4/12, "feet"),
  37919. name: "Front",
  37920. image: {
  37921. source: "./media/characters/sterling/front.svg",
  37922. extra: 1420/1236,
  37923. bottom: 27/1447
  37924. }
  37925. },
  37926. },
  37927. [
  37928. {
  37929. name: "Normal",
  37930. height: math.unit(8 + 4/12, "feet"),
  37931. default: true
  37932. },
  37933. ]
  37934. ))
  37935. characterMakers.push(() => makeCharacter(
  37936. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37937. {
  37938. front: {
  37939. height: math.unit(15, "feet"),
  37940. name: "Front",
  37941. image: {
  37942. source: "./media/characters/marble/front.svg",
  37943. extra: 973/937,
  37944. bottom: 32/1005
  37945. }
  37946. },
  37947. },
  37948. [
  37949. {
  37950. name: "Normal",
  37951. height: math.unit(15, "feet"),
  37952. default: true
  37953. },
  37954. ]
  37955. ))
  37956. characterMakers.push(() => makeCharacter(
  37957. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37958. {
  37959. front: {
  37960. height: math.unit(3, "inches"),
  37961. name: "Front",
  37962. image: {
  37963. source: "./media/characters/powder/front.svg",
  37964. extra: 1504/1334,
  37965. bottom: 518/2022
  37966. }
  37967. },
  37968. },
  37969. [
  37970. {
  37971. name: "Normal",
  37972. height: math.unit(3, "inches"),
  37973. default: true
  37974. },
  37975. ]
  37976. ))
  37977. characterMakers.push(() => makeCharacter(
  37978. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37979. {
  37980. front: {
  37981. height: math.unit(4 + 5/12, "feet"),
  37982. name: "Front",
  37983. image: {
  37984. source: "./media/characters/joey-raccoon/front.svg",
  37985. extra: 1273/1197,
  37986. bottom: 0/1273
  37987. }
  37988. },
  37989. },
  37990. [
  37991. {
  37992. name: "Normal",
  37993. height: math.unit(4 + 5/12, "feet"),
  37994. default: true
  37995. },
  37996. ]
  37997. ))
  37998. characterMakers.push(() => makeCharacter(
  37999. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38000. {
  38001. front: {
  38002. height: math.unit(8 + 4/12, "feet"),
  38003. name: "Front",
  38004. image: {
  38005. source: "./media/characters/vick/front.svg",
  38006. extra: 2187/2118,
  38007. bottom: 47/2234
  38008. }
  38009. },
  38010. },
  38011. [
  38012. {
  38013. name: "Normal",
  38014. height: math.unit(8 + 4/12, "feet"),
  38015. default: true
  38016. },
  38017. ]
  38018. ))
  38019. characterMakers.push(() => makeCharacter(
  38020. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38021. {
  38022. front: {
  38023. height: math.unit(5 + 5/12, "feet"),
  38024. name: "Front",
  38025. image: {
  38026. source: "./media/characters/mitsy/front.svg",
  38027. extra: 1842/1695,
  38028. bottom: 0/1842
  38029. }
  38030. },
  38031. },
  38032. [
  38033. {
  38034. name: "Normal",
  38035. height: math.unit(5 + 5/12, "feet"),
  38036. default: true
  38037. },
  38038. ]
  38039. ))
  38040. characterMakers.push(() => makeCharacter(
  38041. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38042. {
  38043. front: {
  38044. height: math.unit(6 + 3/12, "feet"),
  38045. name: "Front",
  38046. image: {
  38047. source: "./media/characters/silvy/front.svg",
  38048. extra: 1995/1836,
  38049. bottom: 225/2220
  38050. }
  38051. },
  38052. },
  38053. [
  38054. {
  38055. name: "Normal",
  38056. height: math.unit(6 + 3/12, "feet"),
  38057. default: true
  38058. },
  38059. ]
  38060. ))
  38061. characterMakers.push(() => makeCharacter(
  38062. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38063. {
  38064. front: {
  38065. height: math.unit(3 + 8/12, "feet"),
  38066. name: "Front",
  38067. image: {
  38068. source: "./media/characters/rodney/front.svg",
  38069. extra: 1956/1747,
  38070. bottom: 31/1987
  38071. }
  38072. },
  38073. frontDressed: {
  38074. height: math.unit(2.9, "feet"),
  38075. name: "Front (Dressed)",
  38076. image: {
  38077. source: "./media/characters/rodney/front-dressed.svg",
  38078. extra: 1382/1241,
  38079. bottom: 385/1767
  38080. }
  38081. },
  38082. },
  38083. [
  38084. {
  38085. name: "Normal",
  38086. height: math.unit(3 + 8/12, "feet"),
  38087. default: true
  38088. },
  38089. ]
  38090. ))
  38091. characterMakers.push(() => makeCharacter(
  38092. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38093. {
  38094. front: {
  38095. height: math.unit(5 + 9/12, "feet"),
  38096. weight: math.unit(194, "lbs"),
  38097. name: "Front",
  38098. image: {
  38099. source: "./media/characters/zakail-sudekai/front.svg",
  38100. extra: 2696/2533,
  38101. bottom: 248/2944
  38102. }
  38103. },
  38104. maw: {
  38105. height: math.unit(1.35, "feet"),
  38106. name: "Maw",
  38107. image: {
  38108. source: "./media/characters/zakail-sudekai/maw.svg"
  38109. }
  38110. },
  38111. },
  38112. [
  38113. {
  38114. name: "Normal",
  38115. height: math.unit(5 + 9/12, "feet"),
  38116. default: true
  38117. },
  38118. ]
  38119. ))
  38120. characterMakers.push(() => makeCharacter(
  38121. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38122. {
  38123. front: {
  38124. height: math.unit(8 + 4/12, "feet"),
  38125. weight: math.unit(1200, "lb"),
  38126. name: "Front",
  38127. image: {
  38128. source: "./media/characters/eleanor/front.svg",
  38129. extra: 1226/1192,
  38130. bottom: 52/1278
  38131. }
  38132. },
  38133. back: {
  38134. height: math.unit(8 + 4/12, "feet"),
  38135. weight: math.unit(1200, "lb"),
  38136. name: "Back",
  38137. image: {
  38138. source: "./media/characters/eleanor/back.svg",
  38139. extra: 1242/1184,
  38140. bottom: 60/1302
  38141. }
  38142. },
  38143. head: {
  38144. height: math.unit(2.62, "feet"),
  38145. name: "Head",
  38146. image: {
  38147. source: "./media/characters/eleanor/head.svg"
  38148. }
  38149. },
  38150. },
  38151. [
  38152. {
  38153. name: "Normal",
  38154. height: math.unit(8 + 4/12, "feet"),
  38155. default: true
  38156. },
  38157. ]
  38158. ))
  38159. characterMakers.push(() => makeCharacter(
  38160. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38161. {
  38162. front: {
  38163. height: math.unit(8 + 4/12, "feet"),
  38164. weight: math.unit(750, "lb"),
  38165. name: "Front",
  38166. image: {
  38167. source: "./media/characters/tanya/front.svg",
  38168. extra: 1749/1615,
  38169. bottom: 33/1782
  38170. }
  38171. },
  38172. },
  38173. [
  38174. {
  38175. name: "Normal",
  38176. height: math.unit(8 + 4/12, "feet"),
  38177. default: true
  38178. },
  38179. ]
  38180. ))
  38181. characterMakers.push(() => makeCharacter(
  38182. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38183. {
  38184. front: {
  38185. height: math.unit(5, "feet"),
  38186. weight: math.unit(225, "lb"),
  38187. name: "Front",
  38188. image: {
  38189. source: "./media/characters/cindy/front.svg",
  38190. extra: 1320/1250,
  38191. bottom: 42/1362
  38192. }
  38193. },
  38194. frontDressed: {
  38195. height: math.unit(5, "feet"),
  38196. weight: math.unit(225, "lb"),
  38197. name: "Front (Dressed)",
  38198. image: {
  38199. source: "./media/characters/cindy/front-dressed.svg",
  38200. extra: 1320/1250,
  38201. bottom: 42/1362
  38202. }
  38203. },
  38204. back: {
  38205. height: math.unit(5, "feet"),
  38206. weight: math.unit(225, "lb"),
  38207. name: "Back",
  38208. image: {
  38209. source: "./media/characters/cindy/back.svg",
  38210. extra: 1384/1346,
  38211. bottom: 14/1398
  38212. }
  38213. },
  38214. },
  38215. [
  38216. {
  38217. name: "Normal",
  38218. height: math.unit(5, "feet"),
  38219. default: true
  38220. },
  38221. ]
  38222. ))
  38223. characterMakers.push(() => makeCharacter(
  38224. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38225. {
  38226. front: {
  38227. height: math.unit(6 + 9/12, "feet"),
  38228. weight: math.unit(440, "lb"),
  38229. name: "Front",
  38230. image: {
  38231. source: "./media/characters/wilbur-owen/front.svg",
  38232. extra: 1575/1448,
  38233. bottom: 72/1647
  38234. }
  38235. },
  38236. back: {
  38237. height: math.unit(6 + 9/12, "feet"),
  38238. weight: math.unit(440, "lb"),
  38239. name: "Back",
  38240. image: {
  38241. source: "./media/characters/wilbur-owen/back.svg",
  38242. extra: 1578/1445,
  38243. bottom: 36/1614
  38244. }
  38245. },
  38246. },
  38247. [
  38248. {
  38249. name: "Normal",
  38250. height: math.unit(6 + 9/12, "feet"),
  38251. default: true
  38252. },
  38253. ]
  38254. ))
  38255. characterMakers.push(() => makeCharacter(
  38256. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38257. {
  38258. front: {
  38259. height: math.unit(6 + 5/12, "feet"),
  38260. weight: math.unit(650, "lb"),
  38261. name: "Front",
  38262. image: {
  38263. source: "./media/characters/keegan/front.svg",
  38264. extra: 2387/2198,
  38265. bottom: 33/2420
  38266. }
  38267. },
  38268. side: {
  38269. height: math.unit(6 + 5/12, "feet"),
  38270. weight: math.unit(650, "lb"),
  38271. name: "Side",
  38272. image: {
  38273. source: "./media/characters/keegan/side.svg",
  38274. extra: 2390/2202,
  38275. bottom: 47/2437
  38276. }
  38277. },
  38278. back: {
  38279. height: math.unit(6 + 5/12, "feet"),
  38280. weight: math.unit(650, "lb"),
  38281. name: "Back",
  38282. image: {
  38283. source: "./media/characters/keegan/back.svg",
  38284. extra: 2418/2268,
  38285. bottom: 15/2433
  38286. }
  38287. },
  38288. frontSfw: {
  38289. height: math.unit(6 + 5/12, "feet"),
  38290. weight: math.unit(650, "lb"),
  38291. name: "Front (SFW)",
  38292. image: {
  38293. source: "./media/characters/keegan/front-sfw.svg",
  38294. extra: 2387/2198,
  38295. bottom: 33/2420
  38296. }
  38297. },
  38298. beans: {
  38299. height: math.unit(1.85, "feet"),
  38300. name: "Beans",
  38301. image: {
  38302. source: "./media/characters/keegan/beans.svg"
  38303. }
  38304. },
  38305. },
  38306. [
  38307. {
  38308. name: "Normal",
  38309. height: math.unit(6 + 5/12, "feet"),
  38310. default: true
  38311. },
  38312. ]
  38313. ))
  38314. characterMakers.push(() => makeCharacter(
  38315. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38316. {
  38317. front: {
  38318. height: math.unit(9, "feet"),
  38319. name: "Front",
  38320. image: {
  38321. source: "./media/characters/colton/front.svg",
  38322. extra: 1589/1326,
  38323. bottom: 139/1728
  38324. }
  38325. },
  38326. },
  38327. [
  38328. {
  38329. name: "Normal",
  38330. height: math.unit(9, "feet"),
  38331. default: true
  38332. },
  38333. ]
  38334. ))
  38335. characterMakers.push(() => makeCharacter(
  38336. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38337. {
  38338. front: {
  38339. height: math.unit(2 + 9/12, "feet"),
  38340. name: "Front",
  38341. image: {
  38342. source: "./media/characters/bora/front.svg",
  38343. extra: 1265/1250,
  38344. bottom: 24/1289
  38345. }
  38346. },
  38347. },
  38348. [
  38349. {
  38350. name: "Normal",
  38351. height: math.unit(2 + 9/12, "feet"),
  38352. default: true
  38353. },
  38354. ]
  38355. ))
  38356. characterMakers.push(() => makeCharacter(
  38357. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38358. {
  38359. front: {
  38360. height: math.unit(8, "feet"),
  38361. name: "Front",
  38362. image: {
  38363. source: "./media/characters/myu-myu/front.svg",
  38364. extra: 1949/1857,
  38365. bottom: 90/2039
  38366. }
  38367. },
  38368. },
  38369. [
  38370. {
  38371. name: "Normal",
  38372. height: math.unit(8, "feet"),
  38373. default: true
  38374. },
  38375. {
  38376. name: "Big",
  38377. height: math.unit(15, "feet")
  38378. },
  38379. {
  38380. name: "BIG",
  38381. height: math.unit(25, "feet")
  38382. },
  38383. ]
  38384. ))
  38385. characterMakers.push(() => makeCharacter(
  38386. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38387. {
  38388. side: {
  38389. height: math.unit(7 + 5/12, "feet"),
  38390. weight: math.unit(2800, "lb"),
  38391. name: "Side",
  38392. image: {
  38393. source: "./media/characters/haloren/side.svg",
  38394. extra: 1793/409,
  38395. bottom: 59/1852
  38396. }
  38397. },
  38398. frontPaw: {
  38399. height: math.unit(2.36, "feet"),
  38400. name: "Front paw",
  38401. image: {
  38402. source: "./media/characters/haloren/front-paw.svg"
  38403. }
  38404. },
  38405. hindPaw: {
  38406. height: math.unit(3.18, "feet"),
  38407. name: "Hind paw",
  38408. image: {
  38409. source: "./media/characters/haloren/hind-paw.svg"
  38410. }
  38411. },
  38412. maw: {
  38413. height: math.unit(5.05, "feet"),
  38414. name: "Maw",
  38415. image: {
  38416. source: "./media/characters/haloren/maw.svg"
  38417. }
  38418. },
  38419. dick: {
  38420. height: math.unit(2.90, "feet"),
  38421. name: "Dick",
  38422. image: {
  38423. source: "./media/characters/haloren/dick.svg"
  38424. }
  38425. },
  38426. },
  38427. [
  38428. {
  38429. name: "Normal",
  38430. height: math.unit(7 + 5/12, "feet"),
  38431. default: true
  38432. },
  38433. {
  38434. name: "Enhanced",
  38435. height: math.unit(14 + 3/12, "feet")
  38436. },
  38437. ]
  38438. ))
  38439. characterMakers.push(() => makeCharacter(
  38440. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38441. {
  38442. front: {
  38443. height: math.unit(171, "cm"),
  38444. name: "Front",
  38445. image: {
  38446. source: "./media/characters/kimmy/front.svg",
  38447. extra: 1491/1435,
  38448. bottom: 53/1544
  38449. }
  38450. },
  38451. },
  38452. [
  38453. {
  38454. name: "Small",
  38455. height: math.unit(9, "cm")
  38456. },
  38457. {
  38458. name: "Normal",
  38459. height: math.unit(171, "cm"),
  38460. default: true
  38461. },
  38462. ]
  38463. ))
  38464. characterMakers.push(() => makeCharacter(
  38465. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38466. {
  38467. front: {
  38468. height: math.unit(8, "feet"),
  38469. weight: math.unit(300, "lb"),
  38470. name: "Front",
  38471. image: {
  38472. source: "./media/characters/galeboomer/front.svg",
  38473. extra: 4651/4415,
  38474. bottom: 162/4813
  38475. }
  38476. },
  38477. back: {
  38478. height: math.unit(8, "feet"),
  38479. weight: math.unit(300, "lb"),
  38480. name: "Back",
  38481. image: {
  38482. source: "./media/characters/galeboomer/back.svg",
  38483. extra: 4544/4314,
  38484. bottom: 16/4560
  38485. }
  38486. },
  38487. frontAlt: {
  38488. height: math.unit(8, "feet"),
  38489. weight: math.unit(300, "lb"),
  38490. name: "Front (Alt)",
  38491. image: {
  38492. source: "./media/characters/galeboomer/front-alt.svg",
  38493. extra: 4458/4228,
  38494. bottom: 68/4526
  38495. }
  38496. },
  38497. maw: {
  38498. height: math.unit(1.2, "feet"),
  38499. name: "Maw",
  38500. image: {
  38501. source: "./media/characters/galeboomer/maw.svg"
  38502. }
  38503. },
  38504. },
  38505. [
  38506. {
  38507. name: "Normal",
  38508. height: math.unit(8, "feet"),
  38509. default: true
  38510. },
  38511. ]
  38512. ))
  38513. characterMakers.push(() => makeCharacter(
  38514. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38515. {
  38516. front: {
  38517. height: math.unit(5 + 9/12, "feet"),
  38518. weight: math.unit(120, "lb"),
  38519. name: "Front",
  38520. image: {
  38521. source: "./media/characters/chyr/front.svg",
  38522. extra: 1323/1254,
  38523. bottom: 63/1386
  38524. }
  38525. },
  38526. back: {
  38527. height: math.unit(5 + 9/12, "feet"),
  38528. weight: math.unit(120, "lb"),
  38529. name: "Back",
  38530. image: {
  38531. source: "./media/characters/chyr/back.svg",
  38532. extra: 1323/1252,
  38533. bottom: 48/1371
  38534. }
  38535. },
  38536. },
  38537. [
  38538. {
  38539. name: "Normal",
  38540. height: math.unit(5 + 9/12, "feet"),
  38541. default: true
  38542. },
  38543. ]
  38544. ))
  38545. characterMakers.push(() => makeCharacter(
  38546. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38547. {
  38548. front: {
  38549. height: math.unit(7, "feet"),
  38550. weight: math.unit(310, "lb"),
  38551. name: "Front",
  38552. image: {
  38553. source: "./media/characters/solarus/front.svg",
  38554. extra: 2415/2021,
  38555. bottom: 103/2518
  38556. }
  38557. },
  38558. back: {
  38559. height: math.unit(7, "feet"),
  38560. weight: math.unit(310, "lb"),
  38561. name: "Back",
  38562. image: {
  38563. source: "./media/characters/solarus/back.svg",
  38564. extra: 2463/2089,
  38565. bottom: 79/2542
  38566. }
  38567. },
  38568. },
  38569. [
  38570. {
  38571. name: "Normal",
  38572. height: math.unit(7, "feet"),
  38573. default: true
  38574. },
  38575. ]
  38576. ))
  38577. characterMakers.push(() => makeCharacter(
  38578. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38579. {
  38580. front: {
  38581. height: math.unit(16, "feet"),
  38582. name: "Front",
  38583. image: {
  38584. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38585. extra: 1844/1780,
  38586. bottom: 58/1902
  38587. }
  38588. },
  38589. winterCoat: {
  38590. height: math.unit(16, "feet"),
  38591. name: "Winter Coat",
  38592. image: {
  38593. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38594. extra: 1807/1775,
  38595. bottom: 69/1876
  38596. }
  38597. },
  38598. },
  38599. [
  38600. {
  38601. name: "Normal",
  38602. height: math.unit(16, "feet"),
  38603. default: true
  38604. },
  38605. {
  38606. name: "Chicago Size",
  38607. height: math.unit(560, "feet")
  38608. },
  38609. ]
  38610. ))
  38611. characterMakers.push(() => makeCharacter(
  38612. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38613. {
  38614. front: {
  38615. height: math.unit(11 + 6/12, "feet"),
  38616. weight: math.unit(1366, "lb"),
  38617. name: "Front",
  38618. image: {
  38619. source: "./media/characters/lexor/front.svg",
  38620. extra: 1560/1481,
  38621. bottom: 211/1771
  38622. }
  38623. },
  38624. back: {
  38625. height: math.unit(11 + 6/12, "feet"),
  38626. weight: math.unit(1366, "lb"),
  38627. name: "Back",
  38628. image: {
  38629. source: "./media/characters/lexor/back.svg",
  38630. extra: 1614/1533,
  38631. bottom: 76/1690
  38632. }
  38633. },
  38634. maw: {
  38635. height: math.unit(3, "feet"),
  38636. name: "Maw",
  38637. image: {
  38638. source: "./media/characters/lexor/maw.svg"
  38639. }
  38640. },
  38641. dick: {
  38642. height: math.unit(2.59, "feet"),
  38643. name: "Dick",
  38644. image: {
  38645. source: "./media/characters/lexor/dick.svg"
  38646. }
  38647. },
  38648. },
  38649. [
  38650. {
  38651. name: "Normal",
  38652. height: math.unit(11 + 6/12, "feet"),
  38653. default: true
  38654. },
  38655. ]
  38656. ))
  38657. characterMakers.push(() => makeCharacter(
  38658. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38659. {
  38660. front: {
  38661. height: math.unit(5 + 8/12, "feet"),
  38662. name: "Front",
  38663. image: {
  38664. source: "./media/characters/magnum/front.svg",
  38665. extra: 942/855,
  38666. bottom: 26/968
  38667. }
  38668. },
  38669. },
  38670. [
  38671. {
  38672. name: "Normal",
  38673. height: math.unit(5 + 8/12, "feet"),
  38674. default: true
  38675. },
  38676. ]
  38677. ))
  38678. characterMakers.push(() => makeCharacter(
  38679. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38680. {
  38681. front: {
  38682. height: math.unit(18 + 4/12, "feet"),
  38683. weight: math.unit(1500, "kg"),
  38684. name: "Front",
  38685. image: {
  38686. source: "./media/characters/solas-sharpsman/front.svg",
  38687. extra: 1698/1589,
  38688. bottom: 0/1698
  38689. }
  38690. },
  38691. },
  38692. [
  38693. {
  38694. name: "Normal",
  38695. height: math.unit(18 + 4/12, "feet"),
  38696. default: true
  38697. },
  38698. ]
  38699. ))
  38700. characterMakers.push(() => makeCharacter(
  38701. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38702. {
  38703. front: {
  38704. height: math.unit(5 + 5/12, "feet"),
  38705. weight: math.unit(180, "lb"),
  38706. name: "Front",
  38707. image: {
  38708. source: "./media/characters/october/front.svg",
  38709. extra: 1800/1650,
  38710. bottom: 0/1800
  38711. }
  38712. },
  38713. frontNsfw: {
  38714. height: math.unit(5 + 5/12, "feet"),
  38715. weight: math.unit(180, "lb"),
  38716. name: "Front (NSFW)",
  38717. image: {
  38718. source: "./media/characters/october/front-nsfw.svg",
  38719. extra: 1392/1307,
  38720. bottom: 42/1434
  38721. }
  38722. },
  38723. },
  38724. [
  38725. {
  38726. name: "Normal",
  38727. height: math.unit(5 + 5/12, "feet"),
  38728. default: true
  38729. },
  38730. ]
  38731. ))
  38732. characterMakers.push(() => makeCharacter(
  38733. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38734. {
  38735. front: {
  38736. height: math.unit(8 + 6/12, "feet"),
  38737. name: "Front",
  38738. image: {
  38739. source: "./media/characters/essynkardi/front.svg",
  38740. extra: 1914/1846,
  38741. bottom: 22/1936
  38742. }
  38743. },
  38744. },
  38745. [
  38746. {
  38747. name: "Normal",
  38748. height: math.unit(8 + 6/12, "feet"),
  38749. default: true
  38750. },
  38751. ]
  38752. ))
  38753. characterMakers.push(() => makeCharacter(
  38754. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38755. {
  38756. front: {
  38757. height: math.unit(6 + 6/12, "feet"),
  38758. weight: math.unit(7, "lb"),
  38759. name: "Front",
  38760. image: {
  38761. source: "./media/characters/icky/front.svg",
  38762. extra: 813/782,
  38763. bottom: 66/879
  38764. }
  38765. },
  38766. back: {
  38767. height: math.unit(6 + 6/12, "feet"),
  38768. weight: math.unit(7, "lb"),
  38769. name: "Back",
  38770. image: {
  38771. source: "./media/characters/icky/back.svg",
  38772. extra: 754/735,
  38773. bottom: 56/810
  38774. }
  38775. },
  38776. },
  38777. [
  38778. {
  38779. name: "Normal",
  38780. height: math.unit(6 + 6/12, "feet"),
  38781. default: true
  38782. },
  38783. ]
  38784. ))
  38785. characterMakers.push(() => makeCharacter(
  38786. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38787. {
  38788. front: {
  38789. height: math.unit(15, "feet"),
  38790. name: "Front",
  38791. image: {
  38792. source: "./media/characters/rojas/front.svg",
  38793. extra: 1462/1408,
  38794. bottom: 95/1557
  38795. }
  38796. },
  38797. back: {
  38798. height: math.unit(15, "feet"),
  38799. name: "Back",
  38800. image: {
  38801. source: "./media/characters/rojas/back.svg",
  38802. extra: 1023/954,
  38803. bottom: 28/1051
  38804. }
  38805. },
  38806. },
  38807. [
  38808. {
  38809. name: "Normal",
  38810. height: math.unit(15, "feet"),
  38811. default: true
  38812. },
  38813. ]
  38814. ))
  38815. characterMakers.push(() => makeCharacter(
  38816. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38817. {
  38818. frontHuman: {
  38819. height: math.unit(5 + 7/12, "feet"),
  38820. name: "Front (Human)",
  38821. image: {
  38822. source: "./media/characters/alek-dryagan/front-human.svg",
  38823. extra: 1687/1667,
  38824. bottom: 69/1756
  38825. }
  38826. },
  38827. backHuman: {
  38828. height: math.unit(5 + 7/12, "feet"),
  38829. name: "Back (Human)",
  38830. image: {
  38831. source: "./media/characters/alek-dryagan/back-human.svg",
  38832. extra: 1670/1649,
  38833. bottom: 65/1735
  38834. }
  38835. },
  38836. frontDemi: {
  38837. height: math.unit(65, "feet"),
  38838. name: "Front (Demi)",
  38839. image: {
  38840. source: "./media/characters/alek-dryagan/front-demi.svg",
  38841. extra: 1669/1642,
  38842. bottom: 49/1718
  38843. }
  38844. },
  38845. backDemi: {
  38846. height: math.unit(65, "feet"),
  38847. name: "Back (Demi)",
  38848. image: {
  38849. source: "./media/characters/alek-dryagan/back-demi.svg",
  38850. extra: 1658/1637,
  38851. bottom: 40/1698
  38852. }
  38853. },
  38854. mawHuman: {
  38855. height: math.unit(0.3, "feet"),
  38856. name: "Maw (Human)",
  38857. image: {
  38858. source: "./media/characters/alek-dryagan/maw-human.svg"
  38859. }
  38860. },
  38861. mawDemi: {
  38862. height: math.unit(3.8, "feet"),
  38863. name: "Maw (Demi)",
  38864. image: {
  38865. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38866. }
  38867. },
  38868. },
  38869. [
  38870. {
  38871. name: "Normal",
  38872. height: math.unit(5 + 7/12, "feet"),
  38873. default: true
  38874. },
  38875. ]
  38876. ))
  38877. characterMakers.push(() => makeCharacter(
  38878. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38879. {
  38880. frontHuman: {
  38881. height: math.unit(5 + 2/12, "feet"),
  38882. name: "Front (Human)",
  38883. image: {
  38884. source: "./media/characters/gen/front-human.svg",
  38885. extra: 1627/1538,
  38886. bottom: 71/1698
  38887. }
  38888. },
  38889. backHuman: {
  38890. height: math.unit(5 + 2/12, "feet"),
  38891. name: "Back (Human)",
  38892. image: {
  38893. source: "./media/characters/gen/back-human.svg",
  38894. extra: 1638/1548,
  38895. bottom: 69/1707
  38896. }
  38897. },
  38898. frontDemi: {
  38899. height: math.unit(5 + 2/12, "feet"),
  38900. name: "Front (Demi)",
  38901. image: {
  38902. source: "./media/characters/gen/front-demi.svg",
  38903. extra: 1627/1538,
  38904. bottom: 71/1698
  38905. }
  38906. },
  38907. backDemi: {
  38908. height: math.unit(5 + 2/12, "feet"),
  38909. name: "Back (Demi)",
  38910. image: {
  38911. source: "./media/characters/gen/back-demi.svg",
  38912. extra: 1638/1548,
  38913. bottom: 69/1707
  38914. }
  38915. },
  38916. },
  38917. [
  38918. {
  38919. name: "Normal",
  38920. height: math.unit(5 + 2/12, "feet"),
  38921. default: true
  38922. },
  38923. ]
  38924. ))
  38925. characterMakers.push(() => makeCharacter(
  38926. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38927. {
  38928. frontImp: {
  38929. height: math.unit(1 + 11/12, "feet"),
  38930. name: "Front (Imp)",
  38931. image: {
  38932. source: "./media/characters/max-kobold/front-imp.svg",
  38933. extra: 1238/1134,
  38934. bottom: 81/1319
  38935. }
  38936. },
  38937. backImp: {
  38938. height: math.unit(1 + 11/12, "feet"),
  38939. name: "Back (Imp)",
  38940. image: {
  38941. source: "./media/characters/max-kobold/back-imp.svg",
  38942. extra: 1334/1175,
  38943. bottom: 34/1368
  38944. }
  38945. },
  38946. frontDemi: {
  38947. height: math.unit(5 + 9/12, "feet"),
  38948. name: "Front (Demi)",
  38949. image: {
  38950. source: "./media/characters/max-kobold/front-demi.svg",
  38951. extra: 1715/1685,
  38952. bottom: 54/1769
  38953. }
  38954. },
  38955. backDemi: {
  38956. height: math.unit(5 + 9/12, "feet"),
  38957. name: "Back (Demi)",
  38958. image: {
  38959. source: "./media/characters/max-kobold/back-demi.svg",
  38960. extra: 1752/1729,
  38961. bottom: 41/1793
  38962. }
  38963. },
  38964. handImp: {
  38965. height: math.unit(0.45, "feet"),
  38966. name: "Hand (Imp)",
  38967. image: {
  38968. source: "./media/characters/max-kobold/hand.svg"
  38969. }
  38970. },
  38971. pawImp: {
  38972. height: math.unit(0.46, "feet"),
  38973. name: "Paw (Imp)",
  38974. image: {
  38975. source: "./media/characters/max-kobold/paw.svg"
  38976. }
  38977. },
  38978. handDemi: {
  38979. height: math.unit(0.80, "feet"),
  38980. name: "Hand (Demi)",
  38981. image: {
  38982. source: "./media/characters/max-kobold/hand.svg"
  38983. }
  38984. },
  38985. pawDemi: {
  38986. height: math.unit(1.1, "feet"),
  38987. name: "Paw (Demi)",
  38988. image: {
  38989. source: "./media/characters/max-kobold/paw.svg"
  38990. }
  38991. },
  38992. headImp: {
  38993. height: math.unit(1.33, "feet"),
  38994. name: "Head (Imp)",
  38995. image: {
  38996. source: "./media/characters/max-kobold/head-imp.svg"
  38997. }
  38998. },
  38999. mawImp: {
  39000. height: math.unit(0.75, "feet"),
  39001. name: "Maw (Imp)",
  39002. image: {
  39003. source: "./media/characters/max-kobold/maw-imp.svg"
  39004. }
  39005. },
  39006. mawDemi: {
  39007. height: math.unit(0.42, "feet"),
  39008. name: "Maw (Demi)",
  39009. image: {
  39010. source: "./media/characters/max-kobold/maw-demi.svg"
  39011. }
  39012. },
  39013. },
  39014. [
  39015. {
  39016. name: "Normal",
  39017. height: math.unit(1 + 11/12, "feet"),
  39018. default: true
  39019. },
  39020. ]
  39021. ))
  39022. characterMakers.push(() => makeCharacter(
  39023. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39024. {
  39025. front: {
  39026. height: math.unit(7 + 5/12, "feet"),
  39027. name: "Front",
  39028. image: {
  39029. source: "./media/characters/carbon/front.svg",
  39030. extra: 1754/1689,
  39031. bottom: 65/1819
  39032. }
  39033. },
  39034. back: {
  39035. height: math.unit(7 + 5/12, "feet"),
  39036. name: "Back",
  39037. image: {
  39038. source: "./media/characters/carbon/back.svg",
  39039. extra: 1762/1695,
  39040. bottom: 24/1786
  39041. }
  39042. },
  39043. frontGigantamax: {
  39044. height: math.unit(150, "feet"),
  39045. name: "Front (Gigantamax)",
  39046. image: {
  39047. source: "./media/characters/carbon/front-gigantamax.svg",
  39048. extra: 1826/1669,
  39049. bottom: 59/1885
  39050. }
  39051. },
  39052. backGigantamax: {
  39053. height: math.unit(150, "feet"),
  39054. name: "Back (Gigantamax)",
  39055. image: {
  39056. source: "./media/characters/carbon/back-gigantamax.svg",
  39057. extra: 1796/1653,
  39058. bottom: 53/1849
  39059. }
  39060. },
  39061. maw: {
  39062. height: math.unit(0.48, "feet"),
  39063. name: "Maw",
  39064. image: {
  39065. source: "./media/characters/carbon/maw.svg"
  39066. }
  39067. },
  39068. mawGigantamax: {
  39069. height: math.unit(7.5, "feet"),
  39070. name: "Maw (Gigantamax)",
  39071. image: {
  39072. source: "./media/characters/carbon/maw-gigantamax.svg"
  39073. }
  39074. },
  39075. },
  39076. [
  39077. {
  39078. name: "Normal",
  39079. height: math.unit(7 + 5/12, "feet"),
  39080. default: true
  39081. },
  39082. ]
  39083. ))
  39084. characterMakers.push(() => makeCharacter(
  39085. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39086. {
  39087. front: {
  39088. height: math.unit(6, "feet"),
  39089. name: "Front",
  39090. image: {
  39091. source: "./media/characters/maverick/front.svg",
  39092. extra: 1672/1661,
  39093. bottom: 85/1757
  39094. }
  39095. },
  39096. back: {
  39097. height: math.unit(6, "feet"),
  39098. name: "Back",
  39099. image: {
  39100. source: "./media/characters/maverick/back.svg",
  39101. extra: 1642/1631,
  39102. bottom: 38/1680
  39103. }
  39104. },
  39105. },
  39106. [
  39107. {
  39108. name: "Normal",
  39109. height: math.unit(6, "feet"),
  39110. default: true
  39111. },
  39112. ]
  39113. ))
  39114. characterMakers.push(() => makeCharacter(
  39115. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39116. {
  39117. front: {
  39118. height: math.unit(15, "feet"),
  39119. weight: math.unit(615, "lb"),
  39120. name: "Front",
  39121. image: {
  39122. source: "./media/characters/grockle/front.svg",
  39123. extra: 1535/1427,
  39124. bottom: 56/1591
  39125. }
  39126. },
  39127. },
  39128. [
  39129. {
  39130. name: "Normal",
  39131. height: math.unit(15, "feet"),
  39132. default: true
  39133. },
  39134. {
  39135. name: "Large",
  39136. height: math.unit(150, "feet")
  39137. },
  39138. {
  39139. name: "Macro",
  39140. height: math.unit(1876, "feet")
  39141. },
  39142. {
  39143. name: "Mega Macro",
  39144. height: math.unit(121940, "feet")
  39145. },
  39146. {
  39147. name: "Giga Macro",
  39148. height: math.unit(750, "km")
  39149. },
  39150. {
  39151. name: "Tera Macro",
  39152. height: math.unit(750000, "km")
  39153. },
  39154. {
  39155. name: "Galactic",
  39156. height: math.unit(1.4e5, "km")
  39157. },
  39158. {
  39159. name: "Godlike",
  39160. height: math.unit(9.8e280, "galaxies")
  39161. },
  39162. ]
  39163. ))
  39164. characterMakers.push(() => makeCharacter(
  39165. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39166. {
  39167. front: {
  39168. height: math.unit(11, "meters"),
  39169. weight: math.unit(20, "tonnes"),
  39170. name: "Front",
  39171. image: {
  39172. source: "./media/characters/alistair/front.svg",
  39173. extra: 1265/1009,
  39174. bottom: 93/1358
  39175. }
  39176. },
  39177. },
  39178. [
  39179. {
  39180. name: "Normal",
  39181. height: math.unit(11, "meters"),
  39182. default: true
  39183. },
  39184. ]
  39185. ))
  39186. characterMakers.push(() => makeCharacter(
  39187. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39188. {
  39189. front: {
  39190. height: math.unit(5 + 8/12, "feet"),
  39191. name: "Front",
  39192. image: {
  39193. source: "./media/characters/haruka/front.svg",
  39194. extra: 2012/1952,
  39195. bottom: 0/2012
  39196. }
  39197. },
  39198. },
  39199. [
  39200. {
  39201. name: "Normal",
  39202. height: math.unit(5 + 8/12, "feet"),
  39203. default: true
  39204. },
  39205. ]
  39206. ))
  39207. characterMakers.push(() => makeCharacter(
  39208. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39209. {
  39210. back: {
  39211. height: math.unit(9, "feet"),
  39212. name: "Back",
  39213. image: {
  39214. source: "./media/characters/vivian-sylveon/back.svg",
  39215. extra: 1853/1714,
  39216. bottom: 0/1853
  39217. }
  39218. },
  39219. },
  39220. [
  39221. {
  39222. name: "Normal",
  39223. height: math.unit(9, "feet"),
  39224. default: true
  39225. },
  39226. {
  39227. name: "Macro",
  39228. height: math.unit(500, "feet")
  39229. },
  39230. {
  39231. name: "Megamacro",
  39232. height: math.unit(600, "miles")
  39233. },
  39234. {
  39235. name: "Gigamacro",
  39236. height: math.unit(30000, "miles")
  39237. },
  39238. ]
  39239. ))
  39240. characterMakers.push(() => makeCharacter(
  39241. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39242. {
  39243. anthro: {
  39244. height: math.unit(5 + 10/12, "feet"),
  39245. weight: math.unit(100, "lb"),
  39246. name: "Anthro",
  39247. image: {
  39248. source: "./media/characters/daiki/anthro.svg",
  39249. extra: 1115/1027,
  39250. bottom: 69/1184
  39251. }
  39252. },
  39253. feral: {
  39254. height: math.unit(200, "feet"),
  39255. name: "Feral",
  39256. image: {
  39257. source: "./media/characters/daiki/feral.svg",
  39258. extra: 1256/313,
  39259. bottom: 39/1295
  39260. }
  39261. },
  39262. feralHead: {
  39263. height: math.unit(171, "feet"),
  39264. name: "Feral Head",
  39265. image: {
  39266. source: "./media/characters/daiki/feral-head.svg"
  39267. }
  39268. },
  39269. manaDragon: {
  39270. height: math.unit(170, "meters"),
  39271. name: "Mana-dragon",
  39272. image: {
  39273. source: "./media/characters/daiki/mana-dragon.svg",
  39274. extra: 763/420,
  39275. bottom: 97/860
  39276. }
  39277. },
  39278. },
  39279. [
  39280. {
  39281. name: "Normal",
  39282. height: math.unit(5 + 10/12, "feet"),
  39283. default: true
  39284. },
  39285. ]
  39286. ))
  39287. characterMakers.push(() => makeCharacter(
  39288. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39289. {
  39290. fullyEquippedFront: {
  39291. height: math.unit(3 + 1/12, "feet"),
  39292. weight: math.unit(24, "lb"),
  39293. name: "Fully Equipped (Front)",
  39294. image: {
  39295. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39296. extra: 687/605,
  39297. bottom: 18/705
  39298. }
  39299. },
  39300. fullyEquippedBack: {
  39301. height: math.unit(3 + 1/12, "feet"),
  39302. weight: math.unit(24, "lb"),
  39303. name: "Fully Equipped (Back)",
  39304. image: {
  39305. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39306. extra: 689/590,
  39307. bottom: 18/707
  39308. }
  39309. },
  39310. dailyWear: {
  39311. height: math.unit(3 + 1/12, "feet"),
  39312. weight: math.unit(24, "lb"),
  39313. name: "Daily Wear",
  39314. image: {
  39315. source: "./media/characters/tea-spot/daily-wear.svg",
  39316. extra: 701/620,
  39317. bottom: 21/722
  39318. }
  39319. },
  39320. maidWork: {
  39321. height: math.unit(3 + 1/12, "feet"),
  39322. weight: math.unit(24, "lb"),
  39323. name: "Maid Work",
  39324. image: {
  39325. source: "./media/characters/tea-spot/maid-work.svg",
  39326. extra: 693/609,
  39327. bottom: 15/708
  39328. }
  39329. },
  39330. },
  39331. [
  39332. {
  39333. name: "Normal",
  39334. height: math.unit(3 + 1/12, "feet"),
  39335. default: true
  39336. },
  39337. ]
  39338. ))
  39339. characterMakers.push(() => makeCharacter(
  39340. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39341. {
  39342. front: {
  39343. height: math.unit(175, "cm"),
  39344. weight: math.unit(75, "kg"),
  39345. name: "Front",
  39346. image: {
  39347. source: "./media/characters/chee/front.svg",
  39348. extra: 1796/1740,
  39349. bottom: 40/1836
  39350. }
  39351. },
  39352. },
  39353. [
  39354. {
  39355. name: "Micro-Micro",
  39356. height: math.unit(1, "nm")
  39357. },
  39358. {
  39359. name: "Micro-erst",
  39360. height: math.unit(1, "micrometer")
  39361. },
  39362. {
  39363. name: "Micro-er",
  39364. height: math.unit(1, "cm")
  39365. },
  39366. {
  39367. name: "Normal",
  39368. height: math.unit(175, "cm"),
  39369. default: true
  39370. },
  39371. {
  39372. name: "Macro",
  39373. height: math.unit(100, "m")
  39374. },
  39375. {
  39376. name: "Macro-er",
  39377. height: math.unit(1, "km")
  39378. },
  39379. {
  39380. name: "Macro-erst",
  39381. height: math.unit(10, "km")
  39382. },
  39383. {
  39384. name: "Macro-Macro",
  39385. height: math.unit(100, "km")
  39386. },
  39387. ]
  39388. ))
  39389. characterMakers.push(() => makeCharacter(
  39390. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39391. {
  39392. front: {
  39393. height: math.unit(11 + 9/12, "feet"),
  39394. weight: math.unit(935, "lb"),
  39395. name: "Front",
  39396. image: {
  39397. source: "./media/characters/kingsley/front.svg",
  39398. extra: 1803/1674,
  39399. bottom: 127/1930
  39400. }
  39401. },
  39402. frontNude: {
  39403. height: math.unit(11 + 9/12, "feet"),
  39404. weight: math.unit(935, "lb"),
  39405. name: "Front (Nude)",
  39406. image: {
  39407. source: "./media/characters/kingsley/front-nude.svg",
  39408. extra: 1803/1674,
  39409. bottom: 127/1930
  39410. }
  39411. },
  39412. },
  39413. [
  39414. {
  39415. name: "Normal",
  39416. height: math.unit(11 + 9/12, "feet"),
  39417. default: true
  39418. },
  39419. ]
  39420. ))
  39421. characterMakers.push(() => makeCharacter(
  39422. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39423. {
  39424. side: {
  39425. height: math.unit(9, "feet"),
  39426. name: "Side",
  39427. image: {
  39428. source: "./media/characters/rymel/side.svg",
  39429. extra: 792/469,
  39430. bottom: 121/913
  39431. }
  39432. },
  39433. maw: {
  39434. height: math.unit(2.4, "meters"),
  39435. name: "Maw",
  39436. image: {
  39437. source: "./media/characters/rymel/maw.svg"
  39438. }
  39439. },
  39440. },
  39441. [
  39442. {
  39443. name: "House Drake",
  39444. height: math.unit(2, "feet")
  39445. },
  39446. {
  39447. name: "Reduced",
  39448. height: math.unit(4.5, "feet")
  39449. },
  39450. {
  39451. name: "Normal",
  39452. height: math.unit(9, "feet"),
  39453. default: true
  39454. },
  39455. ]
  39456. ))
  39457. characterMakers.push(() => makeCharacter(
  39458. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39459. {
  39460. front: {
  39461. height: math.unit(1.74, "meters"),
  39462. weight: math.unit(55, "kg"),
  39463. name: "Front",
  39464. image: {
  39465. source: "./media/characters/rubus/front.svg",
  39466. extra: 1894/1742,
  39467. bottom: 44/1938
  39468. }
  39469. },
  39470. },
  39471. [
  39472. {
  39473. name: "Normal",
  39474. height: math.unit(1.74, "meters"),
  39475. default: true
  39476. },
  39477. ]
  39478. ))
  39479. characterMakers.push(() => makeCharacter(
  39480. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39481. {
  39482. front: {
  39483. height: math.unit(5 + 2/12, "feet"),
  39484. weight: math.unit(112, "lb"),
  39485. name: "Front",
  39486. image: {
  39487. source: "./media/characters/cassie-kingston/front.svg",
  39488. extra: 1438/1390,
  39489. bottom: 47/1485
  39490. }
  39491. },
  39492. },
  39493. [
  39494. {
  39495. name: "Normal",
  39496. height: math.unit(5 + 2/12, "feet"),
  39497. default: true
  39498. },
  39499. {
  39500. name: "Macro",
  39501. height: math.unit(128, "feet")
  39502. },
  39503. {
  39504. name: "Megamacro",
  39505. height: math.unit(2.56, "miles")
  39506. },
  39507. ]
  39508. ))
  39509. characterMakers.push(() => makeCharacter(
  39510. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39511. {
  39512. front: {
  39513. height: math.unit(7, "feet"),
  39514. name: "Front",
  39515. image: {
  39516. source: "./media/characters/fox/front.svg",
  39517. extra: 1798/1703,
  39518. bottom: 55/1853
  39519. }
  39520. },
  39521. back: {
  39522. height: math.unit(7, "feet"),
  39523. name: "Back",
  39524. image: {
  39525. source: "./media/characters/fox/back.svg",
  39526. extra: 1748/1649,
  39527. bottom: 32/1780
  39528. }
  39529. },
  39530. head: {
  39531. height: math.unit(1.95, "feet"),
  39532. name: "Head",
  39533. image: {
  39534. source: "./media/characters/fox/head.svg"
  39535. }
  39536. },
  39537. dick: {
  39538. height: math.unit(1.33, "feet"),
  39539. name: "Dick",
  39540. image: {
  39541. source: "./media/characters/fox/dick.svg"
  39542. }
  39543. },
  39544. foot: {
  39545. height: math.unit(1, "feet"),
  39546. name: "Foot",
  39547. image: {
  39548. source: "./media/characters/fox/foot.svg"
  39549. }
  39550. },
  39551. paw: {
  39552. height: math.unit(0.92, "feet"),
  39553. name: "Paw",
  39554. image: {
  39555. source: "./media/characters/fox/paw.svg"
  39556. }
  39557. },
  39558. },
  39559. [
  39560. {
  39561. name: "Small",
  39562. height: math.unit(3, "inches")
  39563. },
  39564. {
  39565. name: "\"Realistic\"",
  39566. height: math.unit(7, "feet")
  39567. },
  39568. {
  39569. name: "Normal",
  39570. height: math.unit(150, "feet"),
  39571. default: true
  39572. },
  39573. {
  39574. name: "BIG",
  39575. height: math.unit(1200, "feet")
  39576. },
  39577. {
  39578. name: "👀",
  39579. height: math.unit(5, "miles")
  39580. },
  39581. {
  39582. name: "👀👀👀",
  39583. height: math.unit(64, "miles")
  39584. },
  39585. ]
  39586. ))
  39587. characterMakers.push(() => makeCharacter(
  39588. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39589. {
  39590. front: {
  39591. height: math.unit(625, "feet"),
  39592. name: "Front",
  39593. image: {
  39594. source: "./media/characters/asonja-rossa/front.svg",
  39595. extra: 1833/1686,
  39596. bottom: 24/1857
  39597. }
  39598. },
  39599. back: {
  39600. height: math.unit(625, "feet"),
  39601. name: "Back",
  39602. image: {
  39603. source: "./media/characters/asonja-rossa/back.svg",
  39604. extra: 1852/1753,
  39605. bottom: 26/1878
  39606. }
  39607. },
  39608. },
  39609. [
  39610. {
  39611. name: "Macro",
  39612. height: math.unit(625, "feet"),
  39613. default: true
  39614. },
  39615. ]
  39616. ))
  39617. characterMakers.push(() => makeCharacter(
  39618. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39619. {
  39620. side: {
  39621. height: math.unit(8, "feet"),
  39622. name: "Side",
  39623. image: {
  39624. source: "./media/characters/rezukii/side.svg",
  39625. extra: 979/542,
  39626. bottom: 87/1066
  39627. }
  39628. },
  39629. sitting: {
  39630. height: math.unit(14.6, "feet"),
  39631. name: "Sitting",
  39632. image: {
  39633. source: "./media/characters/rezukii/sitting.svg",
  39634. extra: 1023/813,
  39635. bottom: 45/1068
  39636. }
  39637. },
  39638. },
  39639. [
  39640. {
  39641. name: "Tiny",
  39642. height: math.unit(2, "feet")
  39643. },
  39644. {
  39645. name: "Smol",
  39646. height: math.unit(4, "feet")
  39647. },
  39648. {
  39649. name: "Normal",
  39650. height: math.unit(8, "feet"),
  39651. default: true
  39652. },
  39653. {
  39654. name: "Big",
  39655. height: math.unit(12, "feet")
  39656. },
  39657. {
  39658. name: "Macro",
  39659. height: math.unit(30, "feet")
  39660. },
  39661. ]
  39662. ))
  39663. characterMakers.push(() => makeCharacter(
  39664. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39665. {
  39666. front: {
  39667. height: math.unit(14, "feet"),
  39668. weight: math.unit(9.5, "tonnes"),
  39669. name: "Front",
  39670. image: {
  39671. source: "./media/characters/dawnheart/front.svg",
  39672. extra: 2792/2675,
  39673. bottom: 64/2856
  39674. }
  39675. },
  39676. },
  39677. [
  39678. {
  39679. name: "Normal",
  39680. height: math.unit(14, "feet"),
  39681. default: true
  39682. },
  39683. ]
  39684. ))
  39685. characterMakers.push(() => makeCharacter(
  39686. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39687. {
  39688. front: {
  39689. height: math.unit(1.7, "m"),
  39690. name: "Front",
  39691. image: {
  39692. source: "./media/characters/gladi/front.svg",
  39693. extra: 1460/1362,
  39694. bottom: 19/1479
  39695. }
  39696. },
  39697. back: {
  39698. height: math.unit(1.7, "m"),
  39699. name: "Back",
  39700. image: {
  39701. source: "./media/characters/gladi/back.svg",
  39702. extra: 1459/1357,
  39703. bottom: 12/1471
  39704. }
  39705. },
  39706. feral: {
  39707. height: math.unit(2.05, "m"),
  39708. name: "Feral",
  39709. image: {
  39710. source: "./media/characters/gladi/feral.svg",
  39711. extra: 821/557,
  39712. bottom: 91/912
  39713. }
  39714. },
  39715. },
  39716. [
  39717. {
  39718. name: "Shortest",
  39719. height: math.unit(70, "cm")
  39720. },
  39721. {
  39722. name: "Normal",
  39723. height: math.unit(1.7, "m")
  39724. },
  39725. {
  39726. name: "Macro",
  39727. height: math.unit(10, "m"),
  39728. default: true
  39729. },
  39730. {
  39731. name: "Tallest",
  39732. height: math.unit(200, "m")
  39733. },
  39734. ]
  39735. ))
  39736. characterMakers.push(() => makeCharacter(
  39737. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39738. {
  39739. front: {
  39740. height: math.unit(5 + 7/12, "feet"),
  39741. weight: math.unit(2, "tons"),
  39742. name: "Front",
  39743. image: {
  39744. source: "./media/characters/erdno/front.svg",
  39745. extra: 1234/1129,
  39746. bottom: 35/1269
  39747. }
  39748. },
  39749. angled: {
  39750. height: math.unit(5 + 7/12, "feet"),
  39751. weight: math.unit(2, "tons"),
  39752. name: "Angled",
  39753. image: {
  39754. source: "./media/characters/erdno/angled.svg",
  39755. extra: 1185/1139,
  39756. bottom: 36/1221
  39757. }
  39758. },
  39759. side: {
  39760. height: math.unit(5 + 7/12, "feet"),
  39761. weight: math.unit(2, "tons"),
  39762. name: "Side",
  39763. image: {
  39764. source: "./media/characters/erdno/side.svg",
  39765. extra: 1191/1144,
  39766. bottom: 40/1231
  39767. }
  39768. },
  39769. back: {
  39770. height: math.unit(5 + 7/12, "feet"),
  39771. weight: math.unit(2, "tons"),
  39772. name: "Back",
  39773. image: {
  39774. source: "./media/characters/erdno/back.svg",
  39775. extra: 1202/1146,
  39776. bottom: 17/1219
  39777. }
  39778. },
  39779. frontNsfw: {
  39780. height: math.unit(5 + 7/12, "feet"),
  39781. weight: math.unit(2, "tons"),
  39782. name: "Front (NSFW)",
  39783. image: {
  39784. source: "./media/characters/erdno/front-nsfw.svg",
  39785. extra: 1234/1129,
  39786. bottom: 35/1269
  39787. }
  39788. },
  39789. angledNsfw: {
  39790. height: math.unit(5 + 7/12, "feet"),
  39791. weight: math.unit(2, "tons"),
  39792. name: "Angled (NSFW)",
  39793. image: {
  39794. source: "./media/characters/erdno/angled-nsfw.svg",
  39795. extra: 1185/1139,
  39796. bottom: 36/1221
  39797. }
  39798. },
  39799. sideNsfw: {
  39800. height: math.unit(5 + 7/12, "feet"),
  39801. weight: math.unit(2, "tons"),
  39802. name: "Side (NSFW)",
  39803. image: {
  39804. source: "./media/characters/erdno/side-nsfw.svg",
  39805. extra: 1191/1144,
  39806. bottom: 40/1231
  39807. }
  39808. },
  39809. backNsfw: {
  39810. height: math.unit(5 + 7/12, "feet"),
  39811. weight: math.unit(2, "tons"),
  39812. name: "Back (NSFW)",
  39813. image: {
  39814. source: "./media/characters/erdno/back-nsfw.svg",
  39815. extra: 1202/1146,
  39816. bottom: 17/1219
  39817. }
  39818. },
  39819. frontHyper: {
  39820. height: math.unit(5 + 7/12, "feet"),
  39821. weight: math.unit(2, "tons"),
  39822. name: "Front (Hyper)",
  39823. image: {
  39824. source: "./media/characters/erdno/front-hyper.svg",
  39825. extra: 1298/1136,
  39826. bottom: 35/1333
  39827. }
  39828. },
  39829. },
  39830. [
  39831. {
  39832. name: "Normal",
  39833. height: math.unit(5 + 7/12, "feet"),
  39834. default: true
  39835. },
  39836. {
  39837. name: "Big",
  39838. height: math.unit(5.7, "meters")
  39839. },
  39840. {
  39841. name: "Macro",
  39842. height: math.unit(5.7, "kilometers")
  39843. },
  39844. {
  39845. name: "Megamacro",
  39846. height: math.unit(5.7, "earths")
  39847. },
  39848. ]
  39849. ))
  39850. characterMakers.push(() => makeCharacter(
  39851. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39852. {
  39853. front: {
  39854. height: math.unit(5 + 10/12, "feet"),
  39855. weight: math.unit(150, "lb"),
  39856. name: "Front",
  39857. image: {
  39858. source: "./media/characters/jamie/front.svg",
  39859. extra: 1908/1768,
  39860. bottom: 19/1927
  39861. }
  39862. },
  39863. },
  39864. [
  39865. {
  39866. name: "Minimum",
  39867. height: math.unit(2, "cm")
  39868. },
  39869. {
  39870. name: "Micro",
  39871. height: math.unit(3, "inches")
  39872. },
  39873. {
  39874. name: "Normal",
  39875. height: math.unit(5 + 10/12, "feet"),
  39876. default: true
  39877. },
  39878. {
  39879. name: "Macro",
  39880. height: math.unit(150, "feet")
  39881. },
  39882. {
  39883. name: "Megamacro",
  39884. height: math.unit(10000, "m")
  39885. },
  39886. ]
  39887. ))
  39888. characterMakers.push(() => makeCharacter(
  39889. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39890. {
  39891. front: {
  39892. height: math.unit(2, "meters"),
  39893. weight: math.unit(100, "kg"),
  39894. name: "Front",
  39895. image: {
  39896. source: "./media/characters/shiron/front.svg",
  39897. extra: 2103/1985,
  39898. bottom: 98/2201
  39899. }
  39900. },
  39901. back: {
  39902. height: math.unit(2, "meters"),
  39903. weight: math.unit(100, "kg"),
  39904. name: "Back",
  39905. image: {
  39906. source: "./media/characters/shiron/back.svg",
  39907. extra: 2110/2015,
  39908. bottom: 89/2199
  39909. }
  39910. },
  39911. hand: {
  39912. height: math.unit(0.96, "feet"),
  39913. name: "Hand",
  39914. image: {
  39915. source: "./media/characters/shiron/hand.svg"
  39916. }
  39917. },
  39918. foot: {
  39919. height: math.unit(1.464, "feet"),
  39920. name: "Foot",
  39921. image: {
  39922. source: "./media/characters/shiron/foot.svg"
  39923. }
  39924. },
  39925. },
  39926. [
  39927. {
  39928. name: "Normal",
  39929. height: math.unit(2, "meters")
  39930. },
  39931. {
  39932. name: "Macro",
  39933. height: math.unit(500, "meters"),
  39934. default: true
  39935. },
  39936. {
  39937. name: "Megamacro",
  39938. height: math.unit(20, "km")
  39939. },
  39940. ]
  39941. ))
  39942. characterMakers.push(() => makeCharacter(
  39943. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39944. {
  39945. front: {
  39946. height: math.unit(6, "feet"),
  39947. name: "Front",
  39948. image: {
  39949. source: "./media/characters/sam/front.svg",
  39950. extra: 849/826,
  39951. bottom: 19/868
  39952. }
  39953. },
  39954. },
  39955. [
  39956. {
  39957. name: "Normal",
  39958. height: math.unit(6, "feet"),
  39959. default: true
  39960. },
  39961. ]
  39962. ))
  39963. characterMakers.push(() => makeCharacter(
  39964. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39965. {
  39966. front: {
  39967. height: math.unit(8 + 4/12, "feet"),
  39968. weight: math.unit(122, "kg"),
  39969. name: "Front",
  39970. image: {
  39971. source: "./media/characters/namori-kurogawa/front.svg",
  39972. extra: 1894/1576,
  39973. bottom: 34/1928
  39974. }
  39975. },
  39976. },
  39977. [
  39978. {
  39979. name: "Normal",
  39980. height: math.unit(8 + 4/12, "feet"),
  39981. default: true
  39982. },
  39983. ]
  39984. ))
  39985. characterMakers.push(() => makeCharacter(
  39986. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39987. {
  39988. front: {
  39989. height: math.unit(9, "feet"),
  39990. weight: math.unit(621, "lb"),
  39991. name: "Front",
  39992. image: {
  39993. source: "./media/characters/unmru/front.svg",
  39994. extra: 1853/1747,
  39995. bottom: 73/1926
  39996. }
  39997. },
  39998. side: {
  39999. height: math.unit(9, "feet"),
  40000. weight: math.unit(621, "lb"),
  40001. name: "Side",
  40002. image: {
  40003. source: "./media/characters/unmru/side.svg",
  40004. extra: 1781/1671,
  40005. bottom: 127/1908
  40006. }
  40007. },
  40008. back: {
  40009. height: math.unit(9, "feet"),
  40010. weight: math.unit(621, "lb"),
  40011. name: "Back",
  40012. image: {
  40013. source: "./media/characters/unmru/back.svg",
  40014. extra: 1894/1765,
  40015. bottom: 75/1969
  40016. }
  40017. },
  40018. dick: {
  40019. height: math.unit(3, "feet"),
  40020. weight: math.unit(35, "lb"),
  40021. name: "Dick",
  40022. image: {
  40023. source: "./media/characters/unmru/dick.svg"
  40024. }
  40025. },
  40026. },
  40027. [
  40028. {
  40029. name: "Normal",
  40030. height: math.unit(9, "feet")
  40031. },
  40032. {
  40033. name: "Natural",
  40034. height: math.unit(27, "feet"),
  40035. default: true
  40036. },
  40037. {
  40038. name: "Giant",
  40039. height: math.unit(90, "feet")
  40040. },
  40041. {
  40042. name: "Kaiju",
  40043. height: math.unit(270, "feet")
  40044. },
  40045. {
  40046. name: "Macro",
  40047. height: math.unit(900, "feet")
  40048. },
  40049. {
  40050. name: "Macro+",
  40051. height: math.unit(2700, "feet")
  40052. },
  40053. {
  40054. name: "Megamacro",
  40055. height: math.unit(9000, "feet")
  40056. },
  40057. {
  40058. name: "City-Crushing",
  40059. height: math.unit(27000, "feet")
  40060. },
  40061. {
  40062. name: "Mountain-Mashing",
  40063. height: math.unit(90000, "feet")
  40064. },
  40065. {
  40066. name: "Earth-Eclipsing",
  40067. height: math.unit(2.7e8, "feet")
  40068. },
  40069. {
  40070. name: "Sol-Swallowing",
  40071. height: math.unit(9e10, "feet")
  40072. },
  40073. {
  40074. name: "Majoris-Munching",
  40075. height: math.unit(2.7e13, "feet")
  40076. },
  40077. ]
  40078. ))
  40079. characterMakers.push(() => makeCharacter(
  40080. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40081. {
  40082. front: {
  40083. height: math.unit(1, "inch"),
  40084. name: "Front",
  40085. image: {
  40086. source: "./media/characters/squeaks-mouse/front.svg",
  40087. extra: 352/308,
  40088. bottom: 25/377
  40089. }
  40090. },
  40091. },
  40092. [
  40093. {
  40094. name: "Micro",
  40095. height: math.unit(1, "inch"),
  40096. default: true
  40097. },
  40098. ]
  40099. ))
  40100. characterMakers.push(() => makeCharacter(
  40101. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40102. {
  40103. side: {
  40104. height: math.unit(35, "feet"),
  40105. name: "Side",
  40106. image: {
  40107. source: "./media/characters/sayko/side.svg",
  40108. extra: 1697/1021,
  40109. bottom: 82/1779
  40110. }
  40111. },
  40112. head: {
  40113. height: math.unit(16, "feet"),
  40114. name: "Head",
  40115. image: {
  40116. source: "./media/characters/sayko/head.svg"
  40117. }
  40118. },
  40119. forepaw: {
  40120. height: math.unit(7.85, "feet"),
  40121. name: "Forepaw",
  40122. image: {
  40123. source: "./media/characters/sayko/forepaw.svg"
  40124. }
  40125. },
  40126. hindpaw: {
  40127. height: math.unit(8.8, "feet"),
  40128. name: "Hindpaw",
  40129. image: {
  40130. source: "./media/characters/sayko/hindpaw.svg"
  40131. }
  40132. },
  40133. },
  40134. [
  40135. {
  40136. name: "Normal",
  40137. height: math.unit(35, "feet"),
  40138. default: true
  40139. },
  40140. {
  40141. name: "Colossus",
  40142. height: math.unit(100, "meters")
  40143. },
  40144. {
  40145. name: "\"Small\" Deity",
  40146. height: math.unit(1, "km")
  40147. },
  40148. {
  40149. name: "\"Large\" Deity",
  40150. height: math.unit(15, "km")
  40151. },
  40152. ]
  40153. ))
  40154. characterMakers.push(() => makeCharacter(
  40155. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40156. {
  40157. front: {
  40158. height: math.unit(6, "feet"),
  40159. weight: math.unit(250, "lb"),
  40160. name: "Front",
  40161. image: {
  40162. source: "./media/characters/mukiro/front.svg",
  40163. extra: 1368/1310,
  40164. bottom: 34/1402
  40165. }
  40166. },
  40167. },
  40168. [
  40169. {
  40170. name: "Normal",
  40171. height: math.unit(6, "feet"),
  40172. default: true
  40173. },
  40174. ]
  40175. ))
  40176. characterMakers.push(() => makeCharacter(
  40177. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40178. {
  40179. front: {
  40180. height: math.unit(12 + 4/12, "feet"),
  40181. name: "Front",
  40182. image: {
  40183. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40184. extra: 1346/1311,
  40185. bottom: 65/1411
  40186. }
  40187. },
  40188. },
  40189. [
  40190. {
  40191. name: "Base",
  40192. height: math.unit(12 + 4/12, "feet"),
  40193. default: true
  40194. },
  40195. {
  40196. name: "Macro",
  40197. height: math.unit(150, "feet")
  40198. },
  40199. {
  40200. name: "Mega",
  40201. height: math.unit(2, "miles")
  40202. },
  40203. {
  40204. name: "Demi God",
  40205. height: math.unit(4, "AU")
  40206. },
  40207. {
  40208. name: "God Size",
  40209. height: math.unit(1, "universe")
  40210. },
  40211. ]
  40212. ))
  40213. characterMakers.push(() => makeCharacter(
  40214. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40215. {
  40216. front: {
  40217. height: math.unit(3 + 3/12, "feet"),
  40218. weight: math.unit(88, "lb"),
  40219. name: "Front",
  40220. image: {
  40221. source: "./media/characters/trey/front.svg",
  40222. extra: 1815/1509,
  40223. bottom: 60/1875
  40224. }
  40225. },
  40226. },
  40227. [
  40228. {
  40229. name: "Normal",
  40230. height: math.unit(3 + 3/12, "feet"),
  40231. default: true
  40232. },
  40233. ]
  40234. ))
  40235. characterMakers.push(() => makeCharacter(
  40236. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40237. {
  40238. front: {
  40239. height: math.unit(4, "meters"),
  40240. name: "Front",
  40241. image: {
  40242. source: "./media/characters/adelonda/front.svg",
  40243. extra: 1077/982,
  40244. bottom: 39/1116
  40245. }
  40246. },
  40247. back: {
  40248. height: math.unit(4, "meters"),
  40249. name: "Back",
  40250. image: {
  40251. source: "./media/characters/adelonda/back.svg",
  40252. extra: 1105/1003,
  40253. bottom: 25/1130
  40254. }
  40255. },
  40256. feral: {
  40257. height: math.unit(40/1.5, "meters"),
  40258. name: "Feral",
  40259. image: {
  40260. source: "./media/characters/adelonda/feral.svg",
  40261. extra: 597/271,
  40262. bottom: 387/984
  40263. }
  40264. },
  40265. },
  40266. [
  40267. {
  40268. name: "Normal",
  40269. height: math.unit(4, "meters"),
  40270. default: true
  40271. },
  40272. ]
  40273. ))
  40274. characterMakers.push(() => makeCharacter(
  40275. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40276. {
  40277. front: {
  40278. height: math.unit(8 + 4/12, "feet"),
  40279. weight: math.unit(670, "lb"),
  40280. name: "Front",
  40281. image: {
  40282. source: "./media/characters/acadiel/front.svg",
  40283. extra: 1901/1595,
  40284. bottom: 142/2043
  40285. }
  40286. },
  40287. },
  40288. [
  40289. {
  40290. name: "Normal",
  40291. height: math.unit(8 + 4/12, "feet"),
  40292. default: true
  40293. },
  40294. {
  40295. name: "Macro",
  40296. height: math.unit(200, "feet")
  40297. },
  40298. ]
  40299. ))
  40300. characterMakers.push(() => makeCharacter(
  40301. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40302. {
  40303. front: {
  40304. height: math.unit(6 + 2/12, "feet"),
  40305. weight: math.unit(185, "lb"),
  40306. name: "Front",
  40307. image: {
  40308. source: "./media/characters/kayne-ein/front.svg",
  40309. extra: 1780/1560,
  40310. bottom: 81/1861
  40311. }
  40312. },
  40313. },
  40314. [
  40315. {
  40316. name: "Normal",
  40317. height: math.unit(6 + 2/12, "feet"),
  40318. default: true
  40319. },
  40320. {
  40321. name: "Transformation Stage",
  40322. height: math.unit(15, "feet")
  40323. },
  40324. {
  40325. name: "Macro",
  40326. height: math.unit(150, "feet")
  40327. },
  40328. {
  40329. name: "Earth's Shadow",
  40330. height: math.unit(6200, "miles")
  40331. },
  40332. {
  40333. name: "Universal Demon",
  40334. height: math.unit(28e9, "parsecs")
  40335. },
  40336. {
  40337. name: "Multiverse God",
  40338. height: math.unit(3, "multiverses")
  40339. },
  40340. ]
  40341. ))
  40342. characterMakers.push(() => makeCharacter(
  40343. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40344. {
  40345. front: {
  40346. height: math.unit(5 + 5/12, "feet"),
  40347. name: "Front",
  40348. image: {
  40349. source: "./media/characters/fawn/front.svg",
  40350. extra: 1873/1731,
  40351. bottom: 95/1968
  40352. }
  40353. },
  40354. back: {
  40355. height: math.unit(5 + 5/12, "feet"),
  40356. name: "Back",
  40357. image: {
  40358. source: "./media/characters/fawn/back.svg",
  40359. extra: 1813/1700,
  40360. bottom: 14/1827
  40361. }
  40362. },
  40363. hoof: {
  40364. height: math.unit(1.45, "feet"),
  40365. name: "Hoof",
  40366. image: {
  40367. source: "./media/characters/fawn/hoof.svg"
  40368. }
  40369. },
  40370. },
  40371. [
  40372. {
  40373. name: "Normal",
  40374. height: math.unit(5 + 5/12, "feet"),
  40375. default: true
  40376. },
  40377. ]
  40378. ))
  40379. characterMakers.push(() => makeCharacter(
  40380. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40381. {
  40382. front: {
  40383. height: math.unit(2 + 5/12, "feet"),
  40384. name: "Front",
  40385. image: {
  40386. source: "./media/characters/orion/front.svg",
  40387. extra: 1366/1304,
  40388. bottom: 43/1409
  40389. }
  40390. },
  40391. paw: {
  40392. height: math.unit(0.52, "feet"),
  40393. name: "Paw",
  40394. image: {
  40395. source: "./media/characters/orion/paw.svg"
  40396. }
  40397. },
  40398. },
  40399. [
  40400. {
  40401. name: "Normal",
  40402. height: math.unit(2 + 5/12, "feet"),
  40403. default: true
  40404. },
  40405. ]
  40406. ))
  40407. characterMakers.push(() => makeCharacter(
  40408. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40409. {
  40410. front: {
  40411. height: math.unit(5 + 10/12, "feet"),
  40412. name: "Front",
  40413. image: {
  40414. source: "./media/characters/vera/front.svg",
  40415. extra: 1680/1575,
  40416. bottom: 49/1729
  40417. }
  40418. },
  40419. back: {
  40420. height: math.unit(5 + 10/12, "feet"),
  40421. name: "Back",
  40422. image: {
  40423. source: "./media/characters/vera/back.svg",
  40424. extra: 1700/1588,
  40425. bottom: 18/1718
  40426. }
  40427. },
  40428. arcanine: {
  40429. height: math.unit(6 + 8/12, "feet"),
  40430. name: "Arcanine",
  40431. image: {
  40432. source: "./media/characters/vera/arcanine.svg",
  40433. extra: 1590/1511,
  40434. bottom: 71/1661
  40435. }
  40436. },
  40437. maw: {
  40438. height: math.unit(0.82, "feet"),
  40439. name: "Maw",
  40440. image: {
  40441. source: "./media/characters/vera/maw.svg"
  40442. }
  40443. },
  40444. mawArcanine: {
  40445. height: math.unit(0.97, "feet"),
  40446. name: "Maw (Arcanine)",
  40447. image: {
  40448. source: "./media/characters/vera/maw-arcanine.svg"
  40449. }
  40450. },
  40451. paw: {
  40452. height: math.unit(0.75, "feet"),
  40453. name: "Paw",
  40454. image: {
  40455. source: "./media/characters/vera/paw.svg"
  40456. }
  40457. },
  40458. pawprint: {
  40459. height: math.unit(0.52, "feet"),
  40460. name: "Pawprint",
  40461. image: {
  40462. source: "./media/characters/vera/pawprint.svg"
  40463. }
  40464. },
  40465. },
  40466. [
  40467. {
  40468. name: "Normal",
  40469. height: math.unit(5 + 10/12, "feet"),
  40470. default: true
  40471. },
  40472. {
  40473. name: "Macro",
  40474. height: math.unit(75, "feet")
  40475. },
  40476. ]
  40477. ))
  40478. characterMakers.push(() => makeCharacter(
  40479. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40480. {
  40481. front: {
  40482. height: math.unit(4, "feet"),
  40483. weight: math.unit(40, "lb"),
  40484. name: "Front",
  40485. image: {
  40486. source: "./media/characters/orvan-rabbit/front.svg",
  40487. extra: 1896/1642,
  40488. bottom: 29/1925
  40489. }
  40490. },
  40491. },
  40492. [
  40493. {
  40494. name: "Normal",
  40495. height: math.unit(4, "feet"),
  40496. default: true
  40497. },
  40498. ]
  40499. ))
  40500. characterMakers.push(() => makeCharacter(
  40501. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40502. {
  40503. front: {
  40504. height: math.unit(6, "feet"),
  40505. weight: math.unit(168, "lb"),
  40506. name: "Front",
  40507. image: {
  40508. source: "./media/characters/lisa/front.svg",
  40509. extra: 2065/1867,
  40510. bottom: 46/2111
  40511. }
  40512. },
  40513. back: {
  40514. height: math.unit(6, "feet"),
  40515. weight: math.unit(168, "lb"),
  40516. name: "Back",
  40517. image: {
  40518. source: "./media/characters/lisa/back.svg",
  40519. extra: 1982/1838,
  40520. bottom: 29/2011
  40521. }
  40522. },
  40523. maw: {
  40524. height: math.unit(0.81, "feet"),
  40525. name: "Maw",
  40526. image: {
  40527. source: "./media/characters/lisa/maw.svg"
  40528. }
  40529. },
  40530. paw: {
  40531. height: math.unit(0.9, "feet"),
  40532. name: "Paw",
  40533. image: {
  40534. source: "./media/characters/lisa/paw.svg"
  40535. }
  40536. },
  40537. caribousune: {
  40538. height: math.unit(7 + 2/12, "feet"),
  40539. weight: math.unit(268, "lb"),
  40540. name: "Caribousune",
  40541. image: {
  40542. source: "./media/characters/lisa/caribousune.svg",
  40543. extra: 1843/1633,
  40544. bottom: 29/1872
  40545. }
  40546. },
  40547. frontCaribousune: {
  40548. height: math.unit(7 + 2/12, "feet"),
  40549. weight: math.unit(268, "lb"),
  40550. name: "Front (Caribousune)",
  40551. image: {
  40552. source: "./media/characters/lisa/front-caribousune.svg",
  40553. extra: 1818/1638,
  40554. bottom: 52/1870
  40555. }
  40556. },
  40557. sideCaribousune: {
  40558. height: math.unit(7 + 2/12, "feet"),
  40559. weight: math.unit(268, "lb"),
  40560. name: "Side (Caribousune)",
  40561. image: {
  40562. source: "./media/characters/lisa/side-caribousune.svg",
  40563. extra: 1851/1635,
  40564. bottom: 16/1867
  40565. }
  40566. },
  40567. backCaribousune: {
  40568. height: math.unit(7 + 2/12, "feet"),
  40569. weight: math.unit(268, "lb"),
  40570. name: "Back (Caribousune)",
  40571. image: {
  40572. source: "./media/characters/lisa/back-caribousune.svg",
  40573. extra: 1801/1604,
  40574. bottom: 44/1845
  40575. }
  40576. },
  40577. caribou: {
  40578. height: math.unit(7 + 2/12, "feet"),
  40579. weight: math.unit(268, "lb"),
  40580. name: "Caribou",
  40581. image: {
  40582. source: "./media/characters/lisa/caribou.svg",
  40583. extra: 1843/1633,
  40584. bottom: 29/1872
  40585. }
  40586. },
  40587. frontCaribou: {
  40588. height: math.unit(7 + 2/12, "feet"),
  40589. weight: math.unit(268, "lb"),
  40590. name: "Front (Caribou)",
  40591. image: {
  40592. source: "./media/characters/lisa/front-caribou.svg",
  40593. extra: 1818/1638,
  40594. bottom: 52/1870
  40595. }
  40596. },
  40597. sideCaribou: {
  40598. height: math.unit(7 + 2/12, "feet"),
  40599. weight: math.unit(268, "lb"),
  40600. name: "Side (Caribou)",
  40601. image: {
  40602. source: "./media/characters/lisa/side-caribou.svg",
  40603. extra: 1851/1635,
  40604. bottom: 16/1867
  40605. }
  40606. },
  40607. backCaribou: {
  40608. height: math.unit(7 + 2/12, "feet"),
  40609. weight: math.unit(268, "lb"),
  40610. name: "Back (Caribou)",
  40611. image: {
  40612. source: "./media/characters/lisa/back-caribou.svg",
  40613. extra: 1801/1604,
  40614. bottom: 44/1845
  40615. }
  40616. },
  40617. mawCaribou: {
  40618. height: math.unit(1.45, "feet"),
  40619. name: "Maw (Caribou)",
  40620. image: {
  40621. source: "./media/characters/lisa/maw-caribou.svg"
  40622. }
  40623. },
  40624. mawCaribousune: {
  40625. height: math.unit(1.45, "feet"),
  40626. name: "Maw (Caribousune)",
  40627. image: {
  40628. source: "./media/characters/lisa/maw-caribousune.svg"
  40629. }
  40630. },
  40631. pawCaribousune: {
  40632. height: math.unit(1.61, "feet"),
  40633. name: "Paw (Caribou)",
  40634. image: {
  40635. source: "./media/characters/lisa/paw-caribousune.svg"
  40636. }
  40637. },
  40638. },
  40639. [
  40640. {
  40641. name: "Normal",
  40642. height: math.unit(6, "feet")
  40643. },
  40644. {
  40645. name: "God Size",
  40646. height: math.unit(72, "feet"),
  40647. default: true
  40648. },
  40649. {
  40650. name: "Towering",
  40651. height: math.unit(288, "feet")
  40652. },
  40653. {
  40654. name: "City Size",
  40655. height: math.unit(48384, "feet")
  40656. },
  40657. {
  40658. name: "Continental",
  40659. height: math.unit(4200, "miles")
  40660. },
  40661. {
  40662. name: "Planet Eater",
  40663. height: math.unit(42, "earths")
  40664. },
  40665. {
  40666. name: "Star Swallower",
  40667. height: math.unit(42, "solarradii")
  40668. },
  40669. {
  40670. name: "System Swallower",
  40671. height: math.unit(84000, "AU")
  40672. },
  40673. {
  40674. name: "Galaxy Gobbler",
  40675. height: math.unit(42, "galaxies")
  40676. },
  40677. {
  40678. name: "Universe Devourer",
  40679. height: math.unit(42, "universes")
  40680. },
  40681. {
  40682. name: "Multiverse Muncher",
  40683. height: math.unit(42, "multiverses")
  40684. },
  40685. ]
  40686. ))
  40687. characterMakers.push(() => makeCharacter(
  40688. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40689. {
  40690. front: {
  40691. height: math.unit(36, "feet"),
  40692. name: "Front",
  40693. image: {
  40694. source: "./media/characters/shadow-rat/front.svg",
  40695. extra: 1845/1758,
  40696. bottom: 83/1928
  40697. }
  40698. },
  40699. },
  40700. [
  40701. {
  40702. name: "Macro",
  40703. height: math.unit(36, "feet"),
  40704. default: true
  40705. },
  40706. ]
  40707. ))
  40708. characterMakers.push(() => makeCharacter(
  40709. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40710. {
  40711. side: {
  40712. height: math.unit(8, "feet"),
  40713. weight: math.unit(2630, "lb"),
  40714. name: "Side",
  40715. image: {
  40716. source: "./media/characters/torallia/side.svg",
  40717. extra: 2164/2021,
  40718. bottom: 371/2535
  40719. }
  40720. },
  40721. },
  40722. [
  40723. {
  40724. name: "Mortal Interaction",
  40725. height: math.unit(8, "feet")
  40726. },
  40727. {
  40728. name: "Natural",
  40729. height: math.unit(24, "feet"),
  40730. default: true
  40731. },
  40732. {
  40733. name: "Giant",
  40734. height: math.unit(80, "feet")
  40735. },
  40736. {
  40737. name: "Kaiju",
  40738. height: math.unit(240, "feet")
  40739. },
  40740. {
  40741. name: "Macro",
  40742. height: math.unit(800, "feet")
  40743. },
  40744. {
  40745. name: "Macro+",
  40746. height: math.unit(2400, "feet")
  40747. },
  40748. {
  40749. name: "Macro++",
  40750. height: math.unit(8000, "feet")
  40751. },
  40752. {
  40753. name: "City-Crushing",
  40754. height: math.unit(24000, "feet")
  40755. },
  40756. {
  40757. name: "Mountain-Mashing",
  40758. height: math.unit(80000, "feet")
  40759. },
  40760. {
  40761. name: "District Demolisher",
  40762. height: math.unit(240000, "feet")
  40763. },
  40764. {
  40765. name: "Tri-County Terror",
  40766. height: math.unit(800000, "feet")
  40767. },
  40768. {
  40769. name: "State Smasher",
  40770. height: math.unit(2.4e6, "feet")
  40771. },
  40772. {
  40773. name: "Nation Nemesis",
  40774. height: math.unit(8e6, "feet")
  40775. },
  40776. {
  40777. name: "Continent Cracker",
  40778. height: math.unit(2.4e7, "feet")
  40779. },
  40780. {
  40781. name: "Planet-Pillaging",
  40782. height: math.unit(8e7, "feet")
  40783. },
  40784. {
  40785. name: "Earth-Eclipsing",
  40786. height: math.unit(2.4e8, "feet")
  40787. },
  40788. {
  40789. name: "Jovian-Jostling",
  40790. height: math.unit(8e8, "feet")
  40791. },
  40792. {
  40793. name: "Gas Giant Gulper",
  40794. height: math.unit(2.4e9, "feet")
  40795. },
  40796. {
  40797. name: "Astral Annihilator",
  40798. height: math.unit(8e9, "feet")
  40799. },
  40800. {
  40801. name: "Celestial Conqueror",
  40802. height: math.unit(2.4e10, "feet")
  40803. },
  40804. {
  40805. name: "Sol-Swallowing",
  40806. height: math.unit(8e10, "feet")
  40807. },
  40808. {
  40809. name: "Hunter of the Heavens",
  40810. height: math.unit(2.4e13, "feet")
  40811. },
  40812. ]
  40813. ))
  40814. characterMakers.push(() => makeCharacter(
  40815. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40816. {
  40817. front: {
  40818. height: math.unit(6 + 8/12, "feet"),
  40819. weight: math.unit(250, "kilograms"),
  40820. volume: math.unit(28, "liters"),
  40821. name: "Front",
  40822. image: {
  40823. source: "./media/characters/rebecca-pawlson/front.svg",
  40824. extra: 1737/1596,
  40825. bottom: 107/1844
  40826. }
  40827. },
  40828. back: {
  40829. height: math.unit(6 + 8/12, "feet"),
  40830. weight: math.unit(250, "kilograms"),
  40831. volume: math.unit(28, "liters"),
  40832. name: "Back",
  40833. image: {
  40834. source: "./media/characters/rebecca-pawlson/back.svg",
  40835. extra: 1702/1523,
  40836. bottom: 86/1788
  40837. }
  40838. },
  40839. },
  40840. [
  40841. {
  40842. name: "Normal",
  40843. height: math.unit(6 + 8/12, "feet")
  40844. },
  40845. {
  40846. name: "Mini Macro",
  40847. height: math.unit(10, "feet"),
  40848. default: true
  40849. },
  40850. {
  40851. name: "Macro",
  40852. height: math.unit(100, "feet")
  40853. },
  40854. {
  40855. name: "Mega Macro",
  40856. height: math.unit(2500, "feet")
  40857. },
  40858. {
  40859. name: "Giga Macro",
  40860. height: math.unit(50, "miles")
  40861. },
  40862. ]
  40863. ))
  40864. characterMakers.push(() => makeCharacter(
  40865. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40866. {
  40867. front: {
  40868. height: math.unit(7 + 6/12, "feet"),
  40869. weight: math.unit(600, "lb"),
  40870. name: "Front",
  40871. image: {
  40872. source: "./media/characters/moxie-nova/front.svg",
  40873. extra: 1734/1652,
  40874. bottom: 41/1775
  40875. }
  40876. },
  40877. },
  40878. [
  40879. {
  40880. name: "Normal",
  40881. height: math.unit(7 + 6/12, "feet"),
  40882. default: true
  40883. },
  40884. ]
  40885. ))
  40886. characterMakers.push(() => makeCharacter(
  40887. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40888. {
  40889. goat: {
  40890. height: math.unit(4, "feet"),
  40891. weight: math.unit(180, "lb"),
  40892. name: "Goat",
  40893. image: {
  40894. source: "./media/characters/tiffany/goat.svg",
  40895. extra: 1845/1595,
  40896. bottom: 106/1951
  40897. }
  40898. },
  40899. front: {
  40900. height: math.unit(5, "feet"),
  40901. weight: math.unit(150, "lb"),
  40902. name: "Foxcoon",
  40903. image: {
  40904. source: "./media/characters/tiffany/foxcoon.svg",
  40905. extra: 1941/1845,
  40906. bottom: 58/1999
  40907. }
  40908. },
  40909. },
  40910. [
  40911. {
  40912. name: "Normal",
  40913. height: math.unit(5, "feet"),
  40914. default: true
  40915. },
  40916. ]
  40917. ))
  40918. characterMakers.push(() => makeCharacter(
  40919. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40920. {
  40921. front: {
  40922. height: math.unit(8, "feet"),
  40923. weight: math.unit(300, "lb"),
  40924. name: "Front",
  40925. image: {
  40926. source: "./media/characters/raxinath/front.svg",
  40927. extra: 1407/1309,
  40928. bottom: 39/1446
  40929. }
  40930. },
  40931. back: {
  40932. height: math.unit(8, "feet"),
  40933. weight: math.unit(300, "lb"),
  40934. name: "Back",
  40935. image: {
  40936. source: "./media/characters/raxinath/back.svg",
  40937. extra: 1405/1315,
  40938. bottom: 9/1414
  40939. }
  40940. },
  40941. },
  40942. [
  40943. {
  40944. name: "Speck",
  40945. height: math.unit(0.5, "nm")
  40946. },
  40947. {
  40948. name: "Micro",
  40949. height: math.unit(3, "inches")
  40950. },
  40951. {
  40952. name: "Kobold",
  40953. height: math.unit(3, "feet")
  40954. },
  40955. {
  40956. name: "Normal",
  40957. height: math.unit(8, "feet"),
  40958. default: true
  40959. },
  40960. {
  40961. name: "Giant",
  40962. height: math.unit(50, "feet")
  40963. },
  40964. {
  40965. name: "Macro",
  40966. height: math.unit(1000, "feet")
  40967. },
  40968. {
  40969. name: "Megamacro",
  40970. height: math.unit(1, "mile")
  40971. },
  40972. ]
  40973. ))
  40974. characterMakers.push(() => makeCharacter(
  40975. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40976. {
  40977. front: {
  40978. height: math.unit(10, "feet"),
  40979. weight: math.unit(1442, "lb"),
  40980. name: "Front",
  40981. image: {
  40982. source: "./media/characters/mal-dragon/front.svg",
  40983. extra: 1515/1444,
  40984. bottom: 113/1628
  40985. }
  40986. },
  40987. back: {
  40988. height: math.unit(10, "feet"),
  40989. weight: math.unit(1442, "lb"),
  40990. name: "Back",
  40991. image: {
  40992. source: "./media/characters/mal-dragon/back.svg",
  40993. extra: 1527/1434,
  40994. bottom: 25/1552
  40995. }
  40996. },
  40997. },
  40998. [
  40999. {
  41000. name: "Mortal Interaction",
  41001. height: math.unit(10, "feet"),
  41002. default: true
  41003. },
  41004. {
  41005. name: "Large",
  41006. height: math.unit(30, "feet")
  41007. },
  41008. {
  41009. name: "Kaiju",
  41010. height: math.unit(300, "feet")
  41011. },
  41012. {
  41013. name: "Megamacro",
  41014. height: math.unit(10000, "feet")
  41015. },
  41016. {
  41017. name: "Continent Cracker",
  41018. height: math.unit(30000000, "feet")
  41019. },
  41020. {
  41021. name: "Sol-Swallowing",
  41022. height: math.unit(1e11, "feet")
  41023. },
  41024. {
  41025. name: "Light Universal",
  41026. height: math.unit(5, "universes")
  41027. },
  41028. {
  41029. name: "Universe Atoms",
  41030. height: math.unit(1.829e9, "universes")
  41031. },
  41032. {
  41033. name: "Light Multiversal",
  41034. height: math.unit(5, "multiverses")
  41035. },
  41036. {
  41037. name: "Multiverse Atoms",
  41038. height: math.unit(1.829e9, "multiverses")
  41039. },
  41040. {
  41041. name: "Fabric of Time",
  41042. height: math.unit(1e262, "multiverses")
  41043. },
  41044. ]
  41045. ))
  41046. characterMakers.push(() => makeCharacter(
  41047. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41048. {
  41049. front: {
  41050. height: math.unit(9, "feet"),
  41051. weight: math.unit(1050, "lb"),
  41052. name: "Front",
  41053. image: {
  41054. source: "./media/characters/tabitha/front.svg",
  41055. extra: 2083/1994,
  41056. bottom: 68/2151
  41057. }
  41058. },
  41059. },
  41060. [
  41061. {
  41062. name: "Baseline",
  41063. height: math.unit(9, "feet"),
  41064. default: true
  41065. },
  41066. {
  41067. name: "Giant",
  41068. height: math.unit(90, "feet")
  41069. },
  41070. {
  41071. name: "Macro",
  41072. height: math.unit(900, "feet")
  41073. },
  41074. {
  41075. name: "Megamacro",
  41076. height: math.unit(9000, "feet")
  41077. },
  41078. {
  41079. name: "City-Crushing",
  41080. height: math.unit(27000, "feet")
  41081. },
  41082. {
  41083. name: "Mountain-Mashing",
  41084. height: math.unit(90000, "feet")
  41085. },
  41086. {
  41087. name: "Nation Nemesis",
  41088. height: math.unit(9e6, "feet")
  41089. },
  41090. {
  41091. name: "Continent Cracker",
  41092. height: math.unit(27e6, "feet")
  41093. },
  41094. {
  41095. name: "Earth-Eclipsing",
  41096. height: math.unit(2.7e8, "feet")
  41097. },
  41098. {
  41099. name: "Gas Giant Gulper",
  41100. height: math.unit(2.7e9, "feet")
  41101. },
  41102. {
  41103. name: "Sol-Swallowing",
  41104. height: math.unit(9e10, "feet")
  41105. },
  41106. {
  41107. name: "Galaxy Gulper",
  41108. height: math.unit(9, "galaxies")
  41109. },
  41110. {
  41111. name: "Cosmos Churner",
  41112. height: math.unit(9, "universes")
  41113. },
  41114. ]
  41115. ))
  41116. characterMakers.push(() => makeCharacter(
  41117. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41118. {
  41119. front: {
  41120. height: math.unit(160, "cm"),
  41121. weight: math.unit(55, "kg"),
  41122. name: "Front",
  41123. image: {
  41124. source: "./media/characters/tow/front.svg",
  41125. extra: 1751/1722,
  41126. bottom: 74/1825
  41127. }
  41128. },
  41129. },
  41130. [
  41131. {
  41132. name: "Norm",
  41133. height: math.unit(160, "cm")
  41134. },
  41135. {
  41136. name: "Casual",
  41137. height: math.unit(3200, "m"),
  41138. default: true
  41139. },
  41140. {
  41141. name: "Show-Off",
  41142. height: math.unit(160, "km")
  41143. },
  41144. ]
  41145. ))
  41146. characterMakers.push(() => makeCharacter(
  41147. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41148. {
  41149. front: {
  41150. height: math.unit(7 + 11/12, "feet"),
  41151. weight: math.unit(342.8, "lb"),
  41152. name: "Front",
  41153. image: {
  41154. source: "./media/characters/vivian-orca-dragon/front.svg",
  41155. extra: 1890/1865,
  41156. bottom: 28/1918
  41157. }
  41158. },
  41159. },
  41160. [
  41161. {
  41162. name: "Micro",
  41163. height: math.unit(5, "inches")
  41164. },
  41165. {
  41166. name: "Normal",
  41167. height: math.unit(7 + 11/12, "feet"),
  41168. default: true
  41169. },
  41170. {
  41171. name: "Macro",
  41172. height: math.unit(395 + 7/12, "feet")
  41173. },
  41174. ]
  41175. ))
  41176. characterMakers.push(() => makeCharacter(
  41177. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41178. {
  41179. side: {
  41180. height: math.unit(10, "feet"),
  41181. weight: math.unit(1442, "lb"),
  41182. name: "Side",
  41183. image: {
  41184. source: "./media/characters/lotherakon/side.svg",
  41185. extra: 1604/1497,
  41186. bottom: 89/1693
  41187. }
  41188. },
  41189. },
  41190. [
  41191. {
  41192. name: "Mortal Interaction",
  41193. height: math.unit(10, "feet")
  41194. },
  41195. {
  41196. name: "Large",
  41197. height: math.unit(30, "feet"),
  41198. default: true
  41199. },
  41200. {
  41201. name: "Giant",
  41202. height: math.unit(100, "feet")
  41203. },
  41204. {
  41205. name: "Kaiju",
  41206. height: math.unit(300, "feet")
  41207. },
  41208. {
  41209. name: "Macro",
  41210. height: math.unit(1000, "feet")
  41211. },
  41212. {
  41213. name: "Macro+",
  41214. height: math.unit(3000, "feet")
  41215. },
  41216. {
  41217. name: "Megamacro",
  41218. height: math.unit(10000, "feet")
  41219. },
  41220. {
  41221. name: "City-Crushing",
  41222. height: math.unit(30000, "feet")
  41223. },
  41224. {
  41225. name: "Continent Cracker",
  41226. height: math.unit(30e6, "feet")
  41227. },
  41228. {
  41229. name: "Earth Eclipsing",
  41230. height: math.unit(3e8, "feet")
  41231. },
  41232. {
  41233. name: "Gas Giant Gulper",
  41234. height: math.unit(3e9, "feet")
  41235. },
  41236. {
  41237. name: "Sol-Swallowing",
  41238. height: math.unit(1e11, "feet")
  41239. },
  41240. {
  41241. name: "System Swallower",
  41242. height: math.unit(3e14, "feet")
  41243. },
  41244. {
  41245. name: "Galaxy Gulper",
  41246. height: math.unit(10, "galaxies")
  41247. },
  41248. {
  41249. name: "Light Universal",
  41250. height: math.unit(5, "universes")
  41251. },
  41252. {
  41253. name: "Universe Palm",
  41254. height: math.unit(20, "universes")
  41255. },
  41256. {
  41257. name: "Light Multiversal",
  41258. height: math.unit(5, "multiverses")
  41259. },
  41260. {
  41261. name: "Multiverse Palm",
  41262. height: math.unit(20, "multiverses")
  41263. },
  41264. {
  41265. name: "Inferno Incarnate",
  41266. height: math.unit(1e7, "multiverses")
  41267. },
  41268. ]
  41269. ))
  41270. characterMakers.push(() => makeCharacter(
  41271. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41272. {
  41273. front: {
  41274. height: math.unit(8, "feet"),
  41275. weight: math.unit(1200, "lb"),
  41276. name: "Front",
  41277. image: {
  41278. source: "./media/characters/malithee/front.svg",
  41279. extra: 1675/1640,
  41280. bottom: 162/1837
  41281. }
  41282. },
  41283. },
  41284. [
  41285. {
  41286. name: "Mortal Interaction",
  41287. height: math.unit(8, "feet"),
  41288. default: true
  41289. },
  41290. {
  41291. name: "Large",
  41292. height: math.unit(24, "feet")
  41293. },
  41294. {
  41295. name: "Kaiju",
  41296. height: math.unit(240, "feet")
  41297. },
  41298. {
  41299. name: "Megamacro",
  41300. height: math.unit(8000, "feet")
  41301. },
  41302. {
  41303. name: "Continent Cracker",
  41304. height: math.unit(24e6, "feet")
  41305. },
  41306. {
  41307. name: "Earth-Eclipsing",
  41308. height: math.unit(2.4e8, "feet")
  41309. },
  41310. {
  41311. name: "Sol-Swallowing",
  41312. height: math.unit(8e10, "feet")
  41313. },
  41314. {
  41315. name: "Galaxy Gulper",
  41316. height: math.unit(8, "galaxies")
  41317. },
  41318. {
  41319. name: "Light Universal",
  41320. height: math.unit(4, "universes")
  41321. },
  41322. {
  41323. name: "Universe Atoms",
  41324. height: math.unit(1.829e9, "universes")
  41325. },
  41326. {
  41327. name: "Light Multiversal",
  41328. height: math.unit(4, "multiverses")
  41329. },
  41330. {
  41331. name: "Multiverse Atoms",
  41332. height: math.unit(1.829e9, "multiverses")
  41333. },
  41334. {
  41335. name: "Nigh-Omnipresence",
  41336. height: math.unit(8e261, "multiverses")
  41337. },
  41338. ]
  41339. ))
  41340. characterMakers.push(() => makeCharacter(
  41341. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41342. {
  41343. front: {
  41344. height: math.unit(10, "feet"),
  41345. weight: math.unit(1500, "lb"),
  41346. name: "Front",
  41347. image: {
  41348. source: "./media/characters/miles-thestia/front.svg",
  41349. extra: 1812/1727,
  41350. bottom: 86/1898
  41351. }
  41352. },
  41353. back: {
  41354. height: math.unit(10, "feet"),
  41355. weight: math.unit(1500, "lb"),
  41356. name: "Back",
  41357. image: {
  41358. source: "./media/characters/miles-thestia/back.svg",
  41359. extra: 1799/1690,
  41360. bottom: 47/1846
  41361. }
  41362. },
  41363. frontNsfw: {
  41364. height: math.unit(10, "feet"),
  41365. weight: math.unit(1500, "lb"),
  41366. name: "Front (NSFW)",
  41367. image: {
  41368. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41369. extra: 1812/1727,
  41370. bottom: 86/1898
  41371. }
  41372. },
  41373. },
  41374. [
  41375. {
  41376. name: "Mini-Macro",
  41377. height: math.unit(10, "feet"),
  41378. default: true
  41379. },
  41380. ]
  41381. ))
  41382. characterMakers.push(() => makeCharacter(
  41383. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41384. {
  41385. front: {
  41386. height: math.unit(25, "feet"),
  41387. name: "Front",
  41388. image: {
  41389. source: "./media/characters/titan-s-wulf/front.svg",
  41390. extra: 1560/1484,
  41391. bottom: 76/1636
  41392. }
  41393. },
  41394. },
  41395. [
  41396. {
  41397. name: "Smallest",
  41398. height: math.unit(25, "feet"),
  41399. default: true
  41400. },
  41401. {
  41402. name: "Normal",
  41403. height: math.unit(200, "feet")
  41404. },
  41405. {
  41406. name: "Macro",
  41407. height: math.unit(200000, "feet")
  41408. },
  41409. {
  41410. name: "Multiversal Original",
  41411. height: math.unit(10000, "multiverses")
  41412. },
  41413. ]
  41414. ))
  41415. characterMakers.push(() => makeCharacter(
  41416. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41417. {
  41418. front: {
  41419. height: math.unit(8, "feet"),
  41420. weight: math.unit(553, "lb"),
  41421. name: "Front",
  41422. image: {
  41423. source: "./media/characters/tawendeh/front.svg",
  41424. extra: 2365/2268,
  41425. bottom: 83/2448
  41426. }
  41427. },
  41428. frontClothed: {
  41429. height: math.unit(8, "feet"),
  41430. weight: math.unit(553, "lb"),
  41431. name: "Front (Clothed)",
  41432. image: {
  41433. source: "./media/characters/tawendeh/front-clothed.svg",
  41434. extra: 2365/2268,
  41435. bottom: 83/2448
  41436. }
  41437. },
  41438. back: {
  41439. height: math.unit(8, "feet"),
  41440. weight: math.unit(553, "lb"),
  41441. name: "Back",
  41442. image: {
  41443. source: "./media/characters/tawendeh/back.svg",
  41444. extra: 2397/2294,
  41445. bottom: 42/2439
  41446. }
  41447. },
  41448. },
  41449. [
  41450. {
  41451. name: "Mortal Interaction",
  41452. height: math.unit(8, "feet"),
  41453. default: true
  41454. },
  41455. {
  41456. name: "Giant",
  41457. height: math.unit(80, "feet")
  41458. },
  41459. {
  41460. name: "Macro",
  41461. height: math.unit(800, "feet")
  41462. },
  41463. {
  41464. name: "Megamacro",
  41465. height: math.unit(8000, "feet")
  41466. },
  41467. {
  41468. name: "City-Crushing",
  41469. height: math.unit(24000, "feet")
  41470. },
  41471. {
  41472. name: "Mountain-Mashing",
  41473. height: math.unit(80000, "feet")
  41474. },
  41475. {
  41476. name: "Nation Nemesis",
  41477. height: math.unit(8e6, "feet")
  41478. },
  41479. {
  41480. name: "Continent Cracker",
  41481. height: math.unit(24e6, "feet")
  41482. },
  41483. {
  41484. name: "Earth-Eclipsing",
  41485. height: math.unit(2.4e8, "feet")
  41486. },
  41487. {
  41488. name: "Gas Giant Gulper",
  41489. height: math.unit(2.4e9, "feet")
  41490. },
  41491. {
  41492. name: "Sol-Swallowing",
  41493. height: math.unit(8e10, "feet")
  41494. },
  41495. {
  41496. name: "Galaxy Gulper",
  41497. height: math.unit(8, "galaxies")
  41498. },
  41499. {
  41500. name: "Cosmos Churner",
  41501. height: math.unit(8, "universes")
  41502. },
  41503. {
  41504. name: "Omnipotent Otter",
  41505. height: math.unit(80, "universes")
  41506. },
  41507. ]
  41508. ))
  41509. characterMakers.push(() => makeCharacter(
  41510. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41511. {
  41512. front: {
  41513. height: math.unit(2.6, "meters"),
  41514. weight: math.unit(900, "kg"),
  41515. name: "Front",
  41516. image: {
  41517. source: "./media/characters/neesha/front.svg",
  41518. extra: 1803/1653,
  41519. bottom: 128/1931
  41520. }
  41521. },
  41522. },
  41523. [
  41524. {
  41525. name: "Normal",
  41526. height: math.unit(2.6, "meters"),
  41527. default: true
  41528. },
  41529. {
  41530. name: "Macro",
  41531. height: math.unit(50, "meters")
  41532. },
  41533. ]
  41534. ))
  41535. characterMakers.push(() => makeCharacter(
  41536. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41537. {
  41538. front: {
  41539. height: math.unit(5, "feet"),
  41540. weight: math.unit(185, "lb"),
  41541. name: "Front",
  41542. image: {
  41543. source: "./media/characters/kyera/front.svg",
  41544. extra: 1875/1790,
  41545. bottom: 96/1971
  41546. }
  41547. },
  41548. },
  41549. [
  41550. {
  41551. name: "Normal",
  41552. height: math.unit(5, "feet"),
  41553. default: true
  41554. },
  41555. ]
  41556. ))
  41557. characterMakers.push(() => makeCharacter(
  41558. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41559. {
  41560. front: {
  41561. height: math.unit(7 + 6/12, "feet"),
  41562. weight: math.unit(540, "lb"),
  41563. name: "Front",
  41564. image: {
  41565. source: "./media/characters/yuko/front.svg",
  41566. extra: 1282/1222,
  41567. bottom: 101/1383
  41568. }
  41569. },
  41570. frontClothed: {
  41571. height: math.unit(7 + 6/12, "feet"),
  41572. weight: math.unit(540, "lb"),
  41573. name: "Front (Clothed)",
  41574. image: {
  41575. source: "./media/characters/yuko/front-clothed.svg",
  41576. extra: 1282/1222,
  41577. bottom: 101/1383
  41578. }
  41579. },
  41580. },
  41581. [
  41582. {
  41583. name: "Normal",
  41584. height: math.unit(7 + 6/12, "feet"),
  41585. default: true
  41586. },
  41587. {
  41588. name: "Macro",
  41589. height: math.unit(26 + 9/12, "feet")
  41590. },
  41591. {
  41592. name: "Megamacro",
  41593. height: math.unit(300, "feet")
  41594. },
  41595. {
  41596. name: "Gigamacro",
  41597. height: math.unit(5000, "feet")
  41598. },
  41599. {
  41600. name: "Planetary",
  41601. height: math.unit(10000, "miles")
  41602. },
  41603. ]
  41604. ))
  41605. characterMakers.push(() => makeCharacter(
  41606. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41607. {
  41608. front: {
  41609. height: math.unit(8 + 2/12, "feet"),
  41610. weight: math.unit(600, "lb"),
  41611. name: "Front",
  41612. image: {
  41613. source: "./media/characters/deam-nitrel/front.svg",
  41614. extra: 1308/1234,
  41615. bottom: 125/1433
  41616. }
  41617. },
  41618. },
  41619. [
  41620. {
  41621. name: "Normal",
  41622. height: math.unit(8 + 2/12, "feet"),
  41623. default: true
  41624. },
  41625. ]
  41626. ))
  41627. characterMakers.push(() => makeCharacter(
  41628. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41629. {
  41630. front: {
  41631. height: math.unit(6.1, "feet"),
  41632. weight: math.unit(180, "lb"),
  41633. name: "Front",
  41634. image: {
  41635. source: "./media/characters/skyress/front.svg",
  41636. extra: 1045/915,
  41637. bottom: 28/1073
  41638. }
  41639. },
  41640. maw: {
  41641. height: math.unit(1, "feet"),
  41642. name: "Maw",
  41643. image: {
  41644. source: "./media/characters/skyress/maw.svg"
  41645. }
  41646. },
  41647. },
  41648. [
  41649. {
  41650. name: "Normal",
  41651. height: math.unit(6.1, "feet"),
  41652. default: true
  41653. },
  41654. {
  41655. name: "Macro",
  41656. height: math.unit(200, "feet")
  41657. },
  41658. ]
  41659. ))
  41660. characterMakers.push(() => makeCharacter(
  41661. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41662. {
  41663. front: {
  41664. height: math.unit(4 + 2/12, "feet"),
  41665. weight: math.unit(40, "kg"),
  41666. name: "Front",
  41667. image: {
  41668. source: "./media/characters/amethyst-jones/front.svg",
  41669. extra: 1220/1150,
  41670. bottom: 101/1321
  41671. }
  41672. },
  41673. },
  41674. [
  41675. {
  41676. name: "Normal",
  41677. height: math.unit(4 + 2/12, "feet"),
  41678. default: true
  41679. },
  41680. ]
  41681. ))
  41682. characterMakers.push(() => makeCharacter(
  41683. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41684. {
  41685. front: {
  41686. height: math.unit(1.7, "m"),
  41687. weight: math.unit(135, "lb"),
  41688. name: "Front",
  41689. image: {
  41690. source: "./media/characters/jade/front.svg",
  41691. extra: 1818/1767,
  41692. bottom: 32/1850
  41693. }
  41694. },
  41695. back: {
  41696. height: math.unit(1.7, "m"),
  41697. weight: math.unit(135, "lb"),
  41698. name: "Back",
  41699. image: {
  41700. source: "./media/characters/jade/back.svg",
  41701. extra: 1869/1809,
  41702. bottom: 35/1904
  41703. }
  41704. },
  41705. hand: {
  41706. height: math.unit(0.24, "m"),
  41707. name: "Hand",
  41708. image: {
  41709. source: "./media/characters/jade/hand.svg"
  41710. }
  41711. },
  41712. foot: {
  41713. height: math.unit(0.263, "m"),
  41714. name: "Foot",
  41715. image: {
  41716. source: "./media/characters/jade/foot.svg"
  41717. }
  41718. },
  41719. dick: {
  41720. height: math.unit(0.47, "m"),
  41721. name: "Dick",
  41722. image: {
  41723. source: "./media/characters/jade/dick.svg"
  41724. }
  41725. },
  41726. },
  41727. [
  41728. {
  41729. name: "Micro",
  41730. height: math.unit(22, "cm")
  41731. },
  41732. {
  41733. name: "Normal",
  41734. height: math.unit(1.7, "m"),
  41735. default: true
  41736. },
  41737. {
  41738. name: "Macro",
  41739. height: math.unit(152, "m")
  41740. },
  41741. ]
  41742. ))
  41743. characterMakers.push(() => makeCharacter(
  41744. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41745. {
  41746. front: {
  41747. height: math.unit(100, "miles"),
  41748. weight: math.unit(20000, "tons"),
  41749. name: "Front",
  41750. image: {
  41751. source: "./media/characters/cookie/front.svg",
  41752. extra: 1125/1070,
  41753. bottom: 30/1155
  41754. }
  41755. },
  41756. },
  41757. [
  41758. {
  41759. name: "Big",
  41760. height: math.unit(50, "feet")
  41761. },
  41762. {
  41763. name: "Macro",
  41764. height: math.unit(100, "miles"),
  41765. default: true
  41766. },
  41767. {
  41768. name: "Megamacro",
  41769. height: math.unit(90000, "miles")
  41770. },
  41771. ]
  41772. ))
  41773. characterMakers.push(() => makeCharacter(
  41774. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41775. {
  41776. front: {
  41777. height: math.unit(6, "feet"),
  41778. weight: math.unit(145, "lb"),
  41779. name: "Front",
  41780. image: {
  41781. source: "./media/characters/farzian/front.svg",
  41782. extra: 1902/1693,
  41783. bottom: 108/2010
  41784. }
  41785. },
  41786. },
  41787. [
  41788. {
  41789. name: "Macro",
  41790. height: math.unit(500, "feet"),
  41791. default: true
  41792. },
  41793. ]
  41794. ))
  41795. characterMakers.push(() => makeCharacter(
  41796. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41797. {
  41798. front: {
  41799. height: math.unit(3 + 6/12, "feet"),
  41800. weight: math.unit(50, "lb"),
  41801. name: "Front",
  41802. image: {
  41803. source: "./media/characters/kimberly-tilson/front.svg",
  41804. extra: 1400/1322,
  41805. bottom: 36/1436
  41806. }
  41807. },
  41808. back: {
  41809. height: math.unit(3 + 6/12, "feet"),
  41810. weight: math.unit(50, "lb"),
  41811. name: "Back",
  41812. image: {
  41813. source: "./media/characters/kimberly-tilson/back.svg",
  41814. extra: 1370/1307,
  41815. bottom: 20/1390
  41816. }
  41817. },
  41818. },
  41819. [
  41820. {
  41821. name: "Normal",
  41822. height: math.unit(3 + 6/12, "feet"),
  41823. default: true
  41824. },
  41825. ]
  41826. ))
  41827. characterMakers.push(() => makeCharacter(
  41828. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41829. {
  41830. front: {
  41831. height: math.unit(1148, "feet"),
  41832. weight: math.unit(34057, "lb"),
  41833. name: "Front",
  41834. image: {
  41835. source: "./media/characters/harthos/front.svg",
  41836. extra: 1391/1339,
  41837. bottom: 13/1404
  41838. }
  41839. },
  41840. },
  41841. [
  41842. {
  41843. name: "Macro",
  41844. height: math.unit(1148, "feet"),
  41845. default: true
  41846. },
  41847. ]
  41848. ))
  41849. characterMakers.push(() => makeCharacter(
  41850. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41851. {
  41852. front: {
  41853. height: math.unit(15, "feet"),
  41854. name: "Front",
  41855. image: {
  41856. source: "./media/characters/hypatia/front.svg",
  41857. extra: 1653/1591,
  41858. bottom: 79/1732
  41859. }
  41860. },
  41861. },
  41862. [
  41863. {
  41864. name: "Normal",
  41865. height: math.unit(15, "feet")
  41866. },
  41867. {
  41868. name: "Small",
  41869. height: math.unit(300, "feet")
  41870. },
  41871. {
  41872. name: "Macro",
  41873. height: math.unit(2500, "feet"),
  41874. default: true
  41875. },
  41876. {
  41877. name: "Mega Macro",
  41878. height: math.unit(1500, "miles")
  41879. },
  41880. {
  41881. name: "Giga Macro",
  41882. height: math.unit(1.5e6, "miles")
  41883. },
  41884. ]
  41885. ))
  41886. characterMakers.push(() => makeCharacter(
  41887. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41888. {
  41889. front: {
  41890. height: math.unit(6, "feet"),
  41891. weight: math.unit(200, "lb"),
  41892. name: "Front",
  41893. image: {
  41894. source: "./media/characters/wulver/front.svg",
  41895. extra: 1724/1632,
  41896. bottom: 130/1854
  41897. }
  41898. },
  41899. frontNsfw: {
  41900. height: math.unit(6, "feet"),
  41901. weight: math.unit(200, "lb"),
  41902. name: "Front (NSFW)",
  41903. image: {
  41904. source: "./media/characters/wulver/front-nsfw.svg",
  41905. extra: 1724/1632,
  41906. bottom: 130/1854
  41907. }
  41908. },
  41909. },
  41910. [
  41911. {
  41912. name: "Human-Sized",
  41913. height: math.unit(6, "feet")
  41914. },
  41915. {
  41916. name: "Normal",
  41917. height: math.unit(4, "meters"),
  41918. default: true
  41919. },
  41920. {
  41921. name: "Large",
  41922. height: math.unit(6, "m")
  41923. },
  41924. ]
  41925. ))
  41926. characterMakers.push(() => makeCharacter(
  41927. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41928. {
  41929. front: {
  41930. height: math.unit(7, "feet"),
  41931. name: "Front",
  41932. image: {
  41933. source: "./media/characters/maru/front.svg",
  41934. extra: 1595/1570,
  41935. bottom: 0/1595
  41936. }
  41937. },
  41938. },
  41939. [
  41940. {
  41941. name: "Normal",
  41942. height: math.unit(7, "feet"),
  41943. default: true
  41944. },
  41945. {
  41946. name: "Macro",
  41947. height: math.unit(700, "feet")
  41948. },
  41949. {
  41950. name: "Mega Macro",
  41951. height: math.unit(25, "miles")
  41952. },
  41953. ]
  41954. ))
  41955. characterMakers.push(() => makeCharacter(
  41956. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41957. {
  41958. front: {
  41959. height: math.unit(6, "feet"),
  41960. weight: math.unit(170, "lb"),
  41961. name: "Front",
  41962. image: {
  41963. source: "./media/characters/xenon/front.svg",
  41964. extra: 1376/1305,
  41965. bottom: 56/1432
  41966. }
  41967. },
  41968. back: {
  41969. height: math.unit(6, "feet"),
  41970. weight: math.unit(170, "lb"),
  41971. name: "Back",
  41972. image: {
  41973. source: "./media/characters/xenon/back.svg",
  41974. extra: 1328/1259,
  41975. bottom: 95/1423
  41976. }
  41977. },
  41978. maw: {
  41979. height: math.unit(0.52, "feet"),
  41980. name: "Maw",
  41981. image: {
  41982. source: "./media/characters/xenon/maw.svg"
  41983. }
  41984. },
  41985. handLeft: {
  41986. height: math.unit(0.82 * 169 / 153, "feet"),
  41987. name: "Hand (Left)",
  41988. image: {
  41989. source: "./media/characters/xenon/hand-left.svg"
  41990. }
  41991. },
  41992. handRight: {
  41993. height: math.unit(0.82, "feet"),
  41994. name: "Hand (Right)",
  41995. image: {
  41996. source: "./media/characters/xenon/hand-right.svg"
  41997. }
  41998. },
  41999. footLeft: {
  42000. height: math.unit(1.13, "feet"),
  42001. name: "Foot (Left)",
  42002. image: {
  42003. source: "./media/characters/xenon/foot-left.svg"
  42004. }
  42005. },
  42006. footRight: {
  42007. height: math.unit(1.13 * 194 / 196, "feet"),
  42008. name: "Foot (Right)",
  42009. image: {
  42010. source: "./media/characters/xenon/foot-right.svg"
  42011. }
  42012. },
  42013. },
  42014. [
  42015. {
  42016. name: "Micro",
  42017. height: math.unit(0.8, "inches")
  42018. },
  42019. {
  42020. name: "Normal",
  42021. height: math.unit(6, "feet")
  42022. },
  42023. {
  42024. name: "Macro",
  42025. height: math.unit(50, "feet"),
  42026. default: true
  42027. },
  42028. {
  42029. name: "Macro+",
  42030. height: math.unit(250, "feet")
  42031. },
  42032. {
  42033. name: "Megamacro",
  42034. height: math.unit(1500, "feet")
  42035. },
  42036. ]
  42037. ))
  42038. characterMakers.push(() => makeCharacter(
  42039. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42040. {
  42041. front: {
  42042. height: math.unit(7 + 5/12, "feet"),
  42043. name: "Front",
  42044. image: {
  42045. source: "./media/characters/zane/front.svg",
  42046. extra: 1260/1203,
  42047. bottom: 94/1354
  42048. }
  42049. },
  42050. back: {
  42051. height: math.unit(5.05, "feet"),
  42052. name: "Back",
  42053. image: {
  42054. source: "./media/characters/zane/back.svg",
  42055. extra: 893/829,
  42056. bottom: 30/923
  42057. }
  42058. },
  42059. werewolf: {
  42060. height: math.unit(11, "feet"),
  42061. name: "Werewolf",
  42062. image: {
  42063. source: "./media/characters/zane/werewolf.svg",
  42064. extra: 1383/1323,
  42065. bottom: 89/1472
  42066. }
  42067. },
  42068. foot: {
  42069. height: math.unit(1.46, "feet"),
  42070. name: "Foot",
  42071. image: {
  42072. source: "./media/characters/zane/foot.svg"
  42073. }
  42074. },
  42075. footFront: {
  42076. height: math.unit(0.784, "feet"),
  42077. name: "Foot (Front)",
  42078. image: {
  42079. source: "./media/characters/zane/foot-front.svg"
  42080. }
  42081. },
  42082. dick: {
  42083. height: math.unit(1.95, "feet"),
  42084. name: "Dick",
  42085. image: {
  42086. source: "./media/characters/zane/dick.svg"
  42087. }
  42088. },
  42089. dickWerewolf: {
  42090. height: math.unit(3.77, "feet"),
  42091. name: "Dick (Werewolf)",
  42092. image: {
  42093. source: "./media/characters/zane/dick.svg"
  42094. }
  42095. },
  42096. },
  42097. [
  42098. {
  42099. name: "Normal",
  42100. height: math.unit(7 + 5/12, "feet"),
  42101. default: true
  42102. },
  42103. ]
  42104. ))
  42105. characterMakers.push(() => makeCharacter(
  42106. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42107. {
  42108. front: {
  42109. height: math.unit(6 + 2/12, "feet"),
  42110. weight: math.unit(284, "lb"),
  42111. name: "Front",
  42112. image: {
  42113. source: "./media/characters/benni-desparque/front.svg",
  42114. extra: 1353/1126,
  42115. bottom: 69/1422
  42116. }
  42117. },
  42118. },
  42119. [
  42120. {
  42121. name: "Civilian",
  42122. height: math.unit(6 + 2/12, "feet")
  42123. },
  42124. {
  42125. name: "Normal",
  42126. height: math.unit(98, "feet"),
  42127. default: true
  42128. },
  42129. {
  42130. name: "Kaiju Fighter",
  42131. height: math.unit(268, "feet")
  42132. },
  42133. ]
  42134. ))
  42135. characterMakers.push(() => makeCharacter(
  42136. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42137. {
  42138. front: {
  42139. height: math.unit(5, "feet"),
  42140. weight: math.unit(105, "lb"),
  42141. name: "Front",
  42142. image: {
  42143. source: "./media/characters/maxine/front.svg",
  42144. extra: 1386/1250,
  42145. bottom: 71/1457
  42146. }
  42147. },
  42148. },
  42149. [
  42150. {
  42151. name: "Normal",
  42152. height: math.unit(5, "feet"),
  42153. default: true
  42154. },
  42155. ]
  42156. ))
  42157. characterMakers.push(() => makeCharacter(
  42158. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42159. {
  42160. front: {
  42161. height: math.unit(11 + 7/12, "feet"),
  42162. weight: math.unit(9576, "lb"),
  42163. name: "Front",
  42164. image: {
  42165. source: "./media/characters/scaly/front.svg",
  42166. extra: 888/867,
  42167. bottom: 36/924
  42168. }
  42169. },
  42170. },
  42171. [
  42172. {
  42173. name: "Normal",
  42174. height: math.unit(11 + 7/12, "feet"),
  42175. default: true
  42176. },
  42177. ]
  42178. ))
  42179. characterMakers.push(() => makeCharacter(
  42180. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42181. {
  42182. front: {
  42183. height: math.unit(6 + 3/12, "feet"),
  42184. name: "Front",
  42185. image: {
  42186. source: "./media/characters/saelria/front.svg",
  42187. extra: 1243/1138,
  42188. bottom: 46/1289
  42189. }
  42190. },
  42191. },
  42192. [
  42193. {
  42194. name: "Micro",
  42195. height: math.unit(6, "inches"),
  42196. },
  42197. {
  42198. name: "Normal",
  42199. height: math.unit(6 + 3/12, "feet"),
  42200. default: true
  42201. },
  42202. {
  42203. name: "Macro",
  42204. height: math.unit(25, "feet")
  42205. },
  42206. ]
  42207. ))
  42208. characterMakers.push(() => makeCharacter(
  42209. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42210. {
  42211. front: {
  42212. height: math.unit(80, "meters"),
  42213. weight: math.unit(7000, "tonnes"),
  42214. name: "Front",
  42215. image: {
  42216. source: "./media/characters/tef/front.svg",
  42217. extra: 2036/1991,
  42218. bottom: 54/2090
  42219. }
  42220. },
  42221. back: {
  42222. height: math.unit(80, "meters"),
  42223. weight: math.unit(7000, "tonnes"),
  42224. name: "Back",
  42225. image: {
  42226. source: "./media/characters/tef/back.svg",
  42227. extra: 2036/1991,
  42228. bottom: 54/2090
  42229. }
  42230. },
  42231. },
  42232. [
  42233. {
  42234. name: "Macro",
  42235. height: math.unit(80, "meters"),
  42236. default: true
  42237. },
  42238. ]
  42239. ))
  42240. characterMakers.push(() => makeCharacter(
  42241. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42242. {
  42243. front: {
  42244. height: math.unit(13, "feet"),
  42245. weight: math.unit(6, "tons"),
  42246. name: "Front",
  42247. image: {
  42248. source: "./media/characters/rover/front.svg",
  42249. extra: 1233/1156,
  42250. bottom: 50/1283
  42251. }
  42252. },
  42253. back: {
  42254. height: math.unit(13, "feet"),
  42255. weight: math.unit(6, "tons"),
  42256. name: "Back",
  42257. image: {
  42258. source: "./media/characters/rover/back.svg",
  42259. extra: 1327/1258,
  42260. bottom: 39/1366
  42261. }
  42262. },
  42263. },
  42264. [
  42265. {
  42266. name: "Normal",
  42267. height: math.unit(13, "feet"),
  42268. default: true
  42269. },
  42270. {
  42271. name: "Macro",
  42272. height: math.unit(1300, "feet")
  42273. },
  42274. {
  42275. name: "Megamacro",
  42276. height: math.unit(1300, "miles")
  42277. },
  42278. {
  42279. name: "Gigamacro",
  42280. height: math.unit(1300000, "miles")
  42281. },
  42282. ]
  42283. ))
  42284. characterMakers.push(() => makeCharacter(
  42285. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42286. {
  42287. front: {
  42288. height: math.unit(6, "feet"),
  42289. weight: math.unit(150, "lb"),
  42290. name: "Front",
  42291. image: {
  42292. source: "./media/characters/ariz/front.svg",
  42293. extra: 1401/1346,
  42294. bottom: 5/1406
  42295. }
  42296. },
  42297. },
  42298. [
  42299. {
  42300. name: "Normal",
  42301. height: math.unit(10, "feet"),
  42302. default: true
  42303. },
  42304. ]
  42305. ))
  42306. characterMakers.push(() => makeCharacter(
  42307. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42308. {
  42309. front: {
  42310. height: math.unit(6, "feet"),
  42311. weight: math.unit(140, "lb"),
  42312. name: "Front",
  42313. image: {
  42314. source: "./media/characters/sigrun/front.svg",
  42315. extra: 1418/1359,
  42316. bottom: 27/1445
  42317. }
  42318. },
  42319. },
  42320. [
  42321. {
  42322. name: "Macro",
  42323. height: math.unit(35, "feet"),
  42324. default: true
  42325. },
  42326. ]
  42327. ))
  42328. characterMakers.push(() => makeCharacter(
  42329. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42330. {
  42331. front: {
  42332. height: math.unit(6, "feet"),
  42333. weight: math.unit(150, "lb"),
  42334. name: "Front",
  42335. image: {
  42336. source: "./media/characters/numin/front.svg",
  42337. extra: 1433/1388,
  42338. bottom: 12/1445
  42339. }
  42340. },
  42341. },
  42342. [
  42343. {
  42344. name: "Macro",
  42345. height: math.unit(21.5, "km"),
  42346. default: true
  42347. },
  42348. ]
  42349. ))
  42350. characterMakers.push(() => makeCharacter(
  42351. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42352. {
  42353. front: {
  42354. height: math.unit(6, "feet"),
  42355. weight: math.unit(463, "lb"),
  42356. name: "Front",
  42357. image: {
  42358. source: "./media/characters/melwa/front.svg",
  42359. extra: 1307/1248,
  42360. bottom: 93/1400
  42361. }
  42362. },
  42363. },
  42364. [
  42365. {
  42366. name: "Macro",
  42367. height: math.unit(50, "meters"),
  42368. default: true
  42369. },
  42370. ]
  42371. ))
  42372. characterMakers.push(() => makeCharacter(
  42373. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42374. {
  42375. front: {
  42376. height: math.unit(325, "feet"),
  42377. name: "Front",
  42378. image: {
  42379. source: "./media/characters/zorkaiju/front.svg",
  42380. extra: 1955/1814,
  42381. bottom: 40/1995
  42382. }
  42383. },
  42384. frontExtended: {
  42385. height: math.unit(325, "feet"),
  42386. name: "Front (Extended)",
  42387. image: {
  42388. source: "./media/characters/zorkaiju/front-extended.svg",
  42389. extra: 1955/1814,
  42390. bottom: 40/1995
  42391. }
  42392. },
  42393. side: {
  42394. height: math.unit(325, "feet"),
  42395. name: "Side",
  42396. image: {
  42397. source: "./media/characters/zorkaiju/side.svg",
  42398. extra: 1495/1396,
  42399. bottom: 17/1512
  42400. }
  42401. },
  42402. sideExtended: {
  42403. height: math.unit(325, "feet"),
  42404. name: "Side (Extended)",
  42405. image: {
  42406. source: "./media/characters/zorkaiju/side-extended.svg",
  42407. extra: 1495/1396,
  42408. bottom: 17/1512
  42409. }
  42410. },
  42411. back: {
  42412. height: math.unit(325, "feet"),
  42413. name: "Back",
  42414. image: {
  42415. source: "./media/characters/zorkaiju/back.svg",
  42416. extra: 1959/1821,
  42417. bottom: 31/1990
  42418. }
  42419. },
  42420. backExtended: {
  42421. height: math.unit(325, "feet"),
  42422. name: "Back (Extended)",
  42423. image: {
  42424. source: "./media/characters/zorkaiju/back-extended.svg",
  42425. extra: 1959/1821,
  42426. bottom: 31/1990
  42427. }
  42428. },
  42429. hand: {
  42430. height: math.unit(58.4, "feet"),
  42431. name: "Hand",
  42432. image: {
  42433. source: "./media/characters/zorkaiju/hand.svg"
  42434. }
  42435. },
  42436. handExtended: {
  42437. height: math.unit(61.4, "feet"),
  42438. name: "Hand (Extended)",
  42439. image: {
  42440. source: "./media/characters/zorkaiju/hand-extended.svg"
  42441. }
  42442. },
  42443. foot: {
  42444. height: math.unit(95, "feet"),
  42445. name: "Foot",
  42446. image: {
  42447. source: "./media/characters/zorkaiju/foot.svg"
  42448. }
  42449. },
  42450. leftArm: {
  42451. height: math.unit(59, "feet"),
  42452. name: "Left Arm",
  42453. image: {
  42454. source: "./media/characters/zorkaiju/left-arm.svg"
  42455. }
  42456. },
  42457. rightArm: {
  42458. height: math.unit(59, "feet"),
  42459. name: "Right Arm",
  42460. image: {
  42461. source: "./media/characters/zorkaiju/right-arm.svg"
  42462. }
  42463. },
  42464. leftArmExtended: {
  42465. height: math.unit(59 * 1.033546, "feet"),
  42466. name: "Left Arm (Extended)",
  42467. image: {
  42468. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42469. }
  42470. },
  42471. rightArmExtended: {
  42472. height: math.unit(59 * 1.0496, "feet"),
  42473. name: "Right Arm (Extended)",
  42474. image: {
  42475. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42476. }
  42477. },
  42478. tail: {
  42479. height: math.unit(104, "feet"),
  42480. name: "Tail",
  42481. image: {
  42482. source: "./media/characters/zorkaiju/tail.svg"
  42483. }
  42484. },
  42485. tailExtended: {
  42486. height: math.unit(104, "feet"),
  42487. name: "Tail (Extended)",
  42488. image: {
  42489. source: "./media/characters/zorkaiju/tail-extended.svg"
  42490. }
  42491. },
  42492. tailBottom: {
  42493. height: math.unit(104, "feet"),
  42494. name: "Tail Bottom",
  42495. image: {
  42496. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42497. }
  42498. },
  42499. crystal: {
  42500. height: math.unit(27.54, "feet"),
  42501. name: "Crystal",
  42502. image: {
  42503. source: "./media/characters/zorkaiju/crystal.svg"
  42504. }
  42505. },
  42506. },
  42507. [
  42508. {
  42509. name: "Kaiju",
  42510. height: math.unit(325, "feet"),
  42511. default: true
  42512. },
  42513. ]
  42514. ))
  42515. characterMakers.push(() => makeCharacter(
  42516. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42517. {
  42518. front: {
  42519. height: math.unit(6 + 1/12, "feet"),
  42520. weight: math.unit(115, "lb"),
  42521. name: "Front",
  42522. image: {
  42523. source: "./media/characters/bailey-belfry/front.svg",
  42524. extra: 1240/1121,
  42525. bottom: 101/1341
  42526. }
  42527. },
  42528. },
  42529. [
  42530. {
  42531. name: "Normal",
  42532. height: math.unit(6 + 1/12, "feet"),
  42533. default: true
  42534. },
  42535. ]
  42536. ))
  42537. characterMakers.push(() => makeCharacter(
  42538. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42539. {
  42540. side: {
  42541. height: math.unit(4, "meters"),
  42542. weight: math.unit(250, "kg"),
  42543. name: "Side",
  42544. image: {
  42545. source: "./media/characters/blacky/side.svg",
  42546. extra: 1027/919,
  42547. bottom: 43/1070
  42548. }
  42549. },
  42550. maw: {
  42551. height: math.unit(1, "meters"),
  42552. name: "Maw",
  42553. image: {
  42554. source: "./media/characters/blacky/maw.svg"
  42555. }
  42556. },
  42557. paw: {
  42558. height: math.unit(1, "meters"),
  42559. name: "Paw",
  42560. image: {
  42561. source: "./media/characters/blacky/paw.svg"
  42562. }
  42563. },
  42564. },
  42565. [
  42566. {
  42567. name: "Normal",
  42568. height: math.unit(4, "meters"),
  42569. default: true
  42570. },
  42571. ]
  42572. ))
  42573. characterMakers.push(() => makeCharacter(
  42574. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42575. {
  42576. front: {
  42577. height: math.unit(170, "cm"),
  42578. weight: math.unit(66, "kg"),
  42579. name: "Front",
  42580. image: {
  42581. source: "./media/characters/thux-ei/front.svg",
  42582. extra: 1109/1011,
  42583. bottom: 8/1117
  42584. }
  42585. },
  42586. },
  42587. [
  42588. {
  42589. name: "Normal",
  42590. height: math.unit(170, "cm"),
  42591. default: true
  42592. },
  42593. ]
  42594. ))
  42595. characterMakers.push(() => makeCharacter(
  42596. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42597. {
  42598. front: {
  42599. height: math.unit(5, "feet"),
  42600. weight: math.unit(120, "lb"),
  42601. name: "Front",
  42602. image: {
  42603. source: "./media/characters/roxanne-voltaire/front.svg",
  42604. extra: 1901/1779,
  42605. bottom: 53/1954
  42606. }
  42607. },
  42608. },
  42609. [
  42610. {
  42611. name: "Normal",
  42612. height: math.unit(5, "feet"),
  42613. default: true
  42614. },
  42615. {
  42616. name: "Giant",
  42617. height: math.unit(50, "feet")
  42618. },
  42619. {
  42620. name: "Titan",
  42621. height: math.unit(500, "feet")
  42622. },
  42623. {
  42624. name: "Macro",
  42625. height: math.unit(5000, "feet")
  42626. },
  42627. {
  42628. name: "Megamacro",
  42629. height: math.unit(50000, "feet")
  42630. },
  42631. {
  42632. name: "Gigamacro",
  42633. height: math.unit(500000, "feet")
  42634. },
  42635. {
  42636. name: "Teramacro",
  42637. height: math.unit(5e6, "feet")
  42638. },
  42639. ]
  42640. ))
  42641. characterMakers.push(() => makeCharacter(
  42642. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42643. {
  42644. front: {
  42645. height: math.unit(6 + 2/12, "feet"),
  42646. name: "Front",
  42647. image: {
  42648. source: "./media/characters/squeaks/front.svg",
  42649. extra: 1823/1768,
  42650. bottom: 138/1961
  42651. }
  42652. },
  42653. },
  42654. [
  42655. {
  42656. name: "Micro",
  42657. height: math.unit(0.5, "inches")
  42658. },
  42659. {
  42660. name: "Normal",
  42661. height: math.unit(6 + 2/12, "feet"),
  42662. default: true
  42663. },
  42664. {
  42665. name: "Macro",
  42666. height: math.unit(600, "feet")
  42667. },
  42668. ]
  42669. ))
  42670. characterMakers.push(() => makeCharacter(
  42671. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42672. {
  42673. front: {
  42674. height: math.unit(1.72, "meters"),
  42675. name: "Front",
  42676. image: {
  42677. source: "./media/characters/archinger/front.svg",
  42678. extra: 1861/1675,
  42679. bottom: 125/1986
  42680. }
  42681. },
  42682. back: {
  42683. height: math.unit(1.72, "meters"),
  42684. name: "Back",
  42685. image: {
  42686. source: "./media/characters/archinger/back.svg",
  42687. extra: 1844/1701,
  42688. bottom: 104/1948
  42689. }
  42690. },
  42691. cock: {
  42692. height: math.unit(0.59, "feet"),
  42693. name: "Cock",
  42694. image: {
  42695. source: "./media/characters/archinger/cock.svg"
  42696. }
  42697. },
  42698. },
  42699. [
  42700. {
  42701. name: "Normal",
  42702. height: math.unit(1.72, "meters"),
  42703. default: true
  42704. },
  42705. {
  42706. name: "Macro",
  42707. height: math.unit(84, "meters")
  42708. },
  42709. {
  42710. name: "Macro+",
  42711. height: math.unit(112, "meters")
  42712. },
  42713. {
  42714. name: "Macro++",
  42715. height: math.unit(960, "meters")
  42716. },
  42717. {
  42718. name: "Macro+++",
  42719. height: math.unit(4, "km")
  42720. },
  42721. {
  42722. name: "Macro++++",
  42723. height: math.unit(48, "km")
  42724. },
  42725. {
  42726. name: "Macro+++++",
  42727. height: math.unit(4500, "km")
  42728. },
  42729. ]
  42730. ))
  42731. characterMakers.push(() => makeCharacter(
  42732. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42733. {
  42734. front: {
  42735. height: math.unit(5 + 5/12, "feet"),
  42736. name: "Front",
  42737. image: {
  42738. source: "./media/characters/alsnapz/front.svg",
  42739. extra: 1157/1065,
  42740. bottom: 42/1199
  42741. }
  42742. },
  42743. },
  42744. [
  42745. {
  42746. name: "Normal",
  42747. height: math.unit(5 + 5/12, "feet"),
  42748. default: true
  42749. },
  42750. ]
  42751. ))
  42752. characterMakers.push(() => makeCharacter(
  42753. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42754. {
  42755. side: {
  42756. height: math.unit(3.2, "earths"),
  42757. name: "Side",
  42758. image: {
  42759. source: "./media/characters/mag/side.svg",
  42760. extra: 1331/1008,
  42761. bottom: 52/1383
  42762. }
  42763. },
  42764. wing: {
  42765. height: math.unit(1.94, "earths"),
  42766. name: "Wing",
  42767. image: {
  42768. source: "./media/characters/mag/wing.svg"
  42769. }
  42770. },
  42771. dick: {
  42772. height: math.unit(1.8, "earths"),
  42773. name: "Dick",
  42774. image: {
  42775. source: "./media/characters/mag/dick.svg"
  42776. }
  42777. },
  42778. ass: {
  42779. height: math.unit(1.33, "earths"),
  42780. name: "Ass",
  42781. image: {
  42782. source: "./media/characters/mag/ass.svg"
  42783. }
  42784. },
  42785. head: {
  42786. height: math.unit(1.1, "earths"),
  42787. name: "Head",
  42788. image: {
  42789. source: "./media/characters/mag/head.svg"
  42790. }
  42791. },
  42792. maw: {
  42793. height: math.unit(1.62, "earths"),
  42794. name: "Maw",
  42795. image: {
  42796. source: "./media/characters/mag/maw.svg"
  42797. }
  42798. },
  42799. },
  42800. [
  42801. {
  42802. name: "Small",
  42803. height: math.unit(162, "feet")
  42804. },
  42805. {
  42806. name: "Normal",
  42807. height: math.unit(3.2, "earths"),
  42808. default: true
  42809. },
  42810. ]
  42811. ))
  42812. characterMakers.push(() => makeCharacter(
  42813. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42814. {
  42815. front: {
  42816. height: math.unit(512, "feet"),
  42817. weight: math.unit(63509, "tonnes"),
  42818. name: "Front",
  42819. image: {
  42820. source: "./media/characters/vorrel-harroc/front.svg",
  42821. extra: 1075/1063,
  42822. bottom: 62/1137
  42823. }
  42824. },
  42825. },
  42826. [
  42827. {
  42828. name: "Normal",
  42829. height: math.unit(10, "feet")
  42830. },
  42831. {
  42832. name: "Macro",
  42833. height: math.unit(512, "feet"),
  42834. default: true
  42835. },
  42836. {
  42837. name: "Megamacro",
  42838. height: math.unit(256, "miles")
  42839. },
  42840. {
  42841. name: "Gigamacro",
  42842. height: math.unit(4096, "miles")
  42843. },
  42844. ]
  42845. ))
  42846. characterMakers.push(() => makeCharacter(
  42847. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42848. {
  42849. side: {
  42850. height: math.unit(50, "feet"),
  42851. name: "Side",
  42852. image: {
  42853. source: "./media/characters/froimar/side.svg",
  42854. extra: 855/638,
  42855. bottom: 99/954
  42856. }
  42857. },
  42858. },
  42859. [
  42860. {
  42861. name: "Macro",
  42862. height: math.unit(50, "feet"),
  42863. default: true
  42864. },
  42865. ]
  42866. ))
  42867. characterMakers.push(() => makeCharacter(
  42868. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42869. {
  42870. front: {
  42871. height: math.unit(210, "miles"),
  42872. name: "Front",
  42873. image: {
  42874. source: "./media/characters/timothy/front.svg",
  42875. extra: 1007/943,
  42876. bottom: 62/1069
  42877. }
  42878. },
  42879. frontSkirt: {
  42880. height: math.unit(210, "miles"),
  42881. name: "Front (Skirt)",
  42882. image: {
  42883. source: "./media/characters/timothy/front-skirt.svg",
  42884. extra: 1007/943,
  42885. bottom: 62/1069
  42886. }
  42887. },
  42888. frontCoat: {
  42889. height: math.unit(210, "miles"),
  42890. name: "Front (Coat)",
  42891. image: {
  42892. source: "./media/characters/timothy/front-coat.svg",
  42893. extra: 1007/943,
  42894. bottom: 62/1069
  42895. }
  42896. },
  42897. },
  42898. [
  42899. {
  42900. name: "Macro",
  42901. height: math.unit(210, "miles"),
  42902. default: true
  42903. },
  42904. {
  42905. name: "Megamacro",
  42906. height: math.unit(210000, "miles")
  42907. },
  42908. ]
  42909. ))
  42910. characterMakers.push(() => makeCharacter(
  42911. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42912. {
  42913. front: {
  42914. height: math.unit(188, "feet"),
  42915. name: "Front",
  42916. image: {
  42917. source: "./media/characters/pyotr/front.svg",
  42918. extra: 1912/1826,
  42919. bottom: 18/1930
  42920. }
  42921. },
  42922. },
  42923. [
  42924. {
  42925. name: "Macro",
  42926. height: math.unit(188, "feet"),
  42927. default: true
  42928. },
  42929. {
  42930. name: "Megamacro",
  42931. height: math.unit(8, "miles")
  42932. },
  42933. ]
  42934. ))
  42935. characterMakers.push(() => makeCharacter(
  42936. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42937. {
  42938. side: {
  42939. height: math.unit(10, "feet"),
  42940. weight: math.unit(4500, "lb"),
  42941. name: "Side",
  42942. image: {
  42943. source: "./media/characters/ackart/side.svg",
  42944. extra: 1776/1668,
  42945. bottom: 116/1892
  42946. }
  42947. },
  42948. },
  42949. [
  42950. {
  42951. name: "Normal",
  42952. height: math.unit(10, "feet"),
  42953. default: true
  42954. },
  42955. ]
  42956. ))
  42957. characterMakers.push(() => makeCharacter(
  42958. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42959. {
  42960. side: {
  42961. height: math.unit(21, "feet"),
  42962. name: "Side",
  42963. image: {
  42964. source: "./media/characters/nolow/side.svg",
  42965. extra: 1484/1434,
  42966. bottom: 85/1569
  42967. }
  42968. },
  42969. sideErect: {
  42970. height: math.unit(21, "feet"),
  42971. name: "Side-erect",
  42972. image: {
  42973. source: "./media/characters/nolow/side-erect.svg",
  42974. extra: 1484/1434,
  42975. bottom: 85/1569
  42976. }
  42977. },
  42978. },
  42979. [
  42980. {
  42981. name: "Regular",
  42982. height: math.unit(12, "feet")
  42983. },
  42984. {
  42985. name: "Big Chee",
  42986. height: math.unit(21, "feet"),
  42987. default: true
  42988. },
  42989. ]
  42990. ))
  42991. characterMakers.push(() => makeCharacter(
  42992. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42993. {
  42994. front: {
  42995. height: math.unit(7, "feet"),
  42996. weight: math.unit(250, "lb"),
  42997. name: "Front",
  42998. image: {
  42999. source: "./media/characters/nines/front.svg",
  43000. extra: 1741/1607,
  43001. bottom: 41/1782
  43002. }
  43003. },
  43004. side: {
  43005. height: math.unit(7, "feet"),
  43006. weight: math.unit(250, "lb"),
  43007. name: "Side",
  43008. image: {
  43009. source: "./media/characters/nines/side.svg",
  43010. extra: 1854/1735,
  43011. bottom: 93/1947
  43012. }
  43013. },
  43014. back: {
  43015. height: math.unit(7, "feet"),
  43016. weight: math.unit(250, "lb"),
  43017. name: "Back",
  43018. image: {
  43019. source: "./media/characters/nines/back.svg",
  43020. extra: 1748/1615,
  43021. bottom: 20/1768
  43022. }
  43023. },
  43024. },
  43025. [
  43026. {
  43027. name: "Megamacro",
  43028. height: math.unit(99, "km"),
  43029. default: true
  43030. },
  43031. ]
  43032. ))
  43033. characterMakers.push(() => makeCharacter(
  43034. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43035. {
  43036. front: {
  43037. height: math.unit(5 + 10/12, "feet"),
  43038. weight: math.unit(210, "lb"),
  43039. name: "Front",
  43040. image: {
  43041. source: "./media/characters/zenith/front.svg",
  43042. extra: 1531/1452,
  43043. bottom: 198/1729
  43044. }
  43045. },
  43046. back: {
  43047. height: math.unit(5 + 10/12, "feet"),
  43048. weight: math.unit(210, "lb"),
  43049. name: "Back",
  43050. image: {
  43051. source: "./media/characters/zenith/back.svg",
  43052. extra: 1571/1487,
  43053. bottom: 75/1646
  43054. }
  43055. },
  43056. },
  43057. [
  43058. {
  43059. name: "Normal",
  43060. height: math.unit(5 + 10/12, "feet"),
  43061. default: true
  43062. }
  43063. ]
  43064. ))
  43065. characterMakers.push(() => makeCharacter(
  43066. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43067. {
  43068. front: {
  43069. height: math.unit(4, "feet"),
  43070. weight: math.unit(60, "lb"),
  43071. name: "Front",
  43072. image: {
  43073. source: "./media/characters/jasper/front.svg",
  43074. extra: 1450/1379,
  43075. bottom: 19/1469
  43076. }
  43077. },
  43078. },
  43079. [
  43080. {
  43081. name: "Normal",
  43082. height: math.unit(4, "feet"),
  43083. default: true
  43084. },
  43085. ]
  43086. ))
  43087. characterMakers.push(() => makeCharacter(
  43088. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43089. {
  43090. front: {
  43091. height: math.unit(6 + 5/12, "feet"),
  43092. weight: math.unit(290, "lb"),
  43093. name: "Front",
  43094. image: {
  43095. source: "./media/characters/tiberius-thyben/front.svg",
  43096. extra: 757/739,
  43097. bottom: 39/796
  43098. }
  43099. },
  43100. },
  43101. [
  43102. {
  43103. name: "Micro",
  43104. height: math.unit(1.5, "inches")
  43105. },
  43106. {
  43107. name: "Normal",
  43108. height: math.unit(6 + 5/12, "feet"),
  43109. default: true
  43110. },
  43111. {
  43112. name: "Macro",
  43113. height: math.unit(300, "feet")
  43114. },
  43115. ]
  43116. ))
  43117. characterMakers.push(() => makeCharacter(
  43118. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43119. {
  43120. front: {
  43121. height: math.unit(5 + 6/12, "feet"),
  43122. weight: math.unit(60, "kg"),
  43123. name: "Front",
  43124. image: {
  43125. source: "./media/characters/sabre/front.svg",
  43126. extra: 738/671,
  43127. bottom: 27/765
  43128. }
  43129. },
  43130. },
  43131. [
  43132. {
  43133. name: "Teeny",
  43134. height: math.unit(2, "inches")
  43135. },
  43136. {
  43137. name: "Smol",
  43138. height: math.unit(8, "inches")
  43139. },
  43140. {
  43141. name: "Normal",
  43142. height: math.unit(5 + 6/12, "feet"),
  43143. default: true
  43144. },
  43145. {
  43146. name: "Mini-Macro",
  43147. height: math.unit(15, "feet")
  43148. },
  43149. {
  43150. name: "Macro",
  43151. height: math.unit(50, "feet")
  43152. },
  43153. ]
  43154. ))
  43155. characterMakers.push(() => makeCharacter(
  43156. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43157. {
  43158. front: {
  43159. height: math.unit(6 + 4/12, "feet"),
  43160. weight: math.unit(170, "lb"),
  43161. name: "Front",
  43162. image: {
  43163. source: "./media/characters/charlie/front.svg",
  43164. extra: 1348/1228,
  43165. bottom: 15/1363
  43166. }
  43167. },
  43168. },
  43169. [
  43170. {
  43171. name: "Macro",
  43172. height: math.unit(1700, "meters"),
  43173. default: true
  43174. },
  43175. {
  43176. name: "MegaMacro",
  43177. height: math.unit(20400, "meters")
  43178. },
  43179. ]
  43180. ))
  43181. characterMakers.push(() => makeCharacter(
  43182. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43183. {
  43184. front: {
  43185. height: math.unit(6 + 3/12, "feet"),
  43186. weight: math.unit(185, "lb"),
  43187. name: "Front",
  43188. image: {
  43189. source: "./media/characters/susan-grant/front.svg",
  43190. extra: 1351/1327,
  43191. bottom: 26/1377
  43192. }
  43193. },
  43194. },
  43195. [
  43196. {
  43197. name: "Normal",
  43198. height: math.unit(6 + 3/12, "feet"),
  43199. default: true
  43200. },
  43201. {
  43202. name: "Macro",
  43203. height: math.unit(225, "feet")
  43204. },
  43205. {
  43206. name: "Macro+",
  43207. height: math.unit(900, "feet")
  43208. },
  43209. {
  43210. name: "MegaMacro",
  43211. height: math.unit(14400, "feet")
  43212. },
  43213. ]
  43214. ))
  43215. characterMakers.push(() => makeCharacter(
  43216. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43217. {
  43218. front: {
  43219. height: math.unit(5 + 4/12, "feet"),
  43220. weight: math.unit(110, "lb"),
  43221. name: "Front",
  43222. image: {
  43223. source: "./media/characters/axel-isanov/front.svg",
  43224. extra: 1096/1065,
  43225. bottom: 13/1109
  43226. }
  43227. },
  43228. },
  43229. [
  43230. {
  43231. name: "Normal",
  43232. height: math.unit(5 + 4/12, "feet"),
  43233. default: true
  43234. },
  43235. ]
  43236. ))
  43237. characterMakers.push(() => makeCharacter(
  43238. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43239. {
  43240. front: {
  43241. height: math.unit(9, "feet"),
  43242. weight: math.unit(467, "lb"),
  43243. name: "Front",
  43244. image: {
  43245. source: "./media/characters/necahual/front.svg",
  43246. extra: 920/873,
  43247. bottom: 26/946
  43248. }
  43249. },
  43250. back: {
  43251. height: math.unit(9, "feet"),
  43252. weight: math.unit(467, "lb"),
  43253. name: "Back",
  43254. image: {
  43255. source: "./media/characters/necahual/back.svg",
  43256. extra: 930/884,
  43257. bottom: 16/946
  43258. }
  43259. },
  43260. frontUnderwear: {
  43261. height: math.unit(9, "feet"),
  43262. weight: math.unit(467, "lb"),
  43263. name: "Front (Underwear)",
  43264. image: {
  43265. source: "./media/characters/necahual/front-underwear.svg",
  43266. extra: 920/873,
  43267. bottom: 26/946
  43268. }
  43269. },
  43270. frontDressed: {
  43271. height: math.unit(9, "feet"),
  43272. weight: math.unit(467, "lb"),
  43273. name: "Front (Dressed)",
  43274. image: {
  43275. source: "./media/characters/necahual/front-dressed.svg",
  43276. extra: 920/873,
  43277. bottom: 26/946
  43278. }
  43279. },
  43280. },
  43281. [
  43282. {
  43283. name: "Comprsesed",
  43284. height: math.unit(9, "feet")
  43285. },
  43286. {
  43287. name: "Natural",
  43288. height: math.unit(15, "feet"),
  43289. default: true
  43290. },
  43291. {
  43292. name: "Boosted",
  43293. height: math.unit(50, "feet")
  43294. },
  43295. {
  43296. name: "Boosted+",
  43297. height: math.unit(150, "feet")
  43298. },
  43299. {
  43300. name: "Max",
  43301. height: math.unit(500, "feet")
  43302. },
  43303. ]
  43304. ))
  43305. characterMakers.push(() => makeCharacter(
  43306. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43307. {
  43308. front: {
  43309. height: math.unit(22 + 1/12, "feet"),
  43310. weight: math.unit(3200, "lb"),
  43311. name: "Front",
  43312. image: {
  43313. source: "./media/characters/theo-acacia/front.svg",
  43314. extra: 1796/1741,
  43315. bottom: 83/1879
  43316. }
  43317. },
  43318. frontUnderwear: {
  43319. height: math.unit(22 + 1/12, "feet"),
  43320. weight: math.unit(3200, "lb"),
  43321. name: "Front (Underwear)",
  43322. image: {
  43323. source: "./media/characters/theo-acacia/front-underwear.svg",
  43324. extra: 1796/1741,
  43325. bottom: 83/1879
  43326. }
  43327. },
  43328. frontNude: {
  43329. height: math.unit(22 + 1/12, "feet"),
  43330. weight: math.unit(3200, "lb"),
  43331. name: "Front (Nude)",
  43332. image: {
  43333. source: "./media/characters/theo-acacia/front-nude.svg",
  43334. extra: 1796/1741,
  43335. bottom: 83/1879
  43336. }
  43337. },
  43338. },
  43339. [
  43340. {
  43341. name: "Normal",
  43342. height: math.unit(22 + 1/12, "feet"),
  43343. default: true
  43344. },
  43345. ]
  43346. ))
  43347. characterMakers.push(() => makeCharacter(
  43348. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43349. {
  43350. front: {
  43351. height: math.unit(20, "feet"),
  43352. name: "Front",
  43353. image: {
  43354. source: "./media/characters/astra/front.svg",
  43355. extra: 1850/1714,
  43356. bottom: 106/1956
  43357. }
  43358. },
  43359. frontUndressed: {
  43360. height: math.unit(20, "feet"),
  43361. name: "Front (Undressed)",
  43362. image: {
  43363. source: "./media/characters/astra/front-undressed.svg",
  43364. extra: 1926/1749,
  43365. bottom: 0/1926
  43366. }
  43367. },
  43368. hand: {
  43369. height: math.unit(1.53, "feet"),
  43370. name: "Hand",
  43371. image: {
  43372. source: "./media/characters/astra/hand.svg"
  43373. }
  43374. },
  43375. paw: {
  43376. height: math.unit(1.53, "feet"),
  43377. name: "Paw",
  43378. image: {
  43379. source: "./media/characters/astra/paw.svg"
  43380. }
  43381. },
  43382. },
  43383. [
  43384. {
  43385. name: "Smallest",
  43386. height: math.unit(20, "feet")
  43387. },
  43388. {
  43389. name: "Normal",
  43390. height: math.unit(1e9, "miles"),
  43391. default: true
  43392. },
  43393. {
  43394. name: "Larger",
  43395. height: math.unit(5, "multiverses")
  43396. },
  43397. {
  43398. name: "Largest",
  43399. height: math.unit(1e9, "multiverses")
  43400. },
  43401. ]
  43402. ))
  43403. characterMakers.push(() => makeCharacter(
  43404. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43405. {
  43406. front: {
  43407. height: math.unit(8, "feet"),
  43408. name: "Front",
  43409. image: {
  43410. source: "./media/characters/breanna/front.svg",
  43411. extra: 1912/1632,
  43412. bottom: 33/1945
  43413. }
  43414. },
  43415. },
  43416. [
  43417. {
  43418. name: "Smallest",
  43419. height: math.unit(8, "feet")
  43420. },
  43421. {
  43422. name: "Normal",
  43423. height: math.unit(1, "mile"),
  43424. default: true
  43425. },
  43426. {
  43427. name: "Maximum",
  43428. height: math.unit(1500000000000, "lightyears")
  43429. },
  43430. ]
  43431. ))
  43432. characterMakers.push(() => makeCharacter(
  43433. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43434. {
  43435. front: {
  43436. height: math.unit(5 + 11/12, "feet"),
  43437. weight: math.unit(155, "lb"),
  43438. name: "Front",
  43439. image: {
  43440. source: "./media/characters/cai/front.svg",
  43441. extra: 1823/1702,
  43442. bottom: 32/1855
  43443. }
  43444. },
  43445. back: {
  43446. height: math.unit(5 + 11/12, "feet"),
  43447. weight: math.unit(155, "lb"),
  43448. name: "Back",
  43449. image: {
  43450. source: "./media/characters/cai/back.svg",
  43451. extra: 1809/1708,
  43452. bottom: 31/1840
  43453. }
  43454. },
  43455. },
  43456. [
  43457. {
  43458. name: "Normal",
  43459. height: math.unit(5 + 11/12, "feet"),
  43460. default: true
  43461. },
  43462. {
  43463. name: "Big",
  43464. height: math.unit(15, "feet")
  43465. },
  43466. {
  43467. name: "Macro",
  43468. height: math.unit(200, "feet")
  43469. },
  43470. ]
  43471. ))
  43472. characterMakers.push(() => makeCharacter(
  43473. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43474. {
  43475. front: {
  43476. height: math.unit(5 + 6/12, "feet"),
  43477. weight: math.unit(160, "lb"),
  43478. name: "Front",
  43479. image: {
  43480. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43481. extra: 1227/1174,
  43482. bottom: 37/1264
  43483. }
  43484. },
  43485. },
  43486. [
  43487. {
  43488. name: "Macro",
  43489. height: math.unit(444, "meters"),
  43490. default: true
  43491. },
  43492. ]
  43493. ))
  43494. characterMakers.push(() => makeCharacter(
  43495. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43496. {
  43497. front: {
  43498. height: math.unit(18 + 7/12, "feet"),
  43499. name: "Front",
  43500. image: {
  43501. source: "./media/characters/rex/front.svg",
  43502. extra: 1941/1807,
  43503. bottom: 66/2007
  43504. }
  43505. },
  43506. back: {
  43507. height: math.unit(18 + 7/12, "feet"),
  43508. name: "Back",
  43509. image: {
  43510. source: "./media/characters/rex/back.svg",
  43511. extra: 1937/1822,
  43512. bottom: 42/1979
  43513. }
  43514. },
  43515. boot: {
  43516. height: math.unit(3.45, "feet"),
  43517. name: "Boot",
  43518. image: {
  43519. source: "./media/characters/rex/boot.svg"
  43520. }
  43521. },
  43522. paw: {
  43523. height: math.unit(4.17, "feet"),
  43524. name: "Paw",
  43525. image: {
  43526. source: "./media/characters/rex/paw.svg"
  43527. }
  43528. },
  43529. head: {
  43530. height: math.unit(6.728, "feet"),
  43531. name: "Head",
  43532. image: {
  43533. source: "./media/characters/rex/head.svg"
  43534. }
  43535. },
  43536. },
  43537. [
  43538. {
  43539. name: "Nano",
  43540. height: math.unit(18 + 7/12, "feet")
  43541. },
  43542. {
  43543. name: "Micro",
  43544. height: math.unit(1.5, "megameters")
  43545. },
  43546. {
  43547. name: "Normal",
  43548. height: math.unit(440, "megameters"),
  43549. default: true
  43550. },
  43551. {
  43552. name: "Macro",
  43553. height: math.unit(2.5, "gigameters")
  43554. },
  43555. {
  43556. name: "Gigamacro",
  43557. height: math.unit(2, "galaxies")
  43558. },
  43559. ]
  43560. ))
  43561. characterMakers.push(() => makeCharacter(
  43562. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43563. {
  43564. side: {
  43565. height: math.unit(32, "feet"),
  43566. weight: math.unit(250000, "lb"),
  43567. name: "Side",
  43568. image: {
  43569. source: "./media/characters/silverwing/side.svg",
  43570. extra: 1100/1019,
  43571. bottom: 204/1304
  43572. }
  43573. },
  43574. },
  43575. [
  43576. {
  43577. name: "Normal",
  43578. height: math.unit(32, "feet"),
  43579. default: true
  43580. },
  43581. ]
  43582. ))
  43583. characterMakers.push(() => makeCharacter(
  43584. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43585. {
  43586. front: {
  43587. height: math.unit(6 + 6/12, "feet"),
  43588. weight: math.unit(350, "lb"),
  43589. name: "Front",
  43590. image: {
  43591. source: "./media/characters/tristan-hawthorne/front.svg",
  43592. extra: 1159/1124,
  43593. bottom: 37/1196
  43594. },
  43595. form: "labrador",
  43596. default: true
  43597. },
  43598. skunkFront: {
  43599. height: math.unit(4 + 6/12, "feet"),
  43600. weight: math.unit(120, "lb"),
  43601. name: "Front",
  43602. image: {
  43603. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43604. extra: 1609/1551,
  43605. bottom: 169/1778
  43606. },
  43607. form: "skunk",
  43608. default: true
  43609. },
  43610. },
  43611. [
  43612. {
  43613. name: "Normal",
  43614. height: math.unit(6 + 6/12, "feet"),
  43615. form: "labrador",
  43616. default: true
  43617. },
  43618. {
  43619. name: "Normal",
  43620. height: math.unit(4 + 6/12, "feet"),
  43621. form: "skunk",
  43622. default: true
  43623. },
  43624. ],
  43625. {
  43626. "labrador": {
  43627. name: "Labrador",
  43628. default: true
  43629. },
  43630. "skunk": {
  43631. name: "Skunk"
  43632. }
  43633. }
  43634. ))
  43635. characterMakers.push(() => makeCharacter(
  43636. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43637. {
  43638. front: {
  43639. height: math.unit(5 + 11/12, "feet"),
  43640. weight: math.unit(190, "lb"),
  43641. name: "Front",
  43642. image: {
  43643. source: "./media/characters/mizu/front.svg",
  43644. extra: 1988/1788,
  43645. bottom: 14/2002
  43646. }
  43647. },
  43648. },
  43649. [
  43650. {
  43651. name: "Normal",
  43652. height: math.unit(5 + 11/12, "feet"),
  43653. default: true
  43654. },
  43655. ]
  43656. ))
  43657. characterMakers.push(() => makeCharacter(
  43658. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43659. {
  43660. front: {
  43661. height: math.unit(1.7, "feet"),
  43662. weight: math.unit(50, "lb"),
  43663. name: "Front",
  43664. image: {
  43665. source: "./media/characters/dechroma/front.svg",
  43666. extra: 1095/859,
  43667. bottom: 64/1159
  43668. }
  43669. },
  43670. },
  43671. [
  43672. {
  43673. name: "Normal",
  43674. height: math.unit(1.7, "feet"),
  43675. default: true
  43676. },
  43677. ]
  43678. ))
  43679. characterMakers.push(() => makeCharacter(
  43680. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43681. {
  43682. side: {
  43683. height: math.unit(30, "feet"),
  43684. name: "Side",
  43685. image: {
  43686. source: "./media/characters/veluren-thanazel/side.svg",
  43687. extra: 1611/633,
  43688. bottom: 118/1729
  43689. }
  43690. },
  43691. front: {
  43692. height: math.unit(30, "feet"),
  43693. name: "Front",
  43694. image: {
  43695. source: "./media/characters/veluren-thanazel/front.svg",
  43696. extra: 1486/636,
  43697. bottom: 238/1724
  43698. }
  43699. },
  43700. head: {
  43701. height: math.unit(21.4, "feet"),
  43702. name: "Head",
  43703. image: {
  43704. source: "./media/characters/veluren-thanazel/head.svg"
  43705. }
  43706. },
  43707. genitals: {
  43708. height: math.unit(19.4, "feet"),
  43709. name: "Genitals",
  43710. image: {
  43711. source: "./media/characters/veluren-thanazel/genitals.svg"
  43712. }
  43713. },
  43714. },
  43715. [
  43716. {
  43717. name: "Social",
  43718. height: math.unit(6, "feet")
  43719. },
  43720. {
  43721. name: "Play",
  43722. height: math.unit(12, "feet")
  43723. },
  43724. {
  43725. name: "True",
  43726. height: math.unit(30, "feet"),
  43727. default: true
  43728. },
  43729. ]
  43730. ))
  43731. characterMakers.push(() => makeCharacter(
  43732. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43733. {
  43734. front: {
  43735. height: math.unit(7 + 6/12, "feet"),
  43736. weight: math.unit(500, "kg"),
  43737. name: "Front",
  43738. image: {
  43739. source: "./media/characters/arcturas/front.svg",
  43740. extra: 1700/1500,
  43741. bottom: 145/1845
  43742. }
  43743. },
  43744. },
  43745. [
  43746. {
  43747. name: "Normal",
  43748. height: math.unit(7 + 6/12, "feet"),
  43749. default: true
  43750. },
  43751. ]
  43752. ))
  43753. characterMakers.push(() => makeCharacter(
  43754. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43755. {
  43756. side: {
  43757. height: math.unit(6, "feet"),
  43758. weight: math.unit(2, "tons"),
  43759. name: "Side",
  43760. image: {
  43761. source: "./media/characters/vitaen/side.svg",
  43762. extra: 1157/617,
  43763. bottom: 122/1279
  43764. }
  43765. },
  43766. },
  43767. [
  43768. {
  43769. name: "Normal",
  43770. height: math.unit(6, "feet"),
  43771. default: true
  43772. },
  43773. ]
  43774. ))
  43775. characterMakers.push(() => makeCharacter(
  43776. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43777. {
  43778. front: {
  43779. height: math.unit(19, "feet"),
  43780. name: "Front",
  43781. image: {
  43782. source: "./media/characters/fia-dreamweaver/front.svg",
  43783. extra: 1630/1504,
  43784. bottom: 25/1655
  43785. }
  43786. },
  43787. },
  43788. [
  43789. {
  43790. name: "Normal",
  43791. height: math.unit(19, "feet"),
  43792. default: true
  43793. },
  43794. ]
  43795. ))
  43796. characterMakers.push(() => makeCharacter(
  43797. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43798. {
  43799. front: {
  43800. height: math.unit(5 + 4/12, "feet"),
  43801. name: "Front",
  43802. image: {
  43803. source: "./media/characters/artan/front.svg",
  43804. extra: 1618/1535,
  43805. bottom: 46/1664
  43806. }
  43807. },
  43808. back: {
  43809. height: math.unit(5 + 4/12, "feet"),
  43810. name: "Back",
  43811. image: {
  43812. source: "./media/characters/artan/back.svg",
  43813. extra: 1618/1543,
  43814. bottom: 31/1649
  43815. }
  43816. },
  43817. },
  43818. [
  43819. {
  43820. name: "Normal",
  43821. height: math.unit(5 + 4/12, "feet"),
  43822. default: true
  43823. },
  43824. ]
  43825. ))
  43826. characterMakers.push(() => makeCharacter(
  43827. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43828. {
  43829. side: {
  43830. height: math.unit(182, "cm"),
  43831. weight: math.unit(1000, "lb"),
  43832. name: "Side",
  43833. image: {
  43834. source: "./media/characters/silver-dragon/side.svg",
  43835. extra: 710/287,
  43836. bottom: 88/798
  43837. }
  43838. },
  43839. },
  43840. [
  43841. {
  43842. name: "Normal",
  43843. height: math.unit(182, "cm"),
  43844. default: true
  43845. },
  43846. ]
  43847. ))
  43848. characterMakers.push(() => makeCharacter(
  43849. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43850. {
  43851. side: {
  43852. height: math.unit(6 + 6/12, "feet"),
  43853. weight: math.unit(1.5, "tons"),
  43854. name: "Side",
  43855. image: {
  43856. source: "./media/characters/zephyr/side.svg",
  43857. extra: 1433/586,
  43858. bottom: 109/1542
  43859. }
  43860. },
  43861. },
  43862. [
  43863. {
  43864. name: "Normal",
  43865. height: math.unit(6 + 6/12, "feet"),
  43866. default: true
  43867. },
  43868. ]
  43869. ))
  43870. characterMakers.push(() => makeCharacter(
  43871. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43872. {
  43873. side: {
  43874. height: math.unit(1, "feet"),
  43875. name: "Side",
  43876. image: {
  43877. source: "./media/characters/vixye/side.svg",
  43878. extra: 632/541,
  43879. bottom: 0/632
  43880. }
  43881. },
  43882. },
  43883. [
  43884. {
  43885. name: "Normal",
  43886. height: math.unit(1, "feet"),
  43887. default: true
  43888. },
  43889. {
  43890. name: "True",
  43891. height: math.unit(1e15, "multiverses")
  43892. },
  43893. ]
  43894. ))
  43895. characterMakers.push(() => makeCharacter(
  43896. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43897. {
  43898. front: {
  43899. height: math.unit(8 + 2/12, "feet"),
  43900. weight: math.unit(650, "lb"),
  43901. name: "Front",
  43902. image: {
  43903. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43904. extra: 1174/1137,
  43905. bottom: 82/1256
  43906. }
  43907. },
  43908. back: {
  43909. height: math.unit(8 + 2/12, "feet"),
  43910. weight: math.unit(650, "lb"),
  43911. name: "Back",
  43912. image: {
  43913. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43914. extra: 1204/1157,
  43915. bottom: 46/1250
  43916. }
  43917. },
  43918. },
  43919. [
  43920. {
  43921. name: "Wildform",
  43922. height: math.unit(8 + 2/12, "feet"),
  43923. default: true
  43924. },
  43925. ]
  43926. ))
  43927. characterMakers.push(() => makeCharacter(
  43928. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43929. {
  43930. front: {
  43931. height: math.unit(18, "feet"),
  43932. name: "Front",
  43933. image: {
  43934. source: "./media/characters/cyphin/front.svg",
  43935. extra: 970/886,
  43936. bottom: 42/1012
  43937. }
  43938. },
  43939. back: {
  43940. height: math.unit(18, "feet"),
  43941. name: "Back",
  43942. image: {
  43943. source: "./media/characters/cyphin/back.svg",
  43944. extra: 1009/894,
  43945. bottom: 24/1033
  43946. }
  43947. },
  43948. head: {
  43949. height: math.unit(5.05, "feet"),
  43950. name: "Head",
  43951. image: {
  43952. source: "./media/characters/cyphin/head.svg"
  43953. }
  43954. },
  43955. tailbud: {
  43956. height: math.unit(5, "feet"),
  43957. name: "Tailbud",
  43958. image: {
  43959. source: "./media/characters/cyphin/tailbud.svg"
  43960. }
  43961. },
  43962. },
  43963. [
  43964. ]
  43965. ))
  43966. characterMakers.push(() => makeCharacter(
  43967. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43968. {
  43969. side: {
  43970. height: math.unit(10, "feet"),
  43971. weight: math.unit(6, "tons"),
  43972. name: "Side",
  43973. image: {
  43974. source: "./media/characters/raijin/side.svg",
  43975. extra: 1529/613,
  43976. bottom: 337/1866
  43977. }
  43978. },
  43979. },
  43980. [
  43981. {
  43982. name: "Normal",
  43983. height: math.unit(10, "feet"),
  43984. default: true
  43985. },
  43986. ]
  43987. ))
  43988. characterMakers.push(() => makeCharacter(
  43989. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43990. {
  43991. side: {
  43992. height: math.unit(9, "feet"),
  43993. name: "Side",
  43994. image: {
  43995. source: "./media/characters/nilghais/side.svg",
  43996. extra: 1047/744,
  43997. bottom: 91/1138
  43998. }
  43999. },
  44000. head: {
  44001. height: math.unit(3.14, "feet"),
  44002. name: "Head",
  44003. image: {
  44004. source: "./media/characters/nilghais/head.svg"
  44005. }
  44006. },
  44007. mouth: {
  44008. height: math.unit(4.6, "feet"),
  44009. name: "Mouth",
  44010. image: {
  44011. source: "./media/characters/nilghais/mouth.svg"
  44012. }
  44013. },
  44014. wings: {
  44015. height: math.unit(24, "feet"),
  44016. name: "Wings",
  44017. image: {
  44018. source: "./media/characters/nilghais/wings.svg"
  44019. }
  44020. },
  44021. ass: {
  44022. height: math.unit(6.12, "feet"),
  44023. name: "Ass",
  44024. image: {
  44025. source: "./media/characters/nilghais/ass.svg"
  44026. }
  44027. },
  44028. },
  44029. [
  44030. {
  44031. name: "Normal",
  44032. height: math.unit(9, "feet"),
  44033. default: true
  44034. },
  44035. ]
  44036. ))
  44037. characterMakers.push(() => makeCharacter(
  44038. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44039. {
  44040. regular: {
  44041. height: math.unit(16 + 2/12, "feet"),
  44042. weight: math.unit(2300, "lb"),
  44043. name: "Regular",
  44044. image: {
  44045. source: "./media/characters/zolgar/regular.svg",
  44046. extra: 1246/1004,
  44047. bottom: 124/1370
  44048. }
  44049. },
  44050. boxers: {
  44051. height: math.unit(16 + 2/12, "feet"),
  44052. weight: math.unit(2300, "lb"),
  44053. name: "Boxers",
  44054. image: {
  44055. source: "./media/characters/zolgar/boxers.svg",
  44056. extra: 1246/1004,
  44057. bottom: 124/1370
  44058. }
  44059. },
  44060. armored: {
  44061. height: math.unit(16 + 2/12, "feet"),
  44062. weight: math.unit(2300, "lb"),
  44063. name: "Armored",
  44064. image: {
  44065. source: "./media/characters/zolgar/armored.svg",
  44066. extra: 1246/1004,
  44067. bottom: 124/1370
  44068. }
  44069. },
  44070. goth: {
  44071. height: math.unit(16 + 2/12, "feet"),
  44072. weight: math.unit(2300, "lb"),
  44073. name: "Goth",
  44074. image: {
  44075. source: "./media/characters/zolgar/goth.svg",
  44076. extra: 1246/1004,
  44077. bottom: 124/1370
  44078. }
  44079. },
  44080. },
  44081. [
  44082. {
  44083. name: "Shrunken Down",
  44084. height: math.unit(9 + 2/12, "feet")
  44085. },
  44086. {
  44087. name: "Normal",
  44088. height: math.unit(16 + 2/12, "feet"),
  44089. default: true
  44090. },
  44091. ]
  44092. ))
  44093. characterMakers.push(() => makeCharacter(
  44094. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44095. {
  44096. front: {
  44097. height: math.unit(6, "feet"),
  44098. weight: math.unit(168, "lb"),
  44099. name: "Front",
  44100. image: {
  44101. source: "./media/characters/luca/front.svg",
  44102. extra: 841/667,
  44103. bottom: 102/943
  44104. }
  44105. },
  44106. },
  44107. [
  44108. {
  44109. name: "Normal",
  44110. height: math.unit(6, "feet"),
  44111. default: true
  44112. },
  44113. ]
  44114. ))
  44115. characterMakers.push(() => makeCharacter(
  44116. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44117. {
  44118. side: {
  44119. height: math.unit(7 + 3/12, "feet"),
  44120. weight: math.unit(312, "lb"),
  44121. name: "Side",
  44122. image: {
  44123. source: "./media/characters/zezo/side.svg",
  44124. extra: 1192/1067,
  44125. bottom: 63/1255
  44126. }
  44127. },
  44128. },
  44129. [
  44130. {
  44131. name: "Normal",
  44132. height: math.unit(7 + 3/12, "feet"),
  44133. default: true
  44134. },
  44135. ]
  44136. ))
  44137. characterMakers.push(() => makeCharacter(
  44138. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44139. {
  44140. front: {
  44141. height: math.unit(5 + 5/12, "feet"),
  44142. weight: math.unit(170, "lb"),
  44143. name: "Front",
  44144. image: {
  44145. source: "./media/characters/mayso/front.svg",
  44146. extra: 1215/1108,
  44147. bottom: 16/1231
  44148. }
  44149. },
  44150. },
  44151. [
  44152. {
  44153. name: "Normal",
  44154. height: math.unit(5 + 5/12, "feet"),
  44155. default: true
  44156. },
  44157. ]
  44158. ))
  44159. characterMakers.push(() => makeCharacter(
  44160. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44161. {
  44162. front: {
  44163. height: math.unit(4 + 3/12, "feet"),
  44164. weight: math.unit(80, "lb"),
  44165. name: "Front",
  44166. image: {
  44167. source: "./media/characters/hess/front.svg",
  44168. extra: 1200/1123,
  44169. bottom: 16/1216
  44170. }
  44171. },
  44172. },
  44173. [
  44174. {
  44175. name: "Normal",
  44176. height: math.unit(4 + 3/12, "feet"),
  44177. default: true
  44178. },
  44179. ]
  44180. ))
  44181. characterMakers.push(() => makeCharacter(
  44182. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44183. {
  44184. front: {
  44185. height: math.unit(1.9, "meters"),
  44186. name: "Front",
  44187. image: {
  44188. source: "./media/characters/ashgar/front.svg",
  44189. extra: 1177/1146,
  44190. bottom: 99/1276
  44191. }
  44192. },
  44193. back: {
  44194. height: math.unit(1.9, "meters"),
  44195. name: "Back",
  44196. image: {
  44197. source: "./media/characters/ashgar/back.svg",
  44198. extra: 1201/1183,
  44199. bottom: 53/1254
  44200. }
  44201. },
  44202. feral: {
  44203. height: math.unit(1.4, "meters"),
  44204. name: "Feral",
  44205. image: {
  44206. source: "./media/characters/ashgar/feral.svg",
  44207. extra: 370/345,
  44208. bottom: 45/415
  44209. }
  44210. },
  44211. },
  44212. [
  44213. {
  44214. name: "Normal",
  44215. height: math.unit(1.9, "meters"),
  44216. default: true
  44217. },
  44218. ]
  44219. ))
  44220. characterMakers.push(() => makeCharacter(
  44221. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44222. {
  44223. regular: {
  44224. height: math.unit(6, "feet"),
  44225. weight: math.unit(220, "lb"),
  44226. name: "Regular",
  44227. image: {
  44228. source: "./media/characters/phillip/regular.svg",
  44229. extra: 1373/1277,
  44230. bottom: 75/1448
  44231. }
  44232. },
  44233. dressed: {
  44234. height: math.unit(6, "feet"),
  44235. weight: math.unit(220, "lb"),
  44236. name: "Dressed",
  44237. image: {
  44238. source: "./media/characters/phillip/dressed.svg",
  44239. extra: 1373/1277,
  44240. bottom: 75/1448
  44241. }
  44242. },
  44243. paw: {
  44244. height: math.unit(1.44, "feet"),
  44245. name: "Paw",
  44246. image: {
  44247. source: "./media/characters/phillip/paw.svg"
  44248. }
  44249. },
  44250. },
  44251. [
  44252. {
  44253. name: "Normal",
  44254. height: math.unit(6, "feet"),
  44255. default: true
  44256. },
  44257. ]
  44258. ))
  44259. characterMakers.push(() => makeCharacter(
  44260. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44261. {
  44262. side: {
  44263. height: math.unit(42, "feet"),
  44264. name: "Side",
  44265. image: {
  44266. source: "./media/characters/uvula/side.svg",
  44267. extra: 683/586,
  44268. bottom: 60/743
  44269. }
  44270. },
  44271. front: {
  44272. height: math.unit(42, "feet"),
  44273. name: "Front",
  44274. image: {
  44275. source: "./media/characters/uvula/front.svg",
  44276. extra: 705/613,
  44277. bottom: 54/759
  44278. }
  44279. },
  44280. maw: {
  44281. height: math.unit(23.5, "feet"),
  44282. name: "Maw",
  44283. image: {
  44284. source: "./media/characters/uvula/maw.svg"
  44285. }
  44286. },
  44287. },
  44288. [
  44289. {
  44290. name: "Original Size",
  44291. height: math.unit(14, "inches")
  44292. },
  44293. {
  44294. name: "Human Size",
  44295. height: math.unit(6, "feet")
  44296. },
  44297. {
  44298. name: "Big",
  44299. height: math.unit(42, "feet"),
  44300. default: true
  44301. },
  44302. {
  44303. name: "Bigger",
  44304. height: math.unit(100, "feet")
  44305. },
  44306. ]
  44307. ))
  44308. characterMakers.push(() => makeCharacter(
  44309. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44310. {
  44311. front: {
  44312. height: math.unit(5 + 11/12, "feet"),
  44313. name: "Front",
  44314. image: {
  44315. source: "./media/characters/lannah/front.svg",
  44316. extra: 1208/1113,
  44317. bottom: 97/1305
  44318. }
  44319. },
  44320. },
  44321. [
  44322. {
  44323. name: "Normal",
  44324. height: math.unit(5 + 11/12, "feet"),
  44325. default: true
  44326. },
  44327. ]
  44328. ))
  44329. characterMakers.push(() => makeCharacter(
  44330. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44331. {
  44332. front: {
  44333. height: math.unit(6 + 3/12, "feet"),
  44334. weight: math.unit(3.5, "tons"),
  44335. name: "Front",
  44336. image: {
  44337. source: "./media/characters/emberflame/front.svg",
  44338. extra: 1198/672,
  44339. bottom: 82/1280
  44340. }
  44341. },
  44342. side: {
  44343. height: math.unit(6 + 3/12, "feet"),
  44344. weight: math.unit(3.5, "tons"),
  44345. name: "Side",
  44346. image: {
  44347. source: "./media/characters/emberflame/side.svg",
  44348. extra: 938/527,
  44349. bottom: 56/994
  44350. }
  44351. },
  44352. },
  44353. [
  44354. {
  44355. name: "Normal",
  44356. height: math.unit(6 + 3/12, "feet"),
  44357. default: true
  44358. },
  44359. ]
  44360. ))
  44361. characterMakers.push(() => makeCharacter(
  44362. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44363. {
  44364. side: {
  44365. height: math.unit(17.5, "feet"),
  44366. weight: math.unit(35, "tons"),
  44367. name: "Side",
  44368. image: {
  44369. source: "./media/characters/sophie-ambrose/side.svg",
  44370. extra: 1573/1242,
  44371. bottom: 71/1644
  44372. }
  44373. },
  44374. maw: {
  44375. height: math.unit(7.4, "feet"),
  44376. name: "Maw",
  44377. image: {
  44378. source: "./media/characters/sophie-ambrose/maw.svg"
  44379. }
  44380. },
  44381. },
  44382. [
  44383. {
  44384. name: "Normal",
  44385. height: math.unit(17.5, "feet"),
  44386. default: true
  44387. },
  44388. ]
  44389. ))
  44390. characterMakers.push(() => makeCharacter(
  44391. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44392. {
  44393. front: {
  44394. height: math.unit(280, "feet"),
  44395. weight: math.unit(550, "tons"),
  44396. name: "Front",
  44397. image: {
  44398. source: "./media/characters/king-mugi/front.svg",
  44399. extra: 1102/947,
  44400. bottom: 104/1206
  44401. }
  44402. },
  44403. },
  44404. [
  44405. {
  44406. name: "King Mugi",
  44407. height: math.unit(280, "feet"),
  44408. default: true
  44409. },
  44410. ]
  44411. ))
  44412. characterMakers.push(() => makeCharacter(
  44413. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44414. {
  44415. front: {
  44416. height: math.unit(64, "meters"),
  44417. name: "Front",
  44418. image: {
  44419. source: "./media/characters/nova-fox/front.svg",
  44420. extra: 1310/1246,
  44421. bottom: 65/1375
  44422. }
  44423. },
  44424. },
  44425. [
  44426. {
  44427. name: "Macro",
  44428. height: math.unit(64, "meters"),
  44429. default: true
  44430. },
  44431. ]
  44432. ))
  44433. characterMakers.push(() => makeCharacter(
  44434. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44435. {
  44436. front: {
  44437. height: math.unit(6 + 3/12, "feet"),
  44438. weight: math.unit(170, "lb"),
  44439. name: "Front",
  44440. image: {
  44441. source: "./media/characters/sam-bat/front.svg",
  44442. extra: 1601/1411,
  44443. bottom: 125/1726
  44444. }
  44445. },
  44446. back: {
  44447. height: math.unit(6 + 3/12, "feet"),
  44448. weight: math.unit(170, "lb"),
  44449. name: "Back",
  44450. image: {
  44451. source: "./media/characters/sam-bat/back.svg",
  44452. extra: 1577/1405,
  44453. bottom: 58/1635
  44454. }
  44455. },
  44456. },
  44457. [
  44458. {
  44459. name: "Normal",
  44460. height: math.unit(6 + 3/12, "feet"),
  44461. default: true
  44462. },
  44463. ]
  44464. ))
  44465. characterMakers.push(() => makeCharacter(
  44466. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44467. {
  44468. front: {
  44469. height: math.unit(59, "feet"),
  44470. weight: math.unit(40000, "lb"),
  44471. name: "Front",
  44472. image: {
  44473. source: "./media/characters/inari/front.svg",
  44474. extra: 1884/1350,
  44475. bottom: 95/1979
  44476. }
  44477. },
  44478. },
  44479. [
  44480. {
  44481. name: "Gigantamax",
  44482. height: math.unit(59, "feet"),
  44483. default: true
  44484. },
  44485. ]
  44486. ))
  44487. characterMakers.push(() => makeCharacter(
  44488. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44489. {
  44490. front: {
  44491. height: math.unit(5 + 8/12, "feet"),
  44492. name: "Front",
  44493. image: {
  44494. source: "./media/characters/elizabeth/front.svg",
  44495. extra: 1395/1298,
  44496. bottom: 54/1449
  44497. }
  44498. },
  44499. mouth: {
  44500. height: math.unit(1.97, "feet"),
  44501. name: "Mouth",
  44502. image: {
  44503. source: "./media/characters/elizabeth/mouth.svg"
  44504. }
  44505. },
  44506. foot: {
  44507. height: math.unit(1.17, "feet"),
  44508. name: "Foot",
  44509. image: {
  44510. source: "./media/characters/elizabeth/foot.svg"
  44511. }
  44512. },
  44513. },
  44514. [
  44515. {
  44516. name: "Normal",
  44517. height: math.unit(5 + 8/12, "feet"),
  44518. default: true
  44519. },
  44520. {
  44521. name: "Minimacro",
  44522. height: math.unit(18, "feet")
  44523. },
  44524. {
  44525. name: "Macro",
  44526. height: math.unit(180, "feet")
  44527. },
  44528. ]
  44529. ))
  44530. characterMakers.push(() => makeCharacter(
  44531. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44532. {
  44533. front: {
  44534. height: math.unit(5 + 2/12, "feet"),
  44535. name: "Front",
  44536. image: {
  44537. source: "./media/characters/october-gossamer/front.svg",
  44538. extra: 505/454,
  44539. bottom: 7/512
  44540. }
  44541. },
  44542. back: {
  44543. height: math.unit(5 + 2/12, "feet"),
  44544. name: "Back",
  44545. image: {
  44546. source: "./media/characters/october-gossamer/back.svg",
  44547. extra: 501/454,
  44548. bottom: 11/512
  44549. }
  44550. },
  44551. },
  44552. [
  44553. {
  44554. name: "Normal",
  44555. height: math.unit(5 + 2/12, "feet"),
  44556. default: true
  44557. },
  44558. ]
  44559. ))
  44560. characterMakers.push(() => makeCharacter(
  44561. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44562. {
  44563. front: {
  44564. height: math.unit(5, "feet"),
  44565. name: "Front",
  44566. image: {
  44567. source: "./media/characters/epiglottis/front.svg",
  44568. extra: 923/849,
  44569. bottom: 17/940
  44570. }
  44571. },
  44572. },
  44573. [
  44574. {
  44575. name: "Original Size",
  44576. height: math.unit(10, "inches")
  44577. },
  44578. {
  44579. name: "Human Size",
  44580. height: math.unit(5, "feet"),
  44581. default: true
  44582. },
  44583. {
  44584. name: "Big",
  44585. height: math.unit(25, "feet")
  44586. },
  44587. {
  44588. name: "Bigger",
  44589. height: math.unit(50, "feet")
  44590. },
  44591. {
  44592. name: "oh lawd",
  44593. height: math.unit(75, "feet")
  44594. },
  44595. ]
  44596. ))
  44597. characterMakers.push(() => makeCharacter(
  44598. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44599. {
  44600. front: {
  44601. height: math.unit(2 + 4/12, "feet"),
  44602. weight: math.unit(60, "lb"),
  44603. name: "Front",
  44604. image: {
  44605. source: "./media/characters/lerm/front.svg",
  44606. extra: 796/790,
  44607. bottom: 79/875
  44608. }
  44609. },
  44610. },
  44611. [
  44612. {
  44613. name: "Normal",
  44614. height: math.unit(2 + 4/12, "feet"),
  44615. default: true
  44616. },
  44617. ]
  44618. ))
  44619. characterMakers.push(() => makeCharacter(
  44620. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44621. {
  44622. front: {
  44623. height: math.unit(5.5, "feet"),
  44624. weight: math.unit(130, "lb"),
  44625. name: "Front",
  44626. image: {
  44627. source: "./media/characters/xena-nebadon/front.svg",
  44628. extra: 1828/1730,
  44629. bottom: 79/1907
  44630. }
  44631. },
  44632. },
  44633. [
  44634. {
  44635. name: "Tiny Puppy",
  44636. height: math.unit(3, "inches")
  44637. },
  44638. {
  44639. name: "Normal",
  44640. height: math.unit(5.5, "feet"),
  44641. default: true
  44642. },
  44643. {
  44644. name: "Lotta Lady",
  44645. height: math.unit(12, "feet")
  44646. },
  44647. {
  44648. name: "Pretty Big",
  44649. height: math.unit(100, "feet")
  44650. },
  44651. {
  44652. name: "Big",
  44653. height: math.unit(500, "feet")
  44654. },
  44655. {
  44656. name: "Skyscraper Toys",
  44657. height: math.unit(2500, "feet")
  44658. },
  44659. {
  44660. name: "Plane Catcher",
  44661. height: math.unit(8, "miles")
  44662. },
  44663. {
  44664. name: "Planet Toys",
  44665. height: math.unit(15, "earths")
  44666. },
  44667. {
  44668. name: "Stardust",
  44669. height: math.unit(0.25, "galaxies")
  44670. },
  44671. {
  44672. name: "Snacks",
  44673. height: math.unit(70, "universes")
  44674. },
  44675. ]
  44676. ))
  44677. characterMakers.push(() => makeCharacter(
  44678. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44679. {
  44680. front: {
  44681. height: math.unit(1.6, "meters"),
  44682. weight: math.unit(60, "kg"),
  44683. name: "Front",
  44684. image: {
  44685. source: "./media/characters/bounty/front.svg",
  44686. extra: 1426/1308,
  44687. bottom: 15/1441
  44688. }
  44689. },
  44690. back: {
  44691. height: math.unit(1.6, "meters"),
  44692. weight: math.unit(60, "kg"),
  44693. name: "Back",
  44694. image: {
  44695. source: "./media/characters/bounty/back.svg",
  44696. extra: 1417/1307,
  44697. bottom: 8/1425
  44698. }
  44699. },
  44700. },
  44701. [
  44702. {
  44703. name: "Normal",
  44704. height: math.unit(1.6, "meters"),
  44705. default: true
  44706. },
  44707. {
  44708. name: "Macro",
  44709. height: math.unit(300, "meters")
  44710. },
  44711. ]
  44712. ))
  44713. characterMakers.push(() => makeCharacter(
  44714. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44715. {
  44716. front: {
  44717. height: math.unit(2 + 8/12, "feet"),
  44718. weight: math.unit(15, "lb"),
  44719. name: "Front",
  44720. image: {
  44721. source: "./media/characters/mochi/front.svg",
  44722. extra: 1022/852,
  44723. bottom: 435/1457
  44724. }
  44725. },
  44726. back: {
  44727. height: math.unit(2 + 8/12, "feet"),
  44728. weight: math.unit(15, "lb"),
  44729. name: "Back",
  44730. image: {
  44731. source: "./media/characters/mochi/back.svg",
  44732. extra: 1335/1119,
  44733. bottom: 39/1374
  44734. }
  44735. },
  44736. bird: {
  44737. height: math.unit(2 + 8/12, "feet"),
  44738. weight: math.unit(15, "lb"),
  44739. name: "Bird",
  44740. image: {
  44741. source: "./media/characters/mochi/bird.svg",
  44742. extra: 1251/1113,
  44743. bottom: 178/1429
  44744. }
  44745. },
  44746. kaiju: {
  44747. height: math.unit(154, "feet"),
  44748. weight: math.unit(1e7, "lb"),
  44749. name: "Kaiju",
  44750. image: {
  44751. source: "./media/characters/mochi/kaiju.svg",
  44752. extra: 460/324,
  44753. bottom: 40/500
  44754. }
  44755. },
  44756. head: {
  44757. height: math.unit(1.21, "feet"),
  44758. name: "Head",
  44759. image: {
  44760. source: "./media/characters/mochi/head.svg"
  44761. }
  44762. },
  44763. alternateTail: {
  44764. height: math.unit(2 + 8/12, "feet"),
  44765. weight: math.unit(45, "lb"),
  44766. name: "Alternate Tail",
  44767. image: {
  44768. source: "./media/characters/mochi/alternate-tail.svg",
  44769. extra: 139/76,
  44770. bottom: 45/184
  44771. }
  44772. },
  44773. },
  44774. [
  44775. {
  44776. name: "Micro",
  44777. height: math.unit(2, "inches")
  44778. },
  44779. {
  44780. name: "Normal",
  44781. height: math.unit(2 + 8/12, "feet"),
  44782. default: true
  44783. },
  44784. {
  44785. name: "Macro",
  44786. height: math.unit(106, "feet")
  44787. },
  44788. ]
  44789. ))
  44790. characterMakers.push(() => makeCharacter(
  44791. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44792. {
  44793. front: {
  44794. height: math.unit(5.67, "feet"),
  44795. weight: math.unit(135, "lb"),
  44796. name: "Front",
  44797. image: {
  44798. source: "./media/characters/sarel/front.svg",
  44799. extra: 865/788,
  44800. bottom: 97/962
  44801. }
  44802. },
  44803. back: {
  44804. height: math.unit(5.67, "feet"),
  44805. weight: math.unit(135, "lb"),
  44806. name: "Back",
  44807. image: {
  44808. source: "./media/characters/sarel/back.svg",
  44809. extra: 857/777,
  44810. bottom: 32/889
  44811. }
  44812. },
  44813. chozoan: {
  44814. height: math.unit(5.67, "feet"),
  44815. weight: math.unit(135, "lb"),
  44816. name: "Chozoan",
  44817. image: {
  44818. source: "./media/characters/sarel/chozoan.svg",
  44819. extra: 865/788,
  44820. bottom: 97/962
  44821. }
  44822. },
  44823. current: {
  44824. height: math.unit(5.67, "feet"),
  44825. weight: math.unit(135, "lb"),
  44826. name: "Current",
  44827. image: {
  44828. source: "./media/characters/sarel/current.svg",
  44829. extra: 865/788,
  44830. bottom: 97/962
  44831. }
  44832. },
  44833. head: {
  44834. height: math.unit(1.77, "feet"),
  44835. name: "Head",
  44836. image: {
  44837. source: "./media/characters/sarel/head.svg"
  44838. }
  44839. },
  44840. claws: {
  44841. height: math.unit(1.8, "feet"),
  44842. name: "Claws",
  44843. image: {
  44844. source: "./media/characters/sarel/claws.svg"
  44845. }
  44846. },
  44847. clawsAlt: {
  44848. height: math.unit(1.8, "feet"),
  44849. name: "Claws-alt",
  44850. image: {
  44851. source: "./media/characters/sarel/claws-alt.svg"
  44852. }
  44853. },
  44854. },
  44855. [
  44856. {
  44857. name: "Normal",
  44858. height: math.unit(5.67, "feet"),
  44859. default: true
  44860. },
  44861. ]
  44862. ))
  44863. characterMakers.push(() => makeCharacter(
  44864. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44865. {
  44866. front: {
  44867. height: math.unit(5500, "feet"),
  44868. name: "Front",
  44869. image: {
  44870. source: "./media/characters/alyonia/front.svg",
  44871. extra: 1200/1135,
  44872. bottom: 29/1229
  44873. }
  44874. },
  44875. back: {
  44876. height: math.unit(5500, "feet"),
  44877. name: "Back",
  44878. image: {
  44879. source: "./media/characters/alyonia/back.svg",
  44880. extra: 1205/1138,
  44881. bottom: 10/1215
  44882. }
  44883. },
  44884. },
  44885. [
  44886. {
  44887. name: "Small",
  44888. height: math.unit(10, "feet")
  44889. },
  44890. {
  44891. name: "Macro",
  44892. height: math.unit(500, "feet")
  44893. },
  44894. {
  44895. name: "Mega Macro",
  44896. height: math.unit(5500, "feet"),
  44897. default: true
  44898. },
  44899. {
  44900. name: "Mega Macro+",
  44901. height: math.unit(500000, "feet")
  44902. },
  44903. {
  44904. name: "Giga Macro",
  44905. height: math.unit(3000, "miles")
  44906. },
  44907. {
  44908. name: "Tera Macro",
  44909. height: math.unit(2.8e6, "miles")
  44910. },
  44911. {
  44912. name: "Galactic",
  44913. height: math.unit(120000, "lightyears")
  44914. },
  44915. ]
  44916. ))
  44917. characterMakers.push(() => makeCharacter(
  44918. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44919. {
  44920. werewolf: {
  44921. height: math.unit(8, "feet"),
  44922. weight: math.unit(425, "lb"),
  44923. name: "Werewolf",
  44924. image: {
  44925. source: "./media/characters/autumn/werewolf.svg",
  44926. extra: 2154/2031,
  44927. bottom: 160/2314
  44928. }
  44929. },
  44930. human: {
  44931. height: math.unit(5 + 8/12, "feet"),
  44932. weight: math.unit(150, "lb"),
  44933. name: "Human",
  44934. image: {
  44935. source: "./media/characters/autumn/human.svg",
  44936. extra: 1200/1149,
  44937. bottom: 30/1230
  44938. }
  44939. },
  44940. },
  44941. [
  44942. {
  44943. name: "Normal",
  44944. height: math.unit(8, "feet"),
  44945. default: true
  44946. },
  44947. ]
  44948. ))
  44949. characterMakers.push(() => makeCharacter(
  44950. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44951. {
  44952. front: {
  44953. height: math.unit(8 + 5/12, "feet"),
  44954. weight: math.unit(825, "lb"),
  44955. name: "Front",
  44956. image: {
  44957. source: "./media/characters/cobalt-charizard/front.svg",
  44958. extra: 1268/1155,
  44959. bottom: 122/1390
  44960. }
  44961. },
  44962. side: {
  44963. height: math.unit(8 + 5/12, "feet"),
  44964. weight: math.unit(825, "lb"),
  44965. name: "Side",
  44966. image: {
  44967. source: "./media/characters/cobalt-charizard/side.svg",
  44968. extra: 1348/1257,
  44969. bottom: 58/1406
  44970. }
  44971. },
  44972. gMax: {
  44973. height: math.unit(134 + 11/12, "feet"),
  44974. name: "G-Max",
  44975. image: {
  44976. source: "./media/characters/cobalt-charizard/g-max.svg",
  44977. extra: 1835/1541,
  44978. bottom: 151/1986
  44979. }
  44980. },
  44981. },
  44982. [
  44983. {
  44984. name: "Normal",
  44985. height: math.unit(8 + 5/12, "feet"),
  44986. default: true
  44987. },
  44988. ]
  44989. ))
  44990. characterMakers.push(() => makeCharacter(
  44991. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44992. {
  44993. front: {
  44994. height: math.unit(6 + 3/12, "feet"),
  44995. weight: math.unit(210, "lb"),
  44996. name: "Front",
  44997. image: {
  44998. source: "./media/characters/stella/front.svg",
  44999. extra: 3549/3335,
  45000. bottom: 51/3600
  45001. }
  45002. },
  45003. },
  45004. [
  45005. {
  45006. name: "Normal",
  45007. height: math.unit(6 + 3/12, "feet"),
  45008. default: true
  45009. },
  45010. ]
  45011. ))
  45012. characterMakers.push(() => makeCharacter(
  45013. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45014. {
  45015. front: {
  45016. height: math.unit(5, "feet"),
  45017. weight: math.unit(90, "lb"),
  45018. name: "Front",
  45019. image: {
  45020. source: "./media/characters/riley-bishop/front.svg",
  45021. extra: 1450/1428,
  45022. bottom: 152/1602
  45023. }
  45024. },
  45025. },
  45026. [
  45027. {
  45028. name: "Normal",
  45029. height: math.unit(5, "feet"),
  45030. default: true
  45031. },
  45032. ]
  45033. ))
  45034. characterMakers.push(() => makeCharacter(
  45035. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45036. {
  45037. side: {
  45038. height: math.unit(8 + 2/12, "feet"),
  45039. weight: math.unit(500, "kg"),
  45040. name: "Side",
  45041. image: {
  45042. source: "./media/characters/theo-arcanine/side.svg",
  45043. extra: 1342/1074,
  45044. bottom: 111/1453
  45045. }
  45046. },
  45047. },
  45048. [
  45049. {
  45050. name: "Normal",
  45051. height: math.unit(8 + 2/12, "feet"),
  45052. default: true
  45053. },
  45054. ]
  45055. ))
  45056. characterMakers.push(() => makeCharacter(
  45057. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45058. {
  45059. front: {
  45060. height: math.unit(4, "feet"),
  45061. name: "Front",
  45062. image: {
  45063. source: "./media/characters/kali/front.svg",
  45064. extra: 1921/1357,
  45065. bottom: 70/1991
  45066. }
  45067. },
  45068. },
  45069. [
  45070. {
  45071. name: "Normal",
  45072. height: math.unit(4, "feet"),
  45073. default: true
  45074. },
  45075. {
  45076. name: "Macro",
  45077. height: math.unit(32, "meters")
  45078. },
  45079. {
  45080. name: "Macro+",
  45081. height: math.unit(150, "meters")
  45082. },
  45083. {
  45084. name: "Megamacro",
  45085. height: math.unit(7500, "meters")
  45086. },
  45087. {
  45088. name: "Megamacro+",
  45089. height: math.unit(80, "kilometers")
  45090. },
  45091. ]
  45092. ))
  45093. characterMakers.push(() => makeCharacter(
  45094. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45095. {
  45096. side: {
  45097. height: math.unit(5 + 11/12, "feet"),
  45098. weight: math.unit(236, "lb"),
  45099. name: "Side",
  45100. image: {
  45101. source: "./media/characters/gapp/side.svg",
  45102. extra: 775/340,
  45103. bottom: 58/833
  45104. }
  45105. },
  45106. mouth: {
  45107. height: math.unit(2.98, "feet"),
  45108. name: "Mouth",
  45109. image: {
  45110. source: "./media/characters/gapp/mouth.svg"
  45111. }
  45112. },
  45113. },
  45114. [
  45115. {
  45116. name: "Normal",
  45117. height: math.unit(5 + 1/12, "feet"),
  45118. default: true
  45119. },
  45120. ]
  45121. ))
  45122. characterMakers.push(() => makeCharacter(
  45123. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45124. {
  45125. front: {
  45126. height: math.unit(6, "feet"),
  45127. name: "Front",
  45128. image: {
  45129. source: "./media/characters/persephone/front.svg",
  45130. extra: 1895/1717,
  45131. bottom: 96/1991
  45132. }
  45133. },
  45134. back: {
  45135. height: math.unit(6, "feet"),
  45136. name: "Back",
  45137. image: {
  45138. source: "./media/characters/persephone/back.svg",
  45139. extra: 1868/1679,
  45140. bottom: 26/1894
  45141. }
  45142. },
  45143. casual: {
  45144. height: math.unit(6, "feet"),
  45145. name: "Casual",
  45146. image: {
  45147. source: "./media/characters/persephone/casual.svg",
  45148. extra: 1713/1541,
  45149. bottom: 76/1789
  45150. }
  45151. },
  45152. },
  45153. [
  45154. {
  45155. name: "Human Size",
  45156. height: math.unit(6, "feet")
  45157. },
  45158. {
  45159. name: "Big Steppy",
  45160. height: math.unit(600, "meters"),
  45161. default: true
  45162. },
  45163. {
  45164. name: "Galaxy Brain",
  45165. height: math.unit(1, "zettameter")
  45166. },
  45167. ]
  45168. ))
  45169. characterMakers.push(() => makeCharacter(
  45170. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45171. {
  45172. front: {
  45173. height: math.unit(1.85, "meters"),
  45174. name: "Front",
  45175. image: {
  45176. source: "./media/characters/riley-foxthing/front.svg",
  45177. extra: 1495/1354,
  45178. bottom: 122/1617
  45179. }
  45180. },
  45181. frontAlt: {
  45182. height: math.unit(1.85, "meters"),
  45183. name: "Front (Alt)",
  45184. image: {
  45185. source: "./media/characters/riley-foxthing/front-alt.svg",
  45186. extra: 1572/1389,
  45187. bottom: 116/1688
  45188. }
  45189. },
  45190. },
  45191. [
  45192. {
  45193. name: "Normal Sized",
  45194. height: math.unit(1.85, "meters"),
  45195. default: true
  45196. },
  45197. {
  45198. name: "Quite Sizable",
  45199. height: math.unit(5, "meters")
  45200. },
  45201. {
  45202. name: "Rather Large",
  45203. height: math.unit(20, "meters")
  45204. },
  45205. {
  45206. name: "Macro",
  45207. height: math.unit(450, "meters")
  45208. },
  45209. {
  45210. name: "Giga",
  45211. height: math.unit(5, "km")
  45212. },
  45213. ]
  45214. ))
  45215. characterMakers.push(() => makeCharacter(
  45216. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45217. {
  45218. front: {
  45219. height: math.unit(6, "feet"),
  45220. weight: math.unit(200, "lb"),
  45221. name: "Front",
  45222. image: {
  45223. source: "./media/characters/blizzard/front.svg",
  45224. extra: 1136/990,
  45225. bottom: 136/1272
  45226. }
  45227. },
  45228. back: {
  45229. height: math.unit(6, "feet"),
  45230. weight: math.unit(200, "lb"),
  45231. name: "Back",
  45232. image: {
  45233. source: "./media/characters/blizzard/back.svg",
  45234. extra: 1175/1034,
  45235. bottom: 97/1272
  45236. }
  45237. },
  45238. sitting: {
  45239. height: math.unit(3.725, "feet"),
  45240. weight: math.unit(200, "lb"),
  45241. name: "Sitting",
  45242. image: {
  45243. source: "./media/characters/blizzard/sitting.svg",
  45244. extra: 581/485,
  45245. bottom: 90/671
  45246. }
  45247. },
  45248. frontWizard: {
  45249. height: math.unit(7.9, "feet"),
  45250. weight: math.unit(200, "lb"),
  45251. name: "Front (Wizard)",
  45252. image: {
  45253. source: "./media/characters/blizzard/front-wizard.svg"
  45254. }
  45255. },
  45256. backWizard: {
  45257. height: math.unit(7.9, "feet"),
  45258. weight: math.unit(200, "lb"),
  45259. name: "Back (Wizard)",
  45260. image: {
  45261. source: "./media/characters/blizzard/back-wizard.svg"
  45262. }
  45263. },
  45264. frontNsfw: {
  45265. height: math.unit(6, "feet"),
  45266. weight: math.unit(200, "lb"),
  45267. name: "Front (NSFW)",
  45268. image: {
  45269. source: "./media/characters/blizzard/front-nsfw.svg",
  45270. extra: 1136/990,
  45271. bottom: 136/1272
  45272. }
  45273. },
  45274. backNsfw: {
  45275. height: math.unit(6, "feet"),
  45276. weight: math.unit(200, "lb"),
  45277. name: "Back (NSFW)",
  45278. image: {
  45279. source: "./media/characters/blizzard/back-nsfw.svg",
  45280. extra: 1175/1034,
  45281. bottom: 97/1272
  45282. }
  45283. },
  45284. sittingNsfw: {
  45285. height: math.unit(3.725, "feet"),
  45286. weight: math.unit(200, "lb"),
  45287. name: "Sitting (NSFW)",
  45288. image: {
  45289. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45290. extra: 581/485,
  45291. bottom: 90/671
  45292. }
  45293. },
  45294. wizardFrontNsfw: {
  45295. height: math.unit(7.9, "feet"),
  45296. weight: math.unit(200, "lb"),
  45297. name: "Wizard (Front, NSFW)",
  45298. image: {
  45299. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45300. }
  45301. },
  45302. },
  45303. [
  45304. {
  45305. name: "Normal",
  45306. height: math.unit(6, "feet"),
  45307. default: true
  45308. },
  45309. ]
  45310. ))
  45311. characterMakers.push(() => makeCharacter(
  45312. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45313. {
  45314. front: {
  45315. height: math.unit(5 + 2/12, "feet"),
  45316. name: "Front",
  45317. image: {
  45318. source: "./media/characters/lumi/front.svg",
  45319. extra: 1328/1268,
  45320. bottom: 103/1431
  45321. }
  45322. },
  45323. back: {
  45324. height: math.unit(5 + 2/12, "feet"),
  45325. name: "Back",
  45326. image: {
  45327. source: "./media/characters/lumi/back.svg",
  45328. extra: 1381/1327,
  45329. bottom: 43/1424
  45330. }
  45331. },
  45332. },
  45333. [
  45334. {
  45335. name: "Normal",
  45336. height: math.unit(5 + 2/12, "feet"),
  45337. default: true
  45338. },
  45339. ]
  45340. ))
  45341. characterMakers.push(() => makeCharacter(
  45342. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45343. {
  45344. front: {
  45345. height: math.unit(5 + 9/12, "feet"),
  45346. name: "Front",
  45347. image: {
  45348. source: "./media/characters/aliya-cotton/front.svg",
  45349. extra: 577/564,
  45350. bottom: 29/606
  45351. }
  45352. },
  45353. },
  45354. [
  45355. {
  45356. name: "Normal",
  45357. height: math.unit(5 + 9/12, "feet"),
  45358. default: true
  45359. },
  45360. ]
  45361. ))
  45362. characterMakers.push(() => makeCharacter(
  45363. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45364. {
  45365. front: {
  45366. height: math.unit(2.7, "meters"),
  45367. weight: math.unit(25000, "lb"),
  45368. name: "Front",
  45369. image: {
  45370. source: "./media/characters/noah-luxray/front.svg",
  45371. extra: 1644/825,
  45372. bottom: 339/1983
  45373. }
  45374. },
  45375. side: {
  45376. height: math.unit(2.97, "meters"),
  45377. weight: math.unit(25000, "lb"),
  45378. name: "Side",
  45379. image: {
  45380. source: "./media/characters/noah-luxray/side.svg",
  45381. extra: 1319/650,
  45382. bottom: 163/1482
  45383. }
  45384. },
  45385. dick: {
  45386. height: math.unit(7.4, "feet"),
  45387. weight: math.unit(2500, "lb"),
  45388. name: "Dick",
  45389. image: {
  45390. source: "./media/characters/noah-luxray/dick.svg"
  45391. }
  45392. },
  45393. dickAlt: {
  45394. height: math.unit(10.83, "feet"),
  45395. weight: math.unit(2500, "lb"),
  45396. name: "Dick-alt",
  45397. image: {
  45398. source: "./media/characters/noah-luxray/dick-alt.svg"
  45399. }
  45400. },
  45401. },
  45402. [
  45403. {
  45404. name: "BIG",
  45405. height: math.unit(2.7, "meters"),
  45406. default: true
  45407. },
  45408. ]
  45409. ))
  45410. characterMakers.push(() => makeCharacter(
  45411. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45412. {
  45413. standing: {
  45414. height: math.unit(183, "cm"),
  45415. weight: math.unit(68, "kg"),
  45416. name: "Standing",
  45417. image: {
  45418. source: "./media/characters/arion/standing.svg",
  45419. extra: 1869/1807,
  45420. bottom: 93/1962
  45421. }
  45422. },
  45423. reclining: {
  45424. height: math.unit(70.5, "cm"),
  45425. weight: math.unit(68, "lb"),
  45426. name: "Reclining",
  45427. image: {
  45428. source: "./media/characters/arion/reclining.svg",
  45429. extra: 937/870,
  45430. bottom: 63/1000
  45431. }
  45432. },
  45433. },
  45434. [
  45435. {
  45436. name: "Colossus Size, Low",
  45437. height: math.unit(33, "meters"),
  45438. default: true
  45439. },
  45440. {
  45441. name: "Colossus Size, Mid",
  45442. height: math.unit(52, "meters")
  45443. },
  45444. {
  45445. name: "Colossus Size, High",
  45446. height: math.unit(60, "meters")
  45447. },
  45448. {
  45449. name: "Titan Size, Low",
  45450. height: math.unit(91, "meters"),
  45451. },
  45452. {
  45453. name: "Titan Size, Mid",
  45454. height: math.unit(122, "meters")
  45455. },
  45456. {
  45457. name: "Titan Size, High",
  45458. height: math.unit(162, "meters")
  45459. },
  45460. ]
  45461. ))
  45462. characterMakers.push(() => makeCharacter(
  45463. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45464. {
  45465. front: {
  45466. height: math.unit(53, "meters"),
  45467. name: "Front",
  45468. image: {
  45469. source: "./media/characters/stellar-marbey/front.svg",
  45470. extra: 1913/1805,
  45471. bottom: 92/2005
  45472. }
  45473. },
  45474. back: {
  45475. height: math.unit(53, "meters"),
  45476. name: "Back",
  45477. image: {
  45478. source: "./media/characters/stellar-marbey/back.svg",
  45479. extra: 1960/1851,
  45480. bottom: 28/1988
  45481. }
  45482. },
  45483. mouth: {
  45484. height: math.unit(3.5, "meters"),
  45485. name: "Mouth",
  45486. image: {
  45487. source: "./media/characters/stellar-marbey/mouth.svg"
  45488. }
  45489. },
  45490. },
  45491. [
  45492. {
  45493. name: "Macro",
  45494. height: math.unit(53, "meters"),
  45495. default: true
  45496. },
  45497. ]
  45498. ))
  45499. characterMakers.push(() => makeCharacter(
  45500. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45501. {
  45502. front: {
  45503. height: math.unit(8 + 1/12, "feet"),
  45504. weight: math.unit(233, "lb"),
  45505. name: "Front",
  45506. image: {
  45507. source: "./media/characters/matsu/front.svg",
  45508. extra: 832/772,
  45509. bottom: 40/872
  45510. }
  45511. },
  45512. back: {
  45513. height: math.unit(8 + 1/12, "feet"),
  45514. weight: math.unit(233, "lb"),
  45515. name: "Back",
  45516. image: {
  45517. source: "./media/characters/matsu/back.svg",
  45518. extra: 839/780,
  45519. bottom: 47/886
  45520. }
  45521. },
  45522. },
  45523. [
  45524. {
  45525. name: "Normal",
  45526. height: math.unit(8 + 1/12, "feet"),
  45527. default: true
  45528. },
  45529. ]
  45530. ))
  45531. characterMakers.push(() => makeCharacter(
  45532. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45533. {
  45534. front: {
  45535. height: math.unit(4, "feet"),
  45536. weight: math.unit(148, "lb"),
  45537. name: "Front",
  45538. image: {
  45539. source: "./media/characters/thiz/front.svg",
  45540. extra: 1913/1748,
  45541. bottom: 62/1975
  45542. }
  45543. },
  45544. },
  45545. [
  45546. {
  45547. name: "Normal",
  45548. height: math.unit(4, "feet"),
  45549. default: true
  45550. },
  45551. ]
  45552. ))
  45553. characterMakers.push(() => makeCharacter(
  45554. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45555. {
  45556. front: {
  45557. height: math.unit(7 + 6/12, "feet"),
  45558. weight: math.unit(267, "lb"),
  45559. name: "Front",
  45560. image: {
  45561. source: "./media/characters/marcel/front.svg",
  45562. extra: 1221/1096,
  45563. bottom: 76/1297
  45564. }
  45565. },
  45566. },
  45567. [
  45568. {
  45569. name: "Normal",
  45570. height: math.unit(7 + 6/12, "feet"),
  45571. default: true
  45572. },
  45573. ]
  45574. ))
  45575. characterMakers.push(() => makeCharacter(
  45576. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45577. {
  45578. side: {
  45579. height: math.unit(42, "meters"),
  45580. name: "Side",
  45581. image: {
  45582. source: "./media/characters/flake/side.svg",
  45583. extra: 1525/1306,
  45584. bottom: 209/1734
  45585. }
  45586. },
  45587. },
  45588. [
  45589. {
  45590. name: "Normal",
  45591. height: math.unit(42, "meters"),
  45592. default: true
  45593. },
  45594. ]
  45595. ))
  45596. characterMakers.push(() => makeCharacter(
  45597. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45598. {
  45599. dressed: {
  45600. height: math.unit(6 + 4/12, "feet"),
  45601. weight: math.unit(520, "lb"),
  45602. name: "Dressed",
  45603. image: {
  45604. source: "./media/characters/someonne/dressed.svg",
  45605. extra: 1020/1010,
  45606. bottom: 178/1198
  45607. }
  45608. },
  45609. undressed: {
  45610. height: math.unit(6 + 4/12, "feet"),
  45611. weight: math.unit(520, "lb"),
  45612. name: "Undressed",
  45613. image: {
  45614. source: "./media/characters/someonne/undressed.svg",
  45615. extra: 1019/1014,
  45616. bottom: 169/1188
  45617. }
  45618. },
  45619. },
  45620. [
  45621. {
  45622. name: "Normal",
  45623. height: math.unit(6 + 4/12, "feet"),
  45624. default: true
  45625. },
  45626. ]
  45627. ))
  45628. characterMakers.push(() => makeCharacter(
  45629. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45630. {
  45631. front: {
  45632. height: math.unit(3, "feet"),
  45633. weight: math.unit(30, "lb"),
  45634. name: "Front",
  45635. image: {
  45636. source: "./media/characters/till/front.svg",
  45637. extra: 892/823,
  45638. bottom: 55/947
  45639. }
  45640. },
  45641. },
  45642. [
  45643. {
  45644. name: "Normal",
  45645. height: math.unit(3, "feet"),
  45646. default: true
  45647. },
  45648. ]
  45649. ))
  45650. characterMakers.push(() => makeCharacter(
  45651. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45652. {
  45653. front: {
  45654. height: math.unit(9 + 8/12, "feet"),
  45655. weight: math.unit(800, "lb"),
  45656. name: "Front",
  45657. image: {
  45658. source: "./media/characters/sydney-heki/front.svg",
  45659. extra: 1360/1300,
  45660. bottom: 22/1382
  45661. }
  45662. },
  45663. back: {
  45664. height: math.unit(9 + 8/12, "feet"),
  45665. weight: math.unit(800, "lb"),
  45666. name: "Back",
  45667. image: {
  45668. source: "./media/characters/sydney-heki/back.svg",
  45669. extra: 1356/1293,
  45670. bottom: 12/1368
  45671. }
  45672. },
  45673. frontDressed: {
  45674. height: math.unit(9 + 8/12, "feet"),
  45675. weight: math.unit(800, "lb"),
  45676. name: "Front-dressed",
  45677. image: {
  45678. source: "./media/characters/sydney-heki/front-dressed.svg",
  45679. extra: 1360/1300,
  45680. bottom: 22/1382
  45681. }
  45682. },
  45683. },
  45684. [
  45685. {
  45686. name: "Normal",
  45687. height: math.unit(9 + 8/12, "feet"),
  45688. default: true
  45689. },
  45690. {
  45691. name: "Macro",
  45692. height: math.unit(500, "feet")
  45693. },
  45694. {
  45695. name: "Megamacro",
  45696. height: math.unit(3.6, "miles")
  45697. },
  45698. ]
  45699. ))
  45700. characterMakers.push(() => makeCharacter(
  45701. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45702. {
  45703. front: {
  45704. height: math.unit(200, "cm"),
  45705. weight: math.unit(250, "lb"),
  45706. name: "Front",
  45707. image: {
  45708. source: "./media/characters/fowler-karlsson/front.svg",
  45709. extra: 897/845,
  45710. bottom: 123/1020
  45711. }
  45712. },
  45713. back: {
  45714. height: math.unit(200, "cm"),
  45715. weight: math.unit(250, "lb"),
  45716. name: "Back",
  45717. image: {
  45718. source: "./media/characters/fowler-karlsson/back.svg",
  45719. extra: 999/944,
  45720. bottom: 26/1025
  45721. }
  45722. },
  45723. dick: {
  45724. height: math.unit(1.92, "feet"),
  45725. weight: math.unit(150, "lb"),
  45726. name: "Dick",
  45727. image: {
  45728. source: "./media/characters/fowler-karlsson/dick.svg"
  45729. }
  45730. },
  45731. },
  45732. [
  45733. {
  45734. name: "Normal",
  45735. height: math.unit(200, "cm"),
  45736. default: true
  45737. },
  45738. {
  45739. name: "Smaller Macro",
  45740. height: math.unit(90, "m")
  45741. },
  45742. {
  45743. name: "Macro",
  45744. height: math.unit(150, "m")
  45745. },
  45746. {
  45747. name: "Bigger Macro",
  45748. height: math.unit(300, "m")
  45749. },
  45750. ]
  45751. ))
  45752. characterMakers.push(() => makeCharacter(
  45753. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45754. {
  45755. side: {
  45756. height: math.unit(8 + 2/12, "feet"),
  45757. weight: math.unit(1, "tonne"),
  45758. name: "Side",
  45759. image: {
  45760. source: "./media/characters/rylide/side.svg",
  45761. extra: 1318/1034,
  45762. bottom: 106/1424
  45763. }
  45764. },
  45765. sitting: {
  45766. height: math.unit(303, "cm"),
  45767. weight: math.unit(1, "tonne"),
  45768. name: "Sitting",
  45769. image: {
  45770. source: "./media/characters/rylide/sitting.svg",
  45771. extra: 1303/1103,
  45772. bottom: 36/1339
  45773. }
  45774. },
  45775. },
  45776. [
  45777. {
  45778. name: "Normal",
  45779. height: math.unit(8 + 2/12, "feet"),
  45780. default: true
  45781. },
  45782. ]
  45783. ))
  45784. characterMakers.push(() => makeCharacter(
  45785. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45786. {
  45787. front: {
  45788. height: math.unit(5 + 10/12, "feet"),
  45789. weight: math.unit(160, "lb"),
  45790. name: "Front",
  45791. image: {
  45792. source: "./media/characters/pudask/front.svg",
  45793. extra: 1616/1590,
  45794. bottom: 161/1777
  45795. }
  45796. },
  45797. },
  45798. [
  45799. {
  45800. name: "Ferret Height",
  45801. height: math.unit(2 + 5/12, "feet")
  45802. },
  45803. {
  45804. name: "Canon Height",
  45805. height: math.unit(5 + 10/12, "feet"),
  45806. default: true
  45807. },
  45808. ]
  45809. ))
  45810. characterMakers.push(() => makeCharacter(
  45811. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45812. {
  45813. front: {
  45814. height: math.unit(3 + 6/12, "feet"),
  45815. weight: math.unit(60, "lb"),
  45816. name: "Front",
  45817. image: {
  45818. source: "./media/characters/ramita/front.svg",
  45819. extra: 1402/1232,
  45820. bottom: 62/1464
  45821. }
  45822. },
  45823. dressed: {
  45824. height: math.unit(3 + 6/12, "feet"),
  45825. weight: math.unit(60, "lb"),
  45826. name: "Dressed",
  45827. image: {
  45828. source: "./media/characters/ramita/dressed.svg",
  45829. extra: 1534/1249,
  45830. bottom: 50/1584
  45831. }
  45832. },
  45833. },
  45834. [
  45835. {
  45836. name: "Normal",
  45837. height: math.unit(3 + 6/12, "feet"),
  45838. default: true
  45839. },
  45840. ]
  45841. ))
  45842. characterMakers.push(() => makeCharacter(
  45843. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45844. {
  45845. front: {
  45846. height: math.unit(8, "feet"),
  45847. name: "Front",
  45848. image: {
  45849. source: "./media/characters/ark/front.svg",
  45850. extra: 772/693,
  45851. bottom: 45/817
  45852. }
  45853. },
  45854. },
  45855. [
  45856. {
  45857. name: "Normal",
  45858. height: math.unit(8, "feet"),
  45859. default: true
  45860. },
  45861. ]
  45862. ))
  45863. characterMakers.push(() => makeCharacter(
  45864. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45865. {
  45866. front: {
  45867. height: math.unit(6, "feet"),
  45868. weight: math.unit(250, "lb"),
  45869. volume: math.unit(5/8, "gallons"),
  45870. name: "Front",
  45871. image: {
  45872. source: "./media/characters/ludwig-horn/front.svg",
  45873. extra: 1782/1635,
  45874. bottom: 96/1878
  45875. }
  45876. },
  45877. back: {
  45878. height: math.unit(6, "feet"),
  45879. weight: math.unit(250, "lb"),
  45880. volume: math.unit(5/8, "gallons"),
  45881. name: "Back",
  45882. image: {
  45883. source: "./media/characters/ludwig-horn/back.svg",
  45884. extra: 1874/1729,
  45885. bottom: 27/1901
  45886. }
  45887. },
  45888. dick: {
  45889. height: math.unit(1.05, "feet"),
  45890. weight: math.unit(15, "lb"),
  45891. volume: math.unit(5/8, "gallons"),
  45892. name: "Dick",
  45893. image: {
  45894. source: "./media/characters/ludwig-horn/dick.svg"
  45895. }
  45896. },
  45897. },
  45898. [
  45899. {
  45900. name: "Small",
  45901. height: math.unit(6, "feet")
  45902. },
  45903. {
  45904. name: "Typical",
  45905. height: math.unit(12, "feet"),
  45906. default: true
  45907. },
  45908. {
  45909. name: "Building",
  45910. height: math.unit(80, "feet")
  45911. },
  45912. {
  45913. name: "Town",
  45914. height: math.unit(800, "feet")
  45915. },
  45916. {
  45917. name: "Kingdom",
  45918. height: math.unit(80000, "feet")
  45919. },
  45920. {
  45921. name: "Planet",
  45922. height: math.unit(8000000, "feet")
  45923. },
  45924. {
  45925. name: "Universe",
  45926. height: math.unit(8000000000, "feet")
  45927. },
  45928. {
  45929. name: "Transcended",
  45930. height: math.unit(8e27, "feet")
  45931. },
  45932. ]
  45933. ))
  45934. characterMakers.push(() => makeCharacter(
  45935. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45936. {
  45937. front: {
  45938. height: math.unit(5, "feet"),
  45939. weight: math.unit(50, "kg"),
  45940. name: "Front",
  45941. image: {
  45942. source: "./media/characters/biot-avery/front.svg",
  45943. extra: 1295/1232,
  45944. bottom: 86/1381
  45945. }
  45946. },
  45947. },
  45948. [
  45949. {
  45950. name: "Normal",
  45951. height: math.unit(5, "feet"),
  45952. default: true
  45953. },
  45954. ]
  45955. ))
  45956. characterMakers.push(() => makeCharacter(
  45957. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45958. {
  45959. front: {
  45960. height: math.unit(6, "feet"),
  45961. name: "Front",
  45962. image: {
  45963. source: "./media/characters/kitsune-kiro/front.svg",
  45964. extra: 1270/1158,
  45965. bottom: 42/1312
  45966. }
  45967. },
  45968. frontAlt: {
  45969. height: math.unit(6, "feet"),
  45970. name: "Front-alt",
  45971. image: {
  45972. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45973. extra: 1130/1081,
  45974. bottom: 36/1166
  45975. }
  45976. },
  45977. },
  45978. [
  45979. {
  45980. name: "Smol",
  45981. height: math.unit(3, "feet")
  45982. },
  45983. {
  45984. name: "Normal",
  45985. height: math.unit(6, "feet"),
  45986. default: true
  45987. },
  45988. ]
  45989. ))
  45990. characterMakers.push(() => makeCharacter(
  45991. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45992. {
  45993. front: {
  45994. height: math.unit(6, "feet"),
  45995. weight: math.unit(125, "lb"),
  45996. name: "Front",
  45997. image: {
  45998. source: "./media/characters/jack-thatcher/front.svg",
  45999. extra: 1474/1370,
  46000. bottom: 26/1500
  46001. }
  46002. },
  46003. back: {
  46004. height: math.unit(6, "feet"),
  46005. weight: math.unit(125, "lb"),
  46006. name: "Back",
  46007. image: {
  46008. source: "./media/characters/jack-thatcher/back.svg",
  46009. extra: 1489/1384,
  46010. bottom: 18/1507
  46011. }
  46012. },
  46013. },
  46014. [
  46015. {
  46016. name: "Normal",
  46017. height: math.unit(6, "feet"),
  46018. default: true
  46019. },
  46020. {
  46021. name: "Macro",
  46022. height: math.unit(75, "feet")
  46023. },
  46024. {
  46025. name: "Macro-er",
  46026. height: math.unit(250, "feet")
  46027. },
  46028. ]
  46029. ))
  46030. characterMakers.push(() => makeCharacter(
  46031. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46032. {
  46033. front: {
  46034. height: math.unit(7, "feet"),
  46035. weight: math.unit(110, "kg"),
  46036. name: "Front",
  46037. image: {
  46038. source: "./media/characters/max-hyper/front.svg",
  46039. extra: 1969/1881,
  46040. bottom: 49/2018
  46041. }
  46042. },
  46043. },
  46044. [
  46045. {
  46046. name: "Normal",
  46047. height: math.unit(7, "feet"),
  46048. default: true
  46049. },
  46050. ]
  46051. ))
  46052. characterMakers.push(() => makeCharacter(
  46053. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46054. {
  46055. front: {
  46056. height: math.unit(5 + 5/12, "feet"),
  46057. weight: math.unit(160, "lb"),
  46058. name: "Front",
  46059. image: {
  46060. source: "./media/characters/spook/front.svg",
  46061. extra: 794/791,
  46062. bottom: 54/848
  46063. }
  46064. },
  46065. back: {
  46066. height: math.unit(5 + 5/12, "feet"),
  46067. weight: math.unit(160, "lb"),
  46068. name: "Back",
  46069. image: {
  46070. source: "./media/characters/spook/back.svg",
  46071. extra: 812/798,
  46072. bottom: 32/844
  46073. }
  46074. },
  46075. },
  46076. [
  46077. {
  46078. name: "Normal",
  46079. height: math.unit(5 + 5/12, "feet"),
  46080. default: true
  46081. },
  46082. ]
  46083. ))
  46084. characterMakers.push(() => makeCharacter(
  46085. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46086. {
  46087. front: {
  46088. height: math.unit(18, "feet"),
  46089. name: "Front",
  46090. image: {
  46091. source: "./media/characters/xeaduulix/front.svg",
  46092. extra: 1380/1166,
  46093. bottom: 110/1490
  46094. }
  46095. },
  46096. back: {
  46097. height: math.unit(18, "feet"),
  46098. name: "Back",
  46099. image: {
  46100. source: "./media/characters/xeaduulix/back.svg",
  46101. extra: 1592/1170,
  46102. bottom: 128/1720
  46103. }
  46104. },
  46105. frontNsfw: {
  46106. height: math.unit(18, "feet"),
  46107. name: "Front (NSFW)",
  46108. image: {
  46109. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46110. extra: 1380/1166,
  46111. bottom: 110/1490
  46112. }
  46113. },
  46114. backNsfw: {
  46115. height: math.unit(18, "feet"),
  46116. name: "Back (NSFW)",
  46117. image: {
  46118. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46119. extra: 1592/1170,
  46120. bottom: 128/1720
  46121. }
  46122. },
  46123. },
  46124. [
  46125. {
  46126. name: "Normal",
  46127. height: math.unit(18, "feet"),
  46128. default: true
  46129. },
  46130. ]
  46131. ))
  46132. characterMakers.push(() => makeCharacter(
  46133. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46134. {
  46135. spreadWings: {
  46136. height: math.unit(20, "feet"),
  46137. name: "Spread Wings",
  46138. image: {
  46139. source: "./media/characters/fledge/spread-wings.svg",
  46140. extra: 693/635,
  46141. bottom: 26/719
  46142. }
  46143. },
  46144. front: {
  46145. height: math.unit(20, "feet"),
  46146. name: "Front",
  46147. image: {
  46148. source: "./media/characters/fledge/front.svg",
  46149. extra: 684/637,
  46150. bottom: 18/702
  46151. }
  46152. },
  46153. frontAlt: {
  46154. height: math.unit(20, "feet"),
  46155. name: "Front (Alt)",
  46156. image: {
  46157. source: "./media/characters/fledge/front-alt.svg",
  46158. extra: 708/664,
  46159. bottom: 13/721
  46160. }
  46161. },
  46162. back: {
  46163. height: math.unit(20, "feet"),
  46164. name: "Back",
  46165. image: {
  46166. source: "./media/characters/fledge/back.svg",
  46167. extra: 718/634,
  46168. bottom: 22/740
  46169. }
  46170. },
  46171. head: {
  46172. height: math.unit(5.55, "feet"),
  46173. name: "Head",
  46174. image: {
  46175. source: "./media/characters/fledge/head.svg"
  46176. }
  46177. },
  46178. headAlt: {
  46179. height: math.unit(5.1, "feet"),
  46180. name: "Head (Alt)",
  46181. image: {
  46182. source: "./media/characters/fledge/head-alt.svg"
  46183. }
  46184. },
  46185. },
  46186. [
  46187. {
  46188. name: "Small",
  46189. height: math.unit(6 + 2/12, "feet")
  46190. },
  46191. {
  46192. name: "Big",
  46193. height: math.unit(20, "feet"),
  46194. default: true
  46195. },
  46196. {
  46197. name: "Giant",
  46198. height: math.unit(100, "feet")
  46199. },
  46200. {
  46201. name: "Macro",
  46202. height: math.unit(200, "feet")
  46203. },
  46204. ]
  46205. ))
  46206. characterMakers.push(() => makeCharacter(
  46207. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46208. {
  46209. front: {
  46210. height: math.unit(1, "meter"),
  46211. name: "Front",
  46212. image: {
  46213. source: "./media/characters/atlas-morenai/front.svg",
  46214. extra: 1275/1043,
  46215. bottom: 19/1294
  46216. }
  46217. },
  46218. back: {
  46219. height: math.unit(1, "meter"),
  46220. name: "Back",
  46221. image: {
  46222. source: "./media/characters/atlas-morenai/back.svg",
  46223. extra: 1141/1001,
  46224. bottom: 25/1166
  46225. }
  46226. },
  46227. },
  46228. [
  46229. {
  46230. name: "Normal",
  46231. height: math.unit(1, "meter"),
  46232. default: true
  46233. },
  46234. {
  46235. name: "Magic-Infused",
  46236. height: math.unit(5, "meters")
  46237. },
  46238. ]
  46239. ))
  46240. characterMakers.push(() => makeCharacter(
  46241. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46242. {
  46243. front: {
  46244. height: math.unit(5, "meters"),
  46245. name: "Front",
  46246. image: {
  46247. source: "./media/characters/cintia/front.svg",
  46248. extra: 1312/1228,
  46249. bottom: 38/1350
  46250. }
  46251. },
  46252. back: {
  46253. height: math.unit(5, "meters"),
  46254. name: "Back",
  46255. image: {
  46256. source: "./media/characters/cintia/back.svg",
  46257. extra: 1260/1166,
  46258. bottom: 98/1358
  46259. }
  46260. },
  46261. frontDick: {
  46262. height: math.unit(5, "meters"),
  46263. name: "Front (Dick)",
  46264. image: {
  46265. source: "./media/characters/cintia/front-dick.svg",
  46266. extra: 1312/1228,
  46267. bottom: 38/1350
  46268. }
  46269. },
  46270. backDick: {
  46271. height: math.unit(5, "meters"),
  46272. name: "Back (Dick)",
  46273. image: {
  46274. source: "./media/characters/cintia/back-dick.svg",
  46275. extra: 1260/1166,
  46276. bottom: 98/1358
  46277. }
  46278. },
  46279. bust: {
  46280. height: math.unit(1.97, "meters"),
  46281. name: "Bust",
  46282. image: {
  46283. source: "./media/characters/cintia/bust.svg",
  46284. extra: 617/565,
  46285. bottom: 0/617
  46286. }
  46287. },
  46288. },
  46289. [
  46290. {
  46291. name: "Normal",
  46292. height: math.unit(5, "meters"),
  46293. default: true
  46294. },
  46295. ]
  46296. ))
  46297. characterMakers.push(() => makeCharacter(
  46298. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46299. {
  46300. side: {
  46301. height: math.unit(100, "feet"),
  46302. name: "Side",
  46303. image: {
  46304. source: "./media/characters/denora/side.svg",
  46305. extra: 875/803,
  46306. bottom: 9/884
  46307. }
  46308. },
  46309. },
  46310. [
  46311. {
  46312. name: "Standard",
  46313. height: math.unit(100, "feet"),
  46314. default: true
  46315. },
  46316. {
  46317. name: "Grand",
  46318. height: math.unit(1000, "feet")
  46319. },
  46320. {
  46321. name: "Conquering",
  46322. height: math.unit(10000, "feet")
  46323. },
  46324. ]
  46325. ))
  46326. characterMakers.push(() => makeCharacter(
  46327. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46328. {
  46329. dressed: {
  46330. height: math.unit(8 + 5/12, "feet"),
  46331. weight: math.unit(700, "lb"),
  46332. name: "Dressed",
  46333. image: {
  46334. source: "./media/characters/kiva/dressed.svg",
  46335. extra: 1102/1055,
  46336. bottom: 60/1162
  46337. }
  46338. },
  46339. nude: {
  46340. height: math.unit(8 + 5/12, "feet"),
  46341. weight: math.unit(700, "lb"),
  46342. name: "Nude",
  46343. image: {
  46344. source: "./media/characters/kiva/nude.svg",
  46345. extra: 1102/1055,
  46346. bottom: 60/1162
  46347. }
  46348. },
  46349. },
  46350. [
  46351. {
  46352. name: "Base Height",
  46353. height: math.unit(8 + 5/12, "feet"),
  46354. default: true
  46355. },
  46356. {
  46357. name: "Macro",
  46358. height: math.unit(100, "feet")
  46359. },
  46360. {
  46361. name: "Max",
  46362. height: math.unit(3280, "feet")
  46363. },
  46364. ]
  46365. ))
  46366. characterMakers.push(() => makeCharacter(
  46367. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46368. {
  46369. front: {
  46370. height: math.unit(6 + 8/12, "feet"),
  46371. weight: math.unit(250, "lb"),
  46372. name: "Front",
  46373. image: {
  46374. source: "./media/characters/ztragon/front.svg",
  46375. extra: 1825/1684,
  46376. bottom: 98/1923
  46377. }
  46378. },
  46379. },
  46380. [
  46381. {
  46382. name: "Normal",
  46383. height: math.unit(6 + 8/12, "feet"),
  46384. default: true
  46385. },
  46386. {
  46387. name: "Macro",
  46388. height: math.unit(80, "feet")
  46389. },
  46390. ]
  46391. ))
  46392. characterMakers.push(() => makeCharacter(
  46393. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46394. {
  46395. front: {
  46396. height: math.unit(10.4, "feet"),
  46397. weight: math.unit(2, "tons"),
  46398. name: "Front",
  46399. image: {
  46400. source: "./media/characters/yesenia/front.svg",
  46401. extra: 1479/1474,
  46402. bottom: 233/1712
  46403. }
  46404. },
  46405. },
  46406. [
  46407. {
  46408. name: "Normal",
  46409. height: math.unit(10.4, "feet"),
  46410. default: true
  46411. },
  46412. ]
  46413. ))
  46414. characterMakers.push(() => makeCharacter(
  46415. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46416. {
  46417. normal: {
  46418. height: math.unit(6 + 1/12, "feet"),
  46419. weight: math.unit(180, "lb"),
  46420. name: "Normal",
  46421. image: {
  46422. source: "./media/characters/leanne-lycheborne/normal.svg",
  46423. extra: 1748/1660,
  46424. bottom: 98/1846
  46425. }
  46426. },
  46427. were: {
  46428. height: math.unit(12, "feet"),
  46429. weight: math.unit(1600, "lb"),
  46430. name: "Were",
  46431. image: {
  46432. source: "./media/characters/leanne-lycheborne/were.svg",
  46433. extra: 1485/1432,
  46434. bottom: 66/1551
  46435. }
  46436. },
  46437. },
  46438. [
  46439. {
  46440. name: "Normal",
  46441. height: math.unit(6 + 1/12, "feet"),
  46442. default: true
  46443. },
  46444. ]
  46445. ))
  46446. characterMakers.push(() => makeCharacter(
  46447. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46448. {
  46449. side: {
  46450. height: math.unit(13, "feet"),
  46451. name: "Side",
  46452. image: {
  46453. source: "./media/characters/kira-tyler/side.svg",
  46454. extra: 693/393,
  46455. bottom: 58/751
  46456. }
  46457. },
  46458. },
  46459. [
  46460. {
  46461. name: "Normal",
  46462. height: math.unit(13, "feet"),
  46463. default: true
  46464. },
  46465. ]
  46466. ))
  46467. characterMakers.push(() => makeCharacter(
  46468. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46469. {
  46470. front: {
  46471. height: math.unit(10.3, "feet"),
  46472. weight: math.unit(150, "lb"),
  46473. name: "Front",
  46474. image: {
  46475. source: "./media/characters/blaze/front.svg",
  46476. extra: 1378/1286,
  46477. bottom: 172/1550
  46478. }
  46479. },
  46480. },
  46481. [
  46482. {
  46483. name: "Normal",
  46484. height: math.unit(10.3, "feet"),
  46485. default: true
  46486. },
  46487. ]
  46488. ))
  46489. characterMakers.push(() => makeCharacter(
  46490. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46491. {
  46492. side: {
  46493. height: math.unit(2, "meters"),
  46494. weight: math.unit(400, "kg"),
  46495. name: "Side",
  46496. image: {
  46497. source: "./media/characters/anu/side.svg",
  46498. extra: 506/394,
  46499. bottom: 18/524
  46500. }
  46501. },
  46502. },
  46503. [
  46504. {
  46505. name: "Humanoid",
  46506. height: math.unit(2, "meters")
  46507. },
  46508. {
  46509. name: "Normal",
  46510. height: math.unit(5, "meters"),
  46511. default: true
  46512. },
  46513. ]
  46514. ))
  46515. characterMakers.push(() => makeCharacter(
  46516. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46517. {
  46518. front: {
  46519. height: math.unit(5 + 5/12, "feet"),
  46520. weight: math.unit(170, "lb"),
  46521. name: "Front",
  46522. image: {
  46523. source: "./media/characters/synx-the-lynx/front.svg",
  46524. extra: 1893/1745,
  46525. bottom: 17/1910
  46526. }
  46527. },
  46528. side: {
  46529. height: math.unit(5 + 5/12, "feet"),
  46530. weight: math.unit(170, "lb"),
  46531. name: "Side",
  46532. image: {
  46533. source: "./media/characters/synx-the-lynx/side.svg",
  46534. extra: 1884/1740,
  46535. bottom: 39/1923
  46536. }
  46537. },
  46538. back: {
  46539. height: math.unit(5 + 5/12, "feet"),
  46540. weight: math.unit(170, "lb"),
  46541. name: "Back",
  46542. image: {
  46543. source: "./media/characters/synx-the-lynx/back.svg",
  46544. extra: 1903/1755,
  46545. bottom: 14/1917
  46546. }
  46547. },
  46548. },
  46549. [
  46550. {
  46551. name: "Normal",
  46552. height: math.unit(5 + 5/12, "feet"),
  46553. default: true
  46554. },
  46555. ]
  46556. ))
  46557. characterMakers.push(() => makeCharacter(
  46558. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46559. {
  46560. back: {
  46561. height: math.unit(15, "feet"),
  46562. name: "Back",
  46563. image: {
  46564. source: "./media/characters/nadezda-fex/back.svg",
  46565. extra: 1695/1481,
  46566. bottom: 25/1720
  46567. }
  46568. },
  46569. },
  46570. [
  46571. {
  46572. name: "Normal",
  46573. height: math.unit(15, "feet"),
  46574. default: true
  46575. },
  46576. {
  46577. name: "Macro",
  46578. height: math.unit(2.5, "miles")
  46579. },
  46580. {
  46581. name: "Goddess",
  46582. height: math.unit(2, "multiverses")
  46583. },
  46584. ]
  46585. ))
  46586. characterMakers.push(() => makeCharacter(
  46587. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46588. {
  46589. front: {
  46590. height: math.unit(216, "cm"),
  46591. name: "Front",
  46592. image: {
  46593. source: "./media/characters/lev/front.svg",
  46594. extra: 1728/1670,
  46595. bottom: 82/1810
  46596. }
  46597. },
  46598. back: {
  46599. height: math.unit(216, "cm"),
  46600. name: "Back",
  46601. image: {
  46602. source: "./media/characters/lev/back.svg",
  46603. extra: 1738/1675,
  46604. bottom: 24/1762
  46605. }
  46606. },
  46607. dressed: {
  46608. height: math.unit(216, "cm"),
  46609. name: "Dressed",
  46610. image: {
  46611. source: "./media/characters/lev/dressed.svg",
  46612. extra: 1397/1351,
  46613. bottom: 73/1470
  46614. }
  46615. },
  46616. head: {
  46617. height: math.unit(0.51, "meter"),
  46618. name: "Head",
  46619. image: {
  46620. source: "./media/characters/lev/head.svg"
  46621. }
  46622. },
  46623. },
  46624. [
  46625. {
  46626. name: "Normal",
  46627. height: math.unit(216, "cm"),
  46628. default: true
  46629. },
  46630. {
  46631. name: "Relatively Macro",
  46632. height: math.unit(80, "meters")
  46633. },
  46634. {
  46635. name: "Megamacro",
  46636. height: math.unit(21600, "meters")
  46637. },
  46638. {
  46639. name: "Megamacro+",
  46640. height: math.unit(64800, "meters")
  46641. },
  46642. ]
  46643. ))
  46644. characterMakers.push(() => makeCharacter(
  46645. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46646. {
  46647. front: {
  46648. height: math.unit(2, "meters"),
  46649. weight: math.unit(80, "kg"),
  46650. name: "Front",
  46651. image: {
  46652. source: "./media/characters/moka/front.svg",
  46653. extra: 1337/1255,
  46654. bottom: 58/1395
  46655. }
  46656. },
  46657. },
  46658. [
  46659. {
  46660. name: "Micro",
  46661. height: math.unit(15, "cm")
  46662. },
  46663. {
  46664. name: "Normal",
  46665. height: math.unit(2, "meters"),
  46666. default: true
  46667. },
  46668. {
  46669. name: "Macro",
  46670. height: math.unit(20, "meters"),
  46671. },
  46672. ]
  46673. ))
  46674. characterMakers.push(() => makeCharacter(
  46675. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46676. {
  46677. front: {
  46678. height: math.unit(9, "feet"),
  46679. weight: math.unit(240, "lb"),
  46680. name: "Front",
  46681. image: {
  46682. source: "./media/characters/kuzco/front.svg",
  46683. extra: 1593/1487,
  46684. bottom: 32/1625
  46685. }
  46686. },
  46687. side: {
  46688. height: math.unit(9, "feet"),
  46689. weight: math.unit(240, "lb"),
  46690. name: "Side",
  46691. image: {
  46692. source: "./media/characters/kuzco/side.svg",
  46693. extra: 1575/1485,
  46694. bottom: 30/1605
  46695. }
  46696. },
  46697. back: {
  46698. height: math.unit(9, "feet"),
  46699. weight: math.unit(240, "lb"),
  46700. name: "Back",
  46701. image: {
  46702. source: "./media/characters/kuzco/back.svg",
  46703. extra: 1603/1514,
  46704. bottom: 14/1617
  46705. }
  46706. },
  46707. },
  46708. [
  46709. {
  46710. name: "Normal",
  46711. height: math.unit(9, "feet"),
  46712. default: true
  46713. },
  46714. ]
  46715. ))
  46716. characterMakers.push(() => makeCharacter(
  46717. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46718. {
  46719. side: {
  46720. height: math.unit(2, "meters"),
  46721. weight: math.unit(300, "kg"),
  46722. name: "Side",
  46723. image: {
  46724. source: "./media/characters/ceruleus/side.svg",
  46725. extra: 1068/974,
  46726. bottom: 126/1194
  46727. }
  46728. },
  46729. maw: {
  46730. height: math.unit(0.8125, "meter"),
  46731. name: "Maw",
  46732. image: {
  46733. source: "./media/characters/ceruleus/maw.svg"
  46734. }
  46735. },
  46736. },
  46737. [
  46738. {
  46739. name: "Normal",
  46740. height: math.unit(16, "meters"),
  46741. default: true
  46742. },
  46743. ]
  46744. ))
  46745. characterMakers.push(() => makeCharacter(
  46746. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46747. {
  46748. front: {
  46749. height: math.unit(9, "feet"),
  46750. weight: math.unit(500, "kg"),
  46751. name: "Front",
  46752. image: {
  46753. source: "./media/characters/acouya/front.svg",
  46754. extra: 1660/1473,
  46755. bottom: 28/1688
  46756. }
  46757. },
  46758. },
  46759. [
  46760. {
  46761. name: "Normal",
  46762. height: math.unit(9, "feet"),
  46763. default: true
  46764. },
  46765. ]
  46766. ))
  46767. characterMakers.push(() => makeCharacter(
  46768. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46769. {
  46770. front: {
  46771. height: math.unit(5 + 6/12, "feet"),
  46772. weight: math.unit(195, "lb"),
  46773. name: "Front",
  46774. image: {
  46775. source: "./media/characters/vant/front.svg",
  46776. extra: 1396/1320,
  46777. bottom: 20/1416
  46778. }
  46779. },
  46780. back: {
  46781. height: math.unit(5 + 6/12, "feet"),
  46782. weight: math.unit(195, "lb"),
  46783. name: "Back",
  46784. image: {
  46785. source: "./media/characters/vant/back.svg",
  46786. extra: 1396/1320,
  46787. bottom: 20/1416
  46788. }
  46789. },
  46790. maw: {
  46791. height: math.unit(0.75, "feet"),
  46792. name: "Maw",
  46793. image: {
  46794. source: "./media/characters/vant/maw.svg"
  46795. }
  46796. },
  46797. paw: {
  46798. height: math.unit(1.07, "feet"),
  46799. name: "Paw",
  46800. image: {
  46801. source: "./media/characters/vant/paw.svg"
  46802. }
  46803. },
  46804. },
  46805. [
  46806. {
  46807. name: "Micro",
  46808. height: math.unit(0.25, "inches")
  46809. },
  46810. {
  46811. name: "Normal",
  46812. height: math.unit(5 + 6/12, "feet"),
  46813. default: true
  46814. },
  46815. {
  46816. name: "Macro",
  46817. height: math.unit(75, "feet")
  46818. },
  46819. ]
  46820. ))
  46821. characterMakers.push(() => makeCharacter(
  46822. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46823. {
  46824. front: {
  46825. height: math.unit(30, "meters"),
  46826. weight: math.unit(363, "tons"),
  46827. name: "Front",
  46828. image: {
  46829. source: "./media/characters/ahra/front.svg",
  46830. extra: 1914/1814,
  46831. bottom: 46/1960
  46832. }
  46833. },
  46834. },
  46835. [
  46836. {
  46837. name: "Macro",
  46838. height: math.unit(30, "meters"),
  46839. default: true
  46840. },
  46841. ]
  46842. ))
  46843. characterMakers.push(() => makeCharacter(
  46844. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46845. {
  46846. undressed: {
  46847. height: math.unit(2, "m"),
  46848. weight: math.unit(250, "kg"),
  46849. name: "Undressed",
  46850. image: {
  46851. source: "./media/characters/coriander/undressed.svg",
  46852. extra: 1757/1606,
  46853. bottom: 107/1864
  46854. }
  46855. },
  46856. dressed: {
  46857. height: math.unit(2, "m"),
  46858. weight: math.unit(250, "kg"),
  46859. name: "Dressed",
  46860. image: {
  46861. source: "./media/characters/coriander/dressed.svg",
  46862. extra: 1757/1606,
  46863. bottom: 107/1864
  46864. }
  46865. },
  46866. },
  46867. [
  46868. {
  46869. name: "Normal",
  46870. height: math.unit(4, "meters"),
  46871. default: true
  46872. },
  46873. {
  46874. name: "XL",
  46875. height: math.unit(6, "meters")
  46876. },
  46877. {
  46878. name: "XXL",
  46879. height: math.unit(8, "meters")
  46880. },
  46881. ]
  46882. ))
  46883. characterMakers.push(() => makeCharacter(
  46884. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46885. {
  46886. front: {
  46887. height: math.unit(6, "feet"),
  46888. name: "Front",
  46889. image: {
  46890. source: "./media/characters/syrinx/front.svg",
  46891. extra: 1557/1259,
  46892. bottom: 171/1728
  46893. }
  46894. },
  46895. },
  46896. [
  46897. {
  46898. name: "Normal",
  46899. height: math.unit(6 + 3/12, "feet"),
  46900. default: true
  46901. },
  46902. ]
  46903. ))
  46904. characterMakers.push(() => makeCharacter(
  46905. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46906. {
  46907. front: {
  46908. height: math.unit(11 + 6/12, "feet"),
  46909. weight: math.unit(1.5, "tons"),
  46910. name: "Front",
  46911. image: {
  46912. source: "./media/characters/bor/front.svg",
  46913. extra: 1189/1109,
  46914. bottom: 170/1359
  46915. }
  46916. },
  46917. },
  46918. [
  46919. {
  46920. name: "Normal",
  46921. height: math.unit(11 + 6/12, "feet"),
  46922. default: true
  46923. },
  46924. {
  46925. name: "Macro",
  46926. height: math.unit(32 + 9/12, "feet")
  46927. },
  46928. ]
  46929. ))
  46930. characterMakers.push(() => makeCharacter(
  46931. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46932. {
  46933. anthro: {
  46934. height: math.unit(9, "feet"),
  46935. weight: math.unit(2076, "lb"),
  46936. name: "Anthro",
  46937. image: {
  46938. source: "./media/characters/abacus/anthro.svg",
  46939. extra: 1540/1494,
  46940. bottom: 233/1773
  46941. }
  46942. },
  46943. pigeon: {
  46944. height: math.unit(1, "feet"),
  46945. name: "Pigeon",
  46946. image: {
  46947. source: "./media/characters/abacus/pigeon.svg",
  46948. extra: 528/525,
  46949. bottom: 46/574
  46950. }
  46951. },
  46952. },
  46953. [
  46954. {
  46955. name: "Normal",
  46956. height: math.unit(9, "feet"),
  46957. default: true
  46958. },
  46959. ]
  46960. ))
  46961. characterMakers.push(() => makeCharacter(
  46962. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46963. {
  46964. side: {
  46965. height: math.unit(6, "feet"),
  46966. name: "Side",
  46967. image: {
  46968. source: "./media/characters/delkhan/side.svg",
  46969. extra: 1884/1786,
  46970. bottom: 308/2192
  46971. }
  46972. },
  46973. head: {
  46974. height: math.unit(3.38, "feet"),
  46975. name: "Head",
  46976. image: {
  46977. source: "./media/characters/delkhan/head.svg"
  46978. }
  46979. },
  46980. },
  46981. [
  46982. {
  46983. name: "Normal",
  46984. height: math.unit(72, "feet"),
  46985. default: true
  46986. },
  46987. {
  46988. name: "Giant",
  46989. height: math.unit(172, "feet")
  46990. },
  46991. ]
  46992. ))
  46993. characterMakers.push(() => makeCharacter(
  46994. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46995. {
  46996. standing: {
  46997. height: math.unit(6, "feet"),
  46998. name: "Standing",
  46999. image: {
  47000. source: "./media/characters/euchidat/standing.svg",
  47001. extra: 1612/1553,
  47002. bottom: 116/1728
  47003. }
  47004. },
  47005. leaning: {
  47006. height: math.unit(6, "feet"),
  47007. name: "Leaning",
  47008. image: {
  47009. source: "./media/characters/euchidat/leaning.svg",
  47010. extra: 1719/1674,
  47011. bottom: 27/1746
  47012. }
  47013. },
  47014. },
  47015. [
  47016. {
  47017. name: "Normal",
  47018. height: math.unit(175, "feet"),
  47019. default: true
  47020. },
  47021. {
  47022. name: "Megamacro",
  47023. height: math.unit(190, "miles")
  47024. },
  47025. {
  47026. name: "Gigamacro",
  47027. height: math.unit(190000, "miles")
  47028. },
  47029. ]
  47030. ))
  47031. characterMakers.push(() => makeCharacter(
  47032. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47033. {
  47034. front: {
  47035. height: math.unit(6, "feet"),
  47036. weight: math.unit(150, "lb"),
  47037. name: "Front",
  47038. image: {
  47039. source: "./media/characters/rebecca-stack/front.svg",
  47040. extra: 1256/1201,
  47041. bottom: 18/1274
  47042. }
  47043. },
  47044. },
  47045. [
  47046. {
  47047. name: "Normal",
  47048. height: math.unit(5 + 8/12, "feet"),
  47049. default: true
  47050. },
  47051. {
  47052. name: "Demolitionist",
  47053. height: math.unit(200, "feet")
  47054. },
  47055. {
  47056. name: "Out of Control",
  47057. height: math.unit(2, "miles")
  47058. },
  47059. {
  47060. name: "Giga",
  47061. height: math.unit(7200, "miles")
  47062. },
  47063. ]
  47064. ))
  47065. characterMakers.push(() => makeCharacter(
  47066. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47067. {
  47068. front: {
  47069. height: math.unit(6, "feet"),
  47070. weight: math.unit(150, "lb"),
  47071. name: "Front",
  47072. image: {
  47073. source: "./media/characters/jenny-cartwright/front.svg",
  47074. extra: 1384/1376,
  47075. bottom: 58/1442
  47076. }
  47077. },
  47078. },
  47079. [
  47080. {
  47081. name: "Normal",
  47082. height: math.unit(6 + 7/12, "feet"),
  47083. default: true
  47084. },
  47085. {
  47086. name: "Librarian",
  47087. height: math.unit(55, "feet")
  47088. },
  47089. {
  47090. name: "Sightseer",
  47091. height: math.unit(50, "miles")
  47092. },
  47093. {
  47094. name: "Giga",
  47095. height: math.unit(30000, "miles")
  47096. },
  47097. ]
  47098. ))
  47099. characterMakers.push(() => makeCharacter(
  47100. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47101. {
  47102. nude: {
  47103. height: math.unit(8, "feet"),
  47104. weight: math.unit(225, "lb"),
  47105. name: "Nude",
  47106. image: {
  47107. source: "./media/characters/marvy/nude.svg",
  47108. extra: 1900/1683,
  47109. bottom: 89/1989
  47110. }
  47111. },
  47112. dressed: {
  47113. height: math.unit(8, "feet"),
  47114. weight: math.unit(225, "lb"),
  47115. name: "Dressed",
  47116. image: {
  47117. source: "./media/characters/marvy/dressed.svg",
  47118. extra: 1900/1683,
  47119. bottom: 89/1989
  47120. }
  47121. },
  47122. head: {
  47123. height: math.unit(2.85, "feet"),
  47124. name: "Head",
  47125. image: {
  47126. source: "./media/characters/marvy/head.svg"
  47127. }
  47128. },
  47129. },
  47130. [
  47131. {
  47132. name: "Normal",
  47133. height: math.unit(8, "feet"),
  47134. default: true
  47135. },
  47136. ]
  47137. ))
  47138. characterMakers.push(() => makeCharacter(
  47139. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47140. {
  47141. front: {
  47142. height: math.unit(8, "feet"),
  47143. weight: math.unit(250, "lb"),
  47144. name: "Front",
  47145. image: {
  47146. source: "./media/characters/leah/front.svg",
  47147. extra: 1257/1149,
  47148. bottom: 109/1366
  47149. }
  47150. },
  47151. },
  47152. [
  47153. {
  47154. name: "Normal",
  47155. height: math.unit(8, "feet"),
  47156. default: true
  47157. },
  47158. {
  47159. name: "Minimacro",
  47160. height: math.unit(40, "feet")
  47161. },
  47162. {
  47163. name: "Macro",
  47164. height: math.unit(124, "feet")
  47165. },
  47166. {
  47167. name: "Megamacro",
  47168. height: math.unit(850, "feet")
  47169. },
  47170. ]
  47171. ))
  47172. characterMakers.push(() => makeCharacter(
  47173. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47174. {
  47175. side: {
  47176. height: math.unit(13 + 6/12, "feet"),
  47177. weight: math.unit(3200, "lb"),
  47178. name: "Side",
  47179. image: {
  47180. source: "./media/characters/alvir/side.svg",
  47181. extra: 896/589,
  47182. bottom: 26/922
  47183. }
  47184. },
  47185. },
  47186. [
  47187. {
  47188. name: "Normal",
  47189. height: math.unit(13 + 6/12, "feet"),
  47190. default: true
  47191. },
  47192. ]
  47193. ))
  47194. characterMakers.push(() => makeCharacter(
  47195. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47196. {
  47197. front: {
  47198. height: math.unit(5 + 4/12, "feet"),
  47199. weight: math.unit(236, "lb"),
  47200. name: "Front",
  47201. image: {
  47202. source: "./media/characters/zaina-khalil/front.svg",
  47203. extra: 1533/1485,
  47204. bottom: 94/1627
  47205. }
  47206. },
  47207. side: {
  47208. height: math.unit(5 + 4/12, "feet"),
  47209. weight: math.unit(236, "lb"),
  47210. name: "Side",
  47211. image: {
  47212. source: "./media/characters/zaina-khalil/side.svg",
  47213. extra: 1537/1498,
  47214. bottom: 66/1603
  47215. }
  47216. },
  47217. back: {
  47218. height: math.unit(5 + 4/12, "feet"),
  47219. weight: math.unit(236, "lb"),
  47220. name: "Back",
  47221. image: {
  47222. source: "./media/characters/zaina-khalil/back.svg",
  47223. extra: 1546/1494,
  47224. bottom: 89/1635
  47225. }
  47226. },
  47227. },
  47228. [
  47229. {
  47230. name: "Normal",
  47231. height: math.unit(5 + 4/12, "feet"),
  47232. default: true
  47233. },
  47234. ]
  47235. ))
  47236. characterMakers.push(() => makeCharacter(
  47237. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47238. {
  47239. side: {
  47240. height: math.unit(12, "feet"),
  47241. weight: math.unit(4000, "lb"),
  47242. name: "Side",
  47243. image: {
  47244. source: "./media/characters/terry/side.svg",
  47245. extra: 1518/1439,
  47246. bottom: 149/1667
  47247. }
  47248. },
  47249. },
  47250. [
  47251. {
  47252. name: "Normal",
  47253. height: math.unit(12, "feet"),
  47254. default: true
  47255. },
  47256. ]
  47257. ))
  47258. characterMakers.push(() => makeCharacter(
  47259. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47260. {
  47261. front: {
  47262. height: math.unit(12, "feet"),
  47263. weight: math.unit(1500, "lb"),
  47264. name: "Front",
  47265. image: {
  47266. source: "./media/characters/kahea/front.svg",
  47267. extra: 1722/1617,
  47268. bottom: 179/1901
  47269. }
  47270. },
  47271. },
  47272. [
  47273. {
  47274. name: "Normal",
  47275. height: math.unit(12, "feet"),
  47276. default: true
  47277. },
  47278. ]
  47279. ))
  47280. characterMakers.push(() => makeCharacter(
  47281. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47282. {
  47283. demonFront: {
  47284. height: math.unit(36, "feet"),
  47285. name: "Front",
  47286. image: {
  47287. source: "./media/characters/alex-xuria/demon-front.svg",
  47288. extra: 1705/1673,
  47289. bottom: 198/1903
  47290. },
  47291. form: "demon",
  47292. default: true
  47293. },
  47294. demonBack: {
  47295. height: math.unit(36, "feet"),
  47296. name: "Back",
  47297. image: {
  47298. source: "./media/characters/alex-xuria/demon-back.svg",
  47299. extra: 1725/1693,
  47300. bottom: 70/1795
  47301. },
  47302. form: "demon"
  47303. },
  47304. demonHead: {
  47305. height: math.unit(2.14, "meters"),
  47306. name: "Head",
  47307. image: {
  47308. source: "./media/characters/alex-xuria/demon-head.svg"
  47309. },
  47310. form: "demon"
  47311. },
  47312. demonHand: {
  47313. height: math.unit(1.61, "meters"),
  47314. name: "Hand",
  47315. image: {
  47316. source: "./media/characters/alex-xuria/demon-hand.svg"
  47317. },
  47318. form: "demon"
  47319. },
  47320. demonPaw: {
  47321. height: math.unit(1.35, "meters"),
  47322. name: "Paw",
  47323. image: {
  47324. source: "./media/characters/alex-xuria/demon-paw.svg"
  47325. },
  47326. form: "demon"
  47327. },
  47328. demonFoot: {
  47329. height: math.unit(2.2, "meters"),
  47330. name: "Foot",
  47331. image: {
  47332. source: "./media/characters/alex-xuria/demon-foot.svg"
  47333. },
  47334. form: "demon"
  47335. },
  47336. demonCock: {
  47337. height: math.unit(1.74, "meters"),
  47338. name: "Cock",
  47339. image: {
  47340. source: "./media/characters/alex-xuria/demon-cock.svg"
  47341. },
  47342. form: "demon"
  47343. },
  47344. demonTailClosed: {
  47345. height: math.unit(1.47, "meters"),
  47346. name: "Tail (Closed)",
  47347. image: {
  47348. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47349. },
  47350. form: "demon"
  47351. },
  47352. demonTailOpen: {
  47353. height: math.unit(2.85, "meters"),
  47354. name: "Tail (Open)",
  47355. image: {
  47356. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47357. },
  47358. form: "demon"
  47359. },
  47360. incubusFront: {
  47361. height: math.unit(12, "feet"),
  47362. name: "Front",
  47363. image: {
  47364. source: "./media/characters/alex-xuria/incubus-front.svg",
  47365. extra: 1754/1677,
  47366. bottom: 125/1879
  47367. },
  47368. form: "incubus",
  47369. default: true
  47370. },
  47371. incubusBack: {
  47372. height: math.unit(12, "feet"),
  47373. name: "Back",
  47374. image: {
  47375. source: "./media/characters/alex-xuria/incubus-back.svg",
  47376. extra: 1702/1647,
  47377. bottom: 30/1732
  47378. },
  47379. form: "incubus"
  47380. },
  47381. incubusHead: {
  47382. height: math.unit(3.45, "feet"),
  47383. name: "Head",
  47384. image: {
  47385. source: "./media/characters/alex-xuria/incubus-head.svg"
  47386. },
  47387. form: "incubus"
  47388. },
  47389. rabbitFront: {
  47390. height: math.unit(6, "feet"),
  47391. name: "Front",
  47392. image: {
  47393. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47394. extra: 1369/1349,
  47395. bottom: 45/1414
  47396. },
  47397. form: "rabbit",
  47398. default: true
  47399. },
  47400. rabbitSide: {
  47401. height: math.unit(6, "feet"),
  47402. name: "Side",
  47403. image: {
  47404. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47405. extra: 1370/1356,
  47406. bottom: 37/1407
  47407. },
  47408. form: "rabbit"
  47409. },
  47410. rabbitBack: {
  47411. height: math.unit(6, "feet"),
  47412. name: "Back",
  47413. image: {
  47414. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47415. extra: 1375/1358,
  47416. bottom: 43/1418
  47417. },
  47418. form: "rabbit"
  47419. },
  47420. },
  47421. [
  47422. {
  47423. name: "Normal",
  47424. height: math.unit(6, "feet"),
  47425. default: true,
  47426. form: "rabbit"
  47427. },
  47428. {
  47429. name: "Incubus",
  47430. height: math.unit(12, "feet"),
  47431. default: true,
  47432. form: "incubus"
  47433. },
  47434. {
  47435. name: "Demon",
  47436. height: math.unit(36, "feet"),
  47437. default: true,
  47438. form: "demon"
  47439. }
  47440. ],
  47441. {
  47442. "demon": {
  47443. name: "Demon",
  47444. default: true
  47445. },
  47446. "incubus": {
  47447. name: "Incubus",
  47448. },
  47449. "rabbit": {
  47450. name: "Rabbit"
  47451. }
  47452. }
  47453. ))
  47454. characterMakers.push(() => makeCharacter(
  47455. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47456. {
  47457. front: {
  47458. height: math.unit(7 + 5/12, "feet"),
  47459. weight: math.unit(510, "lb"),
  47460. name: "Front",
  47461. image: {
  47462. source: "./media/characters/syrup/front.svg",
  47463. extra: 932/916,
  47464. bottom: 26/958
  47465. }
  47466. },
  47467. },
  47468. [
  47469. {
  47470. name: "Normal",
  47471. height: math.unit(7 + 5/12, "feet"),
  47472. default: true
  47473. },
  47474. {
  47475. name: "Big",
  47476. height: math.unit(50, "feet")
  47477. },
  47478. {
  47479. name: "Macro",
  47480. height: math.unit(300, "feet")
  47481. },
  47482. {
  47483. name: "Megamacro",
  47484. height: math.unit(1, "mile")
  47485. },
  47486. ]
  47487. ))
  47488. characterMakers.push(() => makeCharacter(
  47489. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47490. {
  47491. front: {
  47492. height: math.unit(6 + 9/12, "feet"),
  47493. name: "Front",
  47494. image: {
  47495. source: "./media/characters/zeimne/front.svg",
  47496. extra: 1969/1806,
  47497. bottom: 53/2022
  47498. }
  47499. },
  47500. },
  47501. [
  47502. {
  47503. name: "Normal",
  47504. height: math.unit(6 + 9/12, "feet"),
  47505. default: true
  47506. },
  47507. {
  47508. name: "Giant",
  47509. height: math.unit(550, "feet")
  47510. },
  47511. {
  47512. name: "Mega",
  47513. height: math.unit(3, "miles")
  47514. },
  47515. {
  47516. name: "Giga",
  47517. height: math.unit(250, "miles")
  47518. },
  47519. {
  47520. name: "Tera",
  47521. height: math.unit(1, "AU")
  47522. },
  47523. ]
  47524. ))
  47525. characterMakers.push(() => makeCharacter(
  47526. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47527. {
  47528. front: {
  47529. height: math.unit(5 + 2/12, "feet"),
  47530. name: "Front",
  47531. image: {
  47532. source: "./media/characters/grar/front.svg",
  47533. extra: 1331/1119,
  47534. bottom: 60/1391
  47535. }
  47536. },
  47537. back: {
  47538. height: math.unit(5 + 2/12, "feet"),
  47539. name: "Back",
  47540. image: {
  47541. source: "./media/characters/grar/back.svg",
  47542. extra: 1385/1169,
  47543. bottom: 23/1408
  47544. }
  47545. },
  47546. },
  47547. [
  47548. {
  47549. name: "Normal",
  47550. height: math.unit(5 + 2/12, "feet"),
  47551. default: true
  47552. },
  47553. ]
  47554. ))
  47555. characterMakers.push(() => makeCharacter(
  47556. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47557. {
  47558. front: {
  47559. height: math.unit(13 + 7/12, "feet"),
  47560. weight: math.unit(2200, "lb"),
  47561. name: "Front",
  47562. image: {
  47563. source: "./media/characters/endraya/front.svg",
  47564. extra: 1289/1215,
  47565. bottom: 50/1339
  47566. }
  47567. },
  47568. nude: {
  47569. height: math.unit(13 + 7/12, "feet"),
  47570. weight: math.unit(2200, "lb"),
  47571. name: "Nude",
  47572. image: {
  47573. source: "./media/characters/endraya/nude.svg",
  47574. extra: 1247/1171,
  47575. bottom: 40/1287
  47576. }
  47577. },
  47578. head: {
  47579. height: math.unit(2.6, "feet"),
  47580. name: "Head",
  47581. image: {
  47582. source: "./media/characters/endraya/head.svg"
  47583. }
  47584. },
  47585. slit: {
  47586. height: math.unit(3.4, "feet"),
  47587. name: "Slit",
  47588. image: {
  47589. source: "./media/characters/endraya/slit.svg"
  47590. }
  47591. },
  47592. },
  47593. [
  47594. {
  47595. name: "Normal",
  47596. height: math.unit(13 + 7/12, "feet"),
  47597. default: true
  47598. },
  47599. {
  47600. name: "Macro",
  47601. height: math.unit(200, "feet")
  47602. },
  47603. ]
  47604. ))
  47605. characterMakers.push(() => makeCharacter(
  47606. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47607. {
  47608. front: {
  47609. height: math.unit(1.81, "meters"),
  47610. weight: math.unit(69, "kg"),
  47611. name: "Front",
  47612. image: {
  47613. source: "./media/characters/rodryana/front.svg",
  47614. extra: 2002/1921,
  47615. bottom: 53/2055
  47616. }
  47617. },
  47618. back: {
  47619. height: math.unit(1.81, "meters"),
  47620. weight: math.unit(69, "kg"),
  47621. name: "Back",
  47622. image: {
  47623. source: "./media/characters/rodryana/back.svg",
  47624. extra: 1993/1926,
  47625. bottom: 48/2041
  47626. }
  47627. },
  47628. maw: {
  47629. height: math.unit(0.19769417475, "meters"),
  47630. name: "Maw",
  47631. image: {
  47632. source: "./media/characters/rodryana/maw.svg"
  47633. }
  47634. },
  47635. slit: {
  47636. height: math.unit(0.31631067961, "meters"),
  47637. name: "Slit",
  47638. image: {
  47639. source: "./media/characters/rodryana/slit.svg"
  47640. }
  47641. },
  47642. },
  47643. [
  47644. {
  47645. name: "Normal",
  47646. height: math.unit(1.81, "meters")
  47647. },
  47648. {
  47649. name: "Mini Macro",
  47650. height: math.unit(181, "meters")
  47651. },
  47652. {
  47653. name: "Macro",
  47654. height: math.unit(452, "meters"),
  47655. default: true
  47656. },
  47657. {
  47658. name: "Mega Macro",
  47659. height: math.unit(1.375, "km")
  47660. },
  47661. {
  47662. name: "Giga Macro",
  47663. height: math.unit(13.575, "km")
  47664. },
  47665. ]
  47666. ))
  47667. characterMakers.push(() => makeCharacter(
  47668. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47669. {
  47670. front: {
  47671. height: math.unit(6, "feet"),
  47672. weight: math.unit(1000, "lb"),
  47673. name: "Front",
  47674. image: {
  47675. source: "./media/characters/asaya/front.svg",
  47676. extra: 1460/1200,
  47677. bottom: 71/1531
  47678. }
  47679. },
  47680. },
  47681. [
  47682. {
  47683. name: "Normal",
  47684. height: math.unit(8, "km"),
  47685. default: true
  47686. },
  47687. ]
  47688. ))
  47689. characterMakers.push(() => makeCharacter(
  47690. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47691. {
  47692. front: {
  47693. height: math.unit(3.5, "meters"),
  47694. name: "Front",
  47695. image: {
  47696. source: "./media/characters/sarzu-and-israz/front.svg",
  47697. extra: 1570/1558,
  47698. bottom: 150/1720
  47699. },
  47700. },
  47701. back: {
  47702. height: math.unit(3.5, "meters"),
  47703. name: "Back",
  47704. image: {
  47705. source: "./media/characters/sarzu-and-israz/back.svg",
  47706. extra: 1523/1509,
  47707. bottom: 132/1655
  47708. },
  47709. },
  47710. frontFemale: {
  47711. height: math.unit(3.5, "meters"),
  47712. name: "Front (Female)",
  47713. image: {
  47714. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47715. extra: 1570/1558,
  47716. bottom: 150/1720
  47717. },
  47718. },
  47719. frontHerm: {
  47720. height: math.unit(3.5, "meters"),
  47721. name: "Front (Herm)",
  47722. image: {
  47723. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47724. extra: 1570/1558,
  47725. bottom: 150/1720
  47726. },
  47727. },
  47728. },
  47729. [
  47730. {
  47731. name: "Normal",
  47732. height: math.unit(3.5, "meters"),
  47733. default: true,
  47734. },
  47735. {
  47736. name: "Macro",
  47737. height: math.unit(65.5, "meters"),
  47738. },
  47739. ],
  47740. ))
  47741. characterMakers.push(() => makeCharacter(
  47742. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47743. {
  47744. front: {
  47745. height: math.unit(6, "feet"),
  47746. weight: math.unit(250, "lb"),
  47747. name: "Front",
  47748. image: {
  47749. source: "./media/characters/zenimma/front.svg",
  47750. extra: 1346/1320,
  47751. bottom: 58/1404
  47752. }
  47753. },
  47754. back: {
  47755. height: math.unit(6, "feet"),
  47756. weight: math.unit(250, "lb"),
  47757. name: "Back",
  47758. image: {
  47759. source: "./media/characters/zenimma/back.svg",
  47760. extra: 1324/1308,
  47761. bottom: 44/1368
  47762. }
  47763. },
  47764. dick: {
  47765. height: math.unit(1.44, "feet"),
  47766. name: "Dick",
  47767. image: {
  47768. source: "./media/characters/zenimma/dick.svg"
  47769. }
  47770. },
  47771. },
  47772. [
  47773. {
  47774. name: "Canon Height",
  47775. height: math.unit(66, "miles"),
  47776. default: true
  47777. },
  47778. ]
  47779. ))
  47780. characterMakers.push(() => makeCharacter(
  47781. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47782. {
  47783. nude: {
  47784. height: math.unit(6, "feet"),
  47785. weight: math.unit(150, "lb"),
  47786. name: "Nude",
  47787. image: {
  47788. source: "./media/characters/shavon/nude.svg",
  47789. extra: 1242/1096,
  47790. bottom: 98/1340
  47791. }
  47792. },
  47793. dressed: {
  47794. height: math.unit(6, "feet"),
  47795. weight: math.unit(150, "lb"),
  47796. name: "Dressed",
  47797. image: {
  47798. source: "./media/characters/shavon/dressed.svg",
  47799. extra: 1242/1096,
  47800. bottom: 98/1340
  47801. }
  47802. },
  47803. },
  47804. [
  47805. {
  47806. name: "Macro",
  47807. height: math.unit(255, "feet"),
  47808. default: true
  47809. },
  47810. ]
  47811. ))
  47812. characterMakers.push(() => makeCharacter(
  47813. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47814. {
  47815. front: {
  47816. height: math.unit(6, "feet"),
  47817. name: "Front",
  47818. image: {
  47819. source: "./media/characters/steph/front.svg",
  47820. extra: 1430/1330,
  47821. bottom: 54/1484
  47822. }
  47823. },
  47824. },
  47825. [
  47826. {
  47827. name: "Normal",
  47828. height: math.unit(6, "feet"),
  47829. default: true
  47830. },
  47831. ]
  47832. ))
  47833. characterMakers.push(() => makeCharacter(
  47834. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47835. {
  47836. front: {
  47837. height: math.unit(9, "feet"),
  47838. weight: math.unit(400, "lb"),
  47839. name: "Front",
  47840. image: {
  47841. source: "./media/characters/kil'aman/front.svg",
  47842. extra: 1210/1159,
  47843. bottom: 109/1319
  47844. }
  47845. },
  47846. head: {
  47847. height: math.unit(2.14, "feet"),
  47848. name: "Head",
  47849. image: {
  47850. source: "./media/characters/kil'aman/head.svg"
  47851. }
  47852. },
  47853. maw: {
  47854. height: math.unit(1.21, "feet"),
  47855. name: "Maw",
  47856. image: {
  47857. source: "./media/characters/kil'aman/maw.svg"
  47858. }
  47859. },
  47860. foot: {
  47861. height: math.unit(1.7, "feet"),
  47862. name: "Foot",
  47863. image: {
  47864. source: "./media/characters/kil'aman/foot.svg"
  47865. }
  47866. },
  47867. dick: {
  47868. height: math.unit(2.1, "feet"),
  47869. name: "Dick",
  47870. image: {
  47871. source: "./media/characters/kil'aman/dick.svg"
  47872. }
  47873. },
  47874. },
  47875. [
  47876. {
  47877. name: "Normal",
  47878. height: math.unit(9, "feet")
  47879. },
  47880. {
  47881. name: "Canon Height",
  47882. height: math.unit(10, "miles"),
  47883. default: true
  47884. },
  47885. {
  47886. name: "Maximum",
  47887. height: math.unit(6e9, "miles")
  47888. },
  47889. ]
  47890. ))
  47891. characterMakers.push(() => makeCharacter(
  47892. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47893. {
  47894. front: {
  47895. height: math.unit(90, "feet"),
  47896. weight: math.unit(675000, "lb"),
  47897. name: "Front",
  47898. image: {
  47899. source: "./media/characters/qadan/front.svg",
  47900. extra: 1012/1004,
  47901. bottom: 78/1090
  47902. }
  47903. },
  47904. back: {
  47905. height: math.unit(90, "feet"),
  47906. weight: math.unit(675000, "lb"),
  47907. name: "Back",
  47908. image: {
  47909. source: "./media/characters/qadan/back.svg",
  47910. extra: 1042/1031,
  47911. bottom: 55/1097
  47912. }
  47913. },
  47914. armored: {
  47915. height: math.unit(90, "feet"),
  47916. weight: math.unit(675000, "lb"),
  47917. name: "Armored",
  47918. image: {
  47919. source: "./media/characters/qadan/armored.svg",
  47920. extra: 1047/1037,
  47921. bottom: 48/1095
  47922. }
  47923. },
  47924. },
  47925. [
  47926. {
  47927. name: "Normal",
  47928. height: math.unit(90, "feet"),
  47929. default: true
  47930. },
  47931. ]
  47932. ))
  47933. characterMakers.push(() => makeCharacter(
  47934. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47935. {
  47936. front: {
  47937. height: math.unit(6, "feet"),
  47938. weight: math.unit(225, "lb"),
  47939. name: "Front",
  47940. image: {
  47941. source: "./media/characters/brooke/front.svg",
  47942. extra: 1050/1010,
  47943. bottom: 66/1116
  47944. }
  47945. },
  47946. back: {
  47947. height: math.unit(6, "feet"),
  47948. weight: math.unit(225, "lb"),
  47949. name: "Back",
  47950. image: {
  47951. source: "./media/characters/brooke/back.svg",
  47952. extra: 1053/1013,
  47953. bottom: 41/1094
  47954. }
  47955. },
  47956. dressed: {
  47957. height: math.unit(6, "feet"),
  47958. weight: math.unit(225, "lb"),
  47959. name: "Dressed",
  47960. image: {
  47961. source: "./media/characters/brooke/dressed.svg",
  47962. extra: 1050/1010,
  47963. bottom: 66/1116
  47964. }
  47965. },
  47966. },
  47967. [
  47968. {
  47969. name: "Canon Height",
  47970. height: math.unit(500, "miles"),
  47971. default: true
  47972. },
  47973. ]
  47974. ))
  47975. characterMakers.push(() => makeCharacter(
  47976. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47977. {
  47978. front: {
  47979. height: math.unit(6 + 2/12, "feet"),
  47980. weight: math.unit(210, "lb"),
  47981. name: "Front",
  47982. image: {
  47983. source: "./media/characters/wubs/front.svg",
  47984. extra: 1345/1325,
  47985. bottom: 70/1415
  47986. }
  47987. },
  47988. back: {
  47989. height: math.unit(6 + 2/12, "feet"),
  47990. weight: math.unit(210, "lb"),
  47991. name: "Back",
  47992. image: {
  47993. source: "./media/characters/wubs/back.svg",
  47994. extra: 1296/1275,
  47995. bottom: 58/1354
  47996. }
  47997. },
  47998. },
  47999. [
  48000. {
  48001. name: "Normal",
  48002. height: math.unit(6 + 2/12, "feet"),
  48003. default: true
  48004. },
  48005. {
  48006. name: "Macro",
  48007. height: math.unit(1000, "feet")
  48008. },
  48009. {
  48010. name: "Megamacro",
  48011. height: math.unit(1, "mile")
  48012. },
  48013. ]
  48014. ))
  48015. characterMakers.push(() => makeCharacter(
  48016. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48017. {
  48018. front: {
  48019. height: math.unit(4, "feet"),
  48020. weight: math.unit(120, "lb"),
  48021. name: "Front",
  48022. image: {
  48023. source: "./media/characters/blue/front.svg",
  48024. extra: 1636/1525,
  48025. bottom: 43/1679
  48026. }
  48027. },
  48028. back: {
  48029. height: math.unit(4, "feet"),
  48030. weight: math.unit(120, "lb"),
  48031. name: "Back",
  48032. image: {
  48033. source: "./media/characters/blue/back.svg",
  48034. extra: 1660/1560,
  48035. bottom: 57/1717
  48036. }
  48037. },
  48038. paws: {
  48039. height: math.unit(0.826, "feet"),
  48040. name: "Paws",
  48041. image: {
  48042. source: "./media/characters/blue/paws.svg"
  48043. }
  48044. },
  48045. },
  48046. [
  48047. {
  48048. name: "Micro",
  48049. height: math.unit(3, "inches")
  48050. },
  48051. {
  48052. name: "Normal",
  48053. height: math.unit(4, "feet"),
  48054. default: true
  48055. },
  48056. {
  48057. name: "Femenine Form",
  48058. height: math.unit(14, "feet")
  48059. },
  48060. {
  48061. name: "Werebat Form",
  48062. height: math.unit(18, "feet")
  48063. },
  48064. ]
  48065. ))
  48066. characterMakers.push(() => makeCharacter(
  48067. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48068. {
  48069. female: {
  48070. height: math.unit(7 + 4/12, "feet"),
  48071. weight: math.unit(243, "lb"),
  48072. name: "Female",
  48073. image: {
  48074. source: "./media/characters/kaya/female.svg",
  48075. extra: 975/898,
  48076. bottom: 34/1009
  48077. }
  48078. },
  48079. herm: {
  48080. height: math.unit(7 + 4/12, "feet"),
  48081. weight: math.unit(243, "lb"),
  48082. name: "Herm",
  48083. image: {
  48084. source: "./media/characters/kaya/herm.svg",
  48085. extra: 975/898,
  48086. bottom: 34/1009
  48087. }
  48088. },
  48089. },
  48090. [
  48091. {
  48092. name: "Normal",
  48093. height: math.unit(7 + 4/12, "feet"),
  48094. default: true
  48095. },
  48096. ]
  48097. ))
  48098. characterMakers.push(() => makeCharacter(
  48099. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48100. {
  48101. female: {
  48102. height: math.unit(9 + 4/12, "feet"),
  48103. weight: math.unit(398, "lb"),
  48104. name: "Female",
  48105. image: {
  48106. source: "./media/characters/kassandra/female.svg",
  48107. extra: 908/839,
  48108. bottom: 61/969
  48109. }
  48110. },
  48111. intersex: {
  48112. height: math.unit(9 + 4/12, "feet"),
  48113. weight: math.unit(398, "lb"),
  48114. name: "Intersex",
  48115. image: {
  48116. source: "./media/characters/kassandra/intersex.svg",
  48117. extra: 908/839,
  48118. bottom: 61/969
  48119. }
  48120. },
  48121. },
  48122. [
  48123. {
  48124. name: "Normal",
  48125. height: math.unit(9 + 4/12, "feet"),
  48126. default: true
  48127. },
  48128. ]
  48129. ))
  48130. characterMakers.push(() => makeCharacter(
  48131. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48132. {
  48133. front: {
  48134. height: math.unit(3, "meters"),
  48135. name: "Front",
  48136. image: {
  48137. source: "./media/characters/amy/front.svg",
  48138. extra: 1380/1343,
  48139. bottom: 70/1450
  48140. }
  48141. },
  48142. back: {
  48143. height: math.unit(3, "meters"),
  48144. name: "Back",
  48145. image: {
  48146. source: "./media/characters/amy/back.svg",
  48147. extra: 1380/1347,
  48148. bottom: 66/1446
  48149. }
  48150. },
  48151. },
  48152. [
  48153. {
  48154. name: "Normal",
  48155. height: math.unit(3, "meters"),
  48156. default: true
  48157. },
  48158. ]
  48159. ))
  48160. characterMakers.push(() => makeCharacter(
  48161. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48162. {
  48163. side: {
  48164. height: math.unit(47, "cm"),
  48165. weight: math.unit(10.8, "kg"),
  48166. name: "Side",
  48167. image: {
  48168. source: "./media/characters/alphaschakal/side.svg",
  48169. extra: 1058/568,
  48170. bottom: 62/1120
  48171. }
  48172. },
  48173. back: {
  48174. height: math.unit(78, "cm"),
  48175. weight: math.unit(10.8, "kg"),
  48176. name: "Back",
  48177. image: {
  48178. source: "./media/characters/alphaschakal/back.svg",
  48179. extra: 1102/942,
  48180. bottom: 185/1287
  48181. }
  48182. },
  48183. head: {
  48184. height: math.unit(28, "cm"),
  48185. name: "Head",
  48186. image: {
  48187. source: "./media/characters/alphaschakal/head.svg",
  48188. extra: 696/508,
  48189. bottom: 0/696
  48190. }
  48191. },
  48192. paw: {
  48193. height: math.unit(16, "cm"),
  48194. name: "Paw",
  48195. image: {
  48196. source: "./media/characters/alphaschakal/paw.svg"
  48197. }
  48198. },
  48199. },
  48200. [
  48201. {
  48202. name: "Normal",
  48203. height: math.unit(47, "cm"),
  48204. default: true
  48205. },
  48206. {
  48207. name: "Macro",
  48208. height: math.unit(340, "cm")
  48209. },
  48210. ]
  48211. ))
  48212. characterMakers.push(() => makeCharacter(
  48213. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48214. {
  48215. front: {
  48216. height: math.unit(36, "earths"),
  48217. name: "Front",
  48218. image: {
  48219. source: "./media/characters/ecobyss/front.svg",
  48220. extra: 1282/1215,
  48221. bottom: 11/1293
  48222. }
  48223. },
  48224. back: {
  48225. height: math.unit(36, "earths"),
  48226. name: "Back",
  48227. image: {
  48228. source: "./media/characters/ecobyss/back.svg",
  48229. extra: 1291/1222,
  48230. bottom: 8/1299
  48231. }
  48232. },
  48233. },
  48234. [
  48235. {
  48236. name: "Normal",
  48237. height: math.unit(36, "earths"),
  48238. default: true
  48239. },
  48240. ]
  48241. ))
  48242. characterMakers.push(() => makeCharacter(
  48243. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48244. {
  48245. front: {
  48246. height: math.unit(12, "feet"),
  48247. name: "Front",
  48248. image: {
  48249. source: "./media/characters/vasuk/front.svg",
  48250. extra: 1326/1207,
  48251. bottom: 64/1390
  48252. }
  48253. },
  48254. },
  48255. [
  48256. {
  48257. name: "Normal",
  48258. height: math.unit(12, "feet"),
  48259. default: true
  48260. },
  48261. ]
  48262. ))
  48263. characterMakers.push(() => makeCharacter(
  48264. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48265. {
  48266. side: {
  48267. height: math.unit(100, "feet"),
  48268. name: "Side",
  48269. image: {
  48270. source: "./media/characters/linneaus/side.svg",
  48271. extra: 987/807,
  48272. bottom: 47/1034
  48273. }
  48274. },
  48275. },
  48276. [
  48277. {
  48278. name: "Macro",
  48279. height: math.unit(100, "feet"),
  48280. default: true
  48281. },
  48282. ]
  48283. ))
  48284. characterMakers.push(() => makeCharacter(
  48285. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48286. {
  48287. front: {
  48288. height: math.unit(8, "feet"),
  48289. weight: math.unit(1200, "lb"),
  48290. name: "Front",
  48291. image: {
  48292. source: "./media/characters/nyterious-daligdig/front.svg",
  48293. extra: 1284/1094,
  48294. bottom: 84/1368
  48295. }
  48296. },
  48297. back: {
  48298. height: math.unit(8, "feet"),
  48299. weight: math.unit(1200, "lb"),
  48300. name: "Back",
  48301. image: {
  48302. source: "./media/characters/nyterious-daligdig/back.svg",
  48303. extra: 1301/1121,
  48304. bottom: 129/1430
  48305. }
  48306. },
  48307. mouth: {
  48308. height: math.unit(1.464, "feet"),
  48309. name: "Mouth",
  48310. image: {
  48311. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48312. }
  48313. },
  48314. },
  48315. [
  48316. {
  48317. name: "Small",
  48318. height: math.unit(8, "feet"),
  48319. default: true
  48320. },
  48321. {
  48322. name: "Normal",
  48323. height: math.unit(15, "feet")
  48324. },
  48325. {
  48326. name: "Macro",
  48327. height: math.unit(90, "feet")
  48328. },
  48329. ]
  48330. ))
  48331. characterMakers.push(() => makeCharacter(
  48332. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48333. {
  48334. front: {
  48335. height: math.unit(7 + 4/12, "feet"),
  48336. weight: math.unit(252, "lb"),
  48337. name: "Front",
  48338. image: {
  48339. source: "./media/characters/bandel/front.svg",
  48340. extra: 1946/1775,
  48341. bottom: 26/1972
  48342. }
  48343. },
  48344. back: {
  48345. height: math.unit(7 + 4/12, "feet"),
  48346. weight: math.unit(252, "lb"),
  48347. name: "Back",
  48348. image: {
  48349. source: "./media/characters/bandel/back.svg",
  48350. extra: 1940/1770,
  48351. bottom: 25/1965
  48352. }
  48353. },
  48354. maw: {
  48355. height: math.unit(2.15, "feet"),
  48356. name: "Maw",
  48357. image: {
  48358. source: "./media/characters/bandel/maw.svg"
  48359. }
  48360. },
  48361. stomach: {
  48362. height: math.unit(1.95, "feet"),
  48363. name: "Stomach",
  48364. image: {
  48365. source: "./media/characters/bandel/stomach.svg"
  48366. }
  48367. },
  48368. },
  48369. [
  48370. {
  48371. name: "Normal",
  48372. height: math.unit(7 + 4/12, "feet"),
  48373. default: true
  48374. },
  48375. ]
  48376. ))
  48377. characterMakers.push(() => makeCharacter(
  48378. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48379. {
  48380. front: {
  48381. height: math.unit(10 + 5/12, "feet"),
  48382. weight: math.unit(773.5, "kg"),
  48383. name: "Front",
  48384. image: {
  48385. source: "./media/characters/zed/front.svg",
  48386. extra: 987/941,
  48387. bottom: 52/1039
  48388. }
  48389. },
  48390. },
  48391. [
  48392. {
  48393. name: "Short",
  48394. height: math.unit(5 + 4/12, "feet")
  48395. },
  48396. {
  48397. name: "Average",
  48398. height: math.unit(10 + 5/12, "feet"),
  48399. default: true
  48400. },
  48401. {
  48402. name: "Mini-Macro",
  48403. height: math.unit(24 + 9/12, "feet")
  48404. },
  48405. {
  48406. name: "Macro",
  48407. height: math.unit(249, "feet")
  48408. },
  48409. {
  48410. name: "Mega-Macro",
  48411. height: math.unit(12490, "feet")
  48412. },
  48413. {
  48414. name: "Giga-Macro",
  48415. height: math.unit(24.9, "miles")
  48416. },
  48417. {
  48418. name: "Tera-Macro",
  48419. height: math.unit(24900, "miles")
  48420. },
  48421. {
  48422. name: "Cosmic Scale",
  48423. height: math.unit(38.9, "lightyears")
  48424. },
  48425. {
  48426. name: "Universal Scale",
  48427. height: math.unit(138e12, "lightyears")
  48428. },
  48429. ]
  48430. ))
  48431. characterMakers.push(() => makeCharacter(
  48432. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48433. {
  48434. front: {
  48435. height: math.unit(1561, "inches"),
  48436. name: "Front",
  48437. image: {
  48438. source: "./media/characters/ivan/front.svg",
  48439. extra: 1126/1071,
  48440. bottom: 26/1152
  48441. }
  48442. },
  48443. back: {
  48444. height: math.unit(1561, "inches"),
  48445. name: "Back",
  48446. image: {
  48447. source: "./media/characters/ivan/back.svg",
  48448. extra: 1134/1079,
  48449. bottom: 30/1164
  48450. }
  48451. },
  48452. },
  48453. [
  48454. {
  48455. name: "Normal",
  48456. height: math.unit(1561, "inches"),
  48457. default: true
  48458. },
  48459. ]
  48460. ))
  48461. characterMakers.push(() => makeCharacter(
  48462. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48463. {
  48464. front: {
  48465. height: math.unit(5 + 7/12, "feet"),
  48466. weight: math.unit(150, "lb"),
  48467. name: "Front",
  48468. image: {
  48469. source: "./media/characters/robin-arctic-hare/front.svg",
  48470. extra: 1148/974,
  48471. bottom: 20/1168
  48472. }
  48473. },
  48474. },
  48475. [
  48476. {
  48477. name: "Normal",
  48478. height: math.unit(5 + 7/12, "feet"),
  48479. default: true
  48480. },
  48481. ]
  48482. ))
  48483. characterMakers.push(() => makeCharacter(
  48484. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48485. {
  48486. side: {
  48487. height: math.unit(5, "feet"),
  48488. name: "Side",
  48489. image: {
  48490. source: "./media/characters/birch/side.svg",
  48491. extra: 985/796,
  48492. bottom: 111/1096
  48493. }
  48494. },
  48495. },
  48496. [
  48497. {
  48498. name: "Normal",
  48499. height: math.unit(5, "feet"),
  48500. default: true
  48501. },
  48502. ]
  48503. ))
  48504. characterMakers.push(() => makeCharacter(
  48505. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48506. {
  48507. front: {
  48508. height: math.unit(4, "feet"),
  48509. name: "Front",
  48510. image: {
  48511. source: "./media/characters/rasp/front.svg",
  48512. extra: 561/478,
  48513. bottom: 74/635
  48514. }
  48515. },
  48516. },
  48517. [
  48518. {
  48519. name: "Normal",
  48520. height: math.unit(4, "feet"),
  48521. default: true
  48522. },
  48523. ]
  48524. ))
  48525. characterMakers.push(() => makeCharacter(
  48526. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48527. {
  48528. front: {
  48529. height: math.unit(4 + 6/12, "feet"),
  48530. name: "Front",
  48531. image: {
  48532. source: "./media/characters/agatha/front.svg",
  48533. extra: 947/933,
  48534. bottom: 42/989
  48535. }
  48536. },
  48537. back: {
  48538. height: math.unit(4 + 6/12, "feet"),
  48539. name: "Back",
  48540. image: {
  48541. source: "./media/characters/agatha/back.svg",
  48542. extra: 935/922,
  48543. bottom: 48/983
  48544. }
  48545. },
  48546. },
  48547. [
  48548. {
  48549. name: "Normal",
  48550. height: math.unit(4 + 6 /12, "feet"),
  48551. default: true
  48552. },
  48553. {
  48554. name: "Max Size",
  48555. height: math.unit(500, "feet")
  48556. },
  48557. ]
  48558. ))
  48559. characterMakers.push(() => makeCharacter(
  48560. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48561. {
  48562. side: {
  48563. height: math.unit(30, "feet"),
  48564. name: "Side",
  48565. image: {
  48566. source: "./media/characters/roggy/side.svg",
  48567. extra: 909/643,
  48568. bottom: 63/972
  48569. }
  48570. },
  48571. lounging: {
  48572. height: math.unit(20, "feet"),
  48573. name: "Lounging",
  48574. image: {
  48575. source: "./media/characters/roggy/lounging.svg",
  48576. extra: 643/479,
  48577. bottom: 145/788
  48578. }
  48579. },
  48580. handpaw: {
  48581. height: math.unit(13.1, "feet"),
  48582. name: "Handpaw",
  48583. image: {
  48584. source: "./media/characters/roggy/handpaw.svg"
  48585. }
  48586. },
  48587. footpaw: {
  48588. height: math.unit(15.8, "feet"),
  48589. name: "Footpaw",
  48590. image: {
  48591. source: "./media/characters/roggy/footpaw.svg"
  48592. }
  48593. },
  48594. },
  48595. [
  48596. {
  48597. name: "Menacing",
  48598. height: math.unit(30, "feet"),
  48599. default: true
  48600. },
  48601. ]
  48602. ))
  48603. characterMakers.push(() => makeCharacter(
  48604. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48605. {
  48606. front: {
  48607. height: math.unit(5 + 7/12, "feet"),
  48608. weight: math.unit(135, "lb"),
  48609. name: "Front",
  48610. image: {
  48611. source: "./media/characters/naomi/front.svg",
  48612. extra: 1209/1154,
  48613. bottom: 129/1338
  48614. }
  48615. },
  48616. back: {
  48617. height: math.unit(5 + 7/12, "feet"),
  48618. weight: math.unit(135, "lb"),
  48619. name: "Back",
  48620. image: {
  48621. source: "./media/characters/naomi/back.svg",
  48622. extra: 1252/1190,
  48623. bottom: 23/1275
  48624. }
  48625. },
  48626. },
  48627. [
  48628. {
  48629. name: "Normal",
  48630. height: math.unit(5 + 7 /12, "feet"),
  48631. default: true
  48632. },
  48633. ]
  48634. ))
  48635. characterMakers.push(() => makeCharacter(
  48636. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48637. {
  48638. side: {
  48639. height: math.unit(35, "meters"),
  48640. name: "Side",
  48641. image: {
  48642. source: "./media/characters/kimpi/side.svg",
  48643. extra: 419/382,
  48644. bottom: 63/482
  48645. }
  48646. },
  48647. hand: {
  48648. height: math.unit(8.96, "meters"),
  48649. name: "Hand",
  48650. image: {
  48651. source: "./media/characters/kimpi/hand.svg"
  48652. }
  48653. },
  48654. },
  48655. [
  48656. {
  48657. name: "Normal",
  48658. height: math.unit(35, "meters"),
  48659. default: true
  48660. },
  48661. ]
  48662. ))
  48663. characterMakers.push(() => makeCharacter(
  48664. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48665. {
  48666. front: {
  48667. height: math.unit(4 + 4/12, "feet"),
  48668. name: "Front",
  48669. image: {
  48670. source: "./media/characters/pepper-purrloin/front.svg",
  48671. extra: 1141/1024,
  48672. bottom: 21/1162
  48673. }
  48674. },
  48675. },
  48676. [
  48677. {
  48678. name: "Normal",
  48679. height: math.unit(4 + 4/12, "feet"),
  48680. default: true
  48681. },
  48682. ]
  48683. ))
  48684. characterMakers.push(() => makeCharacter(
  48685. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48686. {
  48687. front: {
  48688. height: math.unit(6 + 2/12, "feet"),
  48689. name: "Front",
  48690. image: {
  48691. source: "./media/characters/raphael/front.svg",
  48692. extra: 1101/962,
  48693. bottom: 59/1160
  48694. }
  48695. },
  48696. },
  48697. [
  48698. {
  48699. name: "Normal",
  48700. height: math.unit(6 + 2/12, "feet"),
  48701. default: true
  48702. },
  48703. ]
  48704. ))
  48705. characterMakers.push(() => makeCharacter(
  48706. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48707. {
  48708. front: {
  48709. height: math.unit(6, "feet"),
  48710. weight: math.unit(150, "lb"),
  48711. name: "Front",
  48712. image: {
  48713. source: "./media/characters/victor-williams/front.svg",
  48714. extra: 1894/1825,
  48715. bottom: 67/1961
  48716. }
  48717. },
  48718. },
  48719. [
  48720. {
  48721. name: "Normal",
  48722. height: math.unit(6, "feet"),
  48723. default: true
  48724. },
  48725. ]
  48726. ))
  48727. characterMakers.push(() => makeCharacter(
  48728. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48729. {
  48730. front: {
  48731. height: math.unit(5 + 8/12, "feet"),
  48732. weight: math.unit(150, "lb"),
  48733. name: "Front",
  48734. image: {
  48735. source: "./media/characters/rachel/front.svg",
  48736. extra: 1902/1787,
  48737. bottom: 46/1948
  48738. }
  48739. },
  48740. },
  48741. [
  48742. {
  48743. name: "Base Height",
  48744. height: math.unit(5 + 8/12, "feet"),
  48745. default: true
  48746. },
  48747. {
  48748. name: "Macro",
  48749. height: math.unit(200, "feet")
  48750. },
  48751. {
  48752. name: "Mega Macro",
  48753. height: math.unit(1, "mile")
  48754. },
  48755. {
  48756. name: "Giga Macro",
  48757. height: math.unit(1500, "miles")
  48758. },
  48759. {
  48760. name: "Tera Macro",
  48761. height: math.unit(8000, "miles")
  48762. },
  48763. {
  48764. name: "Tera Macro+",
  48765. height: math.unit(2e5, "miles")
  48766. },
  48767. ]
  48768. ))
  48769. characterMakers.push(() => makeCharacter(
  48770. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48771. {
  48772. front: {
  48773. height: math.unit(6.5, "feet"),
  48774. name: "Front",
  48775. image: {
  48776. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48777. extra: 860/819,
  48778. bottom: 307/1167
  48779. }
  48780. },
  48781. back: {
  48782. height: math.unit(6.5, "feet"),
  48783. name: "Back",
  48784. image: {
  48785. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48786. extra: 880/837,
  48787. bottom: 395/1275
  48788. }
  48789. },
  48790. sleeping: {
  48791. height: math.unit(2.79, "feet"),
  48792. name: "Sleeping",
  48793. image: {
  48794. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48795. extra: 465/383,
  48796. bottom: 263/728
  48797. }
  48798. },
  48799. maw: {
  48800. height: math.unit(2.52, "feet"),
  48801. name: "Maw",
  48802. image: {
  48803. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48804. }
  48805. },
  48806. },
  48807. [
  48808. {
  48809. name: "Normal",
  48810. height: math.unit(6.5, "feet"),
  48811. default: true
  48812. },
  48813. ]
  48814. ))
  48815. characterMakers.push(() => makeCharacter(
  48816. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48817. {
  48818. front: {
  48819. height: math.unit(5, "feet"),
  48820. name: "Front",
  48821. image: {
  48822. source: "./media/characters/nova-nerium/front.svg",
  48823. extra: 1548/1392,
  48824. bottom: 374/1922
  48825. }
  48826. },
  48827. back: {
  48828. height: math.unit(5, "feet"),
  48829. name: "Back",
  48830. image: {
  48831. source: "./media/characters/nova-nerium/back.svg",
  48832. extra: 1658/1468,
  48833. bottom: 257/1915
  48834. }
  48835. },
  48836. },
  48837. [
  48838. {
  48839. name: "Normal",
  48840. height: math.unit(5, "feet"),
  48841. default: true
  48842. },
  48843. ]
  48844. ))
  48845. characterMakers.push(() => makeCharacter(
  48846. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48847. {
  48848. front: {
  48849. height: math.unit(5 + 4/12, "feet"),
  48850. name: "Front",
  48851. image: {
  48852. source: "./media/characters/ashe-pyriph/front.svg",
  48853. extra: 1935/1747,
  48854. bottom: 60/1995
  48855. }
  48856. },
  48857. },
  48858. [
  48859. {
  48860. name: "Normal",
  48861. height: math.unit(5 + 4/12, "feet"),
  48862. default: true
  48863. },
  48864. ]
  48865. ))
  48866. characterMakers.push(() => makeCharacter(
  48867. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48868. {
  48869. front: {
  48870. height: math.unit(8.7, "feet"),
  48871. name: "Front",
  48872. image: {
  48873. source: "./media/characters/flicker-wisp/front.svg",
  48874. extra: 1835/1613,
  48875. bottom: 449/2284
  48876. }
  48877. },
  48878. side: {
  48879. height: math.unit(8.7, "feet"),
  48880. name: "Side",
  48881. image: {
  48882. source: "./media/characters/flicker-wisp/side.svg",
  48883. extra: 1841/1642,
  48884. bottom: 336/2177
  48885. },
  48886. default: true
  48887. },
  48888. maw: {
  48889. height: math.unit(3.35, "feet"),
  48890. name: "Maw",
  48891. image: {
  48892. source: "./media/characters/flicker-wisp/maw.svg",
  48893. extra: 2338/1506,
  48894. bottom: 0/2338
  48895. }
  48896. },
  48897. ovipositor: {
  48898. height: math.unit(4.95, "feet"),
  48899. name: "Ovipositor",
  48900. image: {
  48901. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48902. }
  48903. },
  48904. egg: {
  48905. height: math.unit(0.385, "feet"),
  48906. weight: math.unit(2, "lb"),
  48907. name: "Egg",
  48908. image: {
  48909. source: "./media/characters/flicker-wisp/egg.svg"
  48910. }
  48911. },
  48912. },
  48913. [
  48914. {
  48915. name: "Normal",
  48916. height: math.unit(8.7, "feet"),
  48917. default: true
  48918. },
  48919. ]
  48920. ))
  48921. characterMakers.push(() => makeCharacter(
  48922. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48923. {
  48924. side: {
  48925. height: math.unit(11, "feet"),
  48926. name: "Side",
  48927. image: {
  48928. source: "./media/characters/faefnul/side.svg",
  48929. extra: 1100/1007,
  48930. bottom: 0/1100
  48931. }
  48932. },
  48933. },
  48934. [
  48935. {
  48936. name: "Normal",
  48937. height: math.unit(11, "feet"),
  48938. default: true
  48939. },
  48940. ]
  48941. ))
  48942. characterMakers.push(() => makeCharacter(
  48943. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48944. {
  48945. front: {
  48946. height: math.unit(6 + 2/12, "feet"),
  48947. name: "Front",
  48948. image: {
  48949. source: "./media/characters/shady/front.svg",
  48950. extra: 502/461,
  48951. bottom: 9/511
  48952. }
  48953. },
  48954. kneeling: {
  48955. height: math.unit(4.6, "feet"),
  48956. name: "Kneeling",
  48957. image: {
  48958. source: "./media/characters/shady/kneeling.svg",
  48959. extra: 1328/1219,
  48960. bottom: 117/1445
  48961. }
  48962. },
  48963. maw: {
  48964. height: math.unit(2, "feet"),
  48965. name: "Maw",
  48966. image: {
  48967. source: "./media/characters/shady/maw.svg"
  48968. }
  48969. },
  48970. },
  48971. [
  48972. {
  48973. name: "Nano",
  48974. height: math.unit(1, "mm")
  48975. },
  48976. {
  48977. name: "Micro",
  48978. height: math.unit(12, "mm")
  48979. },
  48980. {
  48981. name: "Tiny",
  48982. height: math.unit(3, "inches")
  48983. },
  48984. {
  48985. name: "Normal",
  48986. height: math.unit(6 + 2/12, "feet"),
  48987. default: true
  48988. },
  48989. {
  48990. name: "Big",
  48991. height: math.unit(15, "feet")
  48992. },
  48993. {
  48994. name: "Macro",
  48995. height: math.unit(150, "feet")
  48996. },
  48997. {
  48998. name: "Titanic",
  48999. height: math.unit(500, "feet")
  49000. },
  49001. ]
  49002. ))
  49003. characterMakers.push(() => makeCharacter(
  49004. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49005. {
  49006. front: {
  49007. height: math.unit(12, "feet"),
  49008. name: "Front",
  49009. image: {
  49010. source: "./media/characters/fenrir/front.svg",
  49011. extra: 968/875,
  49012. bottom: 22/990
  49013. }
  49014. },
  49015. },
  49016. [
  49017. {
  49018. name: "Big",
  49019. height: math.unit(12, "feet"),
  49020. default: true
  49021. },
  49022. ]
  49023. ))
  49024. characterMakers.push(() => makeCharacter(
  49025. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49026. {
  49027. front: {
  49028. height: math.unit(5 + 4/12, "feet"),
  49029. name: "Front",
  49030. image: {
  49031. source: "./media/characters/makar/front.svg",
  49032. extra: 1181/1112,
  49033. bottom: 78/1259
  49034. }
  49035. },
  49036. },
  49037. [
  49038. {
  49039. name: "Normal",
  49040. height: math.unit(5 + 4/12, "feet"),
  49041. default: true
  49042. },
  49043. ]
  49044. ))
  49045. characterMakers.push(() => makeCharacter(
  49046. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49047. {
  49048. front: {
  49049. height: math.unit(5 + 7/12, "feet"),
  49050. name: "Front",
  49051. image: {
  49052. source: "./media/characters/callow/front.svg",
  49053. extra: 1482/1304,
  49054. bottom: 23/1505
  49055. }
  49056. },
  49057. back: {
  49058. height: math.unit(5 + 7/12, "feet"),
  49059. name: "Back",
  49060. image: {
  49061. source: "./media/characters/callow/back.svg",
  49062. extra: 1484/1296,
  49063. bottom: 25/1509
  49064. }
  49065. },
  49066. },
  49067. [
  49068. {
  49069. name: "Micro",
  49070. height: math.unit(3, "inches"),
  49071. default: true
  49072. },
  49073. {
  49074. name: "Normal",
  49075. height: math.unit(5 + 7/12, "feet")
  49076. },
  49077. ]
  49078. ))
  49079. characterMakers.push(() => makeCharacter(
  49080. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49081. {
  49082. front: {
  49083. height: math.unit(6 + 2/12, "feet"),
  49084. name: "Front",
  49085. image: {
  49086. source: "./media/characters/natel/front.svg",
  49087. extra: 1833/1692,
  49088. bottom: 166/1999
  49089. }
  49090. },
  49091. },
  49092. [
  49093. {
  49094. name: "Normal",
  49095. height: math.unit(6 + 2/12, "feet"),
  49096. default: true
  49097. },
  49098. ]
  49099. ))
  49100. characterMakers.push(() => makeCharacter(
  49101. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49102. {
  49103. front: {
  49104. height: math.unit(1.75, "meters"),
  49105. name: "Front",
  49106. image: {
  49107. source: "./media/characters/misu/front.svg",
  49108. extra: 1690/1558,
  49109. bottom: 234/1924
  49110. }
  49111. },
  49112. back: {
  49113. height: math.unit(1.75, "meters"),
  49114. name: "Back",
  49115. image: {
  49116. source: "./media/characters/misu/back.svg",
  49117. extra: 1762/1618,
  49118. bottom: 146/1908
  49119. }
  49120. },
  49121. frontNude: {
  49122. height: math.unit(1.75, "meters"),
  49123. name: "Front (Nude)",
  49124. image: {
  49125. source: "./media/characters/misu/front-nude.svg",
  49126. extra: 1690/1558,
  49127. bottom: 234/1924
  49128. }
  49129. },
  49130. backNude: {
  49131. height: math.unit(1.75, "meters"),
  49132. name: "Back (Nude)",
  49133. image: {
  49134. source: "./media/characters/misu/back-nude.svg",
  49135. extra: 1762/1618,
  49136. bottom: 146/1908
  49137. }
  49138. },
  49139. frontErect: {
  49140. height: math.unit(1.75, "meters"),
  49141. name: "Front (Erect)",
  49142. image: {
  49143. source: "./media/characters/misu/front-erect.svg",
  49144. extra: 1690/1558,
  49145. bottom: 234/1924
  49146. }
  49147. },
  49148. maw: {
  49149. height: math.unit(0.47, "meters"),
  49150. name: "Maw",
  49151. image: {
  49152. source: "./media/characters/misu/maw.svg"
  49153. }
  49154. },
  49155. head: {
  49156. height: math.unit(0.35, "meters"),
  49157. name: "Head",
  49158. image: {
  49159. source: "./media/characters/misu/head.svg"
  49160. }
  49161. },
  49162. rear: {
  49163. height: math.unit(0.47, "meters"),
  49164. name: "Rear",
  49165. image: {
  49166. source: "./media/characters/misu/rear.svg"
  49167. }
  49168. },
  49169. },
  49170. [
  49171. {
  49172. name: "Normal",
  49173. height: math.unit(1.75, "meters")
  49174. },
  49175. {
  49176. name: "Not good for the people",
  49177. height: math.unit(42, "meters")
  49178. },
  49179. {
  49180. name: "Not good for the neighborhood",
  49181. height: math.unit(135, "meters")
  49182. },
  49183. {
  49184. name: "Bit bigger problem",
  49185. height: math.unit(380, "meters"),
  49186. default: true
  49187. },
  49188. {
  49189. name: "Not good for the city",
  49190. height: math.unit(1.5, "km")
  49191. },
  49192. {
  49193. name: "Not good for the county",
  49194. height: math.unit(5.5, "km")
  49195. },
  49196. {
  49197. name: "Not good for the state",
  49198. height: math.unit(25, "km")
  49199. },
  49200. {
  49201. name: "Not good for the country",
  49202. height: math.unit(125, "km")
  49203. },
  49204. {
  49205. name: "Not good for the continent",
  49206. height: math.unit(2100, "km")
  49207. },
  49208. {
  49209. name: "Not good for the planet",
  49210. height: math.unit(35000, "km")
  49211. },
  49212. {
  49213. name: "Just no",
  49214. height: math.unit(8.5e18, "km")
  49215. },
  49216. ]
  49217. ))
  49218. characterMakers.push(() => makeCharacter(
  49219. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49220. {
  49221. front: {
  49222. height: math.unit(6.5, "feet"),
  49223. name: "Front",
  49224. image: {
  49225. source: "./media/characters/poppy/front.svg",
  49226. extra: 1878/1812,
  49227. bottom: 43/1921
  49228. }
  49229. },
  49230. feet: {
  49231. height: math.unit(1.06, "feet"),
  49232. name: "Feet",
  49233. image: {
  49234. source: "./media/characters/poppy/feet.svg",
  49235. extra: 1083/1083,
  49236. bottom: 87/1170
  49237. }
  49238. },
  49239. },
  49240. [
  49241. {
  49242. name: "Human",
  49243. height: math.unit(6.5, "feet")
  49244. },
  49245. {
  49246. name: "Default",
  49247. height: math.unit(300, "feet"),
  49248. default: true
  49249. },
  49250. {
  49251. name: "Huge",
  49252. height: math.unit(850, "feet")
  49253. },
  49254. {
  49255. name: "Mega",
  49256. height: math.unit(8000, "feet")
  49257. },
  49258. {
  49259. name: "Giga",
  49260. height: math.unit(300, "miles")
  49261. },
  49262. ]
  49263. ))
  49264. characterMakers.push(() => makeCharacter(
  49265. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49266. {
  49267. bipedal: {
  49268. height: math.unit(7, "feet"),
  49269. name: "Bipedal",
  49270. image: {
  49271. source: "./media/characters/zener/bipedal.svg",
  49272. extra: 874/805,
  49273. bottom: 109/983
  49274. }
  49275. },
  49276. quadrupedal: {
  49277. height: math.unit(4.64, "feet"),
  49278. name: "Quadrupedal",
  49279. image: {
  49280. source: "./media/characters/zener/quadrupedal.svg",
  49281. extra: 638/507,
  49282. bottom: 190/828
  49283. }
  49284. },
  49285. cock: {
  49286. height: math.unit(18, "inches"),
  49287. name: "Cock",
  49288. image: {
  49289. source: "./media/characters/zener/cock.svg"
  49290. }
  49291. },
  49292. },
  49293. [
  49294. {
  49295. name: "Normal",
  49296. height: math.unit(7, "feet"),
  49297. default: true
  49298. },
  49299. ]
  49300. ))
  49301. characterMakers.push(() => makeCharacter(
  49302. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49303. {
  49304. nude: {
  49305. height: math.unit(5 + 6/12, "feet"),
  49306. name: "Nude",
  49307. image: {
  49308. source: "./media/characters/charlie-dog/nude.svg",
  49309. extra: 768/734,
  49310. bottom: 26/794
  49311. }
  49312. },
  49313. dressed: {
  49314. height: math.unit(5 + 6/12, "feet"),
  49315. name: "Dressed",
  49316. image: {
  49317. source: "./media/characters/charlie-dog/dressed.svg",
  49318. extra: 768/734,
  49319. bottom: 26/794
  49320. }
  49321. },
  49322. },
  49323. [
  49324. {
  49325. name: "Normal",
  49326. height: math.unit(5 + 6/12, "feet"),
  49327. default: true
  49328. },
  49329. ]
  49330. ))
  49331. characterMakers.push(() => makeCharacter(
  49332. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49333. {
  49334. front: {
  49335. height: math.unit(6 + 4/12, "feet"),
  49336. name: "Front",
  49337. image: {
  49338. source: "./media/characters/ir'istrasz/front.svg",
  49339. extra: 1014/977,
  49340. bottom: 65/1079
  49341. }
  49342. },
  49343. back: {
  49344. height: math.unit(6 + 4/12, "feet"),
  49345. name: "Back",
  49346. image: {
  49347. source: "./media/characters/ir'istrasz/back.svg",
  49348. extra: 1024/992,
  49349. bottom: 34/1058
  49350. }
  49351. },
  49352. },
  49353. [
  49354. {
  49355. name: "Normal",
  49356. height: math.unit(6 + 4/12, "feet"),
  49357. default: true
  49358. },
  49359. ]
  49360. ))
  49361. characterMakers.push(() => makeCharacter(
  49362. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49363. {
  49364. front: {
  49365. height: math.unit(5 + 8/12, "feet"),
  49366. name: "Front",
  49367. image: {
  49368. source: "./media/characters/dee-ditto/front.svg",
  49369. extra: 1874/1785,
  49370. bottom: 68/1942
  49371. }
  49372. },
  49373. back: {
  49374. height: math.unit(5 + 8/12, "feet"),
  49375. name: "Back",
  49376. image: {
  49377. source: "./media/characters/dee-ditto/back.svg",
  49378. extra: 1870/1783,
  49379. bottom: 77/1947
  49380. }
  49381. },
  49382. },
  49383. [
  49384. {
  49385. name: "Normal",
  49386. height: math.unit(5 + 8/12, "feet"),
  49387. default: true
  49388. },
  49389. ]
  49390. ))
  49391. characterMakers.push(() => makeCharacter(
  49392. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49393. {
  49394. front: {
  49395. height: math.unit(7 + 6/12, "feet"),
  49396. name: "Front",
  49397. image: {
  49398. source: "./media/characters/fey/front.svg",
  49399. extra: 995/979,
  49400. bottom: 30/1025
  49401. }
  49402. },
  49403. back: {
  49404. height: math.unit(7 + 6/12, "feet"),
  49405. name: "Back",
  49406. image: {
  49407. source: "./media/characters/fey/back.svg",
  49408. extra: 1079/1008,
  49409. bottom: 5/1084
  49410. }
  49411. },
  49412. dressed: {
  49413. height: math.unit(7 + 6/12, "feet"),
  49414. name: "Dressed",
  49415. image: {
  49416. source: "./media/characters/fey/dressed.svg",
  49417. extra: 995/979,
  49418. bottom: 30/1025
  49419. }
  49420. },
  49421. },
  49422. [
  49423. {
  49424. name: "Normal",
  49425. height: math.unit(7 + 6/12, "feet"),
  49426. default: true
  49427. },
  49428. ]
  49429. ))
  49430. characterMakers.push(() => makeCharacter(
  49431. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49432. {
  49433. standing: {
  49434. height: math.unit(17, "feet"),
  49435. name: "Standing",
  49436. image: {
  49437. source: "./media/characters/aster/standing.svg",
  49438. extra: 1798/1598,
  49439. bottom: 117/1915
  49440. }
  49441. },
  49442. },
  49443. [
  49444. {
  49445. name: "Normal",
  49446. height: math.unit(17, "feet"),
  49447. default: true
  49448. },
  49449. {
  49450. name: "Homewrecker",
  49451. height: math.unit(95, "feet")
  49452. },
  49453. {
  49454. name: "Planet Devourer",
  49455. height: math.unit(1008000, "miles")
  49456. },
  49457. ]
  49458. ))
  49459. characterMakers.push(() => makeCharacter(
  49460. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49461. {
  49462. front: {
  49463. height: math.unit(6 + 5/12, "feet"),
  49464. weight: math.unit(265, "lb"),
  49465. name: "Front",
  49466. image: {
  49467. source: "./media/characters/devon-childs/front.svg",
  49468. extra: 1795/1721,
  49469. bottom: 41/1836
  49470. }
  49471. },
  49472. side: {
  49473. height: math.unit(6 + 5/12, "feet"),
  49474. weight: math.unit(265, "lb"),
  49475. name: "Side",
  49476. image: {
  49477. source: "./media/characters/devon-childs/side.svg",
  49478. extra: 1812/1738,
  49479. bottom: 30/1842
  49480. }
  49481. },
  49482. back: {
  49483. height: math.unit(6 + 5/12, "feet"),
  49484. weight: math.unit(265, "lb"),
  49485. name: "Back",
  49486. image: {
  49487. source: "./media/characters/devon-childs/back.svg",
  49488. extra: 1808/1735,
  49489. bottom: 23/1831
  49490. }
  49491. },
  49492. hand: {
  49493. height: math.unit(1.464, "feet"),
  49494. name: "Hand",
  49495. image: {
  49496. source: "./media/characters/devon-childs/hand.svg"
  49497. }
  49498. },
  49499. foot: {
  49500. height: math.unit(1.6, "feet"),
  49501. name: "Foot",
  49502. image: {
  49503. source: "./media/characters/devon-childs/foot.svg"
  49504. }
  49505. },
  49506. },
  49507. [
  49508. {
  49509. name: "Micro",
  49510. height: math.unit(7, "cm")
  49511. },
  49512. {
  49513. name: "Normal",
  49514. height: math.unit(6 + 5/12, "feet"),
  49515. default: true
  49516. },
  49517. {
  49518. name: "Macro",
  49519. height: math.unit(154, "feet")
  49520. },
  49521. ]
  49522. ))
  49523. characterMakers.push(() => makeCharacter(
  49524. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49525. {
  49526. front: {
  49527. height: math.unit(6, "feet"),
  49528. weight: math.unit(180, "lb"),
  49529. name: "Front",
  49530. image: {
  49531. source: "./media/characters/lydemox-vir/front.svg",
  49532. extra: 1632/1435,
  49533. bottom: 58/1690
  49534. }
  49535. },
  49536. frontSFW: {
  49537. height: math.unit(6, "feet"),
  49538. weight: math.unit(180, "lb"),
  49539. name: "Front (SFW)",
  49540. image: {
  49541. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49542. extra: 1632/1435,
  49543. bottom: 58/1690
  49544. }
  49545. },
  49546. back: {
  49547. height: math.unit(6, "feet"),
  49548. weight: math.unit(180, "lb"),
  49549. name: "Back",
  49550. image: {
  49551. source: "./media/characters/lydemox-vir/back.svg",
  49552. extra: 1593/1408,
  49553. bottom: 31/1624
  49554. }
  49555. },
  49556. paw: {
  49557. height: math.unit(1.85, "feet"),
  49558. name: "Paw",
  49559. image: {
  49560. source: "./media/characters/lydemox-vir/paw.svg"
  49561. }
  49562. },
  49563. dick: {
  49564. height: math.unit(1.8, "feet"),
  49565. name: "Dick",
  49566. image: {
  49567. source: "./media/characters/lydemox-vir/dick.svg"
  49568. }
  49569. },
  49570. },
  49571. [
  49572. {
  49573. name: "Macro",
  49574. height: math.unit(100, "feet"),
  49575. default: true
  49576. },
  49577. {
  49578. name: "Teramacro",
  49579. height: math.unit(1, "earth")
  49580. },
  49581. {
  49582. name: "Planetary",
  49583. height: math.unit(20, "earths")
  49584. },
  49585. ]
  49586. ))
  49587. characterMakers.push(() => makeCharacter(
  49588. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49589. {
  49590. front: {
  49591. height: math.unit(15 + 8/12, "feet"),
  49592. weight: math.unit(1237, "kg"),
  49593. name: "Front",
  49594. image: {
  49595. source: "./media/characters/mia/front.svg",
  49596. extra: 1573/1446,
  49597. bottom: 58/1631
  49598. }
  49599. },
  49600. },
  49601. [
  49602. {
  49603. name: "Small",
  49604. height: math.unit(9 + 5/12, "feet")
  49605. },
  49606. {
  49607. name: "Normal",
  49608. height: math.unit(15 + 8/12, "feet"),
  49609. default: true
  49610. },
  49611. ]
  49612. ))
  49613. characterMakers.push(() => makeCharacter(
  49614. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49615. {
  49616. front: {
  49617. height: math.unit(10 + 6/12, "feet"),
  49618. weight: math.unit(1.3, "tons"),
  49619. name: "Front",
  49620. image: {
  49621. source: "./media/characters/mr-graves/front.svg",
  49622. extra: 1779/1695,
  49623. bottom: 198/1977
  49624. }
  49625. },
  49626. },
  49627. [
  49628. {
  49629. name: "Normal",
  49630. height: math.unit(10 + 6 /12, "feet"),
  49631. default: true
  49632. },
  49633. ]
  49634. ))
  49635. characterMakers.push(() => makeCharacter(
  49636. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49637. {
  49638. dressedFront: {
  49639. height: math.unit(5 + 8/12, "feet"),
  49640. weight: math.unit(125, "lb"),
  49641. name: "Dressed (Front)",
  49642. image: {
  49643. source: "./media/characters/jess/dressed-front.svg",
  49644. extra: 1176/1152,
  49645. bottom: 42/1218
  49646. }
  49647. },
  49648. dressedSide: {
  49649. height: math.unit(5 + 8/12, "feet"),
  49650. weight: math.unit(125, "lb"),
  49651. name: "Dressed (Side)",
  49652. image: {
  49653. source: "./media/characters/jess/dressed-side.svg",
  49654. extra: 1204/1190,
  49655. bottom: 6/1210
  49656. }
  49657. },
  49658. nudeFront: {
  49659. height: math.unit(5 + 8/12, "feet"),
  49660. weight: math.unit(125, "lb"),
  49661. name: "Nude (Front)",
  49662. image: {
  49663. source: "./media/characters/jess/nude-front.svg",
  49664. extra: 1176/1152,
  49665. bottom: 42/1218
  49666. }
  49667. },
  49668. nudeSide: {
  49669. height: math.unit(5 + 8/12, "feet"),
  49670. weight: math.unit(125, "lb"),
  49671. name: "Nude (Side)",
  49672. image: {
  49673. source: "./media/characters/jess/nude-side.svg",
  49674. extra: 1204/1190,
  49675. bottom: 6/1210
  49676. }
  49677. },
  49678. organsFront: {
  49679. height: math.unit(2.83799342105, "feet"),
  49680. name: "Organs (Front)",
  49681. image: {
  49682. source: "./media/characters/jess/organs-front.svg"
  49683. }
  49684. },
  49685. organsSide: {
  49686. height: math.unit(2.64225290474, "feet"),
  49687. name: "Organs (Side)",
  49688. image: {
  49689. source: "./media/characters/jess/organs-side.svg"
  49690. }
  49691. },
  49692. digestiveTractFront: {
  49693. height: math.unit(2.8106580871, "feet"),
  49694. name: "Digestive Tract (Front)",
  49695. image: {
  49696. source: "./media/characters/jess/digestive-tract-front.svg"
  49697. }
  49698. },
  49699. digestiveTractSide: {
  49700. height: math.unit(2.54365045014, "feet"),
  49701. name: "Digestive Tract (Side)",
  49702. image: {
  49703. source: "./media/characters/jess/digestive-tract-side.svg"
  49704. }
  49705. },
  49706. respiratorySystemFront: {
  49707. height: math.unit(1.11196233456, "feet"),
  49708. name: "Respiratory System (Front)",
  49709. image: {
  49710. source: "./media/characters/jess/respiratory-system-front.svg"
  49711. }
  49712. },
  49713. respiratorySystemSide: {
  49714. height: math.unit(0.89327966297, "feet"),
  49715. name: "Respiratory System (Side)",
  49716. image: {
  49717. source: "./media/characters/jess/respiratory-system-side.svg"
  49718. }
  49719. },
  49720. urinaryTractFront: {
  49721. height: math.unit(1.16126356186, "feet"),
  49722. name: "Urinary Tract (Front)",
  49723. image: {
  49724. source: "./media/characters/jess/urinary-tract-front.svg"
  49725. }
  49726. },
  49727. urinaryTractSide: {
  49728. height: math.unit(1.20910039627, "feet"),
  49729. name: "Urinary Tract (Side)",
  49730. image: {
  49731. source: "./media/characters/jess/urinary-tract-side.svg"
  49732. }
  49733. },
  49734. reproductiveOrgansFront: {
  49735. height: math.unit(0.48422591566, "feet"),
  49736. name: "Reproductive Organs (Front)",
  49737. image: {
  49738. source: "./media/characters/jess/reproductive-organs-front.svg"
  49739. }
  49740. },
  49741. reproductiveOrgansSide: {
  49742. height: math.unit(0.61553314481, "feet"),
  49743. name: "Reproductive Organs (Side)",
  49744. image: {
  49745. source: "./media/characters/jess/reproductive-organs-side.svg"
  49746. }
  49747. },
  49748. breastsFront: {
  49749. height: math.unit(0.47690395121, "feet"),
  49750. name: "Breasts (Front)",
  49751. image: {
  49752. source: "./media/characters/jess/breasts-front.svg"
  49753. }
  49754. },
  49755. breastsSide: {
  49756. height: math.unit(0.30556998307, "feet"),
  49757. name: "Breasts (Side)",
  49758. image: {
  49759. source: "./media/characters/jess/breasts-side.svg"
  49760. }
  49761. },
  49762. heartFront: {
  49763. height: math.unit(0.53011022622, "feet"),
  49764. name: "Heart (Front)",
  49765. image: {
  49766. source: "./media/characters/jess/heart-front.svg"
  49767. }
  49768. },
  49769. heartSide: {
  49770. height: math.unit(0.51790695213, "feet"),
  49771. name: "Heart (Side)",
  49772. image: {
  49773. source: "./media/characters/jess/heart-side.svg"
  49774. }
  49775. },
  49776. earsAndNoseFront: {
  49777. height: math.unit(0.29385483995, "feet"),
  49778. name: "Ears and Nose (Front)",
  49779. image: {
  49780. source: "./media/characters/jess/ears-and-nose-front.svg"
  49781. }
  49782. },
  49783. earsAndNoseSide: {
  49784. height: math.unit(0.18109658741, "feet"),
  49785. name: "Ears and Nose (Side)",
  49786. image: {
  49787. source: "./media/characters/jess/ears-and-nose-side.svg"
  49788. }
  49789. },
  49790. },
  49791. [
  49792. {
  49793. name: "Normal",
  49794. height: math.unit(5 + 8/12, "feet"),
  49795. default: true
  49796. },
  49797. ]
  49798. ))
  49799. characterMakers.push(() => makeCharacter(
  49800. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49801. {
  49802. front: {
  49803. height: math.unit(6, "feet"),
  49804. weight: math.unit(6.64467e-7, "grams"),
  49805. name: "Front",
  49806. image: {
  49807. source: "./media/characters/wimpering/front.svg",
  49808. extra: 597/587,
  49809. bottom: 34/631
  49810. }
  49811. },
  49812. },
  49813. [
  49814. {
  49815. name: "Micro",
  49816. height: math.unit(0.4, "mm"),
  49817. default: true
  49818. },
  49819. ]
  49820. ))
  49821. characterMakers.push(() => makeCharacter(
  49822. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49823. {
  49824. front: {
  49825. height: math.unit(5 + 2/12, "feet"),
  49826. weight: math.unit(110, "lb"),
  49827. name: "Front",
  49828. image: {
  49829. source: "./media/characters/keltre/front.svg",
  49830. extra: 1099/1057,
  49831. bottom: 22/1121
  49832. }
  49833. },
  49834. back: {
  49835. height: math.unit(5 + 2/12, "feet"),
  49836. weight: math.unit(110, "lb"),
  49837. name: "Back",
  49838. image: {
  49839. source: "./media/characters/keltre/back.svg",
  49840. extra: 1095/1053,
  49841. bottom: 17/1112
  49842. }
  49843. },
  49844. dressed: {
  49845. height: math.unit(5 + 2/12, "feet"),
  49846. weight: math.unit(110, "lb"),
  49847. name: "Dressed",
  49848. image: {
  49849. source: "./media/characters/keltre/dressed.svg",
  49850. extra: 1099/1057,
  49851. bottom: 22/1121
  49852. }
  49853. },
  49854. winter: {
  49855. height: math.unit(5 + 2/12, "feet"),
  49856. weight: math.unit(110, "lb"),
  49857. name: "Winter",
  49858. image: {
  49859. source: "./media/characters/keltre/winter.svg",
  49860. extra: 1099/1057,
  49861. bottom: 22/1121
  49862. }
  49863. },
  49864. head: {
  49865. height: math.unit(1.61 * 0.86, "feet"),
  49866. name: "Head",
  49867. image: {
  49868. source: "./media/characters/keltre/head.svg",
  49869. extra: 534/421,
  49870. bottom: 0/534
  49871. }
  49872. },
  49873. hand: {
  49874. height: math.unit(1.3 * 0.86, "feet"),
  49875. name: "Hand",
  49876. image: {
  49877. source: "./media/characters/keltre/hand.svg"
  49878. }
  49879. },
  49880. foot: {
  49881. height: math.unit(1.8 * 0.86, "feet"),
  49882. name: "Foot",
  49883. image: {
  49884. source: "./media/characters/keltre/foot.svg"
  49885. }
  49886. },
  49887. },
  49888. [
  49889. {
  49890. name: "Fine",
  49891. height: math.unit(1, "inch")
  49892. },
  49893. {
  49894. name: "Dimnutive",
  49895. height: math.unit(4, "inches")
  49896. },
  49897. {
  49898. name: "Tiny",
  49899. height: math.unit(1, "foot")
  49900. },
  49901. {
  49902. name: "Small",
  49903. height: math.unit(3, "feet")
  49904. },
  49905. {
  49906. name: "Normal",
  49907. height: math.unit(5 + 2/12, "feet"),
  49908. default: true
  49909. },
  49910. ]
  49911. ))
  49912. characterMakers.push(() => makeCharacter(
  49913. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49914. {
  49915. front: {
  49916. height: math.unit(6 + 2/12, "feet"),
  49917. name: "Front",
  49918. image: {
  49919. source: "./media/characters/nox/front.svg",
  49920. extra: 1917/1830,
  49921. bottom: 74/1991
  49922. }
  49923. },
  49924. back: {
  49925. height: math.unit(6 + 2/12, "feet"),
  49926. name: "Back",
  49927. image: {
  49928. source: "./media/characters/nox/back.svg",
  49929. extra: 1896/1815,
  49930. bottom: 21/1917
  49931. }
  49932. },
  49933. head: {
  49934. height: math.unit(1.1, "feet"),
  49935. name: "Head",
  49936. image: {
  49937. source: "./media/characters/nox/head.svg",
  49938. extra: 874/704,
  49939. bottom: 0/874
  49940. }
  49941. },
  49942. tattoo: {
  49943. height: math.unit(0.729, "feet"),
  49944. name: "Tattoo",
  49945. image: {
  49946. source: "./media/characters/nox/tattoo.svg"
  49947. }
  49948. },
  49949. },
  49950. [
  49951. {
  49952. name: "Normal",
  49953. height: math.unit(6 + 2/12, "feet")
  49954. },
  49955. {
  49956. name: "Gigamacro",
  49957. height: math.unit(2, "earths"),
  49958. default: true
  49959. },
  49960. {
  49961. name: "Cosmic",
  49962. height: math.unit(867, "yottameters")
  49963. },
  49964. ]
  49965. ))
  49966. characterMakers.push(() => makeCharacter(
  49967. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49968. {
  49969. front: {
  49970. height: math.unit(6, "feet"),
  49971. weight: math.unit(150, "lb"),
  49972. name: "Front",
  49973. image: {
  49974. source: "./media/characters/caspian/front.svg",
  49975. extra: 1443/1359,
  49976. bottom: 0/1443
  49977. }
  49978. },
  49979. back: {
  49980. height: math.unit(6, "feet"),
  49981. weight: math.unit(150, "lb"),
  49982. name: "Back",
  49983. image: {
  49984. source: "./media/characters/caspian/back.svg",
  49985. extra: 1379/1309,
  49986. bottom: 0/1379
  49987. }
  49988. },
  49989. head: {
  49990. height: math.unit(0.9, "feet"),
  49991. name: "Head",
  49992. image: {
  49993. source: "./media/characters/caspian/head.svg",
  49994. extra: 692/492,
  49995. bottom: 0/692
  49996. }
  49997. },
  49998. headAlt: {
  49999. height: math.unit(0.95, "feet"),
  50000. name: "Head (Alt)",
  50001. image: {
  50002. source: "./media/characters/caspian/head-alt.svg",
  50003. extra: 668/508,
  50004. bottom: 0/668
  50005. }
  50006. },
  50007. hand: {
  50008. height: math.unit(0.8, "feet"),
  50009. name: "Hand",
  50010. image: {
  50011. source: "./media/characters/caspian/hand.svg"
  50012. }
  50013. },
  50014. paw: {
  50015. height: math.unit(0.95, "feet"),
  50016. name: "Paw",
  50017. image: {
  50018. source: "./media/characters/caspian/paw.svg"
  50019. }
  50020. },
  50021. },
  50022. [
  50023. {
  50024. name: "Normal",
  50025. height: math.unit(162, "feet"),
  50026. default: true
  50027. },
  50028. ]
  50029. ))
  50030. characterMakers.push(() => makeCharacter(
  50031. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50032. {
  50033. front: {
  50034. height: math.unit(6, "feet"),
  50035. name: "Front",
  50036. image: {
  50037. source: "./media/characters/myra-aisling/front.svg",
  50038. extra: 1268/1166,
  50039. bottom: 73/1341
  50040. }
  50041. },
  50042. back: {
  50043. height: math.unit(6, "feet"),
  50044. name: "Back",
  50045. image: {
  50046. source: "./media/characters/myra-aisling/back.svg",
  50047. extra: 1249/1149,
  50048. bottom: 79/1328
  50049. }
  50050. },
  50051. dressed: {
  50052. height: math.unit(6, "feet"),
  50053. name: "Dressed",
  50054. image: {
  50055. source: "./media/characters/myra-aisling/dressed.svg",
  50056. extra: 1290/1189,
  50057. bottom: 47/1337
  50058. }
  50059. },
  50060. hand: {
  50061. height: math.unit(1.1, "feet"),
  50062. name: "Hand",
  50063. image: {
  50064. source: "./media/characters/myra-aisling/hand.svg"
  50065. }
  50066. },
  50067. paw: {
  50068. height: math.unit(1.23, "feet"),
  50069. name: "Paw",
  50070. image: {
  50071. source: "./media/characters/myra-aisling/paw.svg"
  50072. }
  50073. },
  50074. },
  50075. [
  50076. {
  50077. name: "Normal",
  50078. height: math.unit(160, "feet"),
  50079. default: true
  50080. },
  50081. ]
  50082. ))
  50083. characterMakers.push(() => makeCharacter(
  50084. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50085. {
  50086. front: {
  50087. height: math.unit(6, "feet"),
  50088. name: "Front",
  50089. image: {
  50090. source: "./media/characters/tenley-sidero/front.svg",
  50091. extra: 1365/1276,
  50092. bottom: 47/1412
  50093. }
  50094. },
  50095. back: {
  50096. height: math.unit(6, "feet"),
  50097. name: "Back",
  50098. image: {
  50099. source: "./media/characters/tenley-sidero/back.svg",
  50100. extra: 1383/1283,
  50101. bottom: 35/1418
  50102. }
  50103. },
  50104. dressed: {
  50105. height: math.unit(6, "feet"),
  50106. name: "Dressed",
  50107. image: {
  50108. source: "./media/characters/tenley-sidero/dressed.svg",
  50109. extra: 1364/1275,
  50110. bottom: 42/1406
  50111. }
  50112. },
  50113. head: {
  50114. height: math.unit(1.47, "feet"),
  50115. name: "Head",
  50116. image: {
  50117. source: "./media/characters/tenley-sidero/head.svg",
  50118. extra: 610/490,
  50119. bottom: 0/610
  50120. }
  50121. },
  50122. },
  50123. [
  50124. {
  50125. name: "Normal",
  50126. height: math.unit(154, "feet"),
  50127. default: true
  50128. },
  50129. ]
  50130. ))
  50131. characterMakers.push(() => makeCharacter(
  50132. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50133. {
  50134. front: {
  50135. height: math.unit(5, "inches"),
  50136. name: "Front",
  50137. image: {
  50138. source: "./media/characters/mallory/front.svg",
  50139. extra: 1919/1678,
  50140. bottom: 29/1948
  50141. }
  50142. },
  50143. hand: {
  50144. height: math.unit(0.73, "inches"),
  50145. name: "Hand",
  50146. image: {
  50147. source: "./media/characters/mallory/hand.svg"
  50148. }
  50149. },
  50150. paw: {
  50151. height: math.unit(0.68, "inches"),
  50152. name: "Paw",
  50153. image: {
  50154. source: "./media/characters/mallory/paw.svg"
  50155. }
  50156. },
  50157. },
  50158. [
  50159. {
  50160. name: "Small",
  50161. height: math.unit(5, "inches"),
  50162. default: true
  50163. },
  50164. ]
  50165. ))
  50166. characterMakers.push(() => makeCharacter(
  50167. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50168. {
  50169. naked: {
  50170. height: math.unit(6, "feet"),
  50171. name: "Naked",
  50172. image: {
  50173. source: "./media/characters/mab/naked.svg",
  50174. extra: 1855/1757,
  50175. bottom: 208/2063
  50176. }
  50177. },
  50178. outside: {
  50179. height: math.unit(6, "feet"),
  50180. name: "Outside",
  50181. image: {
  50182. source: "./media/characters/mab/outside.svg",
  50183. extra: 1855/1757,
  50184. bottom: 208/2063
  50185. }
  50186. },
  50187. party: {
  50188. height: math.unit(6, "feet"),
  50189. name: "Party",
  50190. image: {
  50191. source: "./media/characters/mab/party.svg",
  50192. extra: 1855/1757,
  50193. bottom: 208/2063
  50194. }
  50195. },
  50196. },
  50197. [
  50198. {
  50199. name: "Normal",
  50200. height: math.unit(165, "feet"),
  50201. default: true
  50202. },
  50203. ]
  50204. ))
  50205. characterMakers.push(() => makeCharacter(
  50206. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50207. {
  50208. feral: {
  50209. height: math.unit(12, "feet"),
  50210. weight: math.unit(20000, "lb"),
  50211. name: "Side",
  50212. image: {
  50213. source: "./media/characters/winter/feral.svg",
  50214. extra: 1286/943,
  50215. bottom: 112/1398
  50216. },
  50217. form: "feral",
  50218. default: true
  50219. },
  50220. feralNsfw: {
  50221. height: math.unit(12, "feet"),
  50222. weight: math.unit(20000, "lb"),
  50223. name: "Side (NSFW)",
  50224. image: {
  50225. source: "./media/characters/winter/feral-nsfw.svg",
  50226. extra: 1286/943,
  50227. bottom: 112/1398
  50228. },
  50229. form: "feral"
  50230. },
  50231. dick: {
  50232. height: math.unit(3.79, "feet"),
  50233. name: "Dick",
  50234. image: {
  50235. source: "./media/characters/winter/dick.svg"
  50236. },
  50237. form: "feral"
  50238. },
  50239. anthro: {
  50240. height: math.unit(12, "feet"),
  50241. weight: math.unit(10, "tons"),
  50242. name: "Anthro",
  50243. image: {
  50244. source: "./media/characters/winter/anthro.svg",
  50245. extra: 1701/1553,
  50246. bottom: 64/1765
  50247. },
  50248. form: "anthro",
  50249. default: true
  50250. },
  50251. },
  50252. [
  50253. {
  50254. name: "Big",
  50255. height: math.unit(12, "feet"),
  50256. default: true,
  50257. form: "feral"
  50258. },
  50259. {
  50260. name: "Big",
  50261. height: math.unit(12, "feet"),
  50262. default: true,
  50263. form: "anthro"
  50264. },
  50265. ],
  50266. {
  50267. "feral": {
  50268. name: "Feral",
  50269. default: true
  50270. },
  50271. "anthro": {
  50272. name: "Anthro"
  50273. }
  50274. }
  50275. ))
  50276. characterMakers.push(() => makeCharacter(
  50277. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50278. {
  50279. front: {
  50280. height: math.unit(4.1, "inches"),
  50281. name: "Front",
  50282. image: {
  50283. source: "./media/characters/alto/front.svg",
  50284. extra: 736/627,
  50285. bottom: 90/826
  50286. }
  50287. },
  50288. },
  50289. [
  50290. {
  50291. name: "Normal",
  50292. height: math.unit(4.1, "inches"),
  50293. default: true
  50294. },
  50295. ]
  50296. ))
  50297. characterMakers.push(() => makeCharacter(
  50298. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50299. {
  50300. sitting: {
  50301. height: math.unit(3, "feet"),
  50302. name: "Sitting",
  50303. image: {
  50304. source: "./media/characters/ratstrid-v/sitting.svg",
  50305. extra: 355/310,
  50306. bottom: 136/491
  50307. }
  50308. },
  50309. },
  50310. [
  50311. {
  50312. name: "Normal",
  50313. height: math.unit(3, "feet"),
  50314. default: true
  50315. },
  50316. ]
  50317. ))
  50318. characterMakers.push(() => makeCharacter(
  50319. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50320. {
  50321. back: {
  50322. height: math.unit(6, "feet"),
  50323. weight: math.unit(450, "lb"),
  50324. name: "Back",
  50325. image: {
  50326. source: "./media/characters/siz/back.svg",
  50327. extra: 1449/1274,
  50328. bottom: 13/1462
  50329. }
  50330. },
  50331. },
  50332. [
  50333. {
  50334. name: "Smallest",
  50335. height: math.unit(18 + 3/12, "feet")
  50336. },
  50337. {
  50338. name: "Modest",
  50339. height: math.unit(56 + 8/12, "feet"),
  50340. default: true
  50341. },
  50342. {
  50343. name: "Largest",
  50344. height: math.unit(3590, "feet")
  50345. },
  50346. ]
  50347. ))
  50348. characterMakers.push(() => makeCharacter(
  50349. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50350. {
  50351. front: {
  50352. height: math.unit(5 + 9/12, "feet"),
  50353. weight: math.unit(150, "lb"),
  50354. name: "Front",
  50355. image: {
  50356. source: "./media/characters/ven/front.svg",
  50357. extra: 1372/1320,
  50358. bottom: 73/1445
  50359. }
  50360. },
  50361. side: {
  50362. height: math.unit(5 + 9/12, "feet"),
  50363. weight: math.unit(1150, "lb"),
  50364. name: "Side",
  50365. image: {
  50366. source: "./media/characters/ven/side.svg",
  50367. extra: 1119/1070,
  50368. bottom: 42/1161
  50369. },
  50370. default: true
  50371. },
  50372. },
  50373. [
  50374. {
  50375. name: "Normal",
  50376. height: math.unit(5 + 9/12, "feet"),
  50377. default: true
  50378. },
  50379. ]
  50380. ))
  50381. characterMakers.push(() => makeCharacter(
  50382. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50383. {
  50384. front: {
  50385. height: math.unit(12, "feet"),
  50386. weight: math.unit(1000, "kg"),
  50387. name: "Front",
  50388. image: {
  50389. source: "./media/characters/maple/front.svg",
  50390. extra: 1193/1081,
  50391. bottom: 22/1215
  50392. }
  50393. },
  50394. },
  50395. [
  50396. {
  50397. name: "Compressed",
  50398. height: math.unit(7, "feet")
  50399. },
  50400. {
  50401. name: "Normal",
  50402. height: math.unit(12, "feet"),
  50403. default: true
  50404. },
  50405. ]
  50406. ))
  50407. characterMakers.push(() => makeCharacter(
  50408. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50409. {
  50410. front: {
  50411. height: math.unit(9, "feet"),
  50412. weight: math.unit(1500, "lb"),
  50413. name: "Front",
  50414. image: {
  50415. source: "./media/characters/nora/front.svg",
  50416. extra: 1348/1286,
  50417. bottom: 218/1566
  50418. }
  50419. },
  50420. erect: {
  50421. height: math.unit(9, "feet"),
  50422. weight: math.unit(11500, "lb"),
  50423. name: "Erect",
  50424. image: {
  50425. source: "./media/characters/nora/erect.svg",
  50426. extra: 1488/1433,
  50427. bottom: 133/1621
  50428. }
  50429. },
  50430. },
  50431. [
  50432. {
  50433. name: "Normal",
  50434. height: math.unit(9, "feet"),
  50435. default: true
  50436. },
  50437. ]
  50438. ))
  50439. characterMakers.push(() => makeCharacter(
  50440. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50441. {
  50442. front: {
  50443. height: math.unit(25, "feet"),
  50444. weight: math.unit(27500, "lb"),
  50445. name: "Front",
  50446. image: {
  50447. source: "./media/characters/north-caudin/front.svg",
  50448. extra: 1184/1082,
  50449. bottom: 23/1207
  50450. }
  50451. },
  50452. },
  50453. [
  50454. {
  50455. name: "Compressed",
  50456. height: math.unit(10, "feet")
  50457. },
  50458. {
  50459. name: "Normal",
  50460. height: math.unit(25, "feet"),
  50461. default: true
  50462. },
  50463. ]
  50464. ))
  50465. characterMakers.push(() => makeCharacter(
  50466. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50467. {
  50468. front: {
  50469. height: math.unit(9, "feet"),
  50470. weight: math.unit(1250, "lb"),
  50471. name: "Front",
  50472. image: {
  50473. source: "./media/characters/merrian/front.svg",
  50474. extra: 2393/2304,
  50475. bottom: 40/2433
  50476. }
  50477. },
  50478. },
  50479. [
  50480. {
  50481. name: "Normal",
  50482. height: math.unit(9, "feet"),
  50483. default: true
  50484. },
  50485. ]
  50486. ))
  50487. characterMakers.push(() => makeCharacter(
  50488. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50489. {
  50490. front: {
  50491. height: math.unit(9, "feet"),
  50492. weight: math.unit(1000, "lb"),
  50493. name: "Front",
  50494. image: {
  50495. source: "./media/characters/hazel/front.svg",
  50496. extra: 2351/2298,
  50497. bottom: 38/2389
  50498. }
  50499. },
  50500. },
  50501. [
  50502. {
  50503. name: "Normal",
  50504. height: math.unit(9, "feet"),
  50505. default: true
  50506. },
  50507. ]
  50508. ))
  50509. characterMakers.push(() => makeCharacter(
  50510. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50511. {
  50512. front: {
  50513. height: math.unit(13, "feet"),
  50514. weight: math.unit(3200, "lb"),
  50515. name: "Front",
  50516. image: {
  50517. source: "./media/characters/emma/front.svg",
  50518. extra: 2263/2029,
  50519. bottom: 68/2331
  50520. }
  50521. },
  50522. },
  50523. [
  50524. {
  50525. name: "Normal",
  50526. height: math.unit(13, "feet"),
  50527. default: true
  50528. },
  50529. ]
  50530. ))
  50531. characterMakers.push(() => makeCharacter(
  50532. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50533. {
  50534. front: {
  50535. height: math.unit(11 + 9/12, "feet"),
  50536. weight: math.unit(2500, "lb"),
  50537. name: "Front",
  50538. image: {
  50539. source: "./media/characters/ilumina/front.svg",
  50540. extra: 2248/2209,
  50541. bottom: 164/2412
  50542. }
  50543. },
  50544. },
  50545. [
  50546. {
  50547. name: "Normal",
  50548. height: math.unit(11 + 9/12, "feet"),
  50549. default: true
  50550. },
  50551. ]
  50552. ))
  50553. characterMakers.push(() => makeCharacter(
  50554. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50555. {
  50556. front: {
  50557. height: math.unit(8 + 10/12, "feet"),
  50558. weight: math.unit(1350, "lb"),
  50559. name: "Front",
  50560. image: {
  50561. source: "./media/characters/moonshine/front.svg",
  50562. extra: 2395/2288,
  50563. bottom: 40/2435
  50564. }
  50565. },
  50566. },
  50567. [
  50568. {
  50569. name: "Normal",
  50570. height: math.unit(8 + 10/12, "feet"),
  50571. default: true
  50572. },
  50573. ]
  50574. ))
  50575. characterMakers.push(() => makeCharacter(
  50576. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50577. {
  50578. front: {
  50579. height: math.unit(14, "feet"),
  50580. weight: math.unit(3400, "lb"),
  50581. name: "Front",
  50582. image: {
  50583. source: "./media/characters/aletia/front.svg",
  50584. extra: 1185/1052,
  50585. bottom: 21/1206
  50586. }
  50587. },
  50588. },
  50589. [
  50590. {
  50591. name: "Compressed",
  50592. height: math.unit(8, "feet")
  50593. },
  50594. {
  50595. name: "Normal",
  50596. height: math.unit(14, "feet"),
  50597. default: true
  50598. },
  50599. ]
  50600. ))
  50601. characterMakers.push(() => makeCharacter(
  50602. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50603. {
  50604. front: {
  50605. height: math.unit(17, "feet"),
  50606. weight: math.unit(6500, "lb"),
  50607. name: "Front",
  50608. image: {
  50609. source: "./media/characters/deidra/front.svg",
  50610. extra: 1201/1081,
  50611. bottom: 16/1217
  50612. }
  50613. },
  50614. },
  50615. [
  50616. {
  50617. name: "Compressed",
  50618. height: math.unit(9 + 6/12, "feet")
  50619. },
  50620. {
  50621. name: "Normal",
  50622. height: math.unit(17, "feet"),
  50623. default: true
  50624. },
  50625. ]
  50626. ))
  50627. characterMakers.push(() => makeCharacter(
  50628. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50629. {
  50630. front: {
  50631. height: math.unit(7 + 4/12, "feet"),
  50632. weight: math.unit(280, "lb"),
  50633. name: "Front",
  50634. image: {
  50635. source: "./media/characters/freki-yrmori/front.svg",
  50636. extra: 1286/1182,
  50637. bottom: 29/1315
  50638. }
  50639. },
  50640. maw: {
  50641. height: math.unit(0.9, "feet"),
  50642. name: "Maw",
  50643. image: {
  50644. source: "./media/characters/freki-yrmori/maw.svg"
  50645. }
  50646. },
  50647. },
  50648. [
  50649. {
  50650. name: "Normal",
  50651. height: math.unit(7 + 4/12, "feet"),
  50652. default: true
  50653. },
  50654. {
  50655. name: "Macro",
  50656. height: math.unit(38.5, "meters")
  50657. },
  50658. ]
  50659. ))
  50660. characterMakers.push(() => makeCharacter(
  50661. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50662. {
  50663. side: {
  50664. height: math.unit(47.2, "meters"),
  50665. weight: math.unit(10000, "tons"),
  50666. name: "Side",
  50667. image: {
  50668. source: "./media/characters/aetherios/side.svg",
  50669. extra: 2363/642,
  50670. bottom: 221/2584
  50671. }
  50672. },
  50673. top: {
  50674. height: math.unit(240, "meters"),
  50675. weight: math.unit(10000, "tons"),
  50676. name: "Top",
  50677. image: {
  50678. source: "./media/characters/aetherios/top.svg"
  50679. }
  50680. },
  50681. bottom: {
  50682. height: math.unit(240, "meters"),
  50683. weight: math.unit(10000, "tons"),
  50684. name: "Bottom",
  50685. image: {
  50686. source: "./media/characters/aetherios/bottom.svg"
  50687. }
  50688. },
  50689. head: {
  50690. height: math.unit(38.6, "meters"),
  50691. name: "Head",
  50692. image: {
  50693. source: "./media/characters/aetherios/head.svg",
  50694. extra: 1335/1112,
  50695. bottom: 0/1335
  50696. }
  50697. },
  50698. front: {
  50699. height: math.unit(29, "meters"),
  50700. name: "Front",
  50701. image: {
  50702. source: "./media/characters/aetherios/front.svg",
  50703. extra: 1266/953,
  50704. bottom: 158/1424
  50705. }
  50706. },
  50707. maw: {
  50708. height: math.unit(16.37, "meters"),
  50709. name: "Maw",
  50710. image: {
  50711. source: "./media/characters/aetherios/maw.svg",
  50712. extra: 748/637,
  50713. bottom: 0/748
  50714. },
  50715. extraAttributes: {
  50716. preyCapacity: {
  50717. name: "Capacity",
  50718. power: 3,
  50719. type: "volume",
  50720. base: math.unit(1000, "people")
  50721. },
  50722. tongueSize: {
  50723. name: "Tongue Size",
  50724. power: 2,
  50725. type: "area",
  50726. base: math.unit(21, "m^2")
  50727. }
  50728. }
  50729. },
  50730. forepaw: {
  50731. height: math.unit(18, "meters"),
  50732. name: "Forepaw",
  50733. image: {
  50734. source: "./media/characters/aetherios/forepaw.svg"
  50735. }
  50736. },
  50737. hindpaw: {
  50738. height: math.unit(23, "meters"),
  50739. name: "Hindpaw",
  50740. image: {
  50741. source: "./media/characters/aetherios/hindpaw.svg"
  50742. }
  50743. },
  50744. genitals: {
  50745. height: math.unit(42, "meters"),
  50746. name: "Genitals",
  50747. image: {
  50748. source: "./media/characters/aetherios/genitals.svg"
  50749. }
  50750. },
  50751. },
  50752. [
  50753. {
  50754. name: "Normal",
  50755. height: math.unit(47.2, "meters"),
  50756. default: true
  50757. },
  50758. {
  50759. name: "Macro",
  50760. height: math.unit(160, "meters")
  50761. },
  50762. {
  50763. name: "Mega",
  50764. height: math.unit(1.87, "km")
  50765. },
  50766. {
  50767. name: "Giga",
  50768. height: math.unit(40000, "km")
  50769. },
  50770. {
  50771. name: "Stellar",
  50772. height: math.unit(158000000, "km")
  50773. },
  50774. {
  50775. name: "Cosmic",
  50776. height: math.unit(9.46e12, "km")
  50777. },
  50778. ]
  50779. ))
  50780. characterMakers.push(() => makeCharacter(
  50781. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50782. {
  50783. front: {
  50784. height: math.unit(5 + 4/12, "feet"),
  50785. weight: math.unit(80, "lb"),
  50786. name: "Front",
  50787. image: {
  50788. source: "./media/characters/mizu-gieeg/front.svg",
  50789. extra: 850/709,
  50790. bottom: 52/902
  50791. }
  50792. },
  50793. back: {
  50794. height: math.unit(5 + 4/12, "feet"),
  50795. weight: math.unit(80, "lb"),
  50796. name: "Back",
  50797. image: {
  50798. source: "./media/characters/mizu-gieeg/back.svg",
  50799. extra: 882/745,
  50800. bottom: 25/907
  50801. }
  50802. },
  50803. },
  50804. [
  50805. {
  50806. name: "Normal",
  50807. height: math.unit(5 + 4/12, "feet"),
  50808. default: true
  50809. },
  50810. ]
  50811. ))
  50812. characterMakers.push(() => makeCharacter(
  50813. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50814. {
  50815. front: {
  50816. height: math.unit(6, "feet"),
  50817. name: "Front",
  50818. image: {
  50819. source: "./media/characters/roselle-st-papier/front.svg",
  50820. extra: 1430/1280,
  50821. bottom: 37/1467
  50822. }
  50823. },
  50824. back: {
  50825. height: math.unit(6, "feet"),
  50826. name: "Back",
  50827. image: {
  50828. source: "./media/characters/roselle-st-papier/back.svg",
  50829. extra: 1491/1296,
  50830. bottom: 23/1514
  50831. }
  50832. },
  50833. ear: {
  50834. height: math.unit(1.26, "feet"),
  50835. name: "Ear",
  50836. image: {
  50837. source: "./media/characters/roselle-st-papier/ear.svg"
  50838. }
  50839. },
  50840. },
  50841. [
  50842. {
  50843. name: "Normal",
  50844. height: math.unit(150, "feet"),
  50845. default: true
  50846. },
  50847. ]
  50848. ))
  50849. characterMakers.push(() => makeCharacter(
  50850. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50851. {
  50852. front: {
  50853. height: math.unit(1, "inches"),
  50854. name: "Front",
  50855. image: {
  50856. source: "./media/characters/valargent/front.svg",
  50857. extra: 1825/1694,
  50858. bottom: 62/1887
  50859. }
  50860. },
  50861. back: {
  50862. height: math.unit(1, "inches"),
  50863. name: "Back",
  50864. image: {
  50865. source: "./media/characters/valargent/back.svg",
  50866. extra: 1775/1682,
  50867. bottom: 88/1863
  50868. }
  50869. },
  50870. },
  50871. [
  50872. {
  50873. name: "Micro",
  50874. height: math.unit(1, "inch"),
  50875. default: true
  50876. },
  50877. ]
  50878. ))
  50879. characterMakers.push(() => makeCharacter(
  50880. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50881. {
  50882. front: {
  50883. height: math.unit(3.4, "meters"),
  50884. name: "Front",
  50885. image: {
  50886. source: "./media/characters/zarina/front.svg",
  50887. extra: 1733/1425,
  50888. bottom: 93/1826
  50889. }
  50890. },
  50891. squatting: {
  50892. height: math.unit(2.14, "meters"),
  50893. name: "Squatting",
  50894. image: {
  50895. source: "./media/characters/zarina/squatting.svg",
  50896. extra: 1073/788,
  50897. bottom: 63/1136
  50898. }
  50899. },
  50900. back: {
  50901. height: math.unit(2.14, "meters"),
  50902. name: "Back",
  50903. image: {
  50904. source: "./media/characters/zarina/back.svg",
  50905. extra: 1128/885,
  50906. bottom: 0/1128
  50907. }
  50908. },
  50909. },
  50910. [
  50911. {
  50912. name: "Normal",
  50913. height: math.unit(3.4, "meters"),
  50914. default: true
  50915. },
  50916. {
  50917. name: "Big",
  50918. height: math.unit(5, "meters")
  50919. },
  50920. {
  50921. name: "Macro",
  50922. height: math.unit(110, "meters")
  50923. },
  50924. ]
  50925. ))
  50926. characterMakers.push(() => makeCharacter(
  50927. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50928. {
  50929. front: {
  50930. height: math.unit(7, "feet"),
  50931. name: "Front",
  50932. image: {
  50933. source: "./media/characters/ventus-astro-fox/front.svg",
  50934. extra: 1792/1623,
  50935. bottom: 28/1820
  50936. }
  50937. },
  50938. back: {
  50939. height: math.unit(7, "feet"),
  50940. name: "Back",
  50941. image: {
  50942. source: "./media/characters/ventus-astro-fox/back.svg",
  50943. extra: 1789/1620,
  50944. bottom: 31/1820
  50945. }
  50946. },
  50947. outfit: {
  50948. height: math.unit(7, "feet"),
  50949. name: "Outfit",
  50950. image: {
  50951. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50952. extra: 1054/925,
  50953. bottom: 15/1069
  50954. }
  50955. },
  50956. head: {
  50957. height: math.unit(1.12, "feet"),
  50958. name: "Head",
  50959. image: {
  50960. source: "./media/characters/ventus-astro-fox/head.svg",
  50961. extra: 866/504,
  50962. bottom: 0/866
  50963. }
  50964. },
  50965. hand: {
  50966. height: math.unit(1, "feet"),
  50967. name: "Hand",
  50968. image: {
  50969. source: "./media/characters/ventus-astro-fox/hand.svg"
  50970. }
  50971. },
  50972. paw: {
  50973. height: math.unit(1.5, "feet"),
  50974. name: "Paw",
  50975. image: {
  50976. source: "./media/characters/ventus-astro-fox/paw.svg"
  50977. }
  50978. },
  50979. },
  50980. [
  50981. {
  50982. name: "Normal",
  50983. height: math.unit(7, "feet"),
  50984. default: true
  50985. },
  50986. {
  50987. name: "Macro",
  50988. height: math.unit(200, "feet")
  50989. },
  50990. {
  50991. name: "Cosmic",
  50992. height: math.unit(3, "universes")
  50993. },
  50994. ]
  50995. ))
  50996. characterMakers.push(() => makeCharacter(
  50997. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50998. {
  50999. front: {
  51000. height: math.unit(3, "meters"),
  51001. weight: math.unit(7000, "lb"),
  51002. name: "Front",
  51003. image: {
  51004. source: "./media/characters/core-t/front.svg",
  51005. extra: 5729/4941,
  51006. bottom: 1129/6858
  51007. }
  51008. },
  51009. },
  51010. [
  51011. {
  51012. name: "Big",
  51013. height: math.unit(3, "meters"),
  51014. default: true
  51015. },
  51016. ]
  51017. ))
  51018. characterMakers.push(() => makeCharacter(
  51019. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51020. {
  51021. normal: {
  51022. height: math.unit(6 + 6/12, "feet"),
  51023. weight: math.unit(275, "lb"),
  51024. name: "Front",
  51025. image: {
  51026. source: "./media/characters/cadbunny/normal.svg",
  51027. extra: 1129/947,
  51028. bottom: 93/1222
  51029. },
  51030. default: true,
  51031. form: "normal"
  51032. },
  51033. gigantamax: {
  51034. height: math.unit(26, "feet"),
  51035. weight: math.unit(16000, "lb"),
  51036. name: "Front",
  51037. image: {
  51038. source: "./media/characters/cadbunny/gigantamax.svg",
  51039. extra: 1133/944,
  51040. bottom: 90/1223
  51041. },
  51042. default: true,
  51043. form: "gigantamax"
  51044. },
  51045. },
  51046. [
  51047. {
  51048. name: "Normal",
  51049. height: math.unit(6 + 6/12, "feet"),
  51050. default: true,
  51051. form: "normal"
  51052. },
  51053. {
  51054. name: "Small",
  51055. height: math.unit(26, "feet"),
  51056. default: true,
  51057. form: "gigantamax"
  51058. },
  51059. {
  51060. name: "Large",
  51061. height: math.unit(78, "feet"),
  51062. form: "gigantamax"
  51063. },
  51064. ],
  51065. {
  51066. "normal": {
  51067. name: "Normal",
  51068. default: true
  51069. },
  51070. "gigantamax": {
  51071. name: "Gigantamax"
  51072. }
  51073. }
  51074. ))
  51075. characterMakers.push(() => makeCharacter(
  51076. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51077. {
  51078. anthroFront: {
  51079. height: math.unit(8, "feet"),
  51080. weight: math.unit(300, "lb"),
  51081. name: "Front",
  51082. image: {
  51083. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51084. extra: 1272/1176,
  51085. bottom: 53/1325
  51086. },
  51087. form: "anthro",
  51088. default: true
  51089. },
  51090. feralSide: {
  51091. height: math.unit(4, "feet"),
  51092. weight: math.unit(250, "lb"),
  51093. name: "Side",
  51094. image: {
  51095. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51096. extra: 731/621,
  51097. bottom: 0/731
  51098. },
  51099. form: "feral",
  51100. default: true
  51101. },
  51102. },
  51103. [
  51104. {
  51105. name: "Regular",
  51106. height: math.unit(8, "feet"),
  51107. form: "anthro"
  51108. },
  51109. {
  51110. name: "Macro",
  51111. height: math.unit(250, "feet"),
  51112. form: "anthro",
  51113. default: true
  51114. },
  51115. {
  51116. name: "Regular",
  51117. height: math.unit(4, "feet"),
  51118. form: "feral"
  51119. },
  51120. {
  51121. name: "Macro",
  51122. height: math.unit(125, "feet"),
  51123. form: "feral",
  51124. default: true
  51125. },
  51126. ],
  51127. {
  51128. "anthro": {
  51129. name: "Anthro",
  51130. default: true
  51131. },
  51132. "feral": {
  51133. name: "Feral",
  51134. },
  51135. }
  51136. ))
  51137. characterMakers.push(() => makeCharacter(
  51138. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51139. {
  51140. front: {
  51141. height: math.unit(11 + 10/12, "feet"),
  51142. weight: math.unit(1587, "kg"),
  51143. name: "Front",
  51144. image: {
  51145. source: "./media/characters/maple-javira-dragon/front.svg",
  51146. extra: 1136/744,
  51147. bottom: 73/1209
  51148. }
  51149. },
  51150. side: {
  51151. height: math.unit(11 + 10/12, "feet"),
  51152. weight: math.unit(1587, "kg"),
  51153. name: "Side",
  51154. image: {
  51155. source: "./media/characters/maple-javira-dragon/side.svg",
  51156. extra: 712/505,
  51157. bottom: 17/729
  51158. }
  51159. },
  51160. head: {
  51161. height: math.unit(8.05, "feet"),
  51162. name: "Head",
  51163. image: {
  51164. source: "./media/characters/maple-javira-dragon/head.svg",
  51165. extra: 1420/1344,
  51166. bottom: 0/1420
  51167. }
  51168. },
  51169. },
  51170. [
  51171. {
  51172. name: "Normal",
  51173. height: math.unit(11 + 10/12, "feet"),
  51174. default: true
  51175. },
  51176. ]
  51177. ))
  51178. characterMakers.push(() => makeCharacter(
  51179. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51180. {
  51181. front: {
  51182. height: math.unit(117, "cm"),
  51183. weight: math.unit(50, "kg"),
  51184. name: "Front",
  51185. image: {
  51186. source: "./media/characters/sonia-wyverntail/front.svg",
  51187. extra: 708/592,
  51188. bottom: 25/733
  51189. }
  51190. },
  51191. },
  51192. [
  51193. {
  51194. name: "Normal",
  51195. height: math.unit(117, "cm"),
  51196. default: true
  51197. },
  51198. ]
  51199. ))
  51200. characterMakers.push(() => makeCharacter(
  51201. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51202. {
  51203. front: {
  51204. height: math.unit(6 + 5/12, "feet"),
  51205. name: "Front",
  51206. image: {
  51207. source: "./media/characters/micah/front.svg",
  51208. extra: 1758/1546,
  51209. bottom: 214/1972
  51210. }
  51211. },
  51212. },
  51213. [
  51214. {
  51215. name: "Normal",
  51216. height: math.unit(6 + 5/12, "feet"),
  51217. default: true
  51218. },
  51219. ]
  51220. ))
  51221. characterMakers.push(() => makeCharacter(
  51222. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51223. {
  51224. front: {
  51225. height: math.unit(1.75, "meters"),
  51226. weight: math.unit(100, "kg"),
  51227. name: "Front",
  51228. image: {
  51229. source: "./media/characters/zarya/front.svg",
  51230. extra: 741/735,
  51231. bottom: 44/785
  51232. },
  51233. extraAttributes: {
  51234. "tailLength": {
  51235. name: "Tail Length",
  51236. power: 1,
  51237. type: "length",
  51238. base: math.unit(180, "cm")
  51239. },
  51240. "pawLength": {
  51241. name: "Paw Length",
  51242. power: 1,
  51243. type: "length",
  51244. base: math.unit(31, "cm")
  51245. },
  51246. }
  51247. },
  51248. side: {
  51249. height: math.unit(1.75, "meters"),
  51250. weight: math.unit(100, "kg"),
  51251. name: "Side",
  51252. image: {
  51253. source: "./media/characters/zarya/side.svg",
  51254. extra: 776/770,
  51255. bottom: 17/793
  51256. },
  51257. extraAttributes: {
  51258. "tailLength": {
  51259. name: "Tail Length",
  51260. power: 1,
  51261. type: "length",
  51262. base: math.unit(180, "cm")
  51263. },
  51264. "pawLength": {
  51265. name: "Paw Length",
  51266. power: 1,
  51267. type: "length",
  51268. base: math.unit(31, "cm")
  51269. },
  51270. }
  51271. },
  51272. back: {
  51273. height: math.unit(1.75, "meters"),
  51274. weight: math.unit(100, "kg"),
  51275. name: "Back",
  51276. image: {
  51277. source: "./media/characters/zarya/back.svg",
  51278. extra: 741/735,
  51279. bottom: 44/785
  51280. },
  51281. extraAttributes: {
  51282. "tailLength": {
  51283. name: "Tail Length",
  51284. power: 1,
  51285. type: "length",
  51286. base: math.unit(180, "cm")
  51287. },
  51288. "pawLength": {
  51289. name: "Paw Length",
  51290. power: 1,
  51291. type: "length",
  51292. base: math.unit(31, "cm")
  51293. },
  51294. }
  51295. },
  51296. frontNoTail: {
  51297. height: math.unit(1.75, "meters"),
  51298. weight: math.unit(100, "kg"),
  51299. name: "Front (No Tail)",
  51300. image: {
  51301. source: "./media/characters/zarya/front-no-tail.svg",
  51302. extra: 741/735,
  51303. bottom: 44/785
  51304. },
  51305. extraAttributes: {
  51306. "tailLength": {
  51307. name: "Tail Length",
  51308. power: 1,
  51309. type: "length",
  51310. base: math.unit(180, "cm")
  51311. },
  51312. "pawLength": {
  51313. name: "Paw Length",
  51314. power: 1,
  51315. type: "length",
  51316. base: math.unit(31, "cm")
  51317. },
  51318. }
  51319. },
  51320. dressed: {
  51321. height: math.unit(1.75, "meters"),
  51322. weight: math.unit(100, "kg"),
  51323. name: "Dressed",
  51324. image: {
  51325. source: "./media/characters/zarya/dressed.svg",
  51326. extra: 683/672,
  51327. bottom: 79/762
  51328. },
  51329. extraAttributes: {
  51330. "tailLength": {
  51331. name: "Tail Length",
  51332. power: 1,
  51333. type: "length",
  51334. base: math.unit(180, "cm")
  51335. },
  51336. "pawLength": {
  51337. name: "Paw Length",
  51338. power: 1,
  51339. type: "length",
  51340. base: math.unit(31, "cm")
  51341. },
  51342. }
  51343. },
  51344. },
  51345. [
  51346. {
  51347. name: "Micro",
  51348. height: math.unit(5, "cm")
  51349. },
  51350. {
  51351. name: "Normal",
  51352. height: math.unit(1.75, "meters"),
  51353. default: true
  51354. },
  51355. {
  51356. name: "Macro",
  51357. height: math.unit(122, "meters")
  51358. },
  51359. ]
  51360. ))
  51361. characterMakers.push(() => makeCharacter(
  51362. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51363. {
  51364. front: {
  51365. height: math.unit(7.5, "feet"),
  51366. name: "Front",
  51367. image: {
  51368. source: "./media/characters/sven-hatisson/front.svg",
  51369. extra: 917/857,
  51370. bottom: 42/959
  51371. }
  51372. },
  51373. back: {
  51374. height: math.unit(7.5, "feet"),
  51375. name: "Back",
  51376. image: {
  51377. source: "./media/characters/sven-hatisson/back.svg",
  51378. extra: 903/856,
  51379. bottom: 15/918
  51380. }
  51381. },
  51382. },
  51383. [
  51384. {
  51385. name: "Base Height",
  51386. height: math.unit(7.5, "feet")
  51387. },
  51388. {
  51389. name: "Usual Height",
  51390. height: math.unit(13.5, "feet"),
  51391. default: true
  51392. },
  51393. {
  51394. name: "Smaller Macro",
  51395. height: math.unit(85, "feet")
  51396. },
  51397. {
  51398. name: "Moderate Macro",
  51399. height: math.unit(320, "feet")
  51400. },
  51401. {
  51402. name: "Large Macro",
  51403. height: math.unit(1000, "feet")
  51404. },
  51405. {
  51406. name: "Largest Size",
  51407. height: math.unit(2, "miles")
  51408. },
  51409. ]
  51410. ))
  51411. characterMakers.push(() => makeCharacter(
  51412. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51413. {
  51414. side: {
  51415. height: math.unit(1.8, "meters"),
  51416. weight: math.unit(275, "kg"),
  51417. name: "Side",
  51418. image: {
  51419. source: "./media/characters/terra/side.svg",
  51420. extra: 1273/1147,
  51421. bottom: 0/1273
  51422. }
  51423. },
  51424. },
  51425. [
  51426. {
  51427. name: "Normal",
  51428. height: math.unit(16.2, "meters"),
  51429. default: true
  51430. },
  51431. ]
  51432. ))
  51433. characterMakers.push(() => makeCharacter(
  51434. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51435. {
  51436. borzoiFront: {
  51437. height: math.unit(6 + 9/12, "feet"),
  51438. name: "Front",
  51439. image: {
  51440. source: "./media/characters/rae/borzoi-front.svg",
  51441. extra: 1161/1098,
  51442. bottom: 31/1192
  51443. },
  51444. form: "borzoi",
  51445. default: true
  51446. },
  51447. werewolfFront: {
  51448. height: math.unit(8 + 7/12, "feet"),
  51449. name: "Front",
  51450. image: {
  51451. source: "./media/characters/rae/werewolf-front.svg",
  51452. extra: 1411/1334,
  51453. bottom: 127/1538
  51454. },
  51455. form: "werewolf",
  51456. default: true
  51457. },
  51458. },
  51459. [
  51460. {
  51461. name: "Normal",
  51462. height: math.unit(6 + 9/12, "feet"),
  51463. default: true,
  51464. form: "borzoi"
  51465. },
  51466. {
  51467. name: "Normal",
  51468. height: math.unit(8 + 7/12, "feet"),
  51469. default: true,
  51470. form: "werewolf"
  51471. },
  51472. ],
  51473. {
  51474. "borzoi": {
  51475. name: "Borzoi",
  51476. default: true
  51477. },
  51478. "werewolf": {
  51479. name: "Werewolf",
  51480. },
  51481. }
  51482. ))
  51483. characterMakers.push(() => makeCharacter(
  51484. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51485. {
  51486. front: {
  51487. height: math.unit(8 + 7/12, "feet"),
  51488. weight: math.unit(482, "lb"),
  51489. name: "Front",
  51490. image: {
  51491. source: "./media/characters/kit/front.svg",
  51492. extra: 1247/1103,
  51493. bottom: 41/1288
  51494. }
  51495. },
  51496. back: {
  51497. height: math.unit(8 + 7/12, "feet"),
  51498. weight: math.unit(482, "lb"),
  51499. name: "Back",
  51500. image: {
  51501. source: "./media/characters/kit/back.svg",
  51502. extra: 1252/1123,
  51503. bottom: 21/1273
  51504. }
  51505. },
  51506. paw: {
  51507. height: math.unit(1.46, "feet"),
  51508. name: "Paw",
  51509. image: {
  51510. source: "./media/characters/kit/paw.svg"
  51511. }
  51512. },
  51513. },
  51514. [
  51515. {
  51516. name: "Normal",
  51517. height: math.unit(2.61, "meters"),
  51518. default: true
  51519. },
  51520. {
  51521. name: "\"Tall\"",
  51522. height: math.unit(8.21, "meters")
  51523. },
  51524. {
  51525. name: "Tall",
  51526. height: math.unit(19.6, "meters")
  51527. },
  51528. {
  51529. name: "Very Tall",
  51530. height: math.unit(57.91, "meters")
  51531. },
  51532. {
  51533. name: "Semi-Macro",
  51534. height: math.unit(138.64, "meters")
  51535. },
  51536. {
  51537. name: "Macro",
  51538. height: math.unit(831.99, "meters")
  51539. },
  51540. {
  51541. name: "EX-Macro",
  51542. height: math.unit(96451121, "meters")
  51543. },
  51544. {
  51545. name: "S1-Omnipotent",
  51546. height: math.unit(4.42074e+9, "meters")
  51547. },
  51548. {
  51549. name: "S2-Omnipotent",
  51550. height: math.unit(9.42074e+17, "meters")
  51551. },
  51552. {
  51553. name: "Omnipotent",
  51554. height: math.unit(4.23112e+24, "meters")
  51555. },
  51556. {
  51557. name: "Hypergod",
  51558. height: math.unit(5.05176e+27, "meters")
  51559. },
  51560. {
  51561. name: "Hypergod-EX",
  51562. height: math.unit(9.45532e+49, "meters")
  51563. },
  51564. {
  51565. name: "Hypergod-SP",
  51566. height: math.unit(9.45532e+195, "meters")
  51567. },
  51568. ]
  51569. ))
  51570. characterMakers.push(() => makeCharacter(
  51571. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51572. {
  51573. side: {
  51574. height: math.unit(0.6, "meters"),
  51575. weight: math.unit(24, "kg"),
  51576. name: "Side",
  51577. image: {
  51578. source: "./media/characters/celeste/side.svg",
  51579. extra: 810/517,
  51580. bottom: 53/863
  51581. }
  51582. },
  51583. },
  51584. [
  51585. {
  51586. name: "Velociraptor",
  51587. height: math.unit(0.6, "meters"),
  51588. default: true
  51589. },
  51590. {
  51591. name: "Utahraptor",
  51592. height: math.unit(1.8, "meters")
  51593. },
  51594. {
  51595. name: "Gallimimus",
  51596. height: math.unit(4.0, "meters")
  51597. },
  51598. {
  51599. name: "Large",
  51600. height: math.unit(20, "meters")
  51601. },
  51602. {
  51603. name: "Planetary",
  51604. height: math.unit(50, "megameters")
  51605. },
  51606. {
  51607. name: "Stellar",
  51608. height: math.unit(1.5, "gigameters")
  51609. },
  51610. {
  51611. name: "Galactic",
  51612. height: math.unit(100, "exameters")
  51613. },
  51614. ]
  51615. ))
  51616. characterMakers.push(() => makeCharacter(
  51617. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51618. {
  51619. front: {
  51620. height: math.unit(6, "feet"),
  51621. weight: math.unit(210, "lb"),
  51622. name: "Front",
  51623. image: {
  51624. source: "./media/characters/glacia/front.svg",
  51625. extra: 958/901,
  51626. bottom: 45/1003
  51627. }
  51628. },
  51629. },
  51630. [
  51631. {
  51632. name: "Macro",
  51633. height: math.unit(1000, "meters"),
  51634. default: true
  51635. },
  51636. ]
  51637. ))
  51638. characterMakers.push(() => makeCharacter(
  51639. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51640. {
  51641. front: {
  51642. height: math.unit(4, "meters"),
  51643. name: "Front",
  51644. image: {
  51645. source: "./media/characters/giri/front.svg",
  51646. extra: 966/894,
  51647. bottom: 21/987
  51648. }
  51649. },
  51650. },
  51651. [
  51652. {
  51653. name: "Normal",
  51654. height: math.unit(4, "meters"),
  51655. default: true
  51656. },
  51657. ]
  51658. ))
  51659. characterMakers.push(() => makeCharacter(
  51660. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51661. {
  51662. back: {
  51663. height: math.unit(4, "feet"),
  51664. weight: math.unit(37, "lb"),
  51665. name: "Back",
  51666. image: {
  51667. source: "./media/characters/tin/back.svg",
  51668. extra: 845/780,
  51669. bottom: 28/873
  51670. }
  51671. },
  51672. },
  51673. [
  51674. {
  51675. name: "Normal",
  51676. height: math.unit(4, "feet"),
  51677. default: true
  51678. },
  51679. ]
  51680. ))
  51681. characterMakers.push(() => makeCharacter(
  51682. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51683. {
  51684. front: {
  51685. height: math.unit(25, "feet"),
  51686. name: "Front",
  51687. image: {
  51688. source: "./media/characters/cadenza-vivace/front.svg",
  51689. extra: 1842/1578,
  51690. bottom: 30/1872
  51691. }
  51692. },
  51693. },
  51694. [
  51695. {
  51696. name: "Macro",
  51697. height: math.unit(25, "feet"),
  51698. default: true
  51699. },
  51700. ]
  51701. ))
  51702. characterMakers.push(() => makeCharacter(
  51703. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51704. {
  51705. front: {
  51706. height: math.unit(10, "feet"),
  51707. weight: math.unit(625, "kg"),
  51708. name: "Front",
  51709. image: {
  51710. source: "./media/characters/zain/front.svg",
  51711. extra: 1682/1498,
  51712. bottom: 223/1905
  51713. }
  51714. },
  51715. back: {
  51716. height: math.unit(10, "feet"),
  51717. weight: math.unit(625, "kg"),
  51718. name: "Back",
  51719. image: {
  51720. source: "./media/characters/zain/back.svg",
  51721. extra: 1814/1657,
  51722. bottom: 152/1966
  51723. }
  51724. },
  51725. head: {
  51726. height: math.unit(10, "feet"),
  51727. weight: math.unit(625, "kg"),
  51728. name: "Head",
  51729. image: {
  51730. source: "./media/characters/zain/head.svg",
  51731. extra: 1059/762,
  51732. bottom: 0/1059
  51733. }
  51734. },
  51735. },
  51736. [
  51737. {
  51738. name: "Normal",
  51739. height: math.unit(10, "feet"),
  51740. default: true
  51741. },
  51742. ]
  51743. ))
  51744. characterMakers.push(() => makeCharacter(
  51745. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51746. {
  51747. front: {
  51748. height: math.unit(6 + 5/12, "feet"),
  51749. weight: math.unit(750, "lb"),
  51750. name: "Front",
  51751. image: {
  51752. source: "./media/characters/ruchex/front.svg",
  51753. extra: 877/820,
  51754. bottom: 17/894
  51755. },
  51756. extraAttributes: {
  51757. "width": {
  51758. name: "Width",
  51759. power: 1,
  51760. type: "length",
  51761. base: math.unit(4.757, "feet")
  51762. },
  51763. }
  51764. },
  51765. },
  51766. [
  51767. {
  51768. name: "Normal",
  51769. height: math.unit(6 + 5/12, "feet"),
  51770. default: true
  51771. },
  51772. ]
  51773. ))
  51774. characterMakers.push(() => makeCharacter(
  51775. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51776. {
  51777. dressedFront: {
  51778. height: math.unit(191, "cm"),
  51779. weight: math.unit(80, "kg"),
  51780. name: "Front",
  51781. image: {
  51782. source: "./media/characters/buster/dressed-front.svg",
  51783. extra: 1022/973,
  51784. bottom: 69/1091
  51785. }
  51786. },
  51787. dressedBack: {
  51788. height: math.unit(191, "cm"),
  51789. weight: math.unit(80, "kg"),
  51790. name: "Back",
  51791. image: {
  51792. source: "./media/characters/buster/dressed-back.svg",
  51793. extra: 1018/970,
  51794. bottom: 55/1073
  51795. }
  51796. },
  51797. nudeFront: {
  51798. height: math.unit(191, "cm"),
  51799. weight: math.unit(80, "kg"),
  51800. name: "Front (Nude)",
  51801. image: {
  51802. source: "./media/characters/buster/nude-front.svg",
  51803. extra: 1022/973,
  51804. bottom: 69/1091
  51805. }
  51806. },
  51807. nudeBack: {
  51808. height: math.unit(191, "cm"),
  51809. weight: math.unit(80, "kg"),
  51810. name: "Back (Nude)",
  51811. image: {
  51812. source: "./media/characters/buster/nude-back.svg",
  51813. extra: 1018/970,
  51814. bottom: 55/1073
  51815. }
  51816. },
  51817. dick: {
  51818. height: math.unit(2.59, "feet"),
  51819. name: "Dick",
  51820. image: {
  51821. source: "./media/characters/buster/dick.svg"
  51822. }
  51823. },
  51824. ass: {
  51825. height: math.unit(1.2, "feet"),
  51826. name: "Ass",
  51827. image: {
  51828. source: "./media/characters/buster/ass.svg"
  51829. }
  51830. },
  51831. },
  51832. [
  51833. {
  51834. name: "Normal",
  51835. height: math.unit(191, "cm"),
  51836. default: true
  51837. },
  51838. ]
  51839. ))
  51840. characterMakers.push(() => makeCharacter(
  51841. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51842. {
  51843. side: {
  51844. height: math.unit(8.1, "feet"),
  51845. weight: math.unit(3500, "lb"),
  51846. name: "Side",
  51847. image: {
  51848. source: "./media/characters/sonya/side.svg",
  51849. extra: 1730/1317,
  51850. bottom: 86/1816
  51851. }
  51852. },
  51853. },
  51854. [
  51855. {
  51856. name: "Normal",
  51857. height: math.unit(8.1, "feet"),
  51858. default: true
  51859. },
  51860. ]
  51861. ))
  51862. characterMakers.push(() => makeCharacter(
  51863. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51864. {
  51865. front: {
  51866. height: math.unit(6, "feet"),
  51867. weight: math.unit(150, "lb"),
  51868. name: "Front",
  51869. image: {
  51870. source: "./media/characters/cadence-andrysiak/front.svg",
  51871. extra: 1164/1121,
  51872. bottom: 60/1224
  51873. }
  51874. },
  51875. back: {
  51876. height: math.unit(6, "feet"),
  51877. weight: math.unit(150, "lb"),
  51878. name: "Back",
  51879. image: {
  51880. source: "./media/characters/cadence-andrysiak/back.svg",
  51881. extra: 1200/1165,
  51882. bottom: 9/1209
  51883. }
  51884. },
  51885. dressed: {
  51886. height: math.unit(6, "feet"),
  51887. weight: math.unit(150, "lb"),
  51888. name: "Dressed",
  51889. image: {
  51890. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51891. extra: 1164/1121,
  51892. bottom: 60/1224
  51893. }
  51894. },
  51895. },
  51896. [
  51897. {
  51898. name: "Micro",
  51899. height: math.unit(1, "mm")
  51900. },
  51901. {
  51902. name: "Normal",
  51903. height: math.unit(6, "feet"),
  51904. default: true
  51905. },
  51906. ]
  51907. ))
  51908. characterMakers.push(() => makeCharacter(
  51909. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51910. {
  51911. front: {
  51912. height: math.unit(60, "inches"),
  51913. weight: math.unit(16, "lb"),
  51914. preyCapacity: math.unit(80, "liters"),
  51915. name: "Front",
  51916. image: {
  51917. source: "./media/characters/penny-lynx/front.svg",
  51918. extra: 1959/1769,
  51919. bottom: 49/2008
  51920. }
  51921. },
  51922. },
  51923. [
  51924. {
  51925. name: "Nokia",
  51926. height: math.unit(2, "inches")
  51927. },
  51928. {
  51929. name: "Desktop",
  51930. height: math.unit(24, "inches")
  51931. },
  51932. {
  51933. name: "TV",
  51934. height: math.unit(60, "inches")
  51935. },
  51936. {
  51937. name: "Jumbotron",
  51938. height: math.unit(12, "feet")
  51939. },
  51940. {
  51941. name: "Billboard",
  51942. height: math.unit(48, "feet"),
  51943. default: true
  51944. },
  51945. {
  51946. name: "IMAX",
  51947. height: math.unit(96, "feet")
  51948. },
  51949. {
  51950. name: "SINGULARITY",
  51951. height: math.unit(864938, "miles")
  51952. },
  51953. ]
  51954. ))
  51955. characterMakers.push(() => makeCharacter(
  51956. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51957. {
  51958. front: {
  51959. height: math.unit(5 + 4/12, "feet"),
  51960. weight: math.unit(230, "lb"),
  51961. name: "Front",
  51962. image: {
  51963. source: "./media/characters/sukebe/front.svg",
  51964. extra: 2130/2038,
  51965. bottom: 90/2220
  51966. }
  51967. },
  51968. back: {
  51969. height: math.unit(3.48, "feet"),
  51970. weight: math.unit(230, "lb"),
  51971. name: "Back",
  51972. image: {
  51973. source: "./media/characters/sukebe/back.svg",
  51974. extra: 1670/1604,
  51975. bottom: 0/1670
  51976. }
  51977. },
  51978. },
  51979. [
  51980. {
  51981. name: "Normal",
  51982. height: math.unit(5 + 4/12, "feet"),
  51983. default: true
  51984. },
  51985. ]
  51986. ))
  51987. characterMakers.push(() => makeCharacter(
  51988. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51989. {
  51990. front: {
  51991. height: math.unit(6, "feet"),
  51992. name: "Front",
  51993. image: {
  51994. source: "./media/characters/nylla/front.svg",
  51995. extra: 1868/1699,
  51996. bottom: 97/1965
  51997. }
  51998. },
  51999. back: {
  52000. height: math.unit(6, "feet"),
  52001. name: "Back",
  52002. image: {
  52003. source: "./media/characters/nylla/back.svg",
  52004. extra: 1889/1712,
  52005. bottom: 93/1982
  52006. }
  52007. },
  52008. frontNsfw: {
  52009. height: math.unit(6, "feet"),
  52010. name: "Front (NSFW)",
  52011. image: {
  52012. source: "./media/characters/nylla/front-nsfw.svg",
  52013. extra: 1868/1699,
  52014. bottom: 97/1965
  52015. },
  52016. extraAttributes: {
  52017. "dickLength": {
  52018. name: "Dick Length",
  52019. power: 1,
  52020. type: "length",
  52021. base: math.unit(1.4, "feet")
  52022. },
  52023. "cumVolume": {
  52024. name: "Cum Volume",
  52025. power: 3,
  52026. type: "volume",
  52027. base: math.unit(100, "mL")
  52028. },
  52029. }
  52030. },
  52031. backNsfw: {
  52032. height: math.unit(6, "feet"),
  52033. name: "Back (NSFW)",
  52034. image: {
  52035. source: "./media/characters/nylla/back-nsfw.svg",
  52036. extra: 1889/1712,
  52037. bottom: 93/1982
  52038. }
  52039. },
  52040. maw: {
  52041. height: math.unit(2.10, "feet"),
  52042. name: "Maw",
  52043. image: {
  52044. source: "./media/characters/nylla/maw.svg"
  52045. }
  52046. },
  52047. paws: {
  52048. height: math.unit(2.06, "feet"),
  52049. name: "Paws",
  52050. image: {
  52051. source: "./media/characters/nylla/paws.svg"
  52052. }
  52053. },
  52054. muzzle: {
  52055. height: math.unit(0.61, "feet"),
  52056. name: "Muzzle",
  52057. image: {
  52058. source: "./media/characters/nylla/muzzle.svg"
  52059. }
  52060. },
  52061. sheath: {
  52062. height: math.unit(1.305, "feet"),
  52063. name: "Sheath",
  52064. image: {
  52065. source: "./media/characters/nylla/sheath.svg"
  52066. }
  52067. },
  52068. },
  52069. [
  52070. {
  52071. name: "Micro",
  52072. height: math.unit(7.5, "inches")
  52073. },
  52074. {
  52075. name: "Normal",
  52076. height: math.unit(7, "feet"),
  52077. default: true
  52078. },
  52079. {
  52080. name: "Macro",
  52081. height: math.unit(60, "feet")
  52082. },
  52083. {
  52084. name: "Mega",
  52085. height: math.unit(200, "feet")
  52086. },
  52087. ]
  52088. ))
  52089. characterMakers.push(() => makeCharacter(
  52090. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52091. {
  52092. front: {
  52093. height: math.unit(10, "feet"),
  52094. weight: math.unit(2300, "lb"),
  52095. name: "Front",
  52096. image: {
  52097. source: "./media/characters/hunt3r/front.svg",
  52098. extra: 1909/1742,
  52099. bottom: 46/1955
  52100. }
  52101. },
  52102. },
  52103. [
  52104. {
  52105. name: "Normal",
  52106. height: math.unit(10, "feet"),
  52107. default: true
  52108. },
  52109. ]
  52110. ))
  52111. characterMakers.push(() => makeCharacter(
  52112. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52113. {
  52114. dressed: {
  52115. height: math.unit(11, "feet"),
  52116. weight: math.unit(18500, "lb"),
  52117. preyCapacity: math.unit(9, "people"),
  52118. name: "Dressed",
  52119. image: {
  52120. source: "./media/characters/cylphis/dressed.svg",
  52121. extra: 1028/1003,
  52122. bottom: 75/1103
  52123. },
  52124. },
  52125. undressed: {
  52126. height: math.unit(11, "feet"),
  52127. weight: math.unit(18500, "lb"),
  52128. preyCapacity: math.unit(9, "people"),
  52129. name: "Undressed",
  52130. image: {
  52131. source: "./media/characters/cylphis/undressed.svg",
  52132. extra: 1028/1003,
  52133. bottom: 75/1103
  52134. }
  52135. },
  52136. full: {
  52137. height: math.unit(11, "feet"),
  52138. weight: math.unit(18500 + 150*9, "lb"),
  52139. preyCapacity: math.unit(9, "people"),
  52140. name: "Full",
  52141. image: {
  52142. source: "./media/characters/cylphis/full.svg",
  52143. extra: 1028/1003,
  52144. bottom: 75/1103
  52145. }
  52146. },
  52147. },
  52148. [
  52149. {
  52150. name: "Small",
  52151. height: math.unit(8, "feet")
  52152. },
  52153. {
  52154. name: "Normal",
  52155. height: math.unit(11, "feet"),
  52156. default: true
  52157. },
  52158. ]
  52159. ))
  52160. characterMakers.push(() => makeCharacter(
  52161. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52162. {
  52163. front: {
  52164. height: math.unit(2 + 7/12, "feet"),
  52165. name: "Front",
  52166. image: {
  52167. source: "./media/characters/orishan/front.svg",
  52168. extra: 1058/1023,
  52169. bottom: 23/1081
  52170. }
  52171. },
  52172. back: {
  52173. height: math.unit(2 + 7/12, "feet"),
  52174. name: "Back",
  52175. image: {
  52176. source: "./media/characters/orishan/back.svg",
  52177. extra: 1058/1023,
  52178. bottom: 23/1081
  52179. }
  52180. },
  52181. },
  52182. [
  52183. {
  52184. name: "Micro",
  52185. height: math.unit(2, "cm")
  52186. },
  52187. {
  52188. name: "Normal",
  52189. height: math.unit(2 + 7/12, "feet"),
  52190. default: true
  52191. },
  52192. ]
  52193. ))
  52194. characterMakers.push(() => makeCharacter(
  52195. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52196. {
  52197. front: {
  52198. height: math.unit(3, "meters"),
  52199. weight: math.unit(508, "kg"),
  52200. name: "Front",
  52201. image: {
  52202. source: "./media/characters/seranis/front.svg",
  52203. extra: 1478/1454,
  52204. bottom: 41/1519
  52205. }
  52206. },
  52207. },
  52208. [
  52209. {
  52210. name: "Normal",
  52211. height: math.unit(3, "meters"),
  52212. default: true
  52213. },
  52214. {
  52215. name: "Macro",
  52216. height: math.unit(108, "meters")
  52217. },
  52218. {
  52219. name: "Megamacro",
  52220. height: math.unit(1250, "meters")
  52221. },
  52222. ]
  52223. ))
  52224. characterMakers.push(() => makeCharacter(
  52225. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52226. {
  52227. undressed: {
  52228. height: math.unit(5 + 3/12, "feet"),
  52229. name: "Undressed",
  52230. image: {
  52231. source: "./media/characters/ankou/undressed.svg",
  52232. extra: 1301/1213,
  52233. bottom: 87/1388
  52234. }
  52235. },
  52236. dressed: {
  52237. height: math.unit(5 + 3/12, "feet"),
  52238. name: "Dressed",
  52239. image: {
  52240. source: "./media/characters/ankou/dressed.svg",
  52241. extra: 1301/1213,
  52242. bottom: 87/1388
  52243. }
  52244. },
  52245. head: {
  52246. height: math.unit(1.61, "feet"),
  52247. name: "Head",
  52248. image: {
  52249. source: "./media/characters/ankou/head.svg"
  52250. }
  52251. },
  52252. },
  52253. [
  52254. {
  52255. name: "Normal",
  52256. height: math.unit(5 + 3/12, "feet"),
  52257. default: true
  52258. },
  52259. ]
  52260. ))
  52261. characterMakers.push(() => makeCharacter(
  52262. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52263. {
  52264. side: {
  52265. height: math.unit(6 + 3/12, "feet"),
  52266. weight: math.unit(200, "kg"),
  52267. name: "Side",
  52268. image: {
  52269. source: "./media/characters/juniper-skunktaur/side.svg",
  52270. extra: 1574/1229,
  52271. bottom: 38/1612
  52272. }
  52273. },
  52274. front: {
  52275. height: math.unit(6 + 3/12, "feet"),
  52276. weight: math.unit(200, "kg"),
  52277. name: "Front",
  52278. image: {
  52279. source: "./media/characters/juniper-skunktaur/front.svg",
  52280. extra: 1337/1278,
  52281. bottom: 22/1359
  52282. }
  52283. },
  52284. back: {
  52285. height: math.unit(6 + 3/12, "feet"),
  52286. weight: math.unit(200, "kg"),
  52287. name: "Back",
  52288. image: {
  52289. source: "./media/characters/juniper-skunktaur/back.svg",
  52290. extra: 1618/1273,
  52291. bottom: 13/1631
  52292. }
  52293. },
  52294. top: {
  52295. height: math.unit(2.62, "feet"),
  52296. weight: math.unit(200, "kg"),
  52297. name: "Top",
  52298. image: {
  52299. source: "./media/characters/juniper-skunktaur/top.svg"
  52300. }
  52301. },
  52302. },
  52303. [
  52304. {
  52305. name: "Normal",
  52306. height: math.unit(6 + 3/12, "feet"),
  52307. default: true
  52308. },
  52309. ]
  52310. ))
  52311. characterMakers.push(() => makeCharacter(
  52312. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52313. {
  52314. front: {
  52315. height: math.unit(20.5, "feet"),
  52316. name: "Front",
  52317. image: {
  52318. source: "./media/characters/rei/front.svg",
  52319. extra: 1349/1195,
  52320. bottom: 31/1380
  52321. }
  52322. },
  52323. back: {
  52324. height: math.unit(20.5, "feet"),
  52325. name: "Back",
  52326. image: {
  52327. source: "./media/characters/rei/back.svg",
  52328. extra: 1358/1204,
  52329. bottom: 22/1380
  52330. }
  52331. },
  52332. pawsDigi: {
  52333. height: math.unit(3.45, "feet"),
  52334. name: "Paws (Digi)",
  52335. image: {
  52336. source: "./media/characters/rei/paws-digi.svg"
  52337. }
  52338. },
  52339. pawsPlanti: {
  52340. height: math.unit(3.45, "feet"),
  52341. name: "Paws (Planti)",
  52342. image: {
  52343. source: "./media/characters/rei/paws-planti.svg"
  52344. }
  52345. },
  52346. },
  52347. [
  52348. {
  52349. name: "Normal",
  52350. height: math.unit(20.5, "feet"),
  52351. default: true
  52352. },
  52353. ]
  52354. ))
  52355. characterMakers.push(() => makeCharacter(
  52356. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52357. {
  52358. front: {
  52359. height: math.unit(5 + 11/12, "feet"),
  52360. name: "Front",
  52361. image: {
  52362. source: "./media/characters/carina/front.svg",
  52363. extra: 1720/1449,
  52364. bottom: 14/1734
  52365. }
  52366. },
  52367. back: {
  52368. height: math.unit(5 + 11/12, "feet"),
  52369. name: "Back",
  52370. image: {
  52371. source: "./media/characters/carina/back.svg",
  52372. extra: 1493/1445,
  52373. bottom: 17/1510
  52374. }
  52375. },
  52376. paw: {
  52377. height: math.unit(0.92, "feet"),
  52378. name: "Paw",
  52379. image: {
  52380. source: "./media/characters/carina/paw.svg"
  52381. }
  52382. },
  52383. },
  52384. [
  52385. {
  52386. name: "Normal",
  52387. height: math.unit(5 + 11/12, "feet"),
  52388. default: true
  52389. },
  52390. ]
  52391. ))
  52392. characterMakers.push(() => makeCharacter(
  52393. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52394. {
  52395. front: {
  52396. height: math.unit(4.88, "meters"),
  52397. name: "Front",
  52398. image: {
  52399. source: "./media/characters/maya/front.svg",
  52400. extra: 1222/1145,
  52401. bottom: 57/1279
  52402. }
  52403. },
  52404. },
  52405. [
  52406. {
  52407. name: "Normal",
  52408. height: math.unit(4.88, "meters"),
  52409. default: true
  52410. },
  52411. {
  52412. name: "Macro",
  52413. height: math.unit(38.1, "meters")
  52414. },
  52415. {
  52416. name: "Macro+",
  52417. height: math.unit(152.4, "meters")
  52418. },
  52419. {
  52420. name: "Macro++",
  52421. height: math.unit(16.09, "km")
  52422. },
  52423. {
  52424. name: "Mega-macro",
  52425. height: math.unit(700, "megameters")
  52426. },
  52427. ]
  52428. ))
  52429. characterMakers.push(() => makeCharacter(
  52430. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52431. {
  52432. front: {
  52433. height: math.unit(6 + 2/12, "feet"),
  52434. weight: math.unit(500, "lb"),
  52435. preyCapacity: math.unit(4, "people"),
  52436. name: "Front",
  52437. image: {
  52438. source: "./media/characters/yepir/front.svg"
  52439. }
  52440. },
  52441. side: {
  52442. height: math.unit(6 + 2/12, "feet"),
  52443. weight: math.unit(500, "lb"),
  52444. preyCapacity: math.unit(4, "people"),
  52445. name: "Side",
  52446. image: {
  52447. source: "./media/characters/yepir/side.svg"
  52448. }
  52449. },
  52450. paw: {
  52451. height: math.unit(1.05, "feet"),
  52452. name: "Paw",
  52453. image: {
  52454. source: "./media/characters/yepir/paw.svg"
  52455. }
  52456. },
  52457. },
  52458. [
  52459. {
  52460. name: "Normal",
  52461. height: math.unit(6 + 2/12, "feet"),
  52462. default: true
  52463. },
  52464. ]
  52465. ))
  52466. characterMakers.push(() => makeCharacter(
  52467. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52468. {
  52469. front: {
  52470. height: math.unit(5 + 4/12, "feet"),
  52471. name: "Front",
  52472. image: {
  52473. source: "./media/characters/russec/front.svg",
  52474. extra: 1926/1626,
  52475. bottom: 72/1998
  52476. }
  52477. },
  52478. back: {
  52479. height: math.unit(5 + 4/12, "feet"),
  52480. name: "Back",
  52481. image: {
  52482. source: "./media/characters/russec/back.svg",
  52483. extra: 1910/1591,
  52484. bottom: 48/1958
  52485. }
  52486. },
  52487. },
  52488. [
  52489. {
  52490. name: "Small",
  52491. height: math.unit(5 + 4/12, "feet")
  52492. },
  52493. {
  52494. name: "Normal",
  52495. height: math.unit(72, "feet"),
  52496. default: true
  52497. },
  52498. ]
  52499. ))
  52500. characterMakers.push(() => makeCharacter(
  52501. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52502. {
  52503. side: {
  52504. height: math.unit(12, "feet"),
  52505. name: "Side",
  52506. image: {
  52507. source: "./media/characters/cianus/side.svg",
  52508. extra: 808/526,
  52509. bottom: 61/869
  52510. }
  52511. },
  52512. },
  52513. [
  52514. {
  52515. name: "Normal",
  52516. height: math.unit(12, "feet"),
  52517. default: true
  52518. },
  52519. ]
  52520. ))
  52521. characterMakers.push(() => makeCharacter(
  52522. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52523. {
  52524. front: {
  52525. height: math.unit(9 + 6/12, "feet"),
  52526. weight: math.unit(300, "lb"),
  52527. name: "Front",
  52528. image: {
  52529. source: "./media/characters/ahab/front.svg",
  52530. extra: 1897/1868,
  52531. bottom: 121/2018
  52532. }
  52533. },
  52534. frontNsfw: {
  52535. height: math.unit(9 + 6/12, "feet"),
  52536. weight: math.unit(300, "lb"),
  52537. name: "Front-nsfw",
  52538. image: {
  52539. source: "./media/characters/ahab/front-nsfw.svg",
  52540. extra: 1897/1868,
  52541. bottom: 121/2018
  52542. }
  52543. },
  52544. },
  52545. [
  52546. {
  52547. name: "Normal",
  52548. height: math.unit(9 + 6/12, "feet")
  52549. },
  52550. {
  52551. name: "Macro",
  52552. height: math.unit(657, "feet"),
  52553. default: true
  52554. },
  52555. ]
  52556. ))
  52557. characterMakers.push(() => makeCharacter(
  52558. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52559. {
  52560. front: {
  52561. height: math.unit(2.69, "meters"),
  52562. weight: math.unit(132, "kg"),
  52563. name: "Front",
  52564. image: {
  52565. source: "./media/characters/aarkus/front.svg",
  52566. extra: 1400/1231,
  52567. bottom: 34/1434
  52568. }
  52569. },
  52570. back: {
  52571. height: math.unit(2.69, "meters"),
  52572. weight: math.unit(132, "kg"),
  52573. name: "Back",
  52574. image: {
  52575. source: "./media/characters/aarkus/back.svg",
  52576. extra: 1381/1218,
  52577. bottom: 30/1411
  52578. }
  52579. },
  52580. frontNsfw: {
  52581. height: math.unit(2.69, "meters"),
  52582. weight: math.unit(132, "kg"),
  52583. name: "Front (NSFW)",
  52584. image: {
  52585. source: "./media/characters/aarkus/front-nsfw.svg",
  52586. extra: 1400/1231,
  52587. bottom: 34/1434
  52588. }
  52589. },
  52590. foot: {
  52591. height: math.unit(1.45, "feet"),
  52592. name: "Foot",
  52593. image: {
  52594. source: "./media/characters/aarkus/foot.svg"
  52595. }
  52596. },
  52597. head: {
  52598. height: math.unit(2.85, "feet"),
  52599. name: "Head",
  52600. image: {
  52601. source: "./media/characters/aarkus/head.svg"
  52602. }
  52603. },
  52604. headAlt: {
  52605. height: math.unit(3.07, "feet"),
  52606. name: "Head (Alt)",
  52607. image: {
  52608. source: "./media/characters/aarkus/head-alt.svg"
  52609. }
  52610. },
  52611. mouth: {
  52612. height: math.unit(1.25, "feet"),
  52613. name: "Mouth",
  52614. image: {
  52615. source: "./media/characters/aarkus/mouth.svg"
  52616. }
  52617. },
  52618. dick: {
  52619. height: math.unit(1.77, "feet"),
  52620. name: "Dick",
  52621. image: {
  52622. source: "./media/characters/aarkus/dick.svg"
  52623. }
  52624. },
  52625. },
  52626. [
  52627. {
  52628. name: "Normal",
  52629. height: math.unit(2.69, "meters"),
  52630. default: true
  52631. },
  52632. {
  52633. name: "Macro",
  52634. height: math.unit(269, "meters")
  52635. },
  52636. {
  52637. name: "Macro+",
  52638. height: math.unit(672.5, "meters")
  52639. },
  52640. {
  52641. name: "Megamacro",
  52642. height: math.unit(2.017, "km")
  52643. },
  52644. ]
  52645. ))
  52646. characterMakers.push(() => makeCharacter(
  52647. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52648. {
  52649. front: {
  52650. height: math.unit(23.47, "cm"),
  52651. weight: math.unit(600, "grams"),
  52652. name: "Front",
  52653. image: {
  52654. source: "./media/characters/diode/front.svg",
  52655. extra: 1778/1396,
  52656. bottom: 95/1873
  52657. }
  52658. },
  52659. side: {
  52660. height: math.unit(23.47, "cm"),
  52661. weight: math.unit(600, "grams"),
  52662. name: "Side",
  52663. image: {
  52664. source: "./media/characters/diode/side.svg",
  52665. extra: 1831/1404,
  52666. bottom: 86/1917
  52667. }
  52668. },
  52669. wings: {
  52670. height: math.unit(0.683, "feet"),
  52671. name: "Wings",
  52672. image: {
  52673. source: "./media/characters/diode/wings.svg"
  52674. }
  52675. },
  52676. },
  52677. [
  52678. {
  52679. name: "Normal",
  52680. height: math.unit(23.47, "cm"),
  52681. default: true
  52682. },
  52683. ]
  52684. ))
  52685. characterMakers.push(() => makeCharacter(
  52686. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52687. {
  52688. front: {
  52689. height: math.unit(6 + 3/12, "feet"),
  52690. weight: math.unit(250, "lb"),
  52691. name: "Front",
  52692. image: {
  52693. source: "./media/characters/reika/front.svg",
  52694. extra: 1120/1078,
  52695. bottom: 86/1206
  52696. }
  52697. },
  52698. },
  52699. [
  52700. {
  52701. name: "Normal",
  52702. height: math.unit(6 + 3/12, "feet"),
  52703. default: true
  52704. },
  52705. ]
  52706. ))
  52707. characterMakers.push(() => makeCharacter(
  52708. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52709. {
  52710. front: {
  52711. height: math.unit(16 + 8/12, "feet"),
  52712. weight: math.unit(9000, "lb"),
  52713. name: "Front",
  52714. image: {
  52715. source: "./media/characters/lokuto-takama/front.svg",
  52716. extra: 1774/1632,
  52717. bottom: 147/1921
  52718. },
  52719. extraAttributes: {
  52720. "bustWidth": {
  52721. name: "Bust Width",
  52722. power: 1,
  52723. type: "length",
  52724. base: math.unit(2.4, "meters")
  52725. },
  52726. "breastWeight": {
  52727. name: "Breast Weight",
  52728. power: 3,
  52729. type: "mass",
  52730. base: math.unit(1000, "kg")
  52731. },
  52732. }
  52733. },
  52734. },
  52735. [
  52736. {
  52737. name: "Normal",
  52738. height: math.unit(16 + 8/12, "feet"),
  52739. default: true
  52740. },
  52741. ]
  52742. ))
  52743. characterMakers.push(() => makeCharacter(
  52744. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52745. {
  52746. front: {
  52747. height: math.unit(10, "cm"),
  52748. weight: math.unit(850, "grams"),
  52749. name: "Front",
  52750. image: {
  52751. source: "./media/characters/owak-bone/front.svg",
  52752. extra: 1965/1801,
  52753. bottom: 31/1996
  52754. }
  52755. },
  52756. },
  52757. [
  52758. {
  52759. name: "Normal",
  52760. height: math.unit(10, "cm"),
  52761. default: true
  52762. },
  52763. ]
  52764. ))
  52765. characterMakers.push(() => makeCharacter(
  52766. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52767. {
  52768. front: {
  52769. height: math.unit(2 + 6/12, "feet"),
  52770. weight: math.unit(9, "lb"),
  52771. name: "Front",
  52772. image: {
  52773. source: "./media/characters/muffin/front.svg",
  52774. extra: 1220/1195,
  52775. bottom: 84/1304
  52776. }
  52777. },
  52778. },
  52779. [
  52780. {
  52781. name: "Normal",
  52782. height: math.unit(2 + 6/12, "feet"),
  52783. default: true
  52784. },
  52785. ]
  52786. ))
  52787. characterMakers.push(() => makeCharacter(
  52788. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52789. {
  52790. front: {
  52791. height: math.unit(7, "feet"),
  52792. name: "Front",
  52793. image: {
  52794. source: "./media/characters/chimera/front.svg",
  52795. extra: 1752/1614,
  52796. bottom: 68/1820
  52797. }
  52798. },
  52799. },
  52800. [
  52801. {
  52802. name: "Normal",
  52803. height: math.unit(7, "feet")
  52804. },
  52805. {
  52806. name: "Gigamacro",
  52807. height: math.unit(2.9, "gigameters"),
  52808. default: true
  52809. },
  52810. {
  52811. name: "Universal",
  52812. height: math.unit(1.56e26, "yottameters")
  52813. },
  52814. ]
  52815. ))
  52816. characterMakers.push(() => makeCharacter(
  52817. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52818. {
  52819. front: {
  52820. height: math.unit(3, "feet"),
  52821. weight: math.unit(20, "lb"),
  52822. name: "Front",
  52823. image: {
  52824. source: "./media/characters/kit-fennec-fox/front.svg",
  52825. extra: 1027/932,
  52826. bottom: 16/1043
  52827. }
  52828. },
  52829. back: {
  52830. height: math.unit(3, "feet"),
  52831. weight: math.unit(20, "lb"),
  52832. name: "Back",
  52833. image: {
  52834. source: "./media/characters/kit-fennec-fox/back.svg",
  52835. extra: 1027/932,
  52836. bottom: 16/1043
  52837. }
  52838. },
  52839. },
  52840. [
  52841. {
  52842. name: "Normal",
  52843. height: math.unit(3, "feet"),
  52844. default: true
  52845. },
  52846. ]
  52847. ))
  52848. characterMakers.push(() => makeCharacter(
  52849. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52850. {
  52851. front: {
  52852. height: math.unit(167, "cm"),
  52853. name: "Front",
  52854. image: {
  52855. source: "./media/characters/blue-otter/front.svg",
  52856. extra: 1951/1920,
  52857. bottom: 31/1982
  52858. }
  52859. },
  52860. },
  52861. [
  52862. {
  52863. name: "Otter-Sized",
  52864. height: math.unit(100, "cm")
  52865. },
  52866. {
  52867. name: "Normal",
  52868. height: math.unit(167, "cm"),
  52869. default: true
  52870. },
  52871. ]
  52872. ))
  52873. characterMakers.push(() => makeCharacter(
  52874. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52875. {
  52876. front: {
  52877. height: math.unit(4 + 4/12, "feet"),
  52878. name: "Front",
  52879. image: {
  52880. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52881. extra: 1072/1067,
  52882. bottom: 117/1189
  52883. }
  52884. },
  52885. back: {
  52886. height: math.unit(4 + 4/12, "feet"),
  52887. name: "Back",
  52888. image: {
  52889. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52890. extra: 1135/1129,
  52891. bottom: 57/1192
  52892. }
  52893. },
  52894. head: {
  52895. height: math.unit(1.77, "feet"),
  52896. name: "Head",
  52897. image: {
  52898. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52899. }
  52900. },
  52901. },
  52902. [
  52903. {
  52904. name: "Normal",
  52905. height: math.unit(4 + 4/12, "feet"),
  52906. default: true
  52907. },
  52908. ]
  52909. ))
  52910. characterMakers.push(() => makeCharacter(
  52911. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52912. {
  52913. front: {
  52914. height: math.unit(2, "inches"),
  52915. name: "Front",
  52916. image: {
  52917. source: "./media/characters/carley-hartford/front.svg",
  52918. extra: 1035/988,
  52919. bottom: 23/1058
  52920. }
  52921. },
  52922. back: {
  52923. height: math.unit(2, "inches"),
  52924. name: "Back",
  52925. image: {
  52926. source: "./media/characters/carley-hartford/back.svg",
  52927. extra: 1035/988,
  52928. bottom: 23/1058
  52929. }
  52930. },
  52931. dressed: {
  52932. height: math.unit(2, "inches"),
  52933. name: "Dressed",
  52934. image: {
  52935. source: "./media/characters/carley-hartford/dressed.svg",
  52936. extra: 651/620,
  52937. bottom: 0/651
  52938. }
  52939. },
  52940. },
  52941. [
  52942. {
  52943. name: "Micro",
  52944. height: math.unit(2, "inches"),
  52945. default: true
  52946. },
  52947. {
  52948. name: "Macro",
  52949. height: math.unit(6 + 3/12, "feet")
  52950. },
  52951. ]
  52952. ))
  52953. characterMakers.push(() => makeCharacter(
  52954. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52955. {
  52956. front: {
  52957. height: math.unit(2 + 3/12, "feet"),
  52958. weight: math.unit(15 + 7/16, "lb"),
  52959. name: "Front",
  52960. image: {
  52961. source: "./media/characters/duke/front.svg",
  52962. extra: 910/815,
  52963. bottom: 30/940
  52964. }
  52965. },
  52966. },
  52967. [
  52968. {
  52969. name: "Normal",
  52970. height: math.unit(2 + 3/12, "feet"),
  52971. default: true
  52972. },
  52973. ]
  52974. ))
  52975. characterMakers.push(() => makeCharacter(
  52976. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52977. {
  52978. front: {
  52979. height: math.unit(5 + 4/12, "feet"),
  52980. weight: math.unit(156, "lb"),
  52981. name: "Front",
  52982. image: {
  52983. source: "./media/characters/dein/front.svg",
  52984. extra: 855/815,
  52985. bottom: 48/903
  52986. }
  52987. },
  52988. side: {
  52989. height: math.unit(5 + 4/12, "feet"),
  52990. weight: math.unit(156, "lb"),
  52991. name: "side",
  52992. image: {
  52993. source: "./media/characters/dein/side.svg",
  52994. extra: 846/803,
  52995. bottom: 25/871
  52996. }
  52997. },
  52998. maw: {
  52999. height: math.unit(1.45, "feet"),
  53000. name: "Maw",
  53001. image: {
  53002. source: "./media/characters/dein/maw.svg"
  53003. }
  53004. },
  53005. },
  53006. [
  53007. {
  53008. name: "Ferret Sized",
  53009. height: math.unit(2 + 5/12, "feet")
  53010. },
  53011. {
  53012. name: "Normal",
  53013. height: math.unit(5 + 4/12, "feet"),
  53014. default: true
  53015. },
  53016. ]
  53017. ))
  53018. characterMakers.push(() => makeCharacter(
  53019. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53020. {
  53021. front: {
  53022. height: math.unit(84 + 8/12, "feet"),
  53023. weight: math.unit(942180, "lb"),
  53024. name: "Front",
  53025. image: {
  53026. source: "./media/characters/daurine-arima/front.svg",
  53027. extra: 1989/1782,
  53028. bottom: 37/2026
  53029. }
  53030. },
  53031. side: {
  53032. height: math.unit(84 + 8/12, "feet"),
  53033. weight: math.unit(942180, "lb"),
  53034. name: "Side",
  53035. image: {
  53036. source: "./media/characters/daurine-arima/side.svg",
  53037. extra: 1997/1790,
  53038. bottom: 21/2018
  53039. }
  53040. },
  53041. back: {
  53042. height: math.unit(84 + 8/12, "feet"),
  53043. weight: math.unit(942180, "lb"),
  53044. name: "Back",
  53045. image: {
  53046. source: "./media/characters/daurine-arima/back.svg",
  53047. extra: 1992/1800,
  53048. bottom: 12/2004
  53049. }
  53050. },
  53051. head: {
  53052. height: math.unit(15.5, "feet"),
  53053. name: "Head",
  53054. image: {
  53055. source: "./media/characters/daurine-arima/head.svg"
  53056. }
  53057. },
  53058. headAlt: {
  53059. height: math.unit(19.19, "feet"),
  53060. name: "Head (Alt)",
  53061. image: {
  53062. source: "./media/characters/daurine-arima/head-alt.svg"
  53063. }
  53064. },
  53065. },
  53066. [
  53067. {
  53068. name: "Minimum height",
  53069. height: math.unit(8 + 10/12, "feet")
  53070. },
  53071. {
  53072. name: "Comfort height",
  53073. height: math.unit(19 + 6 /12, "feet")
  53074. },
  53075. {
  53076. name: "\"Normal\" height",
  53077. height: math.unit(28 + 10/12, "feet")
  53078. },
  53079. {
  53080. name: "Base height",
  53081. height: math.unit(84 + 8/12, "feet"),
  53082. default: true
  53083. },
  53084. {
  53085. name: "Mini-macro",
  53086. height: math.unit(2360, "feet")
  53087. },
  53088. {
  53089. name: "Macro",
  53090. height: math.unit(10, "miles")
  53091. },
  53092. {
  53093. name: "Goddess",
  53094. height: math.unit(9.99e40, "yottameters")
  53095. },
  53096. ]
  53097. ))
  53098. characterMakers.push(() => makeCharacter(
  53099. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53100. {
  53101. front: {
  53102. height: math.unit(2.3, "meters"),
  53103. name: "Front",
  53104. image: {
  53105. source: "./media/characters/cilenomon/front.svg",
  53106. extra: 1963/1778,
  53107. bottom: 54/2017
  53108. }
  53109. },
  53110. },
  53111. [
  53112. {
  53113. name: "Normal",
  53114. height: math.unit(2.3, "meters"),
  53115. default: true
  53116. },
  53117. {
  53118. name: "Big",
  53119. height: math.unit(5, "meters")
  53120. },
  53121. {
  53122. name: "Macro",
  53123. height: math.unit(30, "meters")
  53124. },
  53125. {
  53126. name: "True",
  53127. height: math.unit(1, "universe")
  53128. },
  53129. ]
  53130. ))
  53131. characterMakers.push(() => makeCharacter(
  53132. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53133. {
  53134. front: {
  53135. height: math.unit(5, "feet"),
  53136. name: "Front",
  53137. image: {
  53138. source: "./media/characters/sen-mink/front.svg",
  53139. extra: 1727/1675,
  53140. bottom: 35/1762
  53141. }
  53142. },
  53143. },
  53144. [
  53145. {
  53146. name: "Normal",
  53147. height: math.unit(5, "feet"),
  53148. default: true
  53149. },
  53150. ]
  53151. ))
  53152. characterMakers.push(() => makeCharacter(
  53153. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53154. {
  53155. front: {
  53156. height: math.unit(5.42999, "feet"),
  53157. weight: math.unit(100, "lb"),
  53158. name: "Front",
  53159. image: {
  53160. source: "./media/characters/ophois/front.svg",
  53161. extra: 1429/1286,
  53162. bottom: 60/1489
  53163. }
  53164. },
  53165. },
  53166. [
  53167. {
  53168. name: "Normal",
  53169. height: math.unit(5.42999, "feet"),
  53170. default: true
  53171. },
  53172. ]
  53173. ))
  53174. characterMakers.push(() => makeCharacter(
  53175. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53176. {
  53177. front: {
  53178. height: math.unit(2, "meters"),
  53179. name: "Front",
  53180. image: {
  53181. source: "./media/characters/riley/front.svg",
  53182. extra: 1779/1754,
  53183. bottom: 139/1918
  53184. }
  53185. },
  53186. },
  53187. [
  53188. {
  53189. name: "Normal",
  53190. height: math.unit(2, "meters"),
  53191. default: true
  53192. },
  53193. ]
  53194. ))
  53195. characterMakers.push(() => makeCharacter(
  53196. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53197. {
  53198. front: {
  53199. height: math.unit(6 + 2/12, "feet"),
  53200. weight: math.unit(195, "lb"),
  53201. preyCapacity: math.unit(6, "people"),
  53202. name: "Front",
  53203. image: {
  53204. source: "./media/characters/shuken-flash/front.svg",
  53205. extra: 1905/1739,
  53206. bottom: 65/1970
  53207. }
  53208. },
  53209. back: {
  53210. height: math.unit(6 + 2/12, "feet"),
  53211. weight: math.unit(195, "lb"),
  53212. preyCapacity: math.unit(6, "people"),
  53213. name: "Back",
  53214. image: {
  53215. source: "./media/characters/shuken-flash/back.svg",
  53216. extra: 1912/1751,
  53217. bottom: 13/1925
  53218. }
  53219. },
  53220. },
  53221. [
  53222. {
  53223. name: "Normal",
  53224. height: math.unit(6 + 2/12, "feet"),
  53225. default: true
  53226. },
  53227. ]
  53228. ))
  53229. characterMakers.push(() => makeCharacter(
  53230. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53231. {
  53232. front: {
  53233. height: math.unit(5 + 9/12, "feet"),
  53234. weight: math.unit(150, "lb"),
  53235. name: "Front",
  53236. image: {
  53237. source: "./media/characters/plat/front.svg",
  53238. extra: 1816/1703,
  53239. bottom: 43/1859
  53240. }
  53241. },
  53242. side: {
  53243. height: math.unit(5 + 9/12, "feet"),
  53244. weight: math.unit(300, "lb"),
  53245. name: "Side",
  53246. image: {
  53247. source: "./media/characters/plat/side.svg",
  53248. extra: 1824/1699,
  53249. bottom: 18/1842
  53250. }
  53251. },
  53252. },
  53253. [
  53254. {
  53255. name: "Normal",
  53256. height: math.unit(5 + 9/12, "feet"),
  53257. default: true
  53258. },
  53259. ]
  53260. ))
  53261. characterMakers.push(() => makeCharacter(
  53262. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53263. {
  53264. front: {
  53265. height: math.unit(9, "feet"),
  53266. weight: math.unit(1800, "lb"),
  53267. name: "Front",
  53268. image: {
  53269. source: "./media/characters/elaine/front.svg",
  53270. extra: 1833/1354,
  53271. bottom: 25/1858
  53272. }
  53273. },
  53274. back: {
  53275. height: math.unit(8.8, "feet"),
  53276. weight: math.unit(1800, "lb"),
  53277. name: "Back",
  53278. image: {
  53279. source: "./media/characters/elaine/back.svg",
  53280. extra: 1641/1233,
  53281. bottom: 53/1694
  53282. }
  53283. },
  53284. },
  53285. [
  53286. {
  53287. name: "Normal",
  53288. height: math.unit(9, "feet"),
  53289. default: true
  53290. },
  53291. ]
  53292. ))
  53293. characterMakers.push(() => makeCharacter(
  53294. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53295. {
  53296. front: {
  53297. height: math.unit(17 + 9/12, "feet"),
  53298. weight: math.unit(8000, "lb"),
  53299. name: "Front",
  53300. image: {
  53301. source: "./media/characters/vera-raven/front.svg",
  53302. extra: 1457/1412,
  53303. bottom: 121/1578
  53304. }
  53305. },
  53306. side: {
  53307. height: math.unit(17 + 9/12, "feet"),
  53308. weight: math.unit(8000, "lb"),
  53309. name: "Side",
  53310. image: {
  53311. source: "./media/characters/vera-raven/side.svg",
  53312. extra: 1510/1464,
  53313. bottom: 54/1564
  53314. }
  53315. },
  53316. },
  53317. [
  53318. {
  53319. name: "Normal",
  53320. height: math.unit(17 + 9/12, "feet"),
  53321. default: true
  53322. },
  53323. ]
  53324. ))
  53325. characterMakers.push(() => makeCharacter(
  53326. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53327. {
  53328. dressed: {
  53329. height: math.unit(6 + 9/12, "feet"),
  53330. name: "Dressed",
  53331. image: {
  53332. source: "./media/characters/nakisha/dressed.svg",
  53333. extra: 1909/1757,
  53334. bottom: 48/1957
  53335. }
  53336. },
  53337. nude: {
  53338. height: math.unit(6 + 9/12, "feet"),
  53339. name: "Nude",
  53340. image: {
  53341. source: "./media/characters/nakisha/nude.svg",
  53342. extra: 1917/1765,
  53343. bottom: 34/1951
  53344. }
  53345. },
  53346. },
  53347. [
  53348. {
  53349. name: "Normal",
  53350. height: math.unit(6 + 9/12, "feet"),
  53351. default: true
  53352. },
  53353. ]
  53354. ))
  53355. characterMakers.push(() => makeCharacter(
  53356. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53357. {
  53358. front: {
  53359. height: math.unit(87, "meters"),
  53360. name: "Front",
  53361. image: {
  53362. source: "./media/characters/serafin/front.svg",
  53363. extra: 1919/1776,
  53364. bottom: 65/1984
  53365. }
  53366. },
  53367. },
  53368. [
  53369. {
  53370. name: "Normal",
  53371. height: math.unit(87, "meters"),
  53372. default: true
  53373. },
  53374. ]
  53375. ))
  53376. characterMakers.push(() => makeCharacter(
  53377. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53378. {
  53379. front: {
  53380. height: math.unit(6, "feet"),
  53381. weight: math.unit(200, "lb"),
  53382. name: "Front",
  53383. image: {
  53384. source: "./media/characters/poptart/front.svg",
  53385. extra: 615/583,
  53386. bottom: 23/638
  53387. }
  53388. },
  53389. back: {
  53390. height: math.unit(6, "feet"),
  53391. weight: math.unit(200, "lb"),
  53392. name: "Back",
  53393. image: {
  53394. source: "./media/characters/poptart/back.svg",
  53395. extra: 617/584,
  53396. bottom: 22/639
  53397. }
  53398. },
  53399. frontNsfw: {
  53400. height: math.unit(6, "feet"),
  53401. weight: math.unit(200, "lb"),
  53402. name: "Front (NSFW)",
  53403. image: {
  53404. source: "./media/characters/poptart/front-nsfw.svg",
  53405. extra: 615/583,
  53406. bottom: 23/638
  53407. }
  53408. },
  53409. backNsfw: {
  53410. height: math.unit(6, "feet"),
  53411. weight: math.unit(200, "lb"),
  53412. name: "Back (NSFW)",
  53413. image: {
  53414. source: "./media/characters/poptart/back-nsfw.svg",
  53415. extra: 617/584,
  53416. bottom: 22/639
  53417. }
  53418. },
  53419. hand: {
  53420. height: math.unit(1.14, "feet"),
  53421. name: "Hand",
  53422. image: {
  53423. source: "./media/characters/poptart/hand.svg"
  53424. }
  53425. },
  53426. foot: {
  53427. height: math.unit(1.5, "feet"),
  53428. name: "Foot",
  53429. image: {
  53430. source: "./media/characters/poptart/foot.svg"
  53431. }
  53432. },
  53433. },
  53434. [
  53435. {
  53436. name: "Normal",
  53437. height: math.unit(6, "feet"),
  53438. default: true
  53439. },
  53440. {
  53441. name: "Grande",
  53442. height: math.unit(350, "feet")
  53443. },
  53444. {
  53445. name: "Massif",
  53446. height: math.unit(967, "feet")
  53447. },
  53448. ]
  53449. ))
  53450. characterMakers.push(() => makeCharacter(
  53451. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53452. {
  53453. hyenaSide: {
  53454. height: math.unit(120, "cm"),
  53455. weight: math.unit(120, "lb"),
  53456. name: "Side",
  53457. image: {
  53458. source: "./media/characters/trance/hyena-side.svg",
  53459. extra: 998/904,
  53460. bottom: 76/1074
  53461. }
  53462. },
  53463. },
  53464. [
  53465. {
  53466. name: "Normal",
  53467. height: math.unit(120, "cm"),
  53468. default: true
  53469. },
  53470. {
  53471. name: "Dire",
  53472. height: math.unit(230, "cm")
  53473. },
  53474. {
  53475. name: "Macro",
  53476. height: math.unit(37, "feet")
  53477. },
  53478. ]
  53479. ))
  53480. characterMakers.push(() => makeCharacter(
  53481. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53482. {
  53483. front: {
  53484. height: math.unit(6 + 3/12, "feet"),
  53485. name: "Front",
  53486. image: {
  53487. source: "./media/characters/michael-berretta/front.svg",
  53488. extra: 515/494,
  53489. bottom: 20/535
  53490. }
  53491. },
  53492. back: {
  53493. height: math.unit(6 + 3/12, "feet"),
  53494. name: "Back",
  53495. image: {
  53496. source: "./media/characters/michael-berretta/back.svg",
  53497. extra: 520/497,
  53498. bottom: 21/541
  53499. }
  53500. },
  53501. frontNsfw: {
  53502. height: math.unit(6 + 3/12, "feet"),
  53503. name: "Front (NSFW)",
  53504. image: {
  53505. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53506. extra: 515/494,
  53507. bottom: 20/535
  53508. }
  53509. },
  53510. dick: {
  53511. height: math.unit(1, "feet"),
  53512. name: "Dick",
  53513. image: {
  53514. source: "./media/characters/michael-berretta/dick.svg"
  53515. }
  53516. },
  53517. },
  53518. [
  53519. {
  53520. name: "Normal",
  53521. height: math.unit(6 + 3/12, "feet"),
  53522. default: true
  53523. },
  53524. {
  53525. name: "Big",
  53526. height: math.unit(12, "feet")
  53527. },
  53528. {
  53529. name: "Macro",
  53530. height: math.unit(187.5, "feet")
  53531. },
  53532. ]
  53533. ))
  53534. characterMakers.push(() => makeCharacter(
  53535. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53536. {
  53537. front: {
  53538. height: math.unit(9 + 9/12, "feet"),
  53539. weight: math.unit(1244, "lb"),
  53540. name: "Front",
  53541. image: {
  53542. source: "./media/characters/stella-edgecomb/front.svg",
  53543. extra: 1835/1706,
  53544. bottom: 49/1884
  53545. }
  53546. },
  53547. pen: {
  53548. height: math.unit(0.95, "feet"),
  53549. name: "Pen",
  53550. image: {
  53551. source: "./media/characters/stella-edgecomb/pen.svg"
  53552. }
  53553. },
  53554. },
  53555. [
  53556. {
  53557. name: "Cozy Bear",
  53558. height: math.unit(0.5, "inches")
  53559. },
  53560. {
  53561. name: "Normal",
  53562. height: math.unit(9 + 9/12, "feet"),
  53563. default: true
  53564. },
  53565. {
  53566. name: "Giga Bear",
  53567. height: math.unit(1, "mile")
  53568. },
  53569. {
  53570. name: "Great Bear",
  53571. height: math.unit(53, "miles")
  53572. },
  53573. {
  53574. name: "Goddess Bear",
  53575. height: math.unit(40000, "miles")
  53576. },
  53577. {
  53578. name: "Sun Bear",
  53579. height: math.unit(900000, "miles")
  53580. },
  53581. ]
  53582. ))
  53583. characterMakers.push(() => makeCharacter(
  53584. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53585. {
  53586. anthroFront: {
  53587. height: math.unit(556, "cm"),
  53588. weight: math.unit(2650, "kg"),
  53589. preyCapacity: math.unit(3, "people"),
  53590. name: "Front",
  53591. image: {
  53592. source: "./media/characters/ash´iika/front.svg",
  53593. extra: 710/673,
  53594. bottom: 15/725
  53595. },
  53596. form: "anthro",
  53597. default: true
  53598. },
  53599. anthroSide: {
  53600. height: math.unit(556, "cm"),
  53601. weight: math.unit(2650, "kg"),
  53602. preyCapacity: math.unit(3, "people"),
  53603. name: "Side",
  53604. image: {
  53605. source: "./media/characters/ash´iika/side.svg",
  53606. extra: 696/676,
  53607. bottom: 13/709
  53608. },
  53609. form: "anthro"
  53610. },
  53611. anthroDressed: {
  53612. height: math.unit(556, "cm"),
  53613. weight: math.unit(2650, "kg"),
  53614. preyCapacity: math.unit(3, "people"),
  53615. name: "Dressed",
  53616. image: {
  53617. source: "./media/characters/ash´iika/dressed.svg",
  53618. extra: 710/673,
  53619. bottom: 15/725
  53620. },
  53621. form: "anthro"
  53622. },
  53623. anthroHead: {
  53624. height: math.unit(3.5, "feet"),
  53625. name: "Head",
  53626. image: {
  53627. source: "./media/characters/ash´iika/head.svg",
  53628. extra: 348/291,
  53629. bottom: 45/393
  53630. },
  53631. form: "anthro"
  53632. },
  53633. feralSide: {
  53634. height: math.unit(870, "cm"),
  53635. weight: math.unit(17500, "kg"),
  53636. preyCapacity: math.unit(15, "people"),
  53637. name: "Side",
  53638. image: {
  53639. source: "./media/characters/ash´iika/feral.svg",
  53640. extra: 595/199,
  53641. bottom: 7/602
  53642. },
  53643. form: "feral",
  53644. default: true,
  53645. },
  53646. },
  53647. [
  53648. {
  53649. name: "Normal",
  53650. height: math.unit(556, "cm"),
  53651. default: true,
  53652. form: "anthro"
  53653. },
  53654. {
  53655. name: "Macro",
  53656. height: math.unit(88, "meters"),
  53657. form: "anthro"
  53658. },
  53659. {
  53660. name: "Normal",
  53661. height: math.unit(870, "cm"),
  53662. default: true,
  53663. form: "feral"
  53664. },
  53665. {
  53666. name: "Large",
  53667. height: math.unit(25, "meters"),
  53668. form: "feral"
  53669. },
  53670. ],
  53671. {
  53672. "anthro": {
  53673. name: "Anthro",
  53674. default: true
  53675. },
  53676. "feral": {
  53677. name: "Feral",
  53678. },
  53679. }
  53680. ))
  53681. characterMakers.push(() => makeCharacter(
  53682. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53683. {
  53684. front: {
  53685. height: math.unit(10, "feet"),
  53686. weight: math.unit(800, "lb"),
  53687. name: "Front",
  53688. image: {
  53689. source: "./media/characters/yen/front.svg",
  53690. extra: 443/411,
  53691. bottom: 6/449
  53692. }
  53693. },
  53694. sleeping: {
  53695. height: math.unit(10, "feet"),
  53696. weight: math.unit(800, "lb"),
  53697. name: "Sleeping",
  53698. image: {
  53699. source: "./media/characters/yen/sleeping.svg",
  53700. extra: 470/422,
  53701. bottom: 0/470
  53702. }
  53703. },
  53704. head: {
  53705. height: math.unit(2.2, "feet"),
  53706. name: "Head",
  53707. image: {
  53708. source: "./media/characters/yen/head.svg"
  53709. }
  53710. },
  53711. headAlt: {
  53712. height: math.unit(2.1, "feet"),
  53713. name: "Head (Alt)",
  53714. image: {
  53715. source: "./media/characters/yen/head-alt.svg"
  53716. }
  53717. },
  53718. },
  53719. [
  53720. {
  53721. name: "Normal",
  53722. height: math.unit(10, "feet"),
  53723. default: true
  53724. },
  53725. ]
  53726. ))
  53727. characterMakers.push(() => makeCharacter(
  53728. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53729. {
  53730. front: {
  53731. height: math.unit(12, "feet"),
  53732. name: "Front",
  53733. image: {
  53734. source: "./media/characters/citra/front.svg",
  53735. extra: 1950/1710,
  53736. bottom: 47/1997
  53737. }
  53738. },
  53739. },
  53740. [
  53741. {
  53742. name: "Normal",
  53743. height: math.unit(12, "feet"),
  53744. default: true
  53745. },
  53746. ]
  53747. ))
  53748. characterMakers.push(() => makeCharacter(
  53749. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53750. {
  53751. side: {
  53752. height: math.unit(7 + 10/12, "feet"),
  53753. name: "Side",
  53754. image: {
  53755. source: "./media/characters/sholstim/side.svg",
  53756. extra: 786/682,
  53757. bottom: 40/826
  53758. }
  53759. },
  53760. },
  53761. [
  53762. {
  53763. name: "Normal",
  53764. height: math.unit(7 + 10/12, "feet"),
  53765. default: true
  53766. },
  53767. ]
  53768. ))
  53769. characterMakers.push(() => makeCharacter(
  53770. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53771. {
  53772. front: {
  53773. height: math.unit(3.10, "meters"),
  53774. name: "Front",
  53775. image: {
  53776. source: "./media/characters/aggyn/front.svg",
  53777. extra: 1188/963,
  53778. bottom: 24/1212
  53779. }
  53780. },
  53781. },
  53782. [
  53783. {
  53784. name: "Normal",
  53785. height: math.unit(3.10, "meters"),
  53786. default: true
  53787. },
  53788. ]
  53789. ))
  53790. characterMakers.push(() => makeCharacter(
  53791. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53792. {
  53793. front: {
  53794. height: math.unit(7 + 5/12, "feet"),
  53795. weight: math.unit(687, "lb"),
  53796. name: "Front",
  53797. image: {
  53798. source: "./media/characters/alsandair-hergenroether/front.svg",
  53799. extra: 1251/1186,
  53800. bottom: 75/1326
  53801. }
  53802. },
  53803. back: {
  53804. height: math.unit(7 + 5/12, "feet"),
  53805. weight: math.unit(687, "lb"),
  53806. name: "Back",
  53807. image: {
  53808. source: "./media/characters/alsandair-hergenroether/back.svg",
  53809. extra: 1290/1229,
  53810. bottom: 17/1307
  53811. }
  53812. },
  53813. },
  53814. [
  53815. {
  53816. name: "Max Compression",
  53817. height: math.unit(7 + 5/12, "feet"),
  53818. default: true
  53819. },
  53820. {
  53821. name: "\"Normal\"",
  53822. height: math.unit(2, "universes")
  53823. },
  53824. ]
  53825. ))
  53826. characterMakers.push(() => makeCharacter(
  53827. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53828. {
  53829. front: {
  53830. height: math.unit(4 + 1/12, "feet"),
  53831. weight: math.unit(92, "lb"),
  53832. name: "Front",
  53833. image: {
  53834. source: "./media/characters/ie/front.svg",
  53835. extra: 1585/1352,
  53836. bottom: 91/1676
  53837. }
  53838. },
  53839. },
  53840. [
  53841. {
  53842. name: "Normal",
  53843. height: math.unit(4 + 1/12, "feet"),
  53844. default: true
  53845. },
  53846. ]
  53847. ))
  53848. characterMakers.push(() => makeCharacter(
  53849. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53850. {
  53851. anthro: {
  53852. height: math.unit(6, "feet"),
  53853. weight: math.unit(150, "lb"),
  53854. name: "Front",
  53855. image: {
  53856. source: "./media/characters/willow/anthro.svg",
  53857. extra: 1073/986,
  53858. bottom: 34/1107
  53859. },
  53860. form: "anthro",
  53861. default: true
  53862. },
  53863. taur: {
  53864. height: math.unit(6, "feet"),
  53865. weight: math.unit(150, "lb"),
  53866. name: "Side",
  53867. image: {
  53868. source: "./media/characters/willow/taur.svg",
  53869. extra: 647/512,
  53870. bottom: 136/783
  53871. },
  53872. form: "taur",
  53873. default: true
  53874. },
  53875. },
  53876. [
  53877. {
  53878. name: "Humanoid",
  53879. height: math.unit(2.7, "meters"),
  53880. form: "anthro"
  53881. },
  53882. {
  53883. name: "Normal",
  53884. height: math.unit(9, "meters"),
  53885. form: "anthro",
  53886. default: true
  53887. },
  53888. {
  53889. name: "Humanoid",
  53890. height: math.unit(2.1, "meters"),
  53891. form: "taur"
  53892. },
  53893. {
  53894. name: "Normal",
  53895. height: math.unit(7, "meters"),
  53896. form: "taur",
  53897. default: true
  53898. },
  53899. ],
  53900. {
  53901. "anthro": {
  53902. name: "Anthro",
  53903. default: true
  53904. },
  53905. "taur": {
  53906. name: "Taur",
  53907. },
  53908. }
  53909. ))
  53910. characterMakers.push(() => makeCharacter(
  53911. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53912. {
  53913. front: {
  53914. height: math.unit(2 + 5/12, "feet"),
  53915. name: "Front",
  53916. image: {
  53917. source: "./media/characters/kyan/front.svg",
  53918. extra: 460/334,
  53919. bottom: 23/483
  53920. },
  53921. extraAttributes: {
  53922. "toeLength": {
  53923. name: "Toe Length",
  53924. power: 1,
  53925. type: "length",
  53926. base: math.unit(7, "cm")
  53927. },
  53928. "toeclawLength": {
  53929. name: "Toeclaw Length",
  53930. power: 1,
  53931. type: "length",
  53932. base: math.unit(4.7, "cm")
  53933. },
  53934. "earHeight": {
  53935. name: "Ear Height",
  53936. power: 1,
  53937. type: "length",
  53938. base: math.unit(14.1, "cm")
  53939. },
  53940. }
  53941. },
  53942. paws: {
  53943. height: math.unit(0.45, "feet"),
  53944. name: "Paws",
  53945. image: {
  53946. source: "./media/characters/kyan/paws.svg",
  53947. extra: 581/581,
  53948. bottom: 114/695
  53949. }
  53950. },
  53951. },
  53952. [
  53953. {
  53954. name: "Normal",
  53955. height: math.unit(2 + 5/12, "feet"),
  53956. default: true
  53957. },
  53958. ]
  53959. ))
  53960. characterMakers.push(() => makeCharacter(
  53961. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53962. {
  53963. front: {
  53964. height: math.unit(2 + 2/3, "feet"),
  53965. name: "Front",
  53966. image: {
  53967. source: "./media/characters/xazzon/front.svg",
  53968. extra: 1109/984,
  53969. bottom: 42/1151
  53970. }
  53971. },
  53972. back: {
  53973. height: math.unit(2 + 2/3, "feet"),
  53974. name: "Back",
  53975. image: {
  53976. source: "./media/characters/xazzon/back.svg",
  53977. extra: 1095/971,
  53978. bottom: 23/1118
  53979. }
  53980. },
  53981. },
  53982. [
  53983. {
  53984. name: "Normal",
  53985. height: math.unit(2 + 2/3, "feet"),
  53986. default: true
  53987. },
  53988. ]
  53989. ))
  53990. characterMakers.push(() => makeCharacter(
  53991. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53992. {
  53993. dressed: {
  53994. height: math.unit(5 + 7/12, "feet"),
  53995. weight: math.unit(173, "lb"),
  53996. name: "Dressed",
  53997. image: {
  53998. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53999. extra: 3262/2862,
  54000. bottom: 188/3450
  54001. }
  54002. },
  54003. undressed: {
  54004. height: math.unit(5 + 7/12, "feet"),
  54005. weight: math.unit(173, "lb"),
  54006. name: "Undressed",
  54007. image: {
  54008. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54009. extra: 3262/2862,
  54010. bottom: 188/3450
  54011. }
  54012. },
  54013. },
  54014. [
  54015. {
  54016. name: "The void",
  54017. height: math.unit(7.29193e-34, "angstroms")
  54018. },
  54019. {
  54020. name: "Uh-Oh.",
  54021. height: math.unit(5.734e-7, "angstroms")
  54022. },
  54023. {
  54024. name: "Pico",
  54025. height: math.unit(0.876, "angstroms")
  54026. },
  54027. {
  54028. name: "Nano",
  54029. height: math.unit(0.000134200, "mm")
  54030. },
  54031. {
  54032. name: "Micro",
  54033. height: math.unit(0.0673020, "mm")
  54034. },
  54035. {
  54036. name: "Tiny",
  54037. height: math.unit(2.4, "mm")
  54038. },
  54039. {
  54040. name: "Actual Normal",
  54041. height: math.unit(3, "inches"),
  54042. default: true
  54043. },
  54044. {
  54045. name: "Normal",
  54046. height: math.unit(5 + 8/12, "feet")
  54047. },
  54048. {
  54049. name: "Giant",
  54050. height: math.unit(12, "feet")
  54051. },
  54052. {
  54053. name: "City Ruler",
  54054. height: math.unit(270, "meters")
  54055. },
  54056. {
  54057. name: "Giga",
  54058. height: math.unit(1117.6, "km")
  54059. },
  54060. {
  54061. name: "All-Powerful Queen",
  54062. height: math.unit(70.8, "gigameters")
  54063. },
  54064. {
  54065. name: "'Goddess'",
  54066. height: math.unit(600, "yottameters")
  54067. },
  54068. {
  54069. name: "Biggest!",
  54070. height: math.unit(4.23e5, "yottameters")
  54071. },
  54072. ]
  54073. ))
  54074. characterMakers.push(() => makeCharacter(
  54075. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54076. {
  54077. front: {
  54078. height: math.unit(8, "feet"),
  54079. weight: math.unit(300, "lb"),
  54080. name: "Front",
  54081. image: {
  54082. source: "./media/characters/khyla-shadowsong/front.svg",
  54083. extra: 861/798,
  54084. bottom: 32/893
  54085. }
  54086. },
  54087. side: {
  54088. height: math.unit(8, "feet"),
  54089. weight: math.unit(300, "lb"),
  54090. name: "Side",
  54091. image: {
  54092. source: "./media/characters/khyla-shadowsong/side.svg",
  54093. extra: 790/750,
  54094. bottom: 87/877
  54095. }
  54096. },
  54097. back: {
  54098. height: math.unit(8, "feet"),
  54099. weight: math.unit(300, "lb"),
  54100. name: "Back",
  54101. image: {
  54102. source: "./media/characters/khyla-shadowsong/back.svg",
  54103. extra: 855/808,
  54104. bottom: 14/869
  54105. }
  54106. },
  54107. head: {
  54108. height: math.unit(2.7, "feet"),
  54109. name: "Head",
  54110. image: {
  54111. source: "./media/characters/khyla-shadowsong/head.svg"
  54112. }
  54113. },
  54114. },
  54115. [
  54116. {
  54117. name: "Micro",
  54118. height: math.unit(6, "inches")
  54119. },
  54120. {
  54121. name: "Normal",
  54122. height: math.unit(8, "feet"),
  54123. default: true
  54124. },
  54125. ]
  54126. ))
  54127. characterMakers.push(() => makeCharacter(
  54128. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54129. {
  54130. hyperFront: {
  54131. height: math.unit(9 + 4/12, "feet"),
  54132. weight: math.unit(2000, "lb"),
  54133. name: "Front",
  54134. image: {
  54135. source: "./media/characters/tiden/hyper-front.svg",
  54136. extra: 400/382,
  54137. bottom: 6/406
  54138. },
  54139. form: "hyper",
  54140. },
  54141. regularFront: {
  54142. height: math.unit(7 + 10/12, "feet"),
  54143. weight: math.unit(470, "lb"),
  54144. name: "Front",
  54145. image: {
  54146. source: "./media/characters/tiden/regular-front.svg",
  54147. extra: 468/442,
  54148. bottom: 6/474
  54149. },
  54150. form: "regular",
  54151. },
  54152. },
  54153. [
  54154. {
  54155. name: "Normal",
  54156. height: math.unit(9 + 4/12, "feet"),
  54157. default: true,
  54158. form: "hyper"
  54159. },
  54160. {
  54161. name: "Normal",
  54162. height: math.unit(7 + 10/12, "feet"),
  54163. default: true,
  54164. form: "regular"
  54165. },
  54166. ],
  54167. {
  54168. "hyper": {
  54169. name: "Hyper",
  54170. default: true
  54171. },
  54172. "regular": {
  54173. name: "Regular",
  54174. },
  54175. }
  54176. ))
  54177. characterMakers.push(() => makeCharacter(
  54178. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54179. {
  54180. side: {
  54181. height: math.unit(6, "feet"),
  54182. weight: math.unit(150, "lb"),
  54183. name: "Side",
  54184. image: {
  54185. source: "./media/characters/jason-crowe/side.svg",
  54186. extra: 1771/766,
  54187. bottom: 219/1990
  54188. }
  54189. },
  54190. },
  54191. [
  54192. {
  54193. name: "Pocket Gryphon",
  54194. height: math.unit(6, "cm")
  54195. },
  54196. {
  54197. name: "Raven",
  54198. height: math.unit(60, "cm")
  54199. },
  54200. {
  54201. name: "Normal",
  54202. height: math.unit(1, "meter"),
  54203. default: true
  54204. },
  54205. ]
  54206. ))
  54207. characterMakers.push(() => makeCharacter(
  54208. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54209. {
  54210. front: {
  54211. height: math.unit(9 + 6/12, "feet"),
  54212. weight: math.unit(1100, "lb"),
  54213. name: "Front",
  54214. image: {
  54215. source: "./media/characters/django/front.svg",
  54216. extra: 1231/1136,
  54217. bottom: 34/1265
  54218. }
  54219. },
  54220. side: {
  54221. height: math.unit(9 + 6/12, "feet"),
  54222. weight: math.unit(1100, "lb"),
  54223. name: "Side",
  54224. image: {
  54225. source: "./media/characters/django/side.svg",
  54226. extra: 1267/1174,
  54227. bottom: 9/1276
  54228. }
  54229. },
  54230. },
  54231. [
  54232. {
  54233. name: "Normal",
  54234. height: math.unit(9 + 6/12, "feet"),
  54235. default: true
  54236. },
  54237. {
  54238. name: "Macro 1",
  54239. height: math.unit(50, "feet")
  54240. },
  54241. {
  54242. name: "Macro 2",
  54243. height: math.unit(500, "feet")
  54244. },
  54245. {
  54246. name: "Mega Macro",
  54247. height: math.unit(5300, "feet")
  54248. },
  54249. ]
  54250. ))
  54251. characterMakers.push(() => makeCharacter(
  54252. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54253. {
  54254. frontSfw: {
  54255. height: math.unit(120, "cm"),
  54256. weight: math.unit(15, "kg"),
  54257. name: "Front (SFW)",
  54258. image: {
  54259. source: "./media/characters/eri/front-sfw.svg",
  54260. extra: 1014/939,
  54261. bottom: 37/1051
  54262. },
  54263. form: "moth",
  54264. },
  54265. frontNsfw: {
  54266. height: math.unit(120, "cm"),
  54267. weight: math.unit(15, "kg"),
  54268. name: "Front (NSFW)",
  54269. image: {
  54270. source: "./media/characters/eri/front-nsfw.svg",
  54271. extra: 1014/939,
  54272. bottom: 37/1051
  54273. },
  54274. form: "moth",
  54275. default: true
  54276. },
  54277. egg: {
  54278. height: math.unit(10, "cm"),
  54279. name: "Egg",
  54280. image: {
  54281. source: "./media/characters/eri/egg.svg"
  54282. },
  54283. form: "egg",
  54284. default: true
  54285. },
  54286. },
  54287. [
  54288. {
  54289. name: "Normal",
  54290. height: math.unit(120, "cm"),
  54291. default: true,
  54292. form: "moth"
  54293. },
  54294. {
  54295. name: "Normal",
  54296. height: math.unit(10, "cm"),
  54297. default: true,
  54298. form: "egg"
  54299. },
  54300. ],
  54301. {
  54302. "moth": {
  54303. name: "Moth",
  54304. default: true
  54305. },
  54306. "egg": {
  54307. name: "Egg",
  54308. },
  54309. }
  54310. ))
  54311. characterMakers.push(() => makeCharacter(
  54312. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54313. {
  54314. front: {
  54315. height: math.unit(200, "feet"),
  54316. name: "Front",
  54317. image: {
  54318. source: "./media/characters/bishop-dowser/front.svg",
  54319. extra: 933/868,
  54320. bottom: 106/1039
  54321. }
  54322. },
  54323. },
  54324. [
  54325. {
  54326. name: "Giant",
  54327. height: math.unit(200, "feet"),
  54328. default: true
  54329. },
  54330. ]
  54331. ))
  54332. characterMakers.push(() => makeCharacter(
  54333. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54334. {
  54335. front: {
  54336. height: math.unit(2, "meters"),
  54337. preyCapacity: math.unit(3, "people"),
  54338. name: "Front",
  54339. image: {
  54340. source: "./media/characters/fryra/front.svg",
  54341. extra: 1025/948,
  54342. bottom: 30/1055
  54343. },
  54344. extraAttributes: {
  54345. "breastVolume": {
  54346. name: "Breast Volume",
  54347. power: 3,
  54348. type: "volume",
  54349. base: math.unit(8, "liters")
  54350. },
  54351. }
  54352. },
  54353. back: {
  54354. height: math.unit(2, "meters"),
  54355. preyCapacity: math.unit(3, "people"),
  54356. name: "Back",
  54357. image: {
  54358. source: "./media/characters/fryra/back.svg",
  54359. extra: 993/938,
  54360. bottom: 38/1031
  54361. },
  54362. extraAttributes: {
  54363. "breastVolume": {
  54364. name: "Breast Volume",
  54365. power: 3,
  54366. type: "volume",
  54367. base: math.unit(8, "liters")
  54368. },
  54369. }
  54370. },
  54371. head: {
  54372. height: math.unit(1.33, "feet"),
  54373. name: "Head",
  54374. image: {
  54375. source: "./media/characters/fryra/head.svg"
  54376. }
  54377. },
  54378. maw: {
  54379. height: math.unit(0.56, "feet"),
  54380. name: "Maw",
  54381. image: {
  54382. source: "./media/characters/fryra/maw.svg"
  54383. }
  54384. },
  54385. },
  54386. [
  54387. {
  54388. name: "Micro",
  54389. height: math.unit(5, "cm")
  54390. },
  54391. {
  54392. name: "Normal",
  54393. height: math.unit(2, "meters"),
  54394. default: true
  54395. },
  54396. {
  54397. name: "Small Macro",
  54398. height: math.unit(8, "meters")
  54399. },
  54400. {
  54401. name: "Macro",
  54402. height: math.unit(50, "meters")
  54403. },
  54404. {
  54405. name: "Megamacro",
  54406. height: math.unit(1, "km")
  54407. },
  54408. {
  54409. name: "Planetary",
  54410. height: math.unit(300000, "km")
  54411. },
  54412. {
  54413. name: "Universal",
  54414. height: math.unit(250, "lightyears")
  54415. },
  54416. {
  54417. name: "Fabric of Reality",
  54418. height: math.unit(1000, "multiverses")
  54419. },
  54420. ]
  54421. ))
  54422. characterMakers.push(() => makeCharacter(
  54423. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54424. {
  54425. frontDressed: {
  54426. height: math.unit(6 + 2/12, "feet"),
  54427. name: "Front (Dressed)",
  54428. image: {
  54429. source: "./media/characters/fiera/front-dressed.svg",
  54430. extra: 1883/1793,
  54431. bottom: 70/1953
  54432. }
  54433. },
  54434. backDressed: {
  54435. height: math.unit(6 + 2/12, "feet"),
  54436. name: "Back (Dressed)",
  54437. image: {
  54438. source: "./media/characters/fiera/back-dressed.svg",
  54439. extra: 1847/1780,
  54440. bottom: 70/1917
  54441. }
  54442. },
  54443. frontNude: {
  54444. height: math.unit(6 + 2/12, "feet"),
  54445. name: "Front (Nude)",
  54446. image: {
  54447. source: "./media/characters/fiera/front-nude.svg",
  54448. extra: 1875/1785,
  54449. bottom: 66/1941
  54450. }
  54451. },
  54452. backNude: {
  54453. height: math.unit(6 + 2/12, "feet"),
  54454. name: "Back (Nude)",
  54455. image: {
  54456. source: "./media/characters/fiera/back-nude.svg",
  54457. extra: 1855/1788,
  54458. bottom: 44/1899
  54459. }
  54460. },
  54461. maw: {
  54462. height: math.unit(1.3, "feet"),
  54463. name: "Maw",
  54464. image: {
  54465. source: "./media/characters/fiera/maw.svg"
  54466. }
  54467. },
  54468. paw: {
  54469. height: math.unit(1, "feet"),
  54470. name: "Paw",
  54471. image: {
  54472. source: "./media/characters/fiera/paw.svg"
  54473. }
  54474. },
  54475. shoe: {
  54476. height: math.unit(1.05, "feet"),
  54477. name: "Shoe",
  54478. image: {
  54479. source: "./media/characters/fiera/shoe.svg"
  54480. }
  54481. },
  54482. },
  54483. [
  54484. {
  54485. name: "Normal",
  54486. height: math.unit(6 + 2/12, "feet"),
  54487. default: true
  54488. },
  54489. {
  54490. name: "Size Difference",
  54491. height: math.unit(13, "feet")
  54492. },
  54493. {
  54494. name: "Macro",
  54495. height: math.unit(60, "feet")
  54496. },
  54497. {
  54498. name: "Mega Macro",
  54499. height: math.unit(200, "feet")
  54500. },
  54501. ]
  54502. ))
  54503. characterMakers.push(() => makeCharacter(
  54504. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54505. {
  54506. back: {
  54507. height: math.unit(6, "feet"),
  54508. name: "Back",
  54509. image: {
  54510. source: "./media/characters/flare/back.svg",
  54511. extra: 1883/1765,
  54512. bottom: 32/1915
  54513. }
  54514. },
  54515. },
  54516. [
  54517. {
  54518. name: "Normal",
  54519. height: math.unit(6 + 2/12, "feet"),
  54520. default: true
  54521. },
  54522. {
  54523. name: "Size Difference",
  54524. height: math.unit(13, "feet")
  54525. },
  54526. {
  54527. name: "Macro",
  54528. height: math.unit(60, "feet")
  54529. },
  54530. {
  54531. name: "Macro 2",
  54532. height: math.unit(100, "feet")
  54533. },
  54534. {
  54535. name: "Mega Macro",
  54536. height: math.unit(200, "feet")
  54537. },
  54538. ]
  54539. ))
  54540. characterMakers.push(() => makeCharacter(
  54541. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54542. {
  54543. front: {
  54544. height: math.unit(2.2, "m"),
  54545. weight: math.unit(300, "kg"),
  54546. name: "Front",
  54547. image: {
  54548. source: "./media/characters/hanna/front.svg",
  54549. extra: 1696/1502,
  54550. bottom: 206/1902
  54551. }
  54552. },
  54553. },
  54554. [
  54555. {
  54556. name: "Humanoid",
  54557. height: math.unit(2.2, "meters")
  54558. },
  54559. {
  54560. name: "Normal",
  54561. height: math.unit(4.8, "meters"),
  54562. default: true
  54563. },
  54564. ]
  54565. ))
  54566. characterMakers.push(() => makeCharacter(
  54567. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54568. {
  54569. front: {
  54570. height: math.unit(2.8, "meters"),
  54571. name: "Front",
  54572. image: {
  54573. source: "./media/characters/argo/front.svg",
  54574. extra: 731/518,
  54575. bottom: 84/815
  54576. }
  54577. },
  54578. },
  54579. [
  54580. {
  54581. name: "Normal",
  54582. height: math.unit(3, "meters"),
  54583. default: true
  54584. },
  54585. ]
  54586. ))
  54587. characterMakers.push(() => makeCharacter(
  54588. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54589. {
  54590. side: {
  54591. height: math.unit(3.8, "meters"),
  54592. name: "Side",
  54593. image: {
  54594. source: "./media/characters/sybil/side.svg",
  54595. extra: 382/361,
  54596. bottom: 25/407
  54597. }
  54598. },
  54599. },
  54600. [
  54601. {
  54602. name: "Normal",
  54603. height: math.unit(3.8, "meters"),
  54604. default: true
  54605. },
  54606. ]
  54607. ))
  54608. characterMakers.push(() => makeCharacter(
  54609. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54610. {
  54611. side: {
  54612. height: math.unit(6, "meters"),
  54613. name: "Side",
  54614. image: {
  54615. source: "./media/characters/plum/side.svg",
  54616. extra: 858/755,
  54617. bottom: 45/903
  54618. },
  54619. form: "taur",
  54620. default: true
  54621. },
  54622. back: {
  54623. height: math.unit(6.3, "meters"),
  54624. name: "Back",
  54625. image: {
  54626. source: "./media/characters/plum/back.svg",
  54627. extra: 887/813,
  54628. bottom: 32/919
  54629. },
  54630. form: "taur",
  54631. },
  54632. feral: {
  54633. height: math.unit(5.5, "meter"),
  54634. name: "Front",
  54635. image: {
  54636. source: "./media/characters/plum/feral.svg",
  54637. extra: 568/403,
  54638. bottom: 51/619
  54639. },
  54640. form: "feral",
  54641. default: true
  54642. },
  54643. head: {
  54644. height: math.unit(1.46, "meter"),
  54645. name: "Head",
  54646. image: {
  54647. source: "./media/characters/plum/head.svg"
  54648. },
  54649. form: "taur"
  54650. },
  54651. tailTop: {
  54652. height: math.unit(5.6, "meter"),
  54653. name: "Tail (Top)",
  54654. image: {
  54655. source: "./media/characters/plum/tail-top.svg"
  54656. },
  54657. form: "taur",
  54658. },
  54659. tailBottom: {
  54660. height: math.unit(5.6, "meter"),
  54661. name: "Tail (Bottom)",
  54662. image: {
  54663. source: "./media/characters/plum/tail-bottom.svg"
  54664. },
  54665. form: "taur",
  54666. },
  54667. feralHead: {
  54668. height: math.unit(2.56549521, "meter"),
  54669. name: "Head",
  54670. image: {
  54671. source: "./media/characters/plum/head.svg"
  54672. },
  54673. form: "feral"
  54674. },
  54675. feralTailTop: {
  54676. height: math.unit(5.44728435, "meter"),
  54677. name: "Tail (Top)",
  54678. image: {
  54679. source: "./media/characters/plum/tail-top.svg"
  54680. },
  54681. form: "feral",
  54682. },
  54683. feralTailBottom: {
  54684. height: math.unit(5.44728435, "meter"),
  54685. name: "Tail (Bottom)",
  54686. image: {
  54687. source: "./media/characters/plum/tail-bottom.svg"
  54688. },
  54689. form: "feral",
  54690. },
  54691. },
  54692. [
  54693. {
  54694. name: "Normal",
  54695. height: math.unit(6, "meters"),
  54696. default: true,
  54697. form: "taur"
  54698. },
  54699. {
  54700. name: "Normal",
  54701. height: math.unit(5.5, "meters"),
  54702. default: true,
  54703. form: "feral"
  54704. },
  54705. ],
  54706. {
  54707. "taur": {
  54708. name: "Taur",
  54709. default: true
  54710. },
  54711. "feral": {
  54712. name: "Feral",
  54713. },
  54714. }
  54715. ))
  54716. characterMakers.push(() => makeCharacter(
  54717. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54718. {
  54719. front: {
  54720. height: math.unit(6, "feet"),
  54721. weight: math.unit(115, "lb"),
  54722. name: "Front",
  54723. image: {
  54724. source: "./media/characters/celeste-kitsune/front.svg",
  54725. extra: 393/366,
  54726. bottom: 7/400
  54727. }
  54728. },
  54729. side: {
  54730. height: math.unit(6, "feet"),
  54731. weight: math.unit(115, "lb"),
  54732. name: "Side",
  54733. image: {
  54734. source: "./media/characters/celeste-kitsune/side.svg",
  54735. extra: 818/765,
  54736. bottom: 40/858
  54737. }
  54738. },
  54739. },
  54740. [
  54741. {
  54742. name: "Megamacro",
  54743. height: math.unit(1500, "miles"),
  54744. default: true
  54745. },
  54746. ]
  54747. ))
  54748. characterMakers.push(() => makeCharacter(
  54749. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54750. {
  54751. front: {
  54752. height: math.unit(8, "meters"),
  54753. name: "Front",
  54754. image: {
  54755. source: "./media/characters/io/front.svg",
  54756. extra: 865/722,
  54757. bottom: 58/923
  54758. }
  54759. },
  54760. back: {
  54761. height: math.unit(8, "meters"),
  54762. name: "Back",
  54763. image: {
  54764. source: "./media/characters/io/back.svg",
  54765. extra: 920/776,
  54766. bottom: 42/962
  54767. }
  54768. },
  54769. head: {
  54770. height: math.unit(5.09, "meters"),
  54771. name: "Head",
  54772. image: {
  54773. source: "./media/characters/io/head.svg"
  54774. }
  54775. },
  54776. hand: {
  54777. height: math.unit(1.6, "meters"),
  54778. name: "Hand",
  54779. image: {
  54780. source: "./media/characters/io/hand.svg"
  54781. }
  54782. },
  54783. foot: {
  54784. height: math.unit(2.4, "meters"),
  54785. name: "Foot",
  54786. image: {
  54787. source: "./media/characters/io/foot.svg"
  54788. }
  54789. },
  54790. },
  54791. [
  54792. {
  54793. name: "Normal",
  54794. height: math.unit(8, "meters"),
  54795. default: true
  54796. },
  54797. ]
  54798. ))
  54799. characterMakers.push(() => makeCharacter(
  54800. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54801. {
  54802. side: {
  54803. height: math.unit(6 + 3/12, "feet"),
  54804. weight: math.unit(225, "lb"),
  54805. name: "Side",
  54806. image: {
  54807. source: "./media/characters/silas/side.svg",
  54808. extra: 703/653,
  54809. bottom: 23/726
  54810. },
  54811. extraAttributes: {
  54812. "pawLength": {
  54813. name: "Paw Length",
  54814. power: 1,
  54815. type: "length",
  54816. base: math.unit(12, "inches")
  54817. },
  54818. "pawWidth": {
  54819. name: "Paw Width",
  54820. power: 1,
  54821. type: "length",
  54822. base: math.unit(4.5, "inches")
  54823. },
  54824. "pawArea": {
  54825. name: "Paw Area",
  54826. power: 2,
  54827. type: "area",
  54828. base: math.unit(12 * 4.5, "inches^2")
  54829. },
  54830. }
  54831. },
  54832. },
  54833. [
  54834. {
  54835. name: "Normal",
  54836. height: math.unit(6 + 3/12, "feet"),
  54837. default: true
  54838. },
  54839. ]
  54840. ))
  54841. characterMakers.push(() => makeCharacter(
  54842. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54843. {
  54844. back: {
  54845. height: math.unit(1.6, "meters"),
  54846. weight: math.unit(150, "lb"),
  54847. name: "Back",
  54848. image: {
  54849. source: "./media/characters/zari/back.svg",
  54850. extra: 424/411,
  54851. bottom: 32/456
  54852. },
  54853. extraAttributes: {
  54854. "bladderCapacity": {
  54855. name: "Bladder Size",
  54856. power: 3,
  54857. type: "volume",
  54858. base: math.unit(500, "mL")
  54859. },
  54860. "bladderFlow": {
  54861. name: "Flow Rate",
  54862. power: 3,
  54863. type: "volume",
  54864. base: math.unit(25, "mL")
  54865. },
  54866. }
  54867. },
  54868. },
  54869. [
  54870. {
  54871. name: "Normal",
  54872. height: math.unit(1.6, "meters"),
  54873. default: true
  54874. },
  54875. ]
  54876. ))
  54877. characterMakers.push(() => makeCharacter(
  54878. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54879. {
  54880. front: {
  54881. height: math.unit(25, "feet"),
  54882. weight: math.unit(5, "tons"),
  54883. name: "Front",
  54884. image: {
  54885. source: "./media/characters/charlie-human/front.svg",
  54886. extra: 1870/1740,
  54887. bottom: 102/1972
  54888. },
  54889. extraAttributes: {
  54890. "dickLength": {
  54891. name: "Dick Length",
  54892. power: 1,
  54893. type: "length",
  54894. base: math.unit(9, "feet")
  54895. },
  54896. }
  54897. },
  54898. back: {
  54899. height: math.unit(25, "feet"),
  54900. weight: math.unit(5, "tons"),
  54901. name: "Back",
  54902. image: {
  54903. source: "./media/characters/charlie-human/back.svg",
  54904. extra: 1858/1733,
  54905. bottom: 105/1963
  54906. },
  54907. extraAttributes: {
  54908. "dickLength": {
  54909. name: "Dick Length",
  54910. power: 1,
  54911. type: "length",
  54912. base: math.unit(9, "feet")
  54913. },
  54914. }
  54915. },
  54916. },
  54917. [
  54918. {
  54919. name: "\"Normal\"",
  54920. height: math.unit(6 + 4/12, "feet")
  54921. },
  54922. {
  54923. name: "Big",
  54924. height: math.unit(25, "feet"),
  54925. default: true
  54926. },
  54927. ]
  54928. ))
  54929. characterMakers.push(() => makeCharacter(
  54930. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54931. {
  54932. front: {
  54933. height: math.unit(6 + 4/12, "feet"),
  54934. weight: math.unit(320, "lb"),
  54935. name: "Front",
  54936. image: {
  54937. source: "./media/characters/ookitsu/front.svg",
  54938. extra: 1160/976,
  54939. bottom: 38/1198
  54940. }
  54941. },
  54942. frontNsfw: {
  54943. height: math.unit(6 + 4/12, "feet"),
  54944. weight: math.unit(320, "lb"),
  54945. name: "Front (NSFW)",
  54946. image: {
  54947. source: "./media/characters/ookitsu/front-nsfw.svg",
  54948. extra: 1160/976,
  54949. bottom: 38/1198
  54950. }
  54951. },
  54952. back: {
  54953. height: math.unit(6 + 4/12, "feet"),
  54954. weight: math.unit(320, "lb"),
  54955. name: "Back",
  54956. image: {
  54957. source: "./media/characters/ookitsu/back.svg",
  54958. extra: 1030/975,
  54959. bottom: 70/1100
  54960. }
  54961. },
  54962. head: {
  54963. height: math.unit(1.79, "feet"),
  54964. name: "Head",
  54965. image: {
  54966. source: "./media/characters/ookitsu/head.svg"
  54967. }
  54968. },
  54969. hand: {
  54970. height: math.unit(0.92, "feet"),
  54971. name: "Hand",
  54972. image: {
  54973. source: "./media/characters/ookitsu/hand.svg"
  54974. }
  54975. },
  54976. tails: {
  54977. height: math.unit(3.3, "feet"),
  54978. name: "Tails",
  54979. image: {
  54980. source: "./media/characters/ookitsu/tails.svg"
  54981. }
  54982. },
  54983. dick: {
  54984. height: math.unit(1.10833, "feet"),
  54985. name: "Dick",
  54986. image: {
  54987. source: "./media/characters/ookitsu/dick.svg"
  54988. }
  54989. },
  54990. },
  54991. [
  54992. {
  54993. name: "Normal",
  54994. height: math.unit(6 + 4/12, "feet"),
  54995. default: true
  54996. },
  54997. {
  54998. name: "Macro",
  54999. height: math.unit(30, "feet")
  55000. },
  55001. ]
  55002. ))
  55003. characterMakers.push(() => makeCharacter(
  55004. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55005. {
  55006. anthroFront: {
  55007. height: math.unit(6, "feet"),
  55008. weight: math.unit(250, "lb"),
  55009. name: "Front",
  55010. image: {
  55011. source: "./media/characters/jhusky/anthro-front.svg",
  55012. extra: 474/439,
  55013. bottom: 7/481
  55014. },
  55015. form: "anthro",
  55016. default: true
  55017. },
  55018. taurSideSfw: {
  55019. height: math.unit(6 + 4/12, "feet"),
  55020. weight: math.unit(500, "lb"),
  55021. name: "Side (SFW)",
  55022. image: {
  55023. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55024. extra: 1741/1629,
  55025. bottom: 196/1937
  55026. },
  55027. form: "taur",
  55028. default: true
  55029. },
  55030. taurSideNsfw: {
  55031. height: math.unit(6 + 4/12, "feet"),
  55032. weight: math.unit(500, "lb"),
  55033. name: "Taur (NSFW)",
  55034. image: {
  55035. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55036. extra: 1741/1629,
  55037. bottom: 196/1937
  55038. },
  55039. form: "taur",
  55040. },
  55041. },
  55042. [
  55043. {
  55044. name: "Huge",
  55045. height: math.unit(500, "feet"),
  55046. form: "anthro"
  55047. },
  55048. {
  55049. name: "Macro",
  55050. height: math.unit(1000, "feet"),
  55051. default: true,
  55052. form: "anthro"
  55053. },
  55054. {
  55055. name: "Megamacro",
  55056. height: math.unit(10000, "feet"),
  55057. form: "anthro"
  55058. },
  55059. {
  55060. name: "Huge",
  55061. height: math.unit(528, "feet"),
  55062. form: "taur"
  55063. },
  55064. {
  55065. name: "Macro",
  55066. height: math.unit(1056, "feet"),
  55067. default: true,
  55068. form: "taur"
  55069. },
  55070. {
  55071. name: "Megamacro",
  55072. height: math.unit(10556, "feet"),
  55073. form: "taur"
  55074. },
  55075. ],
  55076. {
  55077. "anthro": {
  55078. name: "Anthro",
  55079. default: true
  55080. },
  55081. "taur": {
  55082. name: "Taur",
  55083. },
  55084. }
  55085. ))
  55086. characterMakers.push(() => makeCharacter(
  55087. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55088. {
  55089. front: {
  55090. height: math.unit(8, "feet"),
  55091. weight: math.unit(500, "lb"),
  55092. name: "Front",
  55093. image: {
  55094. source: "./media/characters/armail/front.svg",
  55095. extra: 1753/1669,
  55096. bottom: 155/1908
  55097. }
  55098. },
  55099. back: {
  55100. height: math.unit(8, "feet"),
  55101. weight: math.unit(500, "lb"),
  55102. name: "Back",
  55103. image: {
  55104. source: "./media/characters/armail/back.svg",
  55105. extra: 1872/1803,
  55106. bottom: 63/1935
  55107. }
  55108. },
  55109. },
  55110. [
  55111. {
  55112. name: "Micro",
  55113. height: math.unit(0.25, "feet")
  55114. },
  55115. {
  55116. name: "Normal",
  55117. height: math.unit(8, "feet"),
  55118. default: true
  55119. },
  55120. {
  55121. name: "Mini-macro",
  55122. height: math.unit(30, "feet")
  55123. },
  55124. {
  55125. name: "Macro",
  55126. height: math.unit(400, "feet")
  55127. },
  55128. {
  55129. name: "Mega-macro",
  55130. height: math.unit(6000, "feet")
  55131. },
  55132. ]
  55133. ))
  55134. characterMakers.push(() => makeCharacter(
  55135. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55136. {
  55137. front: {
  55138. height: math.unit(6 + 7/12, "feet"),
  55139. weight: math.unit(210, "lb"),
  55140. name: "Front",
  55141. image: {
  55142. source: "./media/characters/wilfred-t-buxton/front.svg",
  55143. extra: 1068/882,
  55144. bottom: 28/1096
  55145. }
  55146. },
  55147. },
  55148. [
  55149. {
  55150. name: "Normal",
  55151. height: math.unit(6 + 7/12, "feet"),
  55152. default: true
  55153. },
  55154. ]
  55155. ))
  55156. characterMakers.push(() => makeCharacter(
  55157. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55158. {
  55159. front: {
  55160. height: math.unit(5 + 2/12, "feet"),
  55161. weight: math.unit(120, "lb"),
  55162. name: "Front",
  55163. image: {
  55164. source: "./media/characters/leighton-marrow/front.svg",
  55165. extra: 441/409,
  55166. bottom: 37/478
  55167. }
  55168. },
  55169. },
  55170. [
  55171. {
  55172. name: "Normal",
  55173. height: math.unit(5 + 2/12, "feet"),
  55174. default: true
  55175. },
  55176. ]
  55177. ))
  55178. characterMakers.push(() => makeCharacter(
  55179. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55180. {
  55181. front: {
  55182. height: math.unit(4, "meters"),
  55183. weight: math.unit(1200, "kg"),
  55184. name: "Front",
  55185. image: {
  55186. source: "./media/characters/licos/front.svg",
  55187. extra: 1727/1604,
  55188. bottom: 101/1828
  55189. },
  55190. form: "anthro",
  55191. default: true
  55192. },
  55193. taur_side: {
  55194. height: math.unit(20, "meters"),
  55195. weight: math.unit(1100000, "kg"),
  55196. name: "Side",
  55197. image: {
  55198. source: "./media/characters/licos/taur.svg",
  55199. extra: 1158/1091,
  55200. bottom: 80/1238
  55201. },
  55202. form: "taur",
  55203. default: true
  55204. },
  55205. },
  55206. [
  55207. {
  55208. name: "Normal",
  55209. height: math.unit(4, "meters"),
  55210. default: true,
  55211. form: "anthro"
  55212. },
  55213. {
  55214. name: "Normal",
  55215. height: math.unit(20, "meters"),
  55216. default: true,
  55217. form: "taur"
  55218. },
  55219. ],
  55220. {
  55221. "anthro": {
  55222. name: "Anthro",
  55223. default: true
  55224. },
  55225. "taur": {
  55226. name: "Taur",
  55227. },
  55228. }
  55229. ))
  55230. characterMakers.push(() => makeCharacter(
  55231. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55232. {
  55233. front: {
  55234. height: math.unit(10 + 3/12, "feet"),
  55235. name: "Front",
  55236. image: {
  55237. source: "./media/characters/theo-monkey/front.svg",
  55238. extra: 1735/1658,
  55239. bottom: 73/1808
  55240. }
  55241. },
  55242. back: {
  55243. height: math.unit(10 + 3/12, "feet"),
  55244. name: "Back",
  55245. image: {
  55246. source: "./media/characters/theo-monkey/back.svg",
  55247. extra: 1742/1664,
  55248. bottom: 33/1775
  55249. }
  55250. },
  55251. head: {
  55252. height: math.unit(2.29, "feet"),
  55253. name: "Head",
  55254. image: {
  55255. source: "./media/characters/theo-monkey/head.svg"
  55256. }
  55257. },
  55258. handPalm: {
  55259. height: math.unit(1.73, "feet"),
  55260. name: "Hand (Palm)",
  55261. image: {
  55262. source: "./media/characters/theo-monkey/hand-palm.svg"
  55263. }
  55264. },
  55265. handBack: {
  55266. height: math.unit(1.63, "feet"),
  55267. name: "Hand (Back)",
  55268. image: {
  55269. source: "./media/characters/theo-monkey/hand-back.svg"
  55270. }
  55271. },
  55272. footSole: {
  55273. height: math.unit(2.15, "feet"),
  55274. name: "Foot (Sole)",
  55275. image: {
  55276. source: "./media/characters/theo-monkey/foot-sole.svg"
  55277. }
  55278. },
  55279. footSide: {
  55280. height: math.unit(1.6, "feet"),
  55281. name: "Foot (Side)",
  55282. image: {
  55283. source: "./media/characters/theo-monkey/foot-side.svg"
  55284. }
  55285. },
  55286. },
  55287. [
  55288. {
  55289. name: "Normal",
  55290. height: math.unit(10 + 3/12, "feet"),
  55291. default: true
  55292. },
  55293. ]
  55294. ))
  55295. characterMakers.push(() => makeCharacter(
  55296. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55297. {
  55298. front: {
  55299. height: math.unit(11, "feet"),
  55300. weight: math.unit(3000, "lb"),
  55301. preyCapacity: math.unit(10, "people"),
  55302. name: "Front",
  55303. image: {
  55304. source: "./media/characters/brook/front.svg",
  55305. extra: 909/835,
  55306. bottom: 108/1017
  55307. }
  55308. },
  55309. back: {
  55310. height: math.unit(11, "feet"),
  55311. weight: math.unit(3000, "lb"),
  55312. preyCapacity: math.unit(10, "people"),
  55313. name: "Back",
  55314. image: {
  55315. source: "./media/characters/brook/back.svg",
  55316. extra: 976/916,
  55317. bottom: 34/1010
  55318. }
  55319. },
  55320. backAlt: {
  55321. height: math.unit(11, "feet"),
  55322. weight: math.unit(3000, "lb"),
  55323. preyCapacity: math.unit(10, "people"),
  55324. name: "Back (Alt)",
  55325. image: {
  55326. source: "./media/characters/brook/back-alt.svg",
  55327. extra: 1283/1213,
  55328. bottom: 35/1318
  55329. }
  55330. },
  55331. bust: {
  55332. height: math.unit(9.0859030837, "feet"),
  55333. weight: math.unit(3000, "lb"),
  55334. preyCapacity: math.unit(10, "people"),
  55335. name: "Bust",
  55336. image: {
  55337. source: "./media/characters/brook/bust.svg",
  55338. extra: 2043/1923,
  55339. bottom: 0/2043
  55340. }
  55341. },
  55342. },
  55343. [
  55344. {
  55345. name: "Small",
  55346. height: math.unit(11, "feet"),
  55347. default: true
  55348. },
  55349. {
  55350. name: "Towering",
  55351. height: math.unit(5, "km")
  55352. },
  55353. {
  55354. name: "Enormous",
  55355. height: math.unit(25, "earths")
  55356. },
  55357. ]
  55358. ))
  55359. characterMakers.push(() => makeCharacter(
  55360. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55361. {
  55362. front: {
  55363. height: math.unit(4, "feet"),
  55364. weight: math.unit(150, "lb"),
  55365. name: "Front",
  55366. image: {
  55367. source: "./media/characters/squishi/front.svg",
  55368. extra: 1428/1271,
  55369. bottom: 30/1458
  55370. },
  55371. extraAttributes: {
  55372. "pawSize": {
  55373. name: "Paw Size",
  55374. power: 1,
  55375. type: "length",
  55376. base: math.unit(14, "ShoeSizeMensUS"),
  55377. defaultUnit: "ShoeSizeMensUS"
  55378. },
  55379. }
  55380. },
  55381. side: {
  55382. height: math.unit(4, "feet"),
  55383. weight: math.unit(150, "lb"),
  55384. name: "Side",
  55385. image: {
  55386. source: "./media/characters/squishi/side.svg",
  55387. extra: 1428/1271,
  55388. bottom: 30/1458
  55389. },
  55390. extraAttributes: {
  55391. "pawSize": {
  55392. name: "Paw Size",
  55393. power: 1,
  55394. type: "length",
  55395. base: math.unit(14, "ShoeSizeMensUS"),
  55396. defaultUnit: "ShoeSizeMensUS"
  55397. },
  55398. }
  55399. },
  55400. back: {
  55401. height: math.unit(4, "feet"),
  55402. weight: math.unit(150, "lb"),
  55403. name: "Back",
  55404. image: {
  55405. source: "./media/characters/squishi/back.svg",
  55406. extra: 1428/1271,
  55407. bottom: 30/1458
  55408. },
  55409. extraAttributes: {
  55410. "pawSize": {
  55411. name: "Paw Size",
  55412. power: 1,
  55413. type: "length",
  55414. base: math.unit(14, "ShoeSizeMensUS"),
  55415. defaultUnit: "ShoeSizeMensUS"
  55416. },
  55417. }
  55418. },
  55419. },
  55420. [
  55421. {
  55422. name: "Normal",
  55423. height: math.unit(4, "feet"),
  55424. default: true
  55425. },
  55426. ]
  55427. ))
  55428. characterMakers.push(() => makeCharacter(
  55429. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55430. {
  55431. front: {
  55432. height: math.unit(7 + 8/12, "feet"),
  55433. weight: math.unit(333, "lb"),
  55434. name: "Front",
  55435. image: {
  55436. source: "./media/characters/vincent-vasroc/front.svg",
  55437. extra: 1962/1860,
  55438. bottom: 41/2003
  55439. }
  55440. },
  55441. back: {
  55442. height: math.unit(7 + 8/12, "feet"),
  55443. weight: math.unit(333, "lb"),
  55444. name: "Back",
  55445. image: {
  55446. source: "./media/characters/vincent-vasroc/back.svg",
  55447. extra: 1952/1815,
  55448. bottom: 33/1985
  55449. }
  55450. },
  55451. paw: {
  55452. height: math.unit(1.24, "feet"),
  55453. name: "Paw",
  55454. image: {
  55455. source: "./media/characters/vincent-vasroc/paw.svg"
  55456. }
  55457. },
  55458. ear: {
  55459. height: math.unit(0.75, "feet"),
  55460. name: "Ear",
  55461. image: {
  55462. source: "./media/characters/vincent-vasroc/ear.svg"
  55463. }
  55464. },
  55465. },
  55466. [
  55467. {
  55468. name: "Nano",
  55469. height: math.unit(92, "micrometers")
  55470. },
  55471. {
  55472. name: "Normal",
  55473. height: math.unit(7 + 8/12, "feet"),
  55474. default: true
  55475. },
  55476. ]
  55477. ))
  55478. characterMakers.push(() => makeCharacter(
  55479. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55480. {
  55481. frontNsfw: {
  55482. height: math.unit(40, "feet"),
  55483. weight: math.unit(58, "tons"),
  55484. name: "Front (NSFW)",
  55485. image: {
  55486. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55487. extra: 1265/965,
  55488. bottom: 155/1420
  55489. }
  55490. },
  55491. frontSfw: {
  55492. height: math.unit(40, "feet"),
  55493. weight: math.unit(58, "tons"),
  55494. name: "Front (SFW)",
  55495. image: {
  55496. source: "./media/characters/ru-kahn/front-sfw.svg",
  55497. extra: 1265/965,
  55498. bottom: 80/1345
  55499. }
  55500. },
  55501. },
  55502. [
  55503. {
  55504. name: "Small",
  55505. height: math.unit(4, "feet")
  55506. },
  55507. {
  55508. name: "Normal",
  55509. height: math.unit(40, "feet"),
  55510. default: true
  55511. },
  55512. {
  55513. name: "Macro",
  55514. height: math.unit(400, "feet")
  55515. },
  55516. ]
  55517. ))
  55518. characterMakers.push(() => makeCharacter(
  55519. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55520. {
  55521. frontNude: {
  55522. height: math.unit(6 + 5/12, "feet"),
  55523. name: "Front (Nude)",
  55524. image: {
  55525. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55526. extra: 1369/1366,
  55527. bottom: 68/1437
  55528. }
  55529. },
  55530. frontDressed: {
  55531. height: math.unit(6 + 5/12, "feet"),
  55532. name: "Front (Dressed)",
  55533. image: {
  55534. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55535. extra: 1369/1366,
  55536. bottom: 68/1437
  55537. }
  55538. },
  55539. },
  55540. [
  55541. {
  55542. name: "Normal",
  55543. height: math.unit(6 + 5/12, "feet"),
  55544. default: true
  55545. },
  55546. {
  55547. name: "Maximum",
  55548. height: math.unit(1930, "feet")
  55549. },
  55550. ]
  55551. ))
  55552. characterMakers.push(() => makeCharacter(
  55553. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55554. {
  55555. front: {
  55556. height: math.unit(5 + 6/12, "feet"),
  55557. name: "Front",
  55558. image: {
  55559. source: "./media/characters/kaja/front.svg",
  55560. extra: 1874/1514,
  55561. bottom: 117/1991
  55562. }
  55563. },
  55564. },
  55565. [
  55566. {
  55567. name: "Normal",
  55568. height: math.unit(5 + 6/12, "feet"),
  55569. default: true
  55570. },
  55571. ]
  55572. ))
  55573. characterMakers.push(() => makeCharacter(
  55574. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55575. {
  55576. front: {
  55577. height: math.unit(5 + 9/12, "feet"),
  55578. weight: math.unit(200, "lb"),
  55579. name: "Front",
  55580. image: {
  55581. source: "./media/characters/mark-smith/front.svg",
  55582. extra: 1004/943,
  55583. bottom: 58/1062
  55584. }
  55585. },
  55586. back: {
  55587. height: math.unit(5 + 9/12, "feet"),
  55588. weight: math.unit(200, "lb"),
  55589. name: "Back",
  55590. image: {
  55591. source: "./media/characters/mark-smith/back.svg",
  55592. extra: 1023/953,
  55593. bottom: 24/1047
  55594. }
  55595. },
  55596. head: {
  55597. height: math.unit(1.82, "feet"),
  55598. name: "Head",
  55599. image: {
  55600. source: "./media/characters/mark-smith/head.svg"
  55601. }
  55602. },
  55603. hand: {
  55604. height: math.unit(1.4, "feet"),
  55605. name: "Hand",
  55606. image: {
  55607. source: "./media/characters/mark-smith/hand.svg"
  55608. }
  55609. },
  55610. paw: {
  55611. height: math.unit(1.69, "feet"),
  55612. name: "Paw",
  55613. image: {
  55614. source: "./media/characters/mark-smith/paw.svg"
  55615. }
  55616. },
  55617. },
  55618. [
  55619. {
  55620. name: "Micro",
  55621. height: math.unit(0.25, "inches")
  55622. },
  55623. {
  55624. name: "Normal",
  55625. height: math.unit(5 + 9/12, "feet"),
  55626. default: true
  55627. },
  55628. {
  55629. name: "Macro",
  55630. height: math.unit(500, "feet")
  55631. },
  55632. ]
  55633. ))
  55634. characterMakers.push(() => makeCharacter(
  55635. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55636. {
  55637. frontNude: {
  55638. height: math.unit(6, "feet"),
  55639. name: "Front (Nude)",
  55640. image: {
  55641. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55642. extra: 1384/1321,
  55643. bottom: 57/1441
  55644. }
  55645. },
  55646. frontDressed: {
  55647. height: math.unit(6, "feet"),
  55648. name: "Front (Dressed)",
  55649. image: {
  55650. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55651. extra: 1384/1321,
  55652. bottom: 57/1441
  55653. }
  55654. },
  55655. },
  55656. [
  55657. {
  55658. name: "Normal",
  55659. height: math.unit(6, "feet"),
  55660. default: true
  55661. },
  55662. {
  55663. name: "Maximum",
  55664. height: math.unit(1776, "feet")
  55665. },
  55666. ]
  55667. ))
  55668. characterMakers.push(() => makeCharacter(
  55669. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55670. {
  55671. front: {
  55672. height: math.unit(2 + 4/12, "feet"),
  55673. weight: math.unit(350, "lb"),
  55674. name: "Front",
  55675. image: {
  55676. source: "./media/characters/devos/front.svg",
  55677. extra: 958/852,
  55678. bottom: 143/1101
  55679. }
  55680. },
  55681. },
  55682. [
  55683. {
  55684. name: "Base",
  55685. height: math.unit(2 + 4/12, "feet"),
  55686. default: true
  55687. },
  55688. ]
  55689. ))
  55690. characterMakers.push(() => makeCharacter(
  55691. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55692. {
  55693. front: {
  55694. height: math.unit(9 + 2/12, "feet"),
  55695. name: "Front",
  55696. image: {
  55697. source: "./media/characters/hiveheart/front.svg",
  55698. extra: 394/364,
  55699. bottom: 65/459
  55700. }
  55701. },
  55702. back: {
  55703. height: math.unit(9 + 2/12, "feet"),
  55704. name: "Back",
  55705. image: {
  55706. source: "./media/characters/hiveheart/back.svg",
  55707. extra: 374/357,
  55708. bottom: 63/437
  55709. }
  55710. },
  55711. },
  55712. [
  55713. {
  55714. name: "Base",
  55715. height: math.unit(9 + 2/12, "feet"),
  55716. default: true
  55717. },
  55718. ]
  55719. ))
  55720. characterMakers.push(() => makeCharacter(
  55721. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55722. {
  55723. front: {
  55724. height: math.unit(2.5, "inches"),
  55725. weight: math.unit(0.6, "oz"),
  55726. name: "Front",
  55727. image: {
  55728. source: "./media/characters/bryn/front.svg",
  55729. extra: 1480/1205,
  55730. bottom: 27/1507
  55731. }
  55732. },
  55733. back: {
  55734. height: math.unit(2.5, "inches"),
  55735. weight: math.unit(0.6, "oz"),
  55736. name: "Back",
  55737. image: {
  55738. source: "./media/characters/bryn/back.svg",
  55739. extra: 1475/1201,
  55740. bottom: 39/1514
  55741. }
  55742. },
  55743. foot: {
  55744. height: math.unit(0.4, "inches"),
  55745. name: "Foot",
  55746. image: {
  55747. source: "./media/characters/bryn/foot.svg"
  55748. }
  55749. },
  55750. },
  55751. [
  55752. {
  55753. name: "Normal",
  55754. height: math.unit(2.5, "inches"),
  55755. default: true
  55756. },
  55757. ]
  55758. ))
  55759. characterMakers.push(() => makeCharacter(
  55760. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55761. {
  55762. side: {
  55763. height: math.unit(7, "feet"),
  55764. weight: math.unit(657, "kg"),
  55765. name: "Side",
  55766. image: {
  55767. source: "./media/characters/delta/side.svg",
  55768. extra: 781/212,
  55769. bottom: 7/788
  55770. },
  55771. extraAttributes: {
  55772. "wingspan": {
  55773. name: "Wingspan",
  55774. power: 1,
  55775. type: "length",
  55776. base: math.unit(48, "feet")
  55777. },
  55778. "length": {
  55779. name: "Length",
  55780. power: 1,
  55781. type: "length",
  55782. base: math.unit(21, "feet")
  55783. },
  55784. "pawSize": {
  55785. name: "Paw Size",
  55786. power: 2,
  55787. type: "area",
  55788. base: math.unit(1.5*1.4, "feet^2")
  55789. },
  55790. }
  55791. },
  55792. },
  55793. [
  55794. {
  55795. name: "Normal",
  55796. height: math.unit(6, "feet"),
  55797. default: true
  55798. },
  55799. ]
  55800. ))
  55801. characterMakers.push(() => makeCharacter(
  55802. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55803. {
  55804. front: {
  55805. height: math.unit(6, "feet"),
  55806. name: "Front",
  55807. image: {
  55808. source: "./media/characters/pyrow/front.svg",
  55809. extra: 513/486,
  55810. bottom: 14/527
  55811. }
  55812. },
  55813. frontWing: {
  55814. height: math.unit(6, "feet"),
  55815. name: "Front (Wing)",
  55816. image: {
  55817. source: "./media/characters/pyrow/front-wing.svg",
  55818. extra: 539/383,
  55819. bottom: 20/559
  55820. }
  55821. },
  55822. back: {
  55823. height: math.unit(6, "feet"),
  55824. name: "Back",
  55825. image: {
  55826. source: "./media/characters/pyrow/back.svg",
  55827. extra: 500/473,
  55828. bottom: 9/509
  55829. }
  55830. },
  55831. },
  55832. [
  55833. {
  55834. name: "Normal",
  55835. height: math.unit(6, "feet"),
  55836. default: true
  55837. },
  55838. ]
  55839. ))
  55840. characterMakers.push(() => makeCharacter(
  55841. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55842. {
  55843. front: {
  55844. height: math.unit(5, "meters"),
  55845. weight: math.unit(3, "tonnes"),
  55846. name: "Front",
  55847. image: {
  55848. source: "./media/characters/velikan/front.svg",
  55849. extra: 867/744,
  55850. bottom: 71/938
  55851. },
  55852. extraAttributes: {
  55853. "shoeSize": {
  55854. name: "Shoe Size",
  55855. power: 1,
  55856. type: "length",
  55857. base: math.unit(135, "ShoeSizeUK"),
  55858. defaultUnit: "ShoeSizeUK"
  55859. },
  55860. }
  55861. },
  55862. },
  55863. [
  55864. {
  55865. name: "Normal",
  55866. height: math.unit(5, "meters"),
  55867. default: true
  55868. },
  55869. {
  55870. name: "Macro",
  55871. height: math.unit(1, "km")
  55872. },
  55873. {
  55874. name: "Mega Macro",
  55875. height: math.unit(100, "km")
  55876. },
  55877. {
  55878. name: "Giga Macro",
  55879. height: math.unit(2, "megameters")
  55880. },
  55881. {
  55882. name: "Planetary",
  55883. height: math.unit(22, "megameters")
  55884. },
  55885. {
  55886. name: "Solar",
  55887. height: math.unit(8, "gigameters")
  55888. },
  55889. {
  55890. name: "Cosmic",
  55891. height: math.unit(10, "zettameters")
  55892. },
  55893. {
  55894. name: "Omni",
  55895. height: math.unit(9e260, "multiverses")
  55896. },
  55897. ]
  55898. ))
  55899. characterMakers.push(() => makeCharacter(
  55900. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  55901. {
  55902. front: {
  55903. height: math.unit(4 + 3/12, "feet"),
  55904. weight: math.unit(90, "lb"),
  55905. name: "Front",
  55906. image: {
  55907. source: "./media/characters/sabiki/front.svg",
  55908. extra: 1662/1423,
  55909. bottom: 65/1727
  55910. }
  55911. },
  55912. },
  55913. [
  55914. {
  55915. name: "Normal",
  55916. height: math.unit(4 + 3/12, "feet"),
  55917. default: true
  55918. },
  55919. ]
  55920. ))
  55921. characterMakers.push(() => makeCharacter(
  55922. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  55923. {
  55924. frontSfw: {
  55925. height: math.unit(2, "mm"),
  55926. name: "Front (SFW)",
  55927. image: {
  55928. source: "./media/characters/carmel/front-sfw.svg",
  55929. extra: 1131/1006,
  55930. bottom: 66/1197
  55931. }
  55932. },
  55933. frontNsfw: {
  55934. height: math.unit(2, "mm"),
  55935. name: "Front (NSFW)",
  55936. image: {
  55937. source: "./media/characters/carmel/front-nsfw.svg",
  55938. extra: 1131/1006,
  55939. bottom: 66/1197
  55940. }
  55941. },
  55942. foot: {
  55943. height: math.unit(0.3, "mm"),
  55944. name: "Foot",
  55945. image: {
  55946. source: "./media/characters/carmel/foot.svg"
  55947. }
  55948. },
  55949. tongue: {
  55950. height: math.unit(0.71, "mm"),
  55951. name: "Tongue",
  55952. image: {
  55953. source: "./media/characters/carmel/tongue.svg"
  55954. }
  55955. },
  55956. dick: {
  55957. height: math.unit(0.085, "mm"),
  55958. name: "Dick",
  55959. image: {
  55960. source: "./media/characters/carmel/dick.svg"
  55961. }
  55962. },
  55963. },
  55964. [
  55965. {
  55966. name: "Micro",
  55967. height: math.unit(2, "mm"),
  55968. default: true
  55969. },
  55970. {
  55971. name: "Normal",
  55972. height: math.unit(4 + 8/12, "feet")
  55973. },
  55974. {
  55975. name: "Mega Macro",
  55976. height: math.unit(250, "feet")
  55977. },
  55978. {
  55979. name: "BIGGER",
  55980. height: math.unit(1000, "feet")
  55981. },
  55982. {
  55983. name: "BIGGEST",
  55984. height: math.unit(2, "miles")
  55985. },
  55986. ]
  55987. ))
  55988. characterMakers.push(() => makeCharacter(
  55989. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  55990. {
  55991. front: {
  55992. height: math.unit(6.5, "feet"),
  55993. weight: math.unit(198, "lb"),
  55994. name: "Front",
  55995. image: {
  55996. source: "./media/characters/tamani/anthro.svg",
  55997. extra: 930/890,
  55998. bottom: 34/964
  55999. },
  56000. form: "anthro",
  56001. default: true
  56002. },
  56003. side: {
  56004. height: math.unit(6, "feet"),
  56005. weight: math.unit(198*2, "lb"),
  56006. name: "Side",
  56007. image: {
  56008. source: "./media/characters/tamani/feral.svg",
  56009. extra: 559/519,
  56010. bottom: 43/602
  56011. },
  56012. form: "feral"
  56013. },
  56014. },
  56015. [
  56016. {
  56017. name: "Normal",
  56018. height: math.unit(6.5, "feet"),
  56019. default: true,
  56020. form: "anthro"
  56021. },
  56022. {
  56023. name: "Normal",
  56024. height: math.unit(6, "feet"),
  56025. default: true,
  56026. form: "feral"
  56027. },
  56028. ],
  56029. {
  56030. "anthro": {
  56031. name: "Anthro",
  56032. default: true
  56033. },
  56034. "feral": {
  56035. name: "Feral",
  56036. },
  56037. }
  56038. ))
  56039. characterMakers.push(() => makeCharacter(
  56040. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56041. {
  56042. front: {
  56043. height: math.unit(4 + 1/12, "feet"),
  56044. weight: math.unit(114, "lb"),
  56045. name: "Front",
  56046. image: {
  56047. source: "./media/characters/dex/front.svg",
  56048. extra: 787/680,
  56049. bottom: 18/805
  56050. }
  56051. },
  56052. side: {
  56053. height: math.unit(4 + 1/12, "feet"),
  56054. weight: math.unit(114, "lb"),
  56055. name: "Side",
  56056. image: {
  56057. source: "./media/characters/dex/side.svg",
  56058. extra: 785/680,
  56059. bottom: 12/797
  56060. }
  56061. },
  56062. back: {
  56063. height: math.unit(4 + 1/12, "feet"),
  56064. weight: math.unit(114, "lb"),
  56065. name: "Back",
  56066. image: {
  56067. source: "./media/characters/dex/back.svg",
  56068. extra: 785/681,
  56069. bottom: 17/802
  56070. }
  56071. },
  56072. loungewear: {
  56073. height: math.unit(4 + 1/12, "feet"),
  56074. weight: math.unit(114, "lb"),
  56075. name: "Loungewear",
  56076. image: {
  56077. source: "./media/characters/dex/loungewear.svg",
  56078. extra: 787/680,
  56079. bottom: 18/805
  56080. }
  56081. },
  56082. workout: {
  56083. height: math.unit(4 + 1/12, "feet"),
  56084. weight: math.unit(114, "lb"),
  56085. name: "Workout",
  56086. image: {
  56087. source: "./media/characters/dex/workout.svg",
  56088. extra: 787/680,
  56089. bottom: 18/805
  56090. }
  56091. },
  56092. schoolUniform: {
  56093. height: math.unit(4 + 1/12, "feet"),
  56094. weight: math.unit(114, "lb"),
  56095. name: "School-uniform",
  56096. image: {
  56097. source: "./media/characters/dex/school-uniform.svg",
  56098. extra: 787/680,
  56099. bottom: 18/805
  56100. }
  56101. },
  56102. maw: {
  56103. height: math.unit(0.55, "feet"),
  56104. name: "Maw",
  56105. image: {
  56106. source: "./media/characters/dex/maw.svg"
  56107. }
  56108. },
  56109. paw: {
  56110. height: math.unit(0.87, "feet"),
  56111. name: "Paw",
  56112. image: {
  56113. source: "./media/characters/dex/paw.svg"
  56114. }
  56115. },
  56116. bust: {
  56117. height: math.unit(1.67, "feet"),
  56118. name: "Bust",
  56119. image: {
  56120. source: "./media/characters/dex/bust.svg"
  56121. }
  56122. },
  56123. },
  56124. [
  56125. {
  56126. name: "Normal",
  56127. height: math.unit(4 + 1/12, "feet"),
  56128. default: true
  56129. },
  56130. ]
  56131. ))
  56132. characterMakers.push(() => makeCharacter(
  56133. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56134. {
  56135. front: {
  56136. height: math.unit(4 + 3/12, "feet"),
  56137. weight: math.unit(60, "lb"),
  56138. name: "Front",
  56139. image: {
  56140. source: "./media/characters/silke/front.svg",
  56141. extra: 1334/1122,
  56142. bottom: 21/1355
  56143. }
  56144. },
  56145. back: {
  56146. height: math.unit(4 + 3/12, "feet"),
  56147. weight: math.unit(60, "lb"),
  56148. name: "Back",
  56149. image: {
  56150. source: "./media/characters/silke/back.svg",
  56151. extra: 1328/1092,
  56152. bottom: 16/1344
  56153. }
  56154. },
  56155. dressed: {
  56156. height: math.unit(4 + 3/12, "feet"),
  56157. weight: math.unit(60, "lb"),
  56158. name: "Dressed",
  56159. image: {
  56160. source: "./media/characters/silke/dressed.svg",
  56161. extra: 1334/1122,
  56162. bottom: 43/1377
  56163. }
  56164. },
  56165. },
  56166. [
  56167. {
  56168. name: "Normal",
  56169. height: math.unit(4 + 3/12, "feet"),
  56170. default: true
  56171. },
  56172. ]
  56173. ))
  56174. characterMakers.push(() => makeCharacter(
  56175. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56176. {
  56177. front: {
  56178. height: math.unit(1.58, "meters"),
  56179. weight: math.unit(47, "kg"),
  56180. name: "Front",
  56181. image: {
  56182. source: "./media/characters/wireshark/front.svg",
  56183. extra: 883/838,
  56184. bottom: 66/949
  56185. }
  56186. },
  56187. },
  56188. [
  56189. {
  56190. name: "Normal",
  56191. height: math.unit(1.58, "meters"),
  56192. default: true
  56193. },
  56194. ]
  56195. ))
  56196. characterMakers.push(() => makeCharacter(
  56197. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56198. {
  56199. front: {
  56200. height: math.unit(6, "meters"),
  56201. weight: math.unit(15000, "kg"),
  56202. name: "Front",
  56203. image: {
  56204. source: "./media/characters/gallagher/front.svg",
  56205. extra: 532/493,
  56206. bottom: 0/532
  56207. }
  56208. },
  56209. },
  56210. [
  56211. {
  56212. name: "Normal",
  56213. height: math.unit(6, "meters"),
  56214. default: true
  56215. },
  56216. ]
  56217. ))
  56218. characterMakers.push(() => makeCharacter(
  56219. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56220. {
  56221. front: {
  56222. height: math.unit(2.4, "meters"),
  56223. weight: math.unit(270, "kg"),
  56224. name: "Front",
  56225. image: {
  56226. source: "./media/characters/alice/front.svg",
  56227. extra: 950/900,
  56228. bottom: 36/986
  56229. }
  56230. },
  56231. side: {
  56232. height: math.unit(2.4, "meters"),
  56233. weight: math.unit(270, "kg"),
  56234. name: "Side",
  56235. image: {
  56236. source: "./media/characters/alice/side.svg",
  56237. extra: 921/876,
  56238. bottom: 19/940
  56239. }
  56240. },
  56241. dressed: {
  56242. height: math.unit(2.4, "meters"),
  56243. weight: math.unit(270, "kg"),
  56244. name: "Dressed",
  56245. image: {
  56246. source: "./media/characters/alice/dressed.svg",
  56247. extra: 905/850,
  56248. bottom: 81/986
  56249. }
  56250. },
  56251. fishnet: {
  56252. height: math.unit(2.4, "meters"),
  56253. weight: math.unit(270, "kg"),
  56254. name: "Fishnet",
  56255. image: {
  56256. source: "./media/characters/alice/fishnet.svg",
  56257. extra: 905/850,
  56258. bottom: 81/986
  56259. }
  56260. },
  56261. },
  56262. [
  56263. {
  56264. name: "Normal",
  56265. height: math.unit(2.4, "meters"),
  56266. default: true
  56267. },
  56268. ]
  56269. ))
  56270. characterMakers.push(() => makeCharacter(
  56271. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56272. {
  56273. front: {
  56274. height: math.unit(175.25, "feet"),
  56275. name: "Front",
  56276. image: {
  56277. source: "./media/characters/fio/front.svg",
  56278. extra: 1883/1591,
  56279. bottom: 34/1917
  56280. }
  56281. },
  56282. },
  56283. [
  56284. {
  56285. name: "Normal",
  56286. height: math.unit(175.25, "cm"),
  56287. default: true
  56288. },
  56289. ]
  56290. ))
  56291. characterMakers.push(() => makeCharacter(
  56292. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56293. {
  56294. side: {
  56295. height: math.unit(6, "meters"),
  56296. weight: math.unit(3400, "kg"),
  56297. preyCapacity: math.unit(1700, "liters"),
  56298. name: "Side",
  56299. image: {
  56300. source: "./media/characters/hass/side.svg",
  56301. extra: 1058/997,
  56302. bottom: 177/1235
  56303. }
  56304. },
  56305. feeding: {
  56306. height: math.unit(6*0.63, "meters"),
  56307. weight: math.unit(3400, "kg"),
  56308. preyCapacity: math.unit(1700, "liters"),
  56309. name: "Feeding",
  56310. image: {
  56311. source: "./media/characters/hass/feeding.svg",
  56312. extra: 689/579,
  56313. bottom: 146/835
  56314. }
  56315. },
  56316. guts: {
  56317. height: math.unit(6, "meters"),
  56318. weight: math.unit(3400, "kg"),
  56319. name: "Guts",
  56320. image: {
  56321. source: "./media/characters/hass/guts.svg",
  56322. extra: 1223/1198,
  56323. bottom: 182/1405
  56324. }
  56325. },
  56326. dickFront: {
  56327. height: math.unit(1.4, "meters"),
  56328. name: "Dick (Front)",
  56329. image: {
  56330. source: "./media/characters/hass/dick-front.svg"
  56331. }
  56332. },
  56333. dickSide: {
  56334. height: math.unit(1.3, "meters"),
  56335. name: "Dick (Side)",
  56336. image: {
  56337. source: "./media/characters/hass/dick-side.svg"
  56338. }
  56339. },
  56340. dickBack: {
  56341. height: math.unit(1.4, "meters"),
  56342. name: "Dick (Back)",
  56343. image: {
  56344. source: "./media/characters/hass/dick-back.svg"
  56345. }
  56346. },
  56347. },
  56348. [
  56349. {
  56350. name: "Normal",
  56351. height: math.unit(6, "meters"),
  56352. default: true
  56353. },
  56354. ]
  56355. ))
  56356. characterMakers.push(() => makeCharacter(
  56357. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56358. {
  56359. front: {
  56360. height: math.unit(4, "feet"),
  56361. weight: math.unit(60, "lb"),
  56362. name: "Front",
  56363. image: {
  56364. source: "./media/characters/hickory-finnegan/front.svg",
  56365. extra: 444/411,
  56366. bottom: 10/454
  56367. }
  56368. },
  56369. side: {
  56370. height: math.unit(4, "feet"),
  56371. weight: math.unit(60, "lb"),
  56372. name: "Side",
  56373. image: {
  56374. source: "./media/characters/hickory-finnegan/side.svg",
  56375. extra: 444/411,
  56376. bottom: 10/454
  56377. }
  56378. },
  56379. back: {
  56380. height: math.unit(4, "feet"),
  56381. weight: math.unit(60, "lb"),
  56382. name: "Back",
  56383. image: {
  56384. source: "./media/characters/hickory-finnegan/back.svg",
  56385. extra: 444/411,
  56386. bottom: 10/454
  56387. }
  56388. },
  56389. },
  56390. [
  56391. {
  56392. name: "Normal",
  56393. height: math.unit(4, "feet"),
  56394. default: true
  56395. },
  56396. ]
  56397. ))
  56398. characterMakers.push(() => makeCharacter(
  56399. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56400. {
  56401. snivy_front: {
  56402. height: math.unit(2, "feet"),
  56403. weight: math.unit(17.9, "lb"),
  56404. name: "Front",
  56405. image: {
  56406. source: "./media/characters/robin-phox/snivy-front.svg",
  56407. extra: 569/504,
  56408. bottom: 33/602
  56409. },
  56410. form: "snivy",
  56411. default: true
  56412. },
  56413. snivy_frontNsfw: {
  56414. height: math.unit(2, "feet"),
  56415. weight: math.unit(17.9, "lb"),
  56416. name: "Front (NSFW)",
  56417. image: {
  56418. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56419. extra: 569/504,
  56420. bottom: 33/602
  56421. },
  56422. form: "snivy",
  56423. },
  56424. snivy_back: {
  56425. height: math.unit(2, "feet"),
  56426. weight: math.unit(17.9, "lb"),
  56427. name: "Back",
  56428. image: {
  56429. source: "./media/characters/robin-phox/snivy-back.svg",
  56430. extra: 577/508,
  56431. bottom: 21/598
  56432. },
  56433. form: "snivy",
  56434. },
  56435. snivy_foot: {
  56436. height: math.unit(0.68, "feet"),
  56437. name: "Foot",
  56438. image: {
  56439. source: "./media/characters/robin-phox/snivy-foot.svg"
  56440. },
  56441. form: "snivy",
  56442. },
  56443. snivy_sole: {
  56444. height: math.unit(0.68, "feet"),
  56445. name: "Sole",
  56446. image: {
  56447. source: "./media/characters/robin-phox/snivy-sole.svg"
  56448. },
  56449. form: "snivy",
  56450. },
  56451. yoshi_front: {
  56452. height: math.unit(6, "feet"),
  56453. weight: math.unit(150, "lb"),
  56454. name: "Front",
  56455. image: {
  56456. source: "./media/characters/robin-phox/yoshi-front.svg",
  56457. extra: 890/792,
  56458. bottom: 29/919
  56459. },
  56460. form: "yoshi",
  56461. default: true
  56462. },
  56463. yoshi_frontNsfw: {
  56464. height: math.unit(6, "feet"),
  56465. weight: math.unit(150, "lb"),
  56466. name: "Front (NSFW)",
  56467. image: {
  56468. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56469. extra: 890/792,
  56470. bottom: 29/919
  56471. },
  56472. form: "yoshi",
  56473. },
  56474. yoshi_back: {
  56475. height: math.unit(6, "feet"),
  56476. weight: math.unit(150, "lb"),
  56477. name: "Back",
  56478. image: {
  56479. source: "./media/characters/robin-phox/yoshi-back.svg",
  56480. extra: 890/792,
  56481. bottom: 29/919
  56482. },
  56483. form: "yoshi",
  56484. },
  56485. yoshi_foot: {
  56486. height: math.unit(1.5, "feet"),
  56487. name: "Foot",
  56488. image: {
  56489. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56490. },
  56491. form: "yoshi",
  56492. },
  56493. delphox_front: {
  56494. height: math.unit(4 + 11/12, "feet"),
  56495. weight: math.unit(86, "lb"),
  56496. name: "Front",
  56497. image: {
  56498. source: "./media/characters/robin-phox/delphox-front.svg",
  56499. extra: 1266/1069,
  56500. bottom: 32/1298
  56501. },
  56502. form: "delphox",
  56503. default: true
  56504. },
  56505. delphox_frontNsfw: {
  56506. height: math.unit(4 + 11/12, "feet"),
  56507. weight: math.unit(86, "lb"),
  56508. name: "Front (NSFW)",
  56509. image: {
  56510. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56511. extra: 1266/1069,
  56512. bottom: 32/1298
  56513. },
  56514. form: "delphox",
  56515. },
  56516. delphox_back: {
  56517. height: math.unit(4 + 11/12, "feet"),
  56518. weight: math.unit(86, "lb"),
  56519. name: "Back",
  56520. image: {
  56521. source: "./media/characters/robin-phox/delphox-back.svg",
  56522. extra: 1269/1083,
  56523. bottom: 15/1284
  56524. },
  56525. form: "delphox",
  56526. },
  56527. mienshao_front: {
  56528. height: math.unit(4 + 7/12, "feet"),
  56529. weight: math.unit(78.3, "lb"),
  56530. name: "Front",
  56531. image: {
  56532. source: "./media/characters/robin-phox/mienshao-front.svg",
  56533. extra: 1052/970,
  56534. bottom: 108/1160
  56535. },
  56536. form: "mienshao",
  56537. default: true
  56538. },
  56539. mienshao_frontNsfw: {
  56540. height: math.unit(4 + 7/12, "feet"),
  56541. weight: math.unit(78.3, "lb"),
  56542. name: "Front (NSFW)",
  56543. image: {
  56544. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56545. extra: 1052/970,
  56546. bottom: 108/1160
  56547. },
  56548. form: "mienshao",
  56549. },
  56550. mienshao_back: {
  56551. height: math.unit(4 + 7/12, "feet"),
  56552. weight: math.unit(78.3, "lb"),
  56553. name: "Back",
  56554. image: {
  56555. source: "./media/characters/robin-phox/mienshao-back.svg",
  56556. extra: 1102/982,
  56557. bottom: 32/1134
  56558. },
  56559. form: "mienshao",
  56560. },
  56561. inteleon_front: {
  56562. height: math.unit(6 + 3/12, "feet"),
  56563. weight: math.unit(99.6, "lb"),
  56564. name: "Front",
  56565. image: {
  56566. source: "./media/characters/robin-phox/inteleon-front.svg",
  56567. extra: 910/799,
  56568. bottom: 76/986
  56569. },
  56570. form: "inteleon",
  56571. default: true
  56572. },
  56573. inteleon_frontNsfw: {
  56574. height: math.unit(6 + 3/12, "feet"),
  56575. weight: math.unit(99.6, "lb"),
  56576. name: "Front (NSFW)",
  56577. image: {
  56578. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56579. extra: 910/799,
  56580. bottom: 76/986
  56581. },
  56582. form: "inteleon",
  56583. },
  56584. inteleon_back: {
  56585. height: math.unit(6 + 3/12, "feet"),
  56586. weight: math.unit(99.6, "lb"),
  56587. name: "Back",
  56588. image: {
  56589. source: "./media/characters/robin-phox/inteleon-back.svg",
  56590. extra: 907/796,
  56591. bottom: 25/932
  56592. },
  56593. form: "inteleon",
  56594. },
  56595. reshiram_front: {
  56596. height: math.unit(10 + 6/12, "feet"),
  56597. weight: math.unit(727.5, "lb"),
  56598. name: "Front",
  56599. image: {
  56600. source: "./media/characters/robin-phox/reshiram-front.svg",
  56601. extra: 1198/940,
  56602. bottom: 123/1321
  56603. },
  56604. form: "reshiram",
  56605. },
  56606. reshiram_frontNsfw: {
  56607. height: math.unit(10 + 6/12, "feet"),
  56608. weight: math.unit(727.5, "lb"),
  56609. name: "Front-nsfw",
  56610. image: {
  56611. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56612. extra: 1198/940,
  56613. bottom: 123/1321
  56614. },
  56615. form: "reshiram",
  56616. },
  56617. reshiram_back: {
  56618. height: math.unit(10 + 6/12, "feet"),
  56619. weight: math.unit(727.5, "lb"),
  56620. name: "Back",
  56621. image: {
  56622. source: "./media/characters/robin-phox/reshiram-back.svg",
  56623. extra: 1024/904,
  56624. bottom: 85/1109
  56625. },
  56626. form: "reshiram",
  56627. },
  56628. samurott_front: {
  56629. height: math.unit(8, "feet"),
  56630. weight: math.unit(208.6, "lb"),
  56631. name: "Front",
  56632. image: {
  56633. source: "./media/characters/robin-phox/samurott-front.svg",
  56634. extra: 1048/984,
  56635. bottom: 100/1148
  56636. },
  56637. form: "samurott",
  56638. },
  56639. samurott_frontNsfw: {
  56640. height: math.unit(8, "feet"),
  56641. weight: math.unit(208.6, "lb"),
  56642. name: "Front-nsfw",
  56643. image: {
  56644. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56645. extra: 1048/984,
  56646. bottom: 100/1148
  56647. },
  56648. form: "samurott",
  56649. },
  56650. samurott_back: {
  56651. height: math.unit(8, "feet"),
  56652. weight: math.unit(208.6, "lb"),
  56653. name: "Back",
  56654. image: {
  56655. source: "./media/characters/robin-phox/samurott-back.svg",
  56656. extra: 1110/1042,
  56657. bottom: 12/1122
  56658. },
  56659. form: "samurott",
  56660. },
  56661. samurott_feral: {
  56662. height: math.unit(4 + 11/12, "feet"),
  56663. weight: math.unit(208.6, "lb"),
  56664. name: "Feral",
  56665. image: {
  56666. source: "./media/characters/robin-phox/samurott-feral.svg",
  56667. extra: 766/681,
  56668. bottom: 108/874
  56669. },
  56670. form: "samurott",
  56671. },
  56672. },
  56673. [
  56674. {
  56675. name: "Normal",
  56676. height: math.unit(2, "feet"),
  56677. default: true,
  56678. form: "snivy"
  56679. },
  56680. {
  56681. name: "Normal",
  56682. height: math.unit(6, "feet"),
  56683. default: true,
  56684. form: "yoshi"
  56685. },
  56686. {
  56687. name: "Normal",
  56688. height: math.unit(4 + 11/12, "feet"),
  56689. default: true,
  56690. form: "delphox"
  56691. },
  56692. {
  56693. name: "Normal",
  56694. height: math.unit(4 + 7/12, "feet"),
  56695. default: true,
  56696. form: "mienshao"
  56697. },
  56698. {
  56699. name: "Normal",
  56700. height: math.unit(6 + 3/12, "feet"),
  56701. default: true,
  56702. form: "inteleon"
  56703. },
  56704. {
  56705. name: "Normal",
  56706. height: math.unit(10 + 6/12, "feet"),
  56707. default: true,
  56708. form: "reshiram"
  56709. },
  56710. {
  56711. name: "Normal",
  56712. height: math.unit(8, "feet"),
  56713. default: true,
  56714. form: "samurott"
  56715. },
  56716. {
  56717. name: "Macro",
  56718. height: math.unit(500, "feet"),
  56719. allForms: true
  56720. },
  56721. {
  56722. name: "Mega Macro",
  56723. height: math.unit(10, "earths"),
  56724. allForms: true
  56725. },
  56726. {
  56727. name: "Giga Macro",
  56728. height: math.unit(1, "galaxy"),
  56729. allForms: true
  56730. },
  56731. {
  56732. name: "Godly Macro",
  56733. height: math.unit(1e10, "multiverses"),
  56734. allForms: true
  56735. },
  56736. ],
  56737. {
  56738. "snivy": {
  56739. name: "Snivy",
  56740. default: true
  56741. },
  56742. "yoshi": {
  56743. name: "Yoshi",
  56744. },
  56745. "delphox": {
  56746. name: "Delphox",
  56747. },
  56748. "mienshao": {
  56749. name: "Mienshao",
  56750. },
  56751. "inteleon": {
  56752. name: "Inteleon",
  56753. },
  56754. "reshiram": {
  56755. name: "Reshiram",
  56756. },
  56757. "samurott": {
  56758. name: "Samurott",
  56759. },
  56760. }
  56761. ))
  56762. characterMakers.push(() => makeCharacter(
  56763. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56764. {
  56765. front: {
  56766. height: math.unit(4, "feet"),
  56767. name: "Front",
  56768. image: {
  56769. source: "./media/characters/ash-leung/front.svg",
  56770. extra: 1916/1792,
  56771. bottom: 50/1966
  56772. }
  56773. },
  56774. },
  56775. [
  56776. {
  56777. name: "Atomic",
  56778. height: math.unit(1, "angstrom")
  56779. },
  56780. {
  56781. name: "Microscopic",
  56782. height: math.unit(4000, "angstroms")
  56783. },
  56784. {
  56785. name: "Speck",
  56786. height: math.unit(1, "mm")
  56787. },
  56788. {
  56789. name: "Small",
  56790. height: math.unit(1, "inch")
  56791. },
  56792. {
  56793. name: "Normal",
  56794. height: math.unit(4, "feet"),
  56795. default: true
  56796. },
  56797. ]
  56798. ))
  56799. characterMakers.push(() => makeCharacter(
  56800. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56801. {
  56802. frontDressed: {
  56803. height: math.unit(2.08, "meters"),
  56804. weight: math.unit(175, "lb"),
  56805. name: "Front (Dressed)",
  56806. image: {
  56807. source: "./media/characters/carie/front-dressed.svg",
  56808. extra: 456/417,
  56809. bottom: 7/463
  56810. }
  56811. },
  56812. backDressed: {
  56813. height: math.unit(2.08, "meters"),
  56814. weight: math.unit(175, "lb"),
  56815. name: "Back (Dressed)",
  56816. image: {
  56817. source: "./media/characters/carie/back-dressed.svg",
  56818. extra: 455/414,
  56819. bottom: 11/466
  56820. }
  56821. },
  56822. front: {
  56823. height: math.unit(2, "meters"),
  56824. weight: math.unit(175, "lb"),
  56825. name: "Front",
  56826. image: {
  56827. source: "./media/characters/carie/front.svg",
  56828. extra: 438/399,
  56829. bottom: 12/450
  56830. }
  56831. },
  56832. back: {
  56833. height: math.unit(2, "meters"),
  56834. weight: math.unit(175, "lb"),
  56835. name: "Back",
  56836. image: {
  56837. source: "./media/characters/carie/back.svg",
  56838. extra: 438/397,
  56839. bottom: 7/445
  56840. }
  56841. },
  56842. },
  56843. [
  56844. {
  56845. name: "Normal",
  56846. height: math.unit(2.08, "meters"),
  56847. default: true
  56848. },
  56849. {
  56850. name: "Macro",
  56851. height: math.unit(2.08e3, "meters")
  56852. },
  56853. {
  56854. name: "Mega Macro",
  56855. height: math.unit(2.08e6, "meters")
  56856. },
  56857. {
  56858. name: "Giga Macro",
  56859. height: math.unit(2.08e9, "meters")
  56860. },
  56861. {
  56862. name: "Tera Macro",
  56863. height: math.unit(2.08e12, "meters")
  56864. },
  56865. {
  56866. name: "Peta Macro",
  56867. height: math.unit(2.08e15, "meters")
  56868. },
  56869. {
  56870. name: "Exa Macro",
  56871. height: math.unit(2.08e18, "meters")
  56872. },
  56873. {
  56874. name: "Zetta Macro",
  56875. height: math.unit(2.08e21, "meters")
  56876. },
  56877. {
  56878. name: "Yotta Macro",
  56879. height: math.unit(2.08e24, "meters")
  56880. },
  56881. ]
  56882. ))
  56883. characterMakers.push(() => makeCharacter(
  56884. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  56885. {
  56886. front: {
  56887. height: math.unit(5 + 2/12, "feet"),
  56888. weight: math.unit(120, "lb"),
  56889. name: "Front",
  56890. image: {
  56891. source: "./media/characters/sai-bree/front.svg",
  56892. extra: 1843/1702,
  56893. bottom: 91/1934
  56894. }
  56895. },
  56896. back: {
  56897. height: math.unit(5 + 2/12, "feet"),
  56898. weight: math.unit(120, "lb"),
  56899. name: "Back",
  56900. image: {
  56901. source: "./media/characters/sai-bree/back.svg",
  56902. extra: 1809/1637,
  56903. bottom: 56/1865
  56904. }
  56905. },
  56906. },
  56907. [
  56908. {
  56909. name: "Normal",
  56910. height: math.unit(5 + 2/12, "feet"),
  56911. default: true
  56912. },
  56913. {
  56914. name: "Macro",
  56915. height: math.unit(500, "feet")
  56916. },
  56917. ]
  56918. ))
  56919. characterMakers.push(() => makeCharacter(
  56920. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  56921. {
  56922. side: {
  56923. height: math.unit(0.77, "meters"),
  56924. weight: math.unit(120, "lb"),
  56925. name: "Side",
  56926. image: {
  56927. source: "./media/characters/davwyn/side.svg",
  56928. extra: 1557/1225,
  56929. bottom: 131/1688
  56930. }
  56931. },
  56932. front: {
  56933. height: math.unit(0.835410, "meters"),
  56934. weight: math.unit(120, "lb"),
  56935. name: "Front",
  56936. image: {
  56937. source: "./media/characters/davwyn/front.svg",
  56938. extra: 870/843,
  56939. bottom: 175/1045
  56940. }
  56941. },
  56942. },
  56943. [
  56944. {
  56945. name: "Minidrake",
  56946. height: math.unit(0.77/4, "meters")
  56947. },
  56948. {
  56949. name: "Normal",
  56950. height: math.unit(0.77, "meters"),
  56951. default: true
  56952. },
  56953. ]
  56954. ))
  56955. characterMakers.push(() => makeCharacter(
  56956. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  56957. {
  56958. front: {
  56959. height: math.unit(10 + 3/12, "feet"),
  56960. weight: math.unit(2857, "lb"),
  56961. name: "Front",
  56962. image: {
  56963. source: "./media/characters/balans/front.svg",
  56964. extra: 427/402,
  56965. bottom: 26/453
  56966. }
  56967. },
  56968. side: {
  56969. height: math.unit(10 + 3/12, "feet"),
  56970. weight: math.unit(2857, "lb"),
  56971. name: "Side",
  56972. image: {
  56973. source: "./media/characters/balans/side.svg",
  56974. extra: 397/371,
  56975. bottom: 17/414
  56976. }
  56977. },
  56978. back: {
  56979. height: math.unit(10 + 3/12, "feet"),
  56980. weight: math.unit(2857, "lb"),
  56981. name: "Back",
  56982. image: {
  56983. source: "./media/characters/balans/back.svg",
  56984. extra: 408/381,
  56985. bottom: 14/422
  56986. }
  56987. },
  56988. hand: {
  56989. height: math.unit(1.15, "feet"),
  56990. name: "Hand",
  56991. image: {
  56992. source: "./media/characters/balans/hand.svg"
  56993. }
  56994. },
  56995. footRest: {
  56996. height: math.unit(3.1, "feet"),
  56997. name: "Foot (Rest)",
  56998. image: {
  56999. source: "./media/characters/balans/foot-rest.svg"
  57000. }
  57001. },
  57002. footActive: {
  57003. height: math.unit(3.5, "feet"),
  57004. name: "Foot (Active)",
  57005. image: {
  57006. source: "./media/characters/balans/foot-active.svg"
  57007. }
  57008. },
  57009. },
  57010. [
  57011. {
  57012. name: "Normal",
  57013. height: math.unit(10 + 3/12, "feet"),
  57014. default: true
  57015. },
  57016. ]
  57017. ))
  57018. characterMakers.push(() => makeCharacter(
  57019. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57020. {
  57021. side: {
  57022. height: math.unit(9, "meters"),
  57023. weight: math.unit(114, "tonnes"),
  57024. name: "Side",
  57025. image: {
  57026. source: "./media/characters/eldkveikir/side.svg",
  57027. extra: 1927/338,
  57028. bottom: 42/1969
  57029. }
  57030. },
  57031. sitting: {
  57032. height: math.unit(13.4, "meters"),
  57033. weight: math.unit(114, "tonnes"),
  57034. name: "Sitting",
  57035. image: {
  57036. source: "./media/characters/eldkveikir/sitting.svg",
  57037. extra: 1108/963,
  57038. bottom: 610/1718
  57039. }
  57040. },
  57041. maw: {
  57042. height: math.unit(8.36, "meters"),
  57043. name: "Maw",
  57044. image: {
  57045. source: "./media/characters/eldkveikir/maw.svg"
  57046. }
  57047. },
  57048. hand: {
  57049. height: math.unit(4.84, "meters"),
  57050. name: "Hand",
  57051. image: {
  57052. source: "./media/characters/eldkveikir/hand.svg"
  57053. }
  57054. },
  57055. foot: {
  57056. height: math.unit(6.9, "meters"),
  57057. name: "Foot",
  57058. image: {
  57059. source: "./media/characters/eldkveikir/foot.svg"
  57060. }
  57061. },
  57062. genitals: {
  57063. height: math.unit(9.6, "meters"),
  57064. name: "Genitals",
  57065. image: {
  57066. source: "./media/characters/eldkveikir/genitals.svg"
  57067. }
  57068. },
  57069. },
  57070. [
  57071. {
  57072. name: "Normal",
  57073. height: math.unit(9, "meters"),
  57074. default: true
  57075. },
  57076. ]
  57077. ))
  57078. characterMakers.push(() => makeCharacter(
  57079. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57080. {
  57081. front: {
  57082. height: math.unit(14, "feet"),
  57083. weight: math.unit(4100, "lb"),
  57084. name: "Front",
  57085. image: {
  57086. source: "./media/characters/arrow/front.svg",
  57087. extra: 330/318,
  57088. bottom: 56/386
  57089. }
  57090. },
  57091. },
  57092. [
  57093. {
  57094. name: "Normal",
  57095. height: math.unit(14, "feet"),
  57096. default: true
  57097. },
  57098. {
  57099. name: "Minimacro",
  57100. height: math.unit(63, "feet")
  57101. },
  57102. {
  57103. name: "Macro",
  57104. height: math.unit(630, "feet")
  57105. },
  57106. {
  57107. name: "Megamacro",
  57108. height: math.unit(12600, "feet")
  57109. },
  57110. {
  57111. name: "Gigamacro",
  57112. height: math.unit(18000, "miles")
  57113. },
  57114. ]
  57115. ))
  57116. characterMakers.push(() => makeCharacter(
  57117. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57118. {
  57119. front: {
  57120. height: math.unit(10, "feet"),
  57121. weight: math.unit(2.4, "tons"),
  57122. name: "Front",
  57123. image: {
  57124. source: "./media/characters/3yk-k0-unit/front.svg",
  57125. extra: 573/561,
  57126. bottom: 33/606
  57127. }
  57128. },
  57129. back: {
  57130. height: math.unit(10, "feet"),
  57131. weight: math.unit(2.4, "tons"),
  57132. name: "Back",
  57133. image: {
  57134. source: "./media/characters/3yk-k0-unit/back.svg",
  57135. extra: 614/573,
  57136. bottom: 32/646
  57137. }
  57138. },
  57139. maw: {
  57140. height: math.unit(2.15, "feet"),
  57141. name: "Maw",
  57142. image: {
  57143. source: "./media/characters/3yk-k0-unit/maw.svg"
  57144. }
  57145. },
  57146. },
  57147. [
  57148. {
  57149. name: "Normal",
  57150. height: math.unit(10, "feet"),
  57151. default: true
  57152. },
  57153. ]
  57154. ))
  57155. characterMakers.push(() => makeCharacter(
  57156. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57157. {
  57158. front: {
  57159. height: math.unit(8 + 8/12, "feet"),
  57160. name: "Front",
  57161. image: {
  57162. source: "./media/characters/nemo/front.svg",
  57163. extra: 1308/1217,
  57164. bottom: 57/1365
  57165. }
  57166. },
  57167. },
  57168. [
  57169. {
  57170. name: "Normal",
  57171. height: math.unit(8 + 8/12, "feet"),
  57172. default: true
  57173. },
  57174. ]
  57175. ))
  57176. characterMakers.push(() => makeCharacter(
  57177. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57178. {
  57179. front: {
  57180. height: math.unit(8, "feet"),
  57181. weight: math.unit(760, "lb"),
  57182. name: "Front",
  57183. image: {
  57184. source: "./media/characters/rexx/front.svg",
  57185. extra: 786/750,
  57186. bottom: 17/803
  57187. },
  57188. extraAttributes: {
  57189. "pawLength": {
  57190. name: "Paw Length",
  57191. power: 1,
  57192. type: "length",
  57193. base: math.unit(27, "inches")
  57194. },
  57195. }
  57196. },
  57197. },
  57198. [
  57199. {
  57200. name: "Micro",
  57201. height: math.unit(2, "inches")
  57202. },
  57203. {
  57204. name: "Normal",
  57205. height: math.unit(8, "feet"),
  57206. default: true
  57207. },
  57208. {
  57209. name: "Macro",
  57210. height: math.unit(150, "feet")
  57211. },
  57212. ]
  57213. ))
  57214. characterMakers.push(() => makeCharacter(
  57215. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57216. {
  57217. front: {
  57218. height: math.unit(18, "feet"),
  57219. weight: math.unit(1975, "lb"),
  57220. name: "Front",
  57221. image: {
  57222. source: "./media/characters/draco/front.svg",
  57223. extra: 1325/1241,
  57224. bottom: 83/1408
  57225. }
  57226. },
  57227. back: {
  57228. height: math.unit(18, "feet"),
  57229. weight: math.unit(1975, "lb"),
  57230. name: "Back",
  57231. image: {
  57232. source: "./media/characters/draco/back.svg",
  57233. extra: 1332/1250,
  57234. bottom: 43/1375
  57235. }
  57236. },
  57237. dick: {
  57238. height: math.unit(7.5, "feet"),
  57239. name: "Dick",
  57240. image: {
  57241. source: "./media/characters/draco/dick.svg"
  57242. }
  57243. },
  57244. },
  57245. [
  57246. {
  57247. name: "Normal",
  57248. height: math.unit(18, "feet"),
  57249. default: true
  57250. },
  57251. ]
  57252. ))
  57253. characterMakers.push(() => makeCharacter(
  57254. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57255. {
  57256. front: {
  57257. height: math.unit(3.2, "meters"),
  57258. name: "Front",
  57259. image: {
  57260. source: "./media/characters/harriett/front.svg",
  57261. extra: 1966/1915,
  57262. bottom: 9/1975
  57263. }
  57264. },
  57265. },
  57266. [
  57267. {
  57268. name: "Normal",
  57269. height: math.unit(3.2, "meters"),
  57270. default: true
  57271. },
  57272. ]
  57273. ))
  57274. characterMakers.push(() => makeCharacter(
  57275. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57276. {
  57277. sitting: {
  57278. height: math.unit(0.8, "meter"),
  57279. name: "Sitting",
  57280. image: {
  57281. source: "./media/characters/serpentus/sitting.svg",
  57282. extra: 293/290,
  57283. bottom: 140/433
  57284. }
  57285. },
  57286. },
  57287. [
  57288. {
  57289. name: "Normal",
  57290. height: math.unit(0.8, "meter"),
  57291. default: true
  57292. },
  57293. ]
  57294. ))
  57295. characterMakers.push(() => makeCharacter(
  57296. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57297. {
  57298. front: {
  57299. height: math.unit(5.7174385736, "feet"),
  57300. name: "Front",
  57301. image: {
  57302. source: "./media/characters/nova-polecat/front.svg",
  57303. extra: 1317/1216,
  57304. bottom: 92/1409
  57305. }
  57306. },
  57307. },
  57308. [
  57309. {
  57310. name: "Normal",
  57311. height: math.unit(5.7174385736, "feet"),
  57312. default: true
  57313. },
  57314. ]
  57315. ))
  57316. characterMakers.push(() => makeCharacter(
  57317. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57318. {
  57319. front: {
  57320. height: math.unit(5 + 4/12, "feet"),
  57321. weight: math.unit(250, "lb"),
  57322. name: "Front",
  57323. image: {
  57324. source: "./media/characters/mook/front.svg",
  57325. extra: 1088/1037,
  57326. bottom: 132/1220
  57327. }
  57328. },
  57329. back: {
  57330. height: math.unit(5 + 1/12, "feet"),
  57331. weight: math.unit(250, "lb"),
  57332. name: "Back",
  57333. image: {
  57334. source: "./media/characters/mook/back.svg",
  57335. extra: 1184/905,
  57336. bottom: 96/1280
  57337. }
  57338. },
  57339. head: {
  57340. height: math.unit(1.85, "feet"),
  57341. name: "Head",
  57342. image: {
  57343. source: "./media/characters/mook/head.svg"
  57344. }
  57345. },
  57346. hand: {
  57347. height: math.unit(1.9, "feet"),
  57348. name: "Hand",
  57349. image: {
  57350. source: "./media/characters/mook/hand.svg"
  57351. }
  57352. },
  57353. palm: {
  57354. height: math.unit(1.84, "feet"),
  57355. name: "Palm",
  57356. image: {
  57357. source: "./media/characters/mook/palm.svg"
  57358. }
  57359. },
  57360. foot: {
  57361. height: math.unit(1.44, "feet"),
  57362. name: "Foot",
  57363. image: {
  57364. source: "./media/characters/mook/foot.svg"
  57365. }
  57366. },
  57367. sole: {
  57368. height: math.unit(1.44, "feet"),
  57369. name: "Sole",
  57370. image: {
  57371. source: "./media/characters/mook/sole.svg"
  57372. }
  57373. },
  57374. },
  57375. [
  57376. {
  57377. name: "Normal",
  57378. height: math.unit(5 + 4/12, "feet"),
  57379. default: true
  57380. },
  57381. {
  57382. name: "Big",
  57383. height: math.unit(12, "feet")
  57384. },
  57385. ]
  57386. ))
  57387. characterMakers.push(() => makeCharacter(
  57388. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57389. {
  57390. front: {
  57391. height: math.unit(6 + 10/12, "feet"),
  57392. weight: math.unit(233, "lb"),
  57393. name: "Front",
  57394. image: {
  57395. source: "./media/characters/kayla/front.svg",
  57396. extra: 1850/1775,
  57397. bottom: 65/1915
  57398. }
  57399. },
  57400. },
  57401. [
  57402. {
  57403. name: "Normal",
  57404. height: math.unit(6 + 10/12, "feet"),
  57405. default: true
  57406. },
  57407. {
  57408. name: "Amazonian",
  57409. height: math.unit(12 + 5/12, "feet")
  57410. },
  57411. {
  57412. name: "Mini Giantess",
  57413. height: math.unit(26, "feet")
  57414. },
  57415. {
  57416. name: "Giantess",
  57417. height: math.unit(200, "feet")
  57418. },
  57419. {
  57420. name: "Mega Giantess",
  57421. height: math.unit(2500, "feet")
  57422. },
  57423. {
  57424. name: "City Sized",
  57425. height: math.unit(50, "miles")
  57426. },
  57427. {
  57428. name: "Country Sized",
  57429. height: math.unit(500, "miles")
  57430. },
  57431. {
  57432. name: "Continent Sized",
  57433. height: math.unit(2500, "miles")
  57434. },
  57435. {
  57436. name: "Planet Sized",
  57437. height: math.unit(10000, "miles")
  57438. },
  57439. {
  57440. name: "Star Sized",
  57441. height: math.unit(5e6, "miles")
  57442. },
  57443. {
  57444. name: "Solar System Sized",
  57445. height: math.unit(125, "AU")
  57446. },
  57447. {
  57448. name: "Galaxy Sized",
  57449. height: math.unit(300e3, "lightyears")
  57450. },
  57451. {
  57452. name: "Universe Sized",
  57453. height: math.unit(200e9, "lightyears")
  57454. },
  57455. {
  57456. name: "Multiverse Sized",
  57457. height: math.unit(20, "exauniverses")
  57458. },
  57459. {
  57460. name: "Mother of Existence",
  57461. height: math.unit(1e6, "yottauniverses")
  57462. },
  57463. ]
  57464. ))
  57465. //characters
  57466. function makeCharacters() {
  57467. const results = [];
  57468. characterMakers.forEach(character => {
  57469. results.push(character());
  57470. });
  57471. return results;
  57472. }