less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

52614 lines
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "avian"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "avian"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["avian"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["monster-hunter"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["avian"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. }
  2007. //species
  2008. function getSpeciesInfo(speciesList) {
  2009. let result = new Set();
  2010. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2011. result.add(entry)
  2012. });
  2013. return Array.from(result);
  2014. };
  2015. function getSpeciesInfoHelper(species) {
  2016. if (!speciesData[species]) {
  2017. console.warn(species + " doesn't exist");
  2018. return [];
  2019. }
  2020. if (speciesData[species].parents) {
  2021. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2022. } else {
  2023. return [species];
  2024. }
  2025. }
  2026. characterMakers.push(() => makeCharacter(
  2027. {
  2028. name: "Fen",
  2029. species: ["crux"],
  2030. description: {
  2031. title: "Bio",
  2032. text: "Very furry. Sheds on everything."
  2033. },
  2034. tags: [
  2035. "anthro",
  2036. "goo"
  2037. ]
  2038. },
  2039. {
  2040. front: {
  2041. height: math.unit(12, "feet"),
  2042. weight: math.unit(2400, "lb"),
  2043. name: "Front",
  2044. image: {
  2045. source: "./media/characters/fen/front.svg",
  2046. extra: 1804/1562,
  2047. bottom: 205/2009
  2048. },
  2049. extraAttributes: {
  2050. pawSize: {
  2051. name: "Paw Size",
  2052. power: 2,
  2053. type: "area",
  2054. base: math.unit(0.35, "m^2")
  2055. }
  2056. }
  2057. },
  2058. diving: {
  2059. height: math.unit(4.9, "meters"),
  2060. weight: math.unit(2400, "lb"),
  2061. name: "Diving",
  2062. image: {
  2063. source: "./media/characters/fen/diving.svg"
  2064. }
  2065. },
  2066. goo: {
  2067. height: math.unit(12, "feet"),
  2068. weight: math.unit(3600, "lb"),
  2069. volume: math.unit(1000, "liters"),
  2070. preyCapacity: math.unit(6, "people"),
  2071. name: "Goo",
  2072. image: {
  2073. source: "./media/characters/fen/goo.svg",
  2074. extra: 1307/1071,
  2075. bottom: 134/1441
  2076. }
  2077. },
  2078. maw: {
  2079. height: math.unit(5.03, "feet"),
  2080. name: "Maw",
  2081. image: {
  2082. source: "./media/characters/fen/maw.svg"
  2083. }
  2084. },
  2085. gooCeiling: {
  2086. height: math.unit(6.6, "feet"),
  2087. weight: math.unit(3000, "lb"),
  2088. volume: math.unit(1000, "liters"),
  2089. preyCapacity: math.unit(6, "people"),
  2090. name: "Goo (Ceiling)",
  2091. image: {
  2092. source: "./media/characters/fen/goo-ceiling.svg"
  2093. }
  2094. },
  2095. paw: {
  2096. height: math.unit(3.77, "feet"),
  2097. name: "Paw",
  2098. image: {
  2099. source: "./media/characters/fen/paw.svg"
  2100. },
  2101. extraAttributes: {
  2102. "toeSize": {
  2103. name: "Toe Size",
  2104. power: 2,
  2105. type: "area",
  2106. base: math.unit(0.02875, "m^2")
  2107. },
  2108. "pawSize": {
  2109. name: "Paw Size",
  2110. power: 2,
  2111. type: "area",
  2112. base: math.unit(0.378, "m^2")
  2113. },
  2114. }
  2115. },
  2116. tail: {
  2117. height: math.unit(12.1, "feet"),
  2118. name: "Tail",
  2119. image: {
  2120. source: "./media/characters/fen/tail.svg"
  2121. }
  2122. },
  2123. tailFull: {
  2124. height: math.unit(12.1, "feet"),
  2125. name: "Full Tail",
  2126. image: {
  2127. source: "./media/characters/fen/tail-full.svg"
  2128. }
  2129. },
  2130. back: {
  2131. height: math.unit(12, "feet"),
  2132. weight: math.unit(2400, "lb"),
  2133. name: "Back",
  2134. image: {
  2135. source: "./media/characters/fen/back.svg",
  2136. },
  2137. info: {
  2138. description: {
  2139. mode: "append",
  2140. text: "\n\nHe is not currently looking at you."
  2141. }
  2142. }
  2143. },
  2144. full: {
  2145. height: math.unit(1.85, "meter"),
  2146. weight: math.unit(3200, "lb"),
  2147. name: "Full",
  2148. image: {
  2149. source: "./media/characters/fen/full.svg",
  2150. extra: 1133/859,
  2151. bottom: 145/1278
  2152. },
  2153. info: {
  2154. description: {
  2155. mode: "append",
  2156. text: "\n\nMunch."
  2157. }
  2158. }
  2159. },
  2160. gooLounging: {
  2161. height: math.unit(4.53, "feet"),
  2162. weight: math.unit(3000, "lb"),
  2163. preyCapacity: math.unit(6, "people"),
  2164. name: "Goo (Lounging)",
  2165. image: {
  2166. source: "./media/characters/fen/goo-lounging.svg",
  2167. bottom: 116 / 613
  2168. }
  2169. },
  2170. lounging: {
  2171. height: math.unit(10.52, "feet"),
  2172. weight: math.unit(2400, "lb"),
  2173. name: "Lounging",
  2174. image: {
  2175. source: "./media/characters/fen/lounging.svg"
  2176. }
  2177. },
  2178. },
  2179. [
  2180. {
  2181. name: "Small",
  2182. height: math.unit(2.2428, "meter")
  2183. },
  2184. {
  2185. name: "Normal",
  2186. height: math.unit(12, "feet"),
  2187. default: true,
  2188. },
  2189. {
  2190. name: "Big",
  2191. height: math.unit(20, "feet")
  2192. },
  2193. {
  2194. name: "Minimacro",
  2195. height: math.unit(40, "feet"),
  2196. info: {
  2197. description: {
  2198. mode: "append",
  2199. text: "\n\nTOO DAMN BIG"
  2200. }
  2201. }
  2202. },
  2203. {
  2204. name: "Macro",
  2205. height: math.unit(100, "feet"),
  2206. info: {
  2207. description: {
  2208. mode: "append",
  2209. text: "\n\nTOO DAMN BIG"
  2210. }
  2211. }
  2212. },
  2213. {
  2214. name: "Megamacro",
  2215. height: math.unit(2, "miles")
  2216. },
  2217. {
  2218. name: "Gigamacro",
  2219. height: math.unit(10, "earths")
  2220. },
  2221. ]
  2222. ))
  2223. characterMakers.push(() => makeCharacter(
  2224. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2225. {
  2226. front: {
  2227. height: math.unit(183, "cm"),
  2228. weight: math.unit(80, "kg"),
  2229. name: "Front",
  2230. image: {
  2231. source: "./media/characters/sofia-fluttertail/front.svg",
  2232. bottom: 0.01,
  2233. extra: 2154 / 2081
  2234. }
  2235. },
  2236. frontAlt: {
  2237. height: math.unit(183, "cm"),
  2238. weight: math.unit(80, "kg"),
  2239. name: "Front (alt)",
  2240. image: {
  2241. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2242. }
  2243. },
  2244. back: {
  2245. height: math.unit(183, "cm"),
  2246. weight: math.unit(80, "kg"),
  2247. name: "Back",
  2248. image: {
  2249. source: "./media/characters/sofia-fluttertail/back.svg"
  2250. }
  2251. },
  2252. kneeling: {
  2253. height: math.unit(125, "cm"),
  2254. weight: math.unit(80, "kg"),
  2255. name: "Kneeling",
  2256. image: {
  2257. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2258. extra: 1033 / 977,
  2259. bottom: 23.7 / 1057
  2260. }
  2261. },
  2262. maw: {
  2263. height: math.unit(183 / 5, "cm"),
  2264. name: "Maw",
  2265. image: {
  2266. source: "./media/characters/sofia-fluttertail/maw.svg"
  2267. }
  2268. },
  2269. mawcloseup: {
  2270. height: math.unit(183 / 5 * 0.41, "cm"),
  2271. name: "Maw (Closeup)",
  2272. image: {
  2273. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2274. }
  2275. },
  2276. paws: {
  2277. height: math.unit(1.17, "feet"),
  2278. name: "Paws",
  2279. image: {
  2280. source: "./media/characters/sofia-fluttertail/paws.svg",
  2281. extra: 851 / 851,
  2282. bottom: 17 / 868
  2283. }
  2284. },
  2285. },
  2286. [
  2287. {
  2288. name: "Normal",
  2289. height: math.unit(1.83, "meter")
  2290. },
  2291. {
  2292. name: "Size Thief",
  2293. height: math.unit(18, "feet")
  2294. },
  2295. {
  2296. name: "50 Foot Collie",
  2297. height: math.unit(50, "feet")
  2298. },
  2299. {
  2300. name: "Macro",
  2301. height: math.unit(96, "feet"),
  2302. default: true
  2303. },
  2304. {
  2305. name: "Megamerger",
  2306. height: math.unit(650, "feet")
  2307. },
  2308. ]
  2309. ))
  2310. characterMakers.push(() => makeCharacter(
  2311. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2312. {
  2313. front: {
  2314. height: math.unit(7, "feet"),
  2315. weight: math.unit(100, "kg"),
  2316. name: "Front",
  2317. image: {
  2318. source: "./media/characters/march/front.svg",
  2319. extra: 1992/1851,
  2320. bottom: 39/2031
  2321. }
  2322. },
  2323. foot: {
  2324. height: math.unit(0.9, "feet"),
  2325. name: "Foot",
  2326. image: {
  2327. source: "./media/characters/march/foot.svg"
  2328. }
  2329. },
  2330. },
  2331. [
  2332. {
  2333. name: "Normal",
  2334. height: math.unit(7.9, "feet")
  2335. },
  2336. {
  2337. name: "Macro",
  2338. height: math.unit(220, "meters")
  2339. },
  2340. {
  2341. name: "Megamacro",
  2342. height: math.unit(2.98, "km"),
  2343. default: true
  2344. },
  2345. {
  2346. name: "Gigamacro",
  2347. height: math.unit(15963, "km")
  2348. },
  2349. {
  2350. name: "Teramacro",
  2351. height: math.unit(2980000000, "km")
  2352. },
  2353. {
  2354. name: "Examacro",
  2355. height: math.unit(250, "parsecs")
  2356. },
  2357. ]
  2358. ))
  2359. characterMakers.push(() => makeCharacter(
  2360. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2361. {
  2362. front: {
  2363. height: math.unit(6, "feet"),
  2364. weight: math.unit(60, "kg"),
  2365. name: "Front",
  2366. image: {
  2367. source: "./media/characters/noir/front.svg",
  2368. extra: 1,
  2369. bottom: 0.032
  2370. }
  2371. },
  2372. },
  2373. [
  2374. {
  2375. name: "Normal",
  2376. height: math.unit(6.6, "feet")
  2377. },
  2378. {
  2379. name: "Macro",
  2380. height: math.unit(500, "feet")
  2381. },
  2382. {
  2383. name: "Megamacro",
  2384. height: math.unit(2.5, "km"),
  2385. default: true
  2386. },
  2387. {
  2388. name: "Gigamacro",
  2389. height: math.unit(22500, "km")
  2390. },
  2391. {
  2392. name: "Teramacro",
  2393. height: math.unit(2500000000, "km")
  2394. },
  2395. {
  2396. name: "Examacro",
  2397. height: math.unit(200, "parsecs")
  2398. },
  2399. ]
  2400. ))
  2401. characterMakers.push(() => makeCharacter(
  2402. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2403. {
  2404. front: {
  2405. height: math.unit(7, "feet"),
  2406. weight: math.unit(100, "kg"),
  2407. name: "Front",
  2408. image: {
  2409. source: "./media/characters/okuri/front.svg",
  2410. extra: 739/665,
  2411. bottom: 39/778
  2412. }
  2413. },
  2414. back: {
  2415. height: math.unit(7, "feet"),
  2416. weight: math.unit(100, "kg"),
  2417. name: "Back",
  2418. image: {
  2419. source: "./media/characters/okuri/back.svg",
  2420. extra: 734/653,
  2421. bottom: 13/747
  2422. }
  2423. },
  2424. sitting: {
  2425. height: math.unit(2.95, "feet"),
  2426. weight: math.unit(100, "kg"),
  2427. name: "Sitting",
  2428. image: {
  2429. source: "./media/characters/okuri/sitting.svg",
  2430. extra: 370/318,
  2431. bottom: 99/469
  2432. }
  2433. },
  2434. },
  2435. [
  2436. {
  2437. name: "Smallest",
  2438. height: math.unit(5 + 2/12, "feet")
  2439. },
  2440. {
  2441. name: "Smaller",
  2442. height: math.unit(300, "feet")
  2443. },
  2444. {
  2445. name: "Small",
  2446. height: math.unit(1000, "feet")
  2447. },
  2448. {
  2449. name: "Macro",
  2450. height: math.unit(1, "mile")
  2451. },
  2452. {
  2453. name: "Mega Macro (Small)",
  2454. height: math.unit(20, "km")
  2455. },
  2456. {
  2457. name: "Mega Macro (Large)",
  2458. height: math.unit(600, "km")
  2459. },
  2460. {
  2461. name: "Giga Macro",
  2462. height: math.unit(10000, "km")
  2463. },
  2464. {
  2465. name: "Normal",
  2466. height: math.unit(577560, "km"),
  2467. default: true
  2468. },
  2469. {
  2470. name: "Large",
  2471. height: math.unit(4, "galaxies")
  2472. },
  2473. {
  2474. name: "Largest",
  2475. height: math.unit(15, "multiverses")
  2476. },
  2477. ]
  2478. ))
  2479. characterMakers.push(() => makeCharacter(
  2480. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2481. {
  2482. front: {
  2483. height: math.unit(7, "feet"),
  2484. weight: math.unit(100, "kg"),
  2485. name: "Front",
  2486. image: {
  2487. source: "./media/characters/manny/front.svg",
  2488. extra: 1,
  2489. bottom: 0.06
  2490. }
  2491. },
  2492. back: {
  2493. height: math.unit(7, "feet"),
  2494. weight: math.unit(100, "kg"),
  2495. name: "Back",
  2496. image: {
  2497. source: "./media/characters/manny/back.svg",
  2498. extra: 1,
  2499. bottom: 0.014
  2500. }
  2501. },
  2502. },
  2503. [
  2504. {
  2505. name: "Normal",
  2506. height: math.unit(7, "feet"),
  2507. },
  2508. {
  2509. name: "Macro",
  2510. height: math.unit(78, "feet"),
  2511. default: true
  2512. },
  2513. {
  2514. name: "Macro+",
  2515. height: math.unit(300, "meters")
  2516. },
  2517. {
  2518. name: "Macro++",
  2519. height: math.unit(2400, "meters")
  2520. },
  2521. {
  2522. name: "Megamacro",
  2523. height: math.unit(5167, "meters")
  2524. },
  2525. {
  2526. name: "Gigamacro",
  2527. height: math.unit(41769, "miles")
  2528. },
  2529. ]
  2530. ))
  2531. characterMakers.push(() => makeCharacter(
  2532. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2533. {
  2534. front: {
  2535. height: math.unit(7, "feet"),
  2536. weight: math.unit(100, "kg"),
  2537. name: "Front",
  2538. image: {
  2539. source: "./media/characters/adake/front-1.svg"
  2540. }
  2541. },
  2542. frontAlt: {
  2543. height: math.unit(7, "feet"),
  2544. weight: math.unit(100, "kg"),
  2545. name: "Front (Alt)",
  2546. image: {
  2547. source: "./media/characters/adake/front-2.svg",
  2548. extra: 1,
  2549. bottom: 0.01
  2550. }
  2551. },
  2552. back: {
  2553. height: math.unit(7, "feet"),
  2554. weight: math.unit(100, "kg"),
  2555. name: "Back",
  2556. image: {
  2557. source: "./media/characters/adake/back.svg",
  2558. }
  2559. },
  2560. kneel: {
  2561. height: math.unit(5.385, "feet"),
  2562. weight: math.unit(100, "kg"),
  2563. name: "Kneeling",
  2564. image: {
  2565. source: "./media/characters/adake/kneel.svg",
  2566. bottom: 0.052
  2567. }
  2568. },
  2569. },
  2570. [
  2571. {
  2572. name: "Normal",
  2573. height: math.unit(7, "feet"),
  2574. },
  2575. {
  2576. name: "Macro",
  2577. height: math.unit(78, "feet"),
  2578. default: true
  2579. },
  2580. {
  2581. name: "Macro+",
  2582. height: math.unit(300, "meters")
  2583. },
  2584. {
  2585. name: "Macro++",
  2586. height: math.unit(2400, "meters")
  2587. },
  2588. {
  2589. name: "Megamacro",
  2590. height: math.unit(5167, "meters")
  2591. },
  2592. {
  2593. name: "Gigamacro",
  2594. height: math.unit(41769, "miles")
  2595. },
  2596. ]
  2597. ))
  2598. characterMakers.push(() => makeCharacter(
  2599. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2600. {
  2601. front: {
  2602. height: math.unit(1.65, "meters"),
  2603. weight: math.unit(50, "kg"),
  2604. name: "Front",
  2605. image: {
  2606. source: "./media/characters/elijah/front.svg",
  2607. extra: 858 / 830,
  2608. bottom: 95.5 / 953.8559
  2609. }
  2610. },
  2611. back: {
  2612. height: math.unit(1.65, "meters"),
  2613. weight: math.unit(50, "kg"),
  2614. name: "Back",
  2615. image: {
  2616. source: "./media/characters/elijah/back.svg",
  2617. extra: 895 / 850,
  2618. bottom: 5.3 / 897.956
  2619. }
  2620. },
  2621. frontNsfw: {
  2622. height: math.unit(1.65, "meters"),
  2623. weight: math.unit(50, "kg"),
  2624. name: "Front (NSFW)",
  2625. image: {
  2626. source: "./media/characters/elijah/front-nsfw.svg",
  2627. extra: 858 / 830,
  2628. bottom: 95.5 / 953.8559
  2629. }
  2630. },
  2631. backNsfw: {
  2632. height: math.unit(1.65, "meters"),
  2633. weight: math.unit(50, "kg"),
  2634. name: "Back (NSFW)",
  2635. image: {
  2636. source: "./media/characters/elijah/back-nsfw.svg",
  2637. extra: 895 / 850,
  2638. bottom: 5.3 / 897.956
  2639. }
  2640. },
  2641. dick: {
  2642. height: math.unit(1, "feet"),
  2643. name: "Dick",
  2644. image: {
  2645. source: "./media/characters/elijah/dick.svg"
  2646. }
  2647. },
  2648. beakOpen: {
  2649. height: math.unit(1.25, "feet"),
  2650. name: "Beak (Open)",
  2651. image: {
  2652. source: "./media/characters/elijah/beak-open.svg"
  2653. }
  2654. },
  2655. beakShut: {
  2656. height: math.unit(1.25, "feet"),
  2657. name: "Beak (Shut)",
  2658. image: {
  2659. source: "./media/characters/elijah/beak-shut.svg"
  2660. }
  2661. },
  2662. footFlexing: {
  2663. height: math.unit(1.61, "feet"),
  2664. name: "Foot (Flexing)",
  2665. image: {
  2666. source: "./media/characters/elijah/foot-flexing.svg"
  2667. }
  2668. },
  2669. footStepping: {
  2670. height: math.unit(1.44, "feet"),
  2671. name: "Foot (Stepping)",
  2672. image: {
  2673. source: "./media/characters/elijah/foot-stepping.svg"
  2674. }
  2675. },
  2676. plantigradeLeg: {
  2677. height: math.unit(2.34, "feet"),
  2678. name: "Plantigrade Leg",
  2679. image: {
  2680. source: "./media/characters/elijah/plantigrade-leg.svg"
  2681. }
  2682. },
  2683. plantigradeFootLeft: {
  2684. height: math.unit(0.9, "feet"),
  2685. name: "Plantigrade Foot (Left)",
  2686. image: {
  2687. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2688. }
  2689. },
  2690. plantigradeFootRight: {
  2691. height: math.unit(0.9, "feet"),
  2692. name: "Plantigrade Foot (Right)",
  2693. image: {
  2694. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2695. }
  2696. },
  2697. },
  2698. [
  2699. {
  2700. name: "Normal",
  2701. height: math.unit(1.65, "meters")
  2702. },
  2703. {
  2704. name: "Macro",
  2705. height: math.unit(55, "meters"),
  2706. default: true
  2707. },
  2708. {
  2709. name: "Macro+",
  2710. height: math.unit(105, "meters")
  2711. },
  2712. ]
  2713. ))
  2714. characterMakers.push(() => makeCharacter(
  2715. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2716. {
  2717. front: {
  2718. height: math.unit(7 + 2/12, "feet"),
  2719. weight: math.unit(320, "kg"),
  2720. name: "Front",
  2721. image: {
  2722. source: "./media/characters/rai/front.svg",
  2723. extra: 1802/1696,
  2724. bottom: 68/1870
  2725. }
  2726. },
  2727. frontDressed: {
  2728. height: math.unit(7 + 2/12, "feet"),
  2729. weight: math.unit(320, "kg"),
  2730. name: "Front (Dressed)",
  2731. image: {
  2732. source: "./media/characters/rai/front-dressed.svg",
  2733. extra: 1802/1696,
  2734. bottom: 68/1870
  2735. }
  2736. },
  2737. side: {
  2738. height: math.unit(7 + 2/12, "feet"),
  2739. weight: math.unit(320, "kg"),
  2740. name: "Side",
  2741. image: {
  2742. source: "./media/characters/rai/side.svg",
  2743. extra: 1789/1710,
  2744. bottom: 115/1904
  2745. }
  2746. },
  2747. back: {
  2748. height: math.unit(7 + 2/12, "feet"),
  2749. weight: math.unit(320, "kg"),
  2750. name: "Back",
  2751. image: {
  2752. source: "./media/characters/rai/back.svg",
  2753. extra: 1770/1707,
  2754. bottom: 28/1798
  2755. }
  2756. },
  2757. feral: {
  2758. height: math.unit(9.5, "feet"),
  2759. weight: math.unit(640, "kg"),
  2760. name: "Feral",
  2761. image: {
  2762. source: "./media/characters/rai/feral.svg",
  2763. extra: 945/553,
  2764. bottom: 176/1121
  2765. }
  2766. },
  2767. dragon: {
  2768. height: math.unit(23, "feet"),
  2769. weight: math.unit(50000, "lb"),
  2770. name: "Dragon",
  2771. image: {
  2772. source: "./media/characters/rai/dragon.svg",
  2773. extra: 2498 / 2030,
  2774. bottom: 85.2 / 2584
  2775. }
  2776. },
  2777. maw: {
  2778. height: math.unit(1.69, "feet"),
  2779. name: "Maw",
  2780. image: {
  2781. source: "./media/characters/rai/maw.svg"
  2782. }
  2783. },
  2784. },
  2785. [
  2786. {
  2787. name: "Normal",
  2788. height: math.unit(7 + 2/12, "feet")
  2789. },
  2790. {
  2791. name: "Big",
  2792. height: math.unit(11, "feet")
  2793. },
  2794. {
  2795. name: "Macro",
  2796. height: math.unit(302, "feet"),
  2797. default: true
  2798. },
  2799. ]
  2800. ))
  2801. characterMakers.push(() => makeCharacter(
  2802. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2803. {
  2804. frontDressed: {
  2805. height: math.unit(216, "feet"),
  2806. weight: math.unit(7000000, "lb"),
  2807. name: "Front (Dressed)",
  2808. image: {
  2809. source: "./media/characters/jazzy/front-dressed.svg",
  2810. extra: 2738 / 2651,
  2811. bottom: 41.8 / 2786
  2812. }
  2813. },
  2814. backDressed: {
  2815. height: math.unit(216, "feet"),
  2816. weight: math.unit(7000000, "lb"),
  2817. name: "Back (Dressed)",
  2818. image: {
  2819. source: "./media/characters/jazzy/back-dressed.svg",
  2820. extra: 2775 / 2673,
  2821. bottom: 36.8 / 2817
  2822. }
  2823. },
  2824. front: {
  2825. height: math.unit(216, "feet"),
  2826. weight: math.unit(7000000, "lb"),
  2827. name: "Front",
  2828. image: {
  2829. source: "./media/characters/jazzy/front.svg",
  2830. extra: 2738 / 2651,
  2831. bottom: 41.8 / 2786
  2832. }
  2833. },
  2834. back: {
  2835. height: math.unit(216, "feet"),
  2836. weight: math.unit(7000000, "lb"),
  2837. name: "Back",
  2838. image: {
  2839. source: "./media/characters/jazzy/back.svg",
  2840. extra: 2775 / 2673,
  2841. bottom: 36.8 / 2817
  2842. }
  2843. },
  2844. maw: {
  2845. height: math.unit(20, "feet"),
  2846. name: "Maw",
  2847. image: {
  2848. source: "./media/characters/jazzy/maw.svg"
  2849. }
  2850. },
  2851. paws: {
  2852. height: math.unit(27.5, "feet"),
  2853. name: "Paws",
  2854. image: {
  2855. source: "./media/characters/jazzy/paws.svg"
  2856. }
  2857. },
  2858. eye: {
  2859. height: math.unit(4.4, "feet"),
  2860. name: "Eye",
  2861. image: {
  2862. source: "./media/characters/jazzy/eye.svg"
  2863. }
  2864. },
  2865. droneOffense: {
  2866. height: math.unit(9.5, "inches"),
  2867. name: "Drone (Offense)",
  2868. image: {
  2869. source: "./media/characters/jazzy/drone-offense.svg"
  2870. }
  2871. },
  2872. droneRecon: {
  2873. height: math.unit(9.5, "inches"),
  2874. name: "Drone (Recon)",
  2875. image: {
  2876. source: "./media/characters/jazzy/drone-recon.svg"
  2877. }
  2878. },
  2879. droneDefense: {
  2880. height: math.unit(9.5, "inches"),
  2881. name: "Drone (Defense)",
  2882. image: {
  2883. source: "./media/characters/jazzy/drone-defense.svg"
  2884. }
  2885. },
  2886. },
  2887. [
  2888. {
  2889. name: "Macro",
  2890. height: math.unit(216, "feet"),
  2891. default: true
  2892. },
  2893. ]
  2894. ))
  2895. characterMakers.push(() => makeCharacter(
  2896. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2897. {
  2898. front: {
  2899. height: math.unit(9 + 6/12, "feet"),
  2900. weight: math.unit(700, "lb"),
  2901. name: "Front",
  2902. image: {
  2903. source: "./media/characters/flamm/front.svg",
  2904. extra: 1751/1632,
  2905. bottom: 46/1797
  2906. }
  2907. },
  2908. buff: {
  2909. height: math.unit(9 + 6/12, "feet"),
  2910. weight: math.unit(950, "lb"),
  2911. name: "Buff",
  2912. image: {
  2913. source: "./media/characters/flamm/buff.svg",
  2914. extra: 3018/2874,
  2915. bottom: 221/3239
  2916. }
  2917. },
  2918. },
  2919. [
  2920. {
  2921. name: "Normal",
  2922. height: math.unit(9.5, "feet")
  2923. },
  2924. {
  2925. name: "Macro",
  2926. height: math.unit(200, "feet"),
  2927. default: true
  2928. },
  2929. ]
  2930. ))
  2931. characterMakers.push(() => makeCharacter(
  2932. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2933. {
  2934. front: {
  2935. height: math.unit(5 + 3/12, "feet"),
  2936. weight: math.unit(60, "kg"),
  2937. name: "Front",
  2938. image: {
  2939. source: "./media/characters/zephiro/front.svg",
  2940. extra: 2309 / 2162,
  2941. bottom: 0.069
  2942. }
  2943. },
  2944. side: {
  2945. height: math.unit(5 + 3/12, "feet"),
  2946. weight: math.unit(60, "kg"),
  2947. name: "Side",
  2948. image: {
  2949. source: "./media/characters/zephiro/side.svg",
  2950. extra: 2403 / 2279,
  2951. bottom: 0.015
  2952. }
  2953. },
  2954. back: {
  2955. height: math.unit(5 + 3/12, "feet"),
  2956. weight: math.unit(60, "kg"),
  2957. name: "Back",
  2958. image: {
  2959. source: "./media/characters/zephiro/back.svg",
  2960. extra: 2373 / 2244,
  2961. bottom: 0.013
  2962. }
  2963. },
  2964. hand: {
  2965. height: math.unit(0.68, "feet"),
  2966. name: "Hand",
  2967. image: {
  2968. source: "./media/characters/zephiro/hand.svg"
  2969. }
  2970. },
  2971. paw: {
  2972. height: math.unit(1, "feet"),
  2973. name: "Paw",
  2974. image: {
  2975. source: "./media/characters/zephiro/paw.svg"
  2976. }
  2977. },
  2978. beans: {
  2979. height: math.unit(0.93, "feet"),
  2980. name: "Beans",
  2981. image: {
  2982. source: "./media/characters/zephiro/beans.svg"
  2983. }
  2984. },
  2985. },
  2986. [
  2987. {
  2988. name: "Micro",
  2989. height: math.unit(3, "inches")
  2990. },
  2991. {
  2992. name: "Normal",
  2993. height: math.unit(5 + 3 / 12, "feet"),
  2994. default: true
  2995. },
  2996. {
  2997. name: "Macro",
  2998. height: math.unit(118, "feet")
  2999. },
  3000. ]
  3001. ))
  3002. characterMakers.push(() => makeCharacter(
  3003. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3004. {
  3005. front: {
  3006. height: math.unit(5, "feet"),
  3007. weight: math.unit(90, "kg"),
  3008. name: "Front",
  3009. image: {
  3010. source: "./media/characters/fory/front.svg",
  3011. extra: 2862 / 2674,
  3012. bottom: 180 / 3043.8
  3013. }
  3014. },
  3015. back: {
  3016. height: math.unit(5, "feet"),
  3017. weight: math.unit(90, "kg"),
  3018. name: "Back",
  3019. image: {
  3020. source: "./media/characters/fory/back.svg",
  3021. extra: 2962 / 2791,
  3022. bottom: 106 / 3071.8
  3023. }
  3024. },
  3025. foot: {
  3026. height: math.unit(2.14, "feet"),
  3027. name: "Foot",
  3028. image: {
  3029. source: "./media/characters/fory/foot.svg"
  3030. }
  3031. },
  3032. },
  3033. [
  3034. {
  3035. name: "Normal",
  3036. height: math.unit(5, "feet")
  3037. },
  3038. {
  3039. name: "Macro",
  3040. height: math.unit(50, "feet"),
  3041. default: true
  3042. },
  3043. {
  3044. name: "Megamacro",
  3045. height: math.unit(10, "miles")
  3046. },
  3047. {
  3048. name: "Gigamacro",
  3049. height: math.unit(5, "earths")
  3050. },
  3051. ]
  3052. ))
  3053. characterMakers.push(() => makeCharacter(
  3054. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3055. {
  3056. front: {
  3057. height: math.unit(7, "feet"),
  3058. weight: math.unit(90, "kg"),
  3059. name: "Front",
  3060. image: {
  3061. source: "./media/characters/kurrikage/front.svg",
  3062. extra: 1845/1733,
  3063. bottom: 119/1964
  3064. }
  3065. },
  3066. back: {
  3067. height: math.unit(7, "feet"),
  3068. weight: math.unit(90, "kg"),
  3069. name: "Back",
  3070. image: {
  3071. source: "./media/characters/kurrikage/back.svg",
  3072. extra: 1790/1677,
  3073. bottom: 61/1851
  3074. }
  3075. },
  3076. dressed: {
  3077. height: math.unit(7, "feet"),
  3078. weight: math.unit(90, "kg"),
  3079. name: "Dressed",
  3080. image: {
  3081. source: "./media/characters/kurrikage/dressed.svg",
  3082. extra: 1845/1733,
  3083. bottom: 119/1964
  3084. }
  3085. },
  3086. foot: {
  3087. height: math.unit(1.5, "feet"),
  3088. name: "Foot",
  3089. image: {
  3090. source: "./media/characters/kurrikage/foot.svg"
  3091. }
  3092. },
  3093. staff: {
  3094. height: math.unit(6.7, "feet"),
  3095. name: "Staff",
  3096. image: {
  3097. source: "./media/characters/kurrikage/staff.svg"
  3098. }
  3099. },
  3100. peek: {
  3101. height: math.unit(1.05, "feet"),
  3102. name: "Peeking",
  3103. image: {
  3104. source: "./media/characters/kurrikage/peek.svg",
  3105. bottom: 0.08
  3106. }
  3107. },
  3108. },
  3109. [
  3110. {
  3111. name: "Normal",
  3112. height: math.unit(12, "feet"),
  3113. default: true
  3114. },
  3115. {
  3116. name: "Big",
  3117. height: math.unit(20, "feet")
  3118. },
  3119. {
  3120. name: "Macro",
  3121. height: math.unit(500, "feet")
  3122. },
  3123. {
  3124. name: "Megamacro",
  3125. height: math.unit(20, "miles")
  3126. },
  3127. ]
  3128. ))
  3129. characterMakers.push(() => makeCharacter(
  3130. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3131. {
  3132. front: {
  3133. height: math.unit(6, "feet"),
  3134. weight: math.unit(75, "kg"),
  3135. name: "Front",
  3136. image: {
  3137. source: "./media/characters/shingo/front.svg",
  3138. extra: 1900/1825,
  3139. bottom: 82/1982
  3140. }
  3141. },
  3142. side: {
  3143. height: math.unit(6, "feet"),
  3144. weight: math.unit(75, "kg"),
  3145. name: "Side",
  3146. image: {
  3147. source: "./media/characters/shingo/side.svg",
  3148. extra: 1930/1865,
  3149. bottom: 16/1946
  3150. }
  3151. },
  3152. back: {
  3153. height: math.unit(6, "feet"),
  3154. weight: math.unit(75, "kg"),
  3155. name: "Back",
  3156. image: {
  3157. source: "./media/characters/shingo/back.svg",
  3158. extra: 1922/1852,
  3159. bottom: 16/1938
  3160. }
  3161. },
  3162. frontDressed: {
  3163. height: math.unit(6, "feet"),
  3164. weight: math.unit(150, "lb"),
  3165. name: "Front-dressed",
  3166. image: {
  3167. source: "./media/characters/shingo/front-dressed.svg",
  3168. extra: 1900/1825,
  3169. bottom: 82/1982
  3170. }
  3171. },
  3172. paw: {
  3173. height: math.unit(1.29, "feet"),
  3174. name: "Paw",
  3175. image: {
  3176. source: "./media/characters/shingo/paw.svg"
  3177. }
  3178. },
  3179. hand: {
  3180. height: math.unit(1.07, "feet"),
  3181. name: "Hand",
  3182. image: {
  3183. source: "./media/characters/shingo/hand.svg"
  3184. }
  3185. },
  3186. frontAlt: {
  3187. height: math.unit(6, "feet"),
  3188. weight: math.unit(75, "kg"),
  3189. name: "Front (Alt)",
  3190. image: {
  3191. source: "./media/characters/shingo/front-alt.svg",
  3192. extra: 3511 / 3338,
  3193. bottom: 0.005
  3194. }
  3195. },
  3196. frontAlt2: {
  3197. height: math.unit(6, "feet"),
  3198. weight: math.unit(75, "kg"),
  3199. name: "Front (Alt 2)",
  3200. image: {
  3201. source: "./media/characters/shingo/front-alt-2.svg",
  3202. extra: 706/681,
  3203. bottom: 11/717
  3204. }
  3205. },
  3206. pawAlt: {
  3207. height: math.unit(1, "feet"),
  3208. name: "Paw (Alt)",
  3209. image: {
  3210. source: "./media/characters/shingo/paw-alt.svg"
  3211. }
  3212. },
  3213. },
  3214. [
  3215. {
  3216. name: "Micro",
  3217. height: math.unit(4, "inches")
  3218. },
  3219. {
  3220. name: "Normal",
  3221. height: math.unit(6, "feet"),
  3222. default: true
  3223. },
  3224. {
  3225. name: "Macro",
  3226. height: math.unit(108, "feet")
  3227. },
  3228. {
  3229. name: "Macro+",
  3230. height: math.unit(1500, "feet")
  3231. },
  3232. ]
  3233. ))
  3234. characterMakers.push(() => makeCharacter(
  3235. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3236. {
  3237. side: {
  3238. height: math.unit(6, "feet"),
  3239. weight: math.unit(75, "kg"),
  3240. name: "Side",
  3241. image: {
  3242. source: "./media/characters/aigey/side.svg"
  3243. }
  3244. },
  3245. },
  3246. [
  3247. {
  3248. name: "Macro",
  3249. height: math.unit(200, "feet"),
  3250. default: true
  3251. },
  3252. {
  3253. name: "Megamacro",
  3254. height: math.unit(100, "miles")
  3255. },
  3256. ]
  3257. )
  3258. )
  3259. characterMakers.push(() => makeCharacter(
  3260. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3261. {
  3262. front: {
  3263. height: math.unit(5 + 5 / 12, "feet"),
  3264. weight: math.unit(75, "kg"),
  3265. name: "Front",
  3266. image: {
  3267. source: "./media/characters/natasha/front.svg",
  3268. extra: 859 / 824,
  3269. bottom: 23 / 879.6
  3270. }
  3271. },
  3272. frontNsfw: {
  3273. height: math.unit(5 + 5 / 12, "feet"),
  3274. weight: math.unit(75, "kg"),
  3275. name: "Front (NSFW)",
  3276. image: {
  3277. source: "./media/characters/natasha/front-nsfw.svg",
  3278. extra: 859 / 824,
  3279. bottom: 23 / 879.6
  3280. }
  3281. },
  3282. frontErect: {
  3283. height: math.unit(5 + 5 / 12, "feet"),
  3284. weight: math.unit(75, "kg"),
  3285. name: "Front (Erect)",
  3286. image: {
  3287. source: "./media/characters/natasha/front-erect.svg",
  3288. extra: 859 / 824,
  3289. bottom: 23 / 879.6
  3290. }
  3291. },
  3292. back: {
  3293. height: math.unit(5 + 5 / 12, "feet"),
  3294. weight: math.unit(75, "kg"),
  3295. name: "Back",
  3296. image: {
  3297. source: "./media/characters/natasha/back.svg",
  3298. extra: 887.9 / 852.6,
  3299. bottom: 9.7 / 896.4
  3300. }
  3301. },
  3302. backAlt: {
  3303. height: math.unit(5 + 5 / 12, "feet"),
  3304. weight: math.unit(75, "kg"),
  3305. name: "Back (Alt)",
  3306. image: {
  3307. source: "./media/characters/natasha/back-alt.svg",
  3308. extra: 1236.7 / 1192,
  3309. bottom: 22.3 / 1258.2
  3310. }
  3311. },
  3312. dick: {
  3313. height: math.unit(1.772, "feet"),
  3314. name: "Dick",
  3315. image: {
  3316. source: "./media/characters/natasha/dick.svg"
  3317. }
  3318. },
  3319. paw: {
  3320. height: math.unit(0.250, "meters"),
  3321. name: "Paw",
  3322. image: {
  3323. source: "./media/characters/natasha/paw.svg"
  3324. },
  3325. extraAttributes: {
  3326. "toeSize": {
  3327. name: "Toe Size",
  3328. power: 2,
  3329. type: "area",
  3330. base: math.unit(0.0024, "m^2")
  3331. },
  3332. "padSize": {
  3333. name: "Pad Size",
  3334. power: 2,
  3335. type: "area",
  3336. base: math.unit(0.00889, "m^2")
  3337. },
  3338. "pawSize": {
  3339. name: "Paw Size",
  3340. power: 2,
  3341. type: "area",
  3342. base: math.unit(0.023667, "m^2")
  3343. },
  3344. }
  3345. },
  3346. },
  3347. [
  3348. {
  3349. name: "Normal",
  3350. height: math.unit(5 + 5 / 12, "feet")
  3351. },
  3352. {
  3353. name: "Large",
  3354. height: math.unit(12, "feet")
  3355. },
  3356. {
  3357. name: "Macro",
  3358. height: math.unit(100, "feet"),
  3359. default: true
  3360. },
  3361. {
  3362. name: "Macro+",
  3363. height: math.unit(260, "feet")
  3364. },
  3365. {
  3366. name: "Macro++",
  3367. height: math.unit(1, "mile")
  3368. },
  3369. ]
  3370. ))
  3371. characterMakers.push(() => makeCharacter(
  3372. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3373. {
  3374. front: {
  3375. height: math.unit(6, "feet"),
  3376. weight: math.unit(75, "kg"),
  3377. name: "Front",
  3378. image: {
  3379. source: "./media/characters/malik/front.svg",
  3380. extra: 1750/1561,
  3381. bottom: 80/1830
  3382. },
  3383. extraAttributes: {
  3384. "toeSize": {
  3385. name: "Toe Size",
  3386. power: 2,
  3387. type: "area",
  3388. base: math.unit(0.0159, "m^2")
  3389. },
  3390. "pawSize": {
  3391. name: "Paw Size",
  3392. power: 2,
  3393. type: "area",
  3394. base: math.unit(0.09834, "m^2")
  3395. },
  3396. }
  3397. },
  3398. side: {
  3399. height: math.unit(6, "feet"),
  3400. weight: math.unit(75, "kg"),
  3401. name: "Side",
  3402. image: {
  3403. source: "./media/characters/malik/side.svg",
  3404. extra: 1802/1685,
  3405. bottom: 42/1844
  3406. },
  3407. extraAttributes: {
  3408. "toeSize": {
  3409. name: "Toe Size",
  3410. power: 2,
  3411. type: "area",
  3412. base: math.unit(0.0159, "m^2")
  3413. },
  3414. "pawSize": {
  3415. name: "Paw Size",
  3416. power: 2,
  3417. type: "area",
  3418. base: math.unit(0.09834, "m^2")
  3419. },
  3420. }
  3421. },
  3422. back: {
  3423. height: math.unit(6, "feet"),
  3424. weight: math.unit(75, "kg"),
  3425. name: "Back",
  3426. image: {
  3427. source: "./media/characters/malik/back.svg",
  3428. extra: 1803/1607,
  3429. bottom: 33/1836
  3430. },
  3431. extraAttributes: {
  3432. "toeSize": {
  3433. name: "Toe Size",
  3434. power: 2,
  3435. type: "area",
  3436. base: math.unit(0.0159, "m^2")
  3437. },
  3438. "pawSize": {
  3439. name: "Paw Size",
  3440. power: 2,
  3441. type: "area",
  3442. base: math.unit(0.09834, "m^2")
  3443. },
  3444. }
  3445. },
  3446. },
  3447. [
  3448. {
  3449. name: "Macro",
  3450. height: math.unit(156, "feet"),
  3451. default: true
  3452. },
  3453. {
  3454. name: "Macro+",
  3455. height: math.unit(1188, "feet")
  3456. },
  3457. ]
  3458. ))
  3459. characterMakers.push(() => makeCharacter(
  3460. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3461. {
  3462. front: {
  3463. height: math.unit(6, "feet"),
  3464. weight: math.unit(75, "kg"),
  3465. name: "Front",
  3466. image: {
  3467. source: "./media/characters/sefer/front.svg",
  3468. extra: 848 / 659,
  3469. bottom: 28.3 / 876.442
  3470. }
  3471. },
  3472. back: {
  3473. height: math.unit(6, "feet"),
  3474. weight: math.unit(75, "kg"),
  3475. name: "Back",
  3476. image: {
  3477. source: "./media/characters/sefer/back.svg",
  3478. extra: 864 / 695,
  3479. bottom: 10 / 871
  3480. }
  3481. },
  3482. frontDressed: {
  3483. height: math.unit(6, "feet"),
  3484. weight: math.unit(75, "kg"),
  3485. name: "Front (Dressed)",
  3486. image: {
  3487. source: "./media/characters/sefer/front-dressed.svg",
  3488. extra: 839 / 653,
  3489. bottom: 37.6 / 878
  3490. }
  3491. },
  3492. },
  3493. [
  3494. {
  3495. name: "Normal",
  3496. height: math.unit(6, "feet"),
  3497. default: true
  3498. },
  3499. ]
  3500. ))
  3501. characterMakers.push(() => makeCharacter(
  3502. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3503. {
  3504. body: {
  3505. height: math.unit(2.2428, "meter"),
  3506. weight: math.unit(124.738, "kg"),
  3507. name: "Body",
  3508. image: {
  3509. extra: 1225 / 1050,
  3510. source: "./media/characters/north/front.svg"
  3511. }
  3512. }
  3513. },
  3514. [
  3515. {
  3516. name: "Micro",
  3517. height: math.unit(4, "inches")
  3518. },
  3519. {
  3520. name: "Macro",
  3521. height: math.unit(63, "meters")
  3522. },
  3523. {
  3524. name: "Megamacro",
  3525. height: math.unit(101, "miles"),
  3526. default: true
  3527. }
  3528. ]
  3529. ))
  3530. characterMakers.push(() => makeCharacter(
  3531. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3532. {
  3533. angled: {
  3534. height: math.unit(4, "meter"),
  3535. weight: math.unit(150, "kg"),
  3536. name: "Angled",
  3537. image: {
  3538. source: "./media/characters/talan/angled-sfw.svg",
  3539. bottom: 29 / 3734
  3540. }
  3541. },
  3542. angledNsfw: {
  3543. height: math.unit(4, "meter"),
  3544. weight: math.unit(150, "kg"),
  3545. name: "Angled (NSFW)",
  3546. image: {
  3547. source: "./media/characters/talan/angled-nsfw.svg",
  3548. bottom: 29 / 3734
  3549. }
  3550. },
  3551. frontNsfw: {
  3552. height: math.unit(4, "meter"),
  3553. weight: math.unit(150, "kg"),
  3554. name: "Front (NSFW)",
  3555. image: {
  3556. source: "./media/characters/talan/front-nsfw.svg",
  3557. bottom: 29 / 3734
  3558. }
  3559. },
  3560. sideNsfw: {
  3561. height: math.unit(4, "meter"),
  3562. weight: math.unit(150, "kg"),
  3563. name: "Side (NSFW)",
  3564. image: {
  3565. source: "./media/characters/talan/side-nsfw.svg",
  3566. bottom: 29 / 3734
  3567. }
  3568. },
  3569. back: {
  3570. height: math.unit(4, "meter"),
  3571. weight: math.unit(150, "kg"),
  3572. name: "Back",
  3573. image: {
  3574. source: "./media/characters/talan/back.svg"
  3575. }
  3576. },
  3577. dickBottom: {
  3578. height: math.unit(0.621, "meter"),
  3579. name: "Dick (Bottom)",
  3580. image: {
  3581. source: "./media/characters/talan/dick-bottom.svg"
  3582. }
  3583. },
  3584. dickTop: {
  3585. height: math.unit(0.621, "meter"),
  3586. name: "Dick (Top)",
  3587. image: {
  3588. source: "./media/characters/talan/dick-top.svg"
  3589. }
  3590. },
  3591. dickSide: {
  3592. height: math.unit(0.305, "meter"),
  3593. name: "Dick (Side)",
  3594. image: {
  3595. source: "./media/characters/talan/dick-side.svg"
  3596. }
  3597. },
  3598. dickFront: {
  3599. height: math.unit(0.305, "meter"),
  3600. name: "Dick (Front)",
  3601. image: {
  3602. source: "./media/characters/talan/dick-front.svg"
  3603. }
  3604. },
  3605. },
  3606. [
  3607. {
  3608. name: "Normal",
  3609. height: math.unit(4, "meters")
  3610. },
  3611. {
  3612. name: "Macro",
  3613. height: math.unit(100, "meters")
  3614. },
  3615. {
  3616. name: "Megamacro",
  3617. height: math.unit(2, "miles"),
  3618. default: true
  3619. },
  3620. {
  3621. name: "Gigamacro",
  3622. height: math.unit(5000, "miles")
  3623. },
  3624. {
  3625. name: "Teramacro",
  3626. height: math.unit(100, "parsecs")
  3627. }
  3628. ]
  3629. ))
  3630. characterMakers.push(() => makeCharacter(
  3631. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3632. {
  3633. front: {
  3634. height: math.unit(2, "meter"),
  3635. weight: math.unit(90, "kg"),
  3636. name: "Front",
  3637. image: {
  3638. source: "./media/characters/gael'rathus/front.svg"
  3639. }
  3640. },
  3641. frontAlt: {
  3642. height: math.unit(2, "meter"),
  3643. weight: math.unit(90, "kg"),
  3644. name: "Front (alt)",
  3645. image: {
  3646. source: "./media/characters/gael'rathus/front-alt.svg"
  3647. }
  3648. },
  3649. frontAlt2: {
  3650. height: math.unit(2, "meter"),
  3651. weight: math.unit(90, "kg"),
  3652. name: "Front (alt 2)",
  3653. image: {
  3654. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3655. }
  3656. }
  3657. },
  3658. [
  3659. {
  3660. name: "Normal",
  3661. height: math.unit(9, "feet"),
  3662. default: true
  3663. },
  3664. {
  3665. name: "Large",
  3666. height: math.unit(25, "feet")
  3667. },
  3668. {
  3669. name: "Macro",
  3670. height: math.unit(0.25, "miles")
  3671. },
  3672. {
  3673. name: "Megamacro",
  3674. height: math.unit(10, "miles")
  3675. }
  3676. ]
  3677. ))
  3678. characterMakers.push(() => makeCharacter(
  3679. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3680. {
  3681. side: {
  3682. height: math.unit(2, "meter"),
  3683. weight: math.unit(140, "kg"),
  3684. name: "Side",
  3685. image: {
  3686. source: "./media/characters/sosha/side.svg",
  3687. extra: 1170/1006,
  3688. bottom: 94/1264
  3689. }
  3690. },
  3691. maw: {
  3692. height: math.unit(2.87, "feet"),
  3693. name: "Maw",
  3694. image: {
  3695. source: "./media/characters/sosha/maw.svg",
  3696. extra: 966/865,
  3697. bottom: 0/966
  3698. }
  3699. },
  3700. cooch: {
  3701. height: math.unit(5.6, "feet"),
  3702. name: "Cooch",
  3703. image: {
  3704. source: "./media/characters/sosha/cooch.svg"
  3705. }
  3706. },
  3707. },
  3708. [
  3709. {
  3710. name: "Normal",
  3711. height: math.unit(12, "feet"),
  3712. default: true
  3713. }
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3718. {
  3719. side: {
  3720. height: math.unit(5 + 5 / 12, "feet"),
  3721. weight: math.unit(170, "kg"),
  3722. name: "Side",
  3723. image: {
  3724. source: "./media/characters/runnola/side.svg",
  3725. extra: 741 / 448,
  3726. bottom: 0.05
  3727. }
  3728. },
  3729. },
  3730. [
  3731. {
  3732. name: "Small",
  3733. height: math.unit(3, "feet")
  3734. },
  3735. {
  3736. name: "Normal",
  3737. height: math.unit(5 + 5 / 12, "feet"),
  3738. default: true
  3739. },
  3740. {
  3741. name: "Big",
  3742. height: math.unit(10, "feet")
  3743. },
  3744. ]
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3748. {
  3749. front: {
  3750. height: math.unit(2, "meter"),
  3751. weight: math.unit(50, "kg"),
  3752. name: "Front",
  3753. image: {
  3754. source: "./media/characters/kurribird/front.svg",
  3755. bottom: 0.015
  3756. }
  3757. },
  3758. frontAlt: {
  3759. height: math.unit(1.5, "meter"),
  3760. weight: math.unit(50, "kg"),
  3761. name: "Front (Alt)",
  3762. image: {
  3763. source: "./media/characters/kurribird/front-alt.svg",
  3764. extra: 1.45
  3765. }
  3766. },
  3767. },
  3768. [
  3769. {
  3770. name: "Normal",
  3771. height: math.unit(7, "feet")
  3772. },
  3773. {
  3774. name: "Big",
  3775. height: math.unit(12, "feet"),
  3776. default: true
  3777. },
  3778. {
  3779. name: "Macro",
  3780. height: math.unit(1500, "feet")
  3781. },
  3782. {
  3783. name: "Megamacro",
  3784. height: math.unit(2, "miles")
  3785. }
  3786. ]
  3787. ))
  3788. characterMakers.push(() => makeCharacter(
  3789. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3790. {
  3791. front: {
  3792. height: math.unit(2, "meter"),
  3793. weight: math.unit(80, "kg"),
  3794. name: "Front",
  3795. image: {
  3796. source: "./media/characters/elbial/front.svg",
  3797. extra: 1643 / 1556,
  3798. bottom: 60.2 / 1696
  3799. }
  3800. },
  3801. side: {
  3802. height: math.unit(2, "meter"),
  3803. weight: math.unit(80, "kg"),
  3804. name: "Side",
  3805. image: {
  3806. source: "./media/characters/elbial/side.svg",
  3807. extra: 1601/1528,
  3808. bottom: 97/1698
  3809. }
  3810. },
  3811. back: {
  3812. height: math.unit(2, "meter"),
  3813. weight: math.unit(80, "kg"),
  3814. name: "Back",
  3815. image: {
  3816. source: "./media/characters/elbial/back.svg",
  3817. extra: 1653/1569,
  3818. bottom: 20/1673
  3819. }
  3820. },
  3821. frontDressed: {
  3822. height: math.unit(2, "meter"),
  3823. weight: math.unit(80, "kg"),
  3824. name: "Front (Dressed)",
  3825. image: {
  3826. source: "./media/characters/elbial/front-dressed.svg",
  3827. extra: 1638/1569,
  3828. bottom: 70/1708
  3829. }
  3830. },
  3831. genitals: {
  3832. height: math.unit(2 / 3.367, "meter"),
  3833. name: "Genitals",
  3834. image: {
  3835. source: "./media/characters/elbial/genitals.svg"
  3836. }
  3837. },
  3838. },
  3839. [
  3840. {
  3841. name: "Large",
  3842. height: math.unit(100, "feet")
  3843. },
  3844. {
  3845. name: "Macro",
  3846. height: math.unit(500, "feet"),
  3847. default: true
  3848. },
  3849. {
  3850. name: "Megamacro",
  3851. height: math.unit(10, "miles")
  3852. },
  3853. {
  3854. name: "Gigamacro",
  3855. height: math.unit(25000, "miles")
  3856. },
  3857. {
  3858. name: "Full-Size",
  3859. height: math.unit(8000000, "gigaparsecs")
  3860. }
  3861. ]
  3862. ))
  3863. characterMakers.push(() => makeCharacter(
  3864. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3865. {
  3866. front: {
  3867. height: math.unit(2, "meter"),
  3868. weight: math.unit(60, "kg"),
  3869. name: "Front",
  3870. image: {
  3871. source: "./media/characters/noah/front.svg"
  3872. }
  3873. },
  3874. talons: {
  3875. height: math.unit(0.315, "meter"),
  3876. name: "Talons",
  3877. image: {
  3878. source: "./media/characters/noah/talons.svg"
  3879. }
  3880. }
  3881. },
  3882. [
  3883. {
  3884. name: "Large",
  3885. height: math.unit(50, "feet")
  3886. },
  3887. {
  3888. name: "Macro",
  3889. height: math.unit(750, "feet"),
  3890. default: true
  3891. },
  3892. {
  3893. name: "Megamacro",
  3894. height: math.unit(50, "miles")
  3895. },
  3896. {
  3897. name: "Gigamacro",
  3898. height: math.unit(100000, "miles")
  3899. },
  3900. {
  3901. name: "Full-Size",
  3902. height: math.unit(3000000000, "miles")
  3903. }
  3904. ]
  3905. ))
  3906. characterMakers.push(() => makeCharacter(
  3907. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3908. {
  3909. front: {
  3910. height: math.unit(2, "meter"),
  3911. weight: math.unit(80, "kg"),
  3912. name: "Front",
  3913. image: {
  3914. source: "./media/characters/natalya/front.svg"
  3915. }
  3916. },
  3917. back: {
  3918. height: math.unit(2, "meter"),
  3919. weight: math.unit(80, "kg"),
  3920. name: "Back",
  3921. image: {
  3922. source: "./media/characters/natalya/back.svg"
  3923. }
  3924. }
  3925. },
  3926. [
  3927. {
  3928. name: "Normal",
  3929. height: math.unit(150, "feet"),
  3930. default: true
  3931. },
  3932. {
  3933. name: "Megamacro",
  3934. height: math.unit(5, "miles")
  3935. },
  3936. {
  3937. name: "Full-Size",
  3938. height: math.unit(600, "kiloparsecs")
  3939. }
  3940. ]
  3941. ))
  3942. characterMakers.push(() => makeCharacter(
  3943. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3944. {
  3945. front: {
  3946. height: math.unit(2, "meter"),
  3947. weight: math.unit(50, "kg"),
  3948. name: "Front",
  3949. image: {
  3950. source: "./media/characters/erestrebah/front.svg",
  3951. extra: 1262/1162,
  3952. bottom: 96/1358
  3953. }
  3954. },
  3955. back: {
  3956. height: math.unit(2, "meter"),
  3957. weight: math.unit(50, "kg"),
  3958. name: "Back",
  3959. image: {
  3960. source: "./media/characters/erestrebah/back.svg",
  3961. extra: 1257/1139,
  3962. bottom: 13/1270
  3963. }
  3964. },
  3965. wing: {
  3966. height: math.unit(2, "meter"),
  3967. weight: math.unit(50, "kg"),
  3968. name: "Wing",
  3969. image: {
  3970. source: "./media/characters/erestrebah/wing.svg",
  3971. extra: 1262/1162,
  3972. bottom: 96/1358
  3973. }
  3974. },
  3975. mouth: {
  3976. height: math.unit(0.39, "feet"),
  3977. name: "Mouth",
  3978. image: {
  3979. source: "./media/characters/erestrebah/mouth.svg"
  3980. }
  3981. }
  3982. },
  3983. [
  3984. {
  3985. name: "Normal",
  3986. height: math.unit(10, "feet")
  3987. },
  3988. {
  3989. name: "Large",
  3990. height: math.unit(50, "feet"),
  3991. default: true
  3992. },
  3993. {
  3994. name: "Macro",
  3995. height: math.unit(300, "feet")
  3996. },
  3997. {
  3998. name: "Macro+",
  3999. height: math.unit(750, "feet")
  4000. },
  4001. {
  4002. name: "Megamacro",
  4003. height: math.unit(3, "miles")
  4004. }
  4005. ]
  4006. ))
  4007. characterMakers.push(() => makeCharacter(
  4008. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4009. {
  4010. front: {
  4011. height: math.unit(2, "meter"),
  4012. weight: math.unit(80, "kg"),
  4013. name: "Front",
  4014. image: {
  4015. source: "./media/characters/jennifer/front.svg",
  4016. bottom: 0.11,
  4017. extra: 1.16
  4018. }
  4019. },
  4020. frontAlt: {
  4021. height: math.unit(2, "meter"),
  4022. weight: math.unit(80, "kg"),
  4023. name: "Front (Alt)",
  4024. image: {
  4025. source: "./media/characters/jennifer/front-alt.svg"
  4026. }
  4027. }
  4028. },
  4029. [
  4030. {
  4031. name: "Canon Height",
  4032. height: math.unit(120, "feet"),
  4033. default: true
  4034. },
  4035. {
  4036. name: "Macro+",
  4037. height: math.unit(300, "feet")
  4038. },
  4039. {
  4040. name: "Megamacro",
  4041. height: math.unit(20000, "feet")
  4042. }
  4043. ]
  4044. ))
  4045. characterMakers.push(() => makeCharacter(
  4046. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4047. {
  4048. front: {
  4049. height: math.unit(2, "meter"),
  4050. weight: math.unit(50, "kg"),
  4051. name: "Front",
  4052. image: {
  4053. source: "./media/characters/kalista/front.svg",
  4054. extra: 1314/1145,
  4055. bottom: 101/1415
  4056. }
  4057. },
  4058. back: {
  4059. height: math.unit(2, "meter"),
  4060. weight: math.unit(50, "kg"),
  4061. name: "Back",
  4062. image: {
  4063. source: "./media/characters/kalista/back.svg",
  4064. extra: 1366 / 1156,
  4065. bottom: 33.9 / 1362.78
  4066. }
  4067. }
  4068. },
  4069. [
  4070. {
  4071. name: "Uncomfortably Small",
  4072. height: math.unit(10, "feet")
  4073. },
  4074. {
  4075. name: "Small",
  4076. height: math.unit(30, "feet")
  4077. },
  4078. {
  4079. name: "Macro",
  4080. height: math.unit(100, "feet"),
  4081. default: true
  4082. },
  4083. {
  4084. name: "Macro+",
  4085. height: math.unit(2000, "feet")
  4086. },
  4087. {
  4088. name: "True Form",
  4089. height: math.unit(8924, "miles")
  4090. }
  4091. ]
  4092. ))
  4093. characterMakers.push(() => makeCharacter(
  4094. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4095. {
  4096. front: {
  4097. height: math.unit(2, "meter"),
  4098. weight: math.unit(120, "kg"),
  4099. name: "Front",
  4100. image: {
  4101. source: "./media/characters/ggv/front.svg"
  4102. }
  4103. },
  4104. side: {
  4105. height: math.unit(2, "meter"),
  4106. weight: math.unit(120, "kg"),
  4107. name: "Side",
  4108. image: {
  4109. source: "./media/characters/ggv/side.svg"
  4110. }
  4111. }
  4112. },
  4113. [
  4114. {
  4115. name: "Extremely Puny",
  4116. height: math.unit(9 + 5 / 12, "feet")
  4117. },
  4118. {
  4119. name: "Horribly Small",
  4120. height: math.unit(47.7, "miles"),
  4121. default: true
  4122. },
  4123. {
  4124. name: "Reasonably Sized",
  4125. height: math.unit(25000, "parsecs")
  4126. },
  4127. {
  4128. name: "Slightly Uncompressed",
  4129. height: math.unit(7.77e31, "parsecs")
  4130. },
  4131. {
  4132. name: "Omniversal",
  4133. height: math.unit(1e300, "meters")
  4134. },
  4135. ]
  4136. ))
  4137. characterMakers.push(() => makeCharacter(
  4138. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4139. {
  4140. front: {
  4141. height: math.unit(2, "meter"),
  4142. weight: math.unit(75, "lb"),
  4143. name: "Front",
  4144. image: {
  4145. source: "./media/characters/napalm/front.svg"
  4146. }
  4147. },
  4148. back: {
  4149. height: math.unit(2, "meter"),
  4150. weight: math.unit(75, "lb"),
  4151. name: "Back",
  4152. image: {
  4153. source: "./media/characters/napalm/back.svg"
  4154. }
  4155. }
  4156. },
  4157. [
  4158. {
  4159. name: "Standard",
  4160. height: math.unit(55, "feet"),
  4161. default: true
  4162. }
  4163. ]
  4164. ))
  4165. characterMakers.push(() => makeCharacter(
  4166. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4167. {
  4168. front: {
  4169. height: math.unit(7 + 5 / 6, "feet"),
  4170. weight: math.unit(325, "lb"),
  4171. name: "Front",
  4172. image: {
  4173. source: "./media/characters/asana/front.svg",
  4174. extra: 1133 / 1060,
  4175. bottom: 15.2 / 1148.6
  4176. }
  4177. },
  4178. back: {
  4179. height: math.unit(7 + 5 / 6, "feet"),
  4180. weight: math.unit(325, "lb"),
  4181. name: "Back",
  4182. image: {
  4183. source: "./media/characters/asana/back.svg",
  4184. extra: 1114 / 1043,
  4185. bottom: 5 / 1120
  4186. }
  4187. },
  4188. dressedDark: {
  4189. height: math.unit(7 + 5 / 6, "feet"),
  4190. weight: math.unit(325, "lb"),
  4191. name: "Dressed (Dark)",
  4192. image: {
  4193. source: "./media/characters/asana/dressed-dark.svg",
  4194. extra: 1133 / 1060,
  4195. bottom: 15.2 / 1148.6
  4196. }
  4197. },
  4198. dressedLight: {
  4199. height: math.unit(7 + 5 / 6, "feet"),
  4200. weight: math.unit(325, "lb"),
  4201. name: "Dressed (Light)",
  4202. image: {
  4203. source: "./media/characters/asana/dressed-light.svg",
  4204. extra: 1133 / 1060,
  4205. bottom: 15.2 / 1148.6
  4206. }
  4207. },
  4208. },
  4209. [
  4210. {
  4211. name: "Standard",
  4212. height: math.unit(7 + 5 / 6, "feet"),
  4213. default: true
  4214. },
  4215. {
  4216. name: "Large",
  4217. height: math.unit(10, "meters")
  4218. },
  4219. {
  4220. name: "Macro",
  4221. height: math.unit(2500, "meters")
  4222. },
  4223. {
  4224. name: "Megamacro",
  4225. height: math.unit(5e6, "meters")
  4226. },
  4227. {
  4228. name: "Examacro",
  4229. height: math.unit(5e12, "lightyears")
  4230. },
  4231. {
  4232. name: "Max Size",
  4233. height: math.unit(1e31, "lightyears")
  4234. }
  4235. ]
  4236. ))
  4237. characterMakers.push(() => makeCharacter(
  4238. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4239. {
  4240. front: {
  4241. height: math.unit(2, "meter"),
  4242. weight: math.unit(60, "kg"),
  4243. name: "Front",
  4244. image: {
  4245. source: "./media/characters/ebony/front.svg",
  4246. bottom: 0.03,
  4247. extra: 1045 / 810 + 0.03
  4248. }
  4249. },
  4250. side: {
  4251. height: math.unit(2, "meter"),
  4252. weight: math.unit(60, "kg"),
  4253. name: "Side",
  4254. image: {
  4255. source: "./media/characters/ebony/side.svg",
  4256. bottom: 0.03,
  4257. extra: 1045 / 810 + 0.03
  4258. }
  4259. },
  4260. back: {
  4261. height: math.unit(2, "meter"),
  4262. weight: math.unit(60, "kg"),
  4263. name: "Back",
  4264. image: {
  4265. source: "./media/characters/ebony/back.svg",
  4266. bottom: 0.01,
  4267. extra: 1045 / 810 + 0.01
  4268. }
  4269. },
  4270. },
  4271. [
  4272. // TODO check why I did this lol
  4273. {
  4274. name: "Standard",
  4275. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4276. default: true
  4277. },
  4278. {
  4279. name: "Macro",
  4280. height: math.unit(200, "feet")
  4281. },
  4282. {
  4283. name: "Gigamacro",
  4284. height: math.unit(13000, "km")
  4285. }
  4286. ]
  4287. ))
  4288. characterMakers.push(() => makeCharacter(
  4289. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4290. {
  4291. front: {
  4292. height: math.unit(6, "feet"),
  4293. weight: math.unit(175, "lb"),
  4294. name: "Front",
  4295. image: {
  4296. source: "./media/characters/mountain/front.svg",
  4297. extra: 972 / 955,
  4298. bottom: 64 / 1036.6
  4299. }
  4300. },
  4301. back: {
  4302. height: math.unit(6, "feet"),
  4303. weight: math.unit(175, "lb"),
  4304. name: "Back",
  4305. image: {
  4306. source: "./media/characters/mountain/back.svg",
  4307. extra: 970 / 950,
  4308. bottom: 28.25 / 999
  4309. }
  4310. },
  4311. },
  4312. [
  4313. {
  4314. name: "Large",
  4315. height: math.unit(20, "meters")
  4316. },
  4317. {
  4318. name: "Macro",
  4319. height: math.unit(300, "meters")
  4320. },
  4321. {
  4322. name: "Gigamacro",
  4323. height: math.unit(10000, "km"),
  4324. default: true
  4325. },
  4326. {
  4327. name: "Examacro",
  4328. height: math.unit(10e9, "lightyears")
  4329. }
  4330. ]
  4331. ))
  4332. characterMakers.push(() => makeCharacter(
  4333. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4334. {
  4335. front: {
  4336. height: math.unit(8, "feet"),
  4337. weight: math.unit(500, "lb"),
  4338. name: "Front",
  4339. image: {
  4340. source: "./media/characters/rick/front.svg"
  4341. }
  4342. }
  4343. },
  4344. [
  4345. {
  4346. name: "Normal",
  4347. height: math.unit(8, "feet"),
  4348. default: true
  4349. },
  4350. {
  4351. name: "Macro",
  4352. height: math.unit(5, "km")
  4353. }
  4354. ]
  4355. ))
  4356. characterMakers.push(() => makeCharacter(
  4357. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4358. {
  4359. front: {
  4360. height: math.unit(8, "feet"),
  4361. weight: math.unit(120, "lb"),
  4362. name: "Front",
  4363. image: {
  4364. source: "./media/characters/ona/front.svg"
  4365. }
  4366. },
  4367. frontAlt: {
  4368. height: math.unit(8, "feet"),
  4369. weight: math.unit(120, "lb"),
  4370. name: "Front (Alt)",
  4371. image: {
  4372. source: "./media/characters/ona/front-alt.svg"
  4373. }
  4374. },
  4375. back: {
  4376. height: math.unit(8, "feet"),
  4377. weight: math.unit(120, "lb"),
  4378. name: "Back",
  4379. image: {
  4380. source: "./media/characters/ona/back.svg"
  4381. }
  4382. },
  4383. foot: {
  4384. height: math.unit(1.1, "feet"),
  4385. name: "Foot",
  4386. image: {
  4387. source: "./media/characters/ona/foot.svg"
  4388. }
  4389. }
  4390. },
  4391. [
  4392. {
  4393. name: "Megamacro",
  4394. height: math.unit(70, "km"),
  4395. default: true
  4396. },
  4397. {
  4398. name: "Gigamacro",
  4399. height: math.unit(681818, "miles")
  4400. },
  4401. {
  4402. name: "Examacro",
  4403. height: math.unit(3800000, "lightyears")
  4404. },
  4405. ]
  4406. ))
  4407. characterMakers.push(() => makeCharacter(
  4408. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4409. {
  4410. front: {
  4411. height: math.unit(12, "feet"),
  4412. weight: math.unit(3000, "lb"),
  4413. name: "Front",
  4414. image: {
  4415. source: "./media/characters/mech/front.svg",
  4416. extra: 2900 / 2770,
  4417. bottom: 110 / 3010
  4418. }
  4419. },
  4420. back: {
  4421. height: math.unit(12, "feet"),
  4422. weight: math.unit(3000, "lb"),
  4423. name: "Back",
  4424. image: {
  4425. source: "./media/characters/mech/back.svg",
  4426. extra: 3011 / 2890,
  4427. bottom: 94 / 3105
  4428. }
  4429. },
  4430. maw: {
  4431. height: math.unit(3.07, "feet"),
  4432. name: "Maw",
  4433. image: {
  4434. source: "./media/characters/mech/maw.svg"
  4435. }
  4436. },
  4437. head: {
  4438. height: math.unit(2.82, "feet"),
  4439. name: "Head",
  4440. image: {
  4441. source: "./media/characters/mech/head.svg"
  4442. }
  4443. },
  4444. dick: {
  4445. height: math.unit(1.43, "feet"),
  4446. name: "Dick",
  4447. image: {
  4448. source: "./media/characters/mech/dick.svg"
  4449. }
  4450. },
  4451. },
  4452. [
  4453. {
  4454. name: "Normal",
  4455. height: math.unit(12, "feet")
  4456. },
  4457. {
  4458. name: "Macro",
  4459. height: math.unit(300, "feet"),
  4460. default: true
  4461. },
  4462. {
  4463. name: "Macro+",
  4464. height: math.unit(1500, "feet")
  4465. },
  4466. ]
  4467. ))
  4468. characterMakers.push(() => makeCharacter(
  4469. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4470. {
  4471. front: {
  4472. height: math.unit(1.3, "meter"),
  4473. weight: math.unit(30, "kg"),
  4474. name: "Front",
  4475. image: {
  4476. source: "./media/characters/gregory/front.svg",
  4477. }
  4478. }
  4479. },
  4480. [
  4481. {
  4482. name: "Normal",
  4483. height: math.unit(1.3, "meter"),
  4484. default: true
  4485. },
  4486. {
  4487. name: "Macro",
  4488. height: math.unit(20, "meter")
  4489. }
  4490. ]
  4491. ))
  4492. characterMakers.push(() => makeCharacter(
  4493. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4494. {
  4495. front: {
  4496. height: math.unit(2.8, "meter"),
  4497. weight: math.unit(200, "kg"),
  4498. name: "Front",
  4499. image: {
  4500. source: "./media/characters/elory/front.svg",
  4501. }
  4502. }
  4503. },
  4504. [
  4505. {
  4506. name: "Normal",
  4507. height: math.unit(2.8, "meter"),
  4508. default: true
  4509. },
  4510. {
  4511. name: "Macro",
  4512. height: math.unit(38, "meter")
  4513. }
  4514. ]
  4515. ))
  4516. characterMakers.push(() => makeCharacter(
  4517. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4518. {
  4519. front: {
  4520. height: math.unit(470, "feet"),
  4521. weight: math.unit(924, "tons"),
  4522. name: "Front",
  4523. image: {
  4524. source: "./media/characters/angelpatamon/front.svg",
  4525. }
  4526. }
  4527. },
  4528. [
  4529. {
  4530. name: "Normal",
  4531. height: math.unit(470, "feet"),
  4532. default: true
  4533. },
  4534. {
  4535. name: "Deity Size I",
  4536. height: math.unit(28651.2, "km")
  4537. },
  4538. {
  4539. name: "Deity Size II",
  4540. height: math.unit(171907.2, "km")
  4541. }
  4542. ]
  4543. ))
  4544. characterMakers.push(() => makeCharacter(
  4545. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4546. {
  4547. side: {
  4548. height: math.unit(7.2, "meter"),
  4549. weight: math.unit(8.2, "tons"),
  4550. name: "Side",
  4551. image: {
  4552. source: "./media/characters/cryae/side.svg",
  4553. extra: 3500 / 1500
  4554. }
  4555. }
  4556. },
  4557. [
  4558. {
  4559. name: "Normal",
  4560. height: math.unit(7.2, "meter"),
  4561. default: true
  4562. }
  4563. ]
  4564. ))
  4565. characterMakers.push(() => makeCharacter(
  4566. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4567. {
  4568. front: {
  4569. height: math.unit(6, "feet"),
  4570. weight: math.unit(175, "lb"),
  4571. name: "Front",
  4572. image: {
  4573. source: "./media/characters/xera/front.svg",
  4574. extra: 2377 / 1972,
  4575. bottom: 75.5 / 2452
  4576. }
  4577. },
  4578. side: {
  4579. height: math.unit(6, "feet"),
  4580. weight: math.unit(175, "lb"),
  4581. name: "Side",
  4582. image: {
  4583. source: "./media/characters/xera/side.svg",
  4584. extra: 2345 / 2019,
  4585. bottom: 39.7 / 2384
  4586. }
  4587. },
  4588. back: {
  4589. height: math.unit(6, "feet"),
  4590. weight: math.unit(175, "lb"),
  4591. name: "Back",
  4592. image: {
  4593. source: "./media/characters/xera/back.svg",
  4594. extra: 2095 / 1984,
  4595. bottom: 67 / 2166
  4596. }
  4597. },
  4598. },
  4599. [
  4600. {
  4601. name: "Small",
  4602. height: math.unit(10, "feet")
  4603. },
  4604. {
  4605. name: "Macro",
  4606. height: math.unit(500, "meters"),
  4607. default: true
  4608. },
  4609. {
  4610. name: "Macro+",
  4611. height: math.unit(10, "km")
  4612. },
  4613. {
  4614. name: "Gigamacro",
  4615. height: math.unit(25000, "km")
  4616. },
  4617. {
  4618. name: "Teramacro",
  4619. height: math.unit(3e6, "km")
  4620. }
  4621. ]
  4622. ))
  4623. characterMakers.push(() => makeCharacter(
  4624. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4625. {
  4626. front: {
  4627. height: math.unit(6, "feet"),
  4628. weight: math.unit(175, "lb"),
  4629. name: "Front",
  4630. image: {
  4631. source: "./media/characters/nebula/front.svg",
  4632. extra: 2566 / 2362,
  4633. bottom: 81 / 2644
  4634. }
  4635. }
  4636. },
  4637. [
  4638. {
  4639. name: "Small",
  4640. height: math.unit(4.5, "meters")
  4641. },
  4642. {
  4643. name: "Macro",
  4644. height: math.unit(1500, "meters"),
  4645. default: true
  4646. },
  4647. {
  4648. name: "Megamacro",
  4649. height: math.unit(150, "km")
  4650. },
  4651. {
  4652. name: "Gigamacro",
  4653. height: math.unit(27000, "km")
  4654. }
  4655. ]
  4656. ))
  4657. characterMakers.push(() => makeCharacter(
  4658. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4659. {
  4660. front: {
  4661. height: math.unit(6, "feet"),
  4662. weight: math.unit(225, "lb"),
  4663. name: "Front",
  4664. image: {
  4665. source: "./media/characters/abysgar/front.svg",
  4666. extra: 1739/1614,
  4667. bottom: 71/1810
  4668. }
  4669. },
  4670. frontNsfw: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(225, "lb"),
  4673. name: "Front (NSFW)",
  4674. image: {
  4675. source: "./media/characters/abysgar/front-nsfw.svg",
  4676. extra: 1739/1614,
  4677. bottom: 71/1810
  4678. }
  4679. },
  4680. back: {
  4681. height: math.unit(4.6, "feet"),
  4682. weight: math.unit(225, "lb"),
  4683. name: "Back",
  4684. image: {
  4685. source: "./media/characters/abysgar/back.svg",
  4686. extra: 1384/1327,
  4687. bottom: 0/1384
  4688. }
  4689. },
  4690. head: {
  4691. height: math.unit(1.25, "feet"),
  4692. name: "Head",
  4693. image: {
  4694. source: "./media/characters/abysgar/head.svg",
  4695. extra: 669/569,
  4696. bottom: 0/669
  4697. }
  4698. },
  4699. },
  4700. [
  4701. {
  4702. name: "Small",
  4703. height: math.unit(4.5, "meters")
  4704. },
  4705. {
  4706. name: "Macro",
  4707. height: math.unit(1250, "meters"),
  4708. default: true
  4709. },
  4710. {
  4711. name: "Megamacro",
  4712. height: math.unit(125, "km")
  4713. },
  4714. {
  4715. name: "Gigamacro",
  4716. height: math.unit(26000, "km")
  4717. }
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4722. {
  4723. front: {
  4724. height: math.unit(6, "feet"),
  4725. weight: math.unit(180, "lb"),
  4726. name: "Front",
  4727. image: {
  4728. source: "./media/characters/yakuz/front.svg"
  4729. }
  4730. }
  4731. },
  4732. [
  4733. {
  4734. name: "Small",
  4735. height: math.unit(5, "meters")
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(1500, "meters"),
  4740. default: true
  4741. },
  4742. {
  4743. name: "Megamacro",
  4744. height: math.unit(200, "km")
  4745. },
  4746. {
  4747. name: "Gigamacro",
  4748. height: math.unit(100000, "km")
  4749. }
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(6, "feet"),
  4757. weight: math.unit(175, "lb"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/mirova/front.svg",
  4761. extra: 3334 / 3071,
  4762. bottom: 42 / 3375.6
  4763. }
  4764. }
  4765. },
  4766. [
  4767. {
  4768. name: "Small",
  4769. height: math.unit(5, "meters")
  4770. },
  4771. {
  4772. name: "Macro",
  4773. height: math.unit(900, "meters"),
  4774. default: true
  4775. },
  4776. {
  4777. name: "Megamacro",
  4778. height: math.unit(135, "km")
  4779. },
  4780. {
  4781. name: "Gigamacro",
  4782. height: math.unit(20000, "km")
  4783. }
  4784. ]
  4785. ))
  4786. characterMakers.push(() => makeCharacter(
  4787. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4788. {
  4789. side: {
  4790. height: math.unit(28.35, "feet"),
  4791. weight: math.unit(99.75, "tons"),
  4792. name: "Side",
  4793. image: {
  4794. source: "./media/characters/asana-mech/side.svg",
  4795. extra: 923 / 699,
  4796. bottom: 50 / 975
  4797. }
  4798. },
  4799. chaingun: {
  4800. height: math.unit(7, "feet"),
  4801. weight: math.unit(2400, "lb"),
  4802. name: "Chaingun",
  4803. image: {
  4804. source: "./media/characters/asana-mech/chaingun.svg"
  4805. }
  4806. },
  4807. laser: {
  4808. height: math.unit(7.12, "feet"),
  4809. weight: math.unit(2000, "lb"),
  4810. name: "Laser",
  4811. image: {
  4812. source: "./media/characters/asana-mech/laser.svg"
  4813. }
  4814. },
  4815. },
  4816. [
  4817. {
  4818. name: "Normal",
  4819. height: math.unit(28.35, "feet"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Macro",
  4824. height: math.unit(2500, "feet")
  4825. },
  4826. {
  4827. name: "Megamacro",
  4828. height: math.unit(25, "miles")
  4829. },
  4830. {
  4831. name: "Examacro",
  4832. height: math.unit(6e8, "lightyears")
  4833. },
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(5, "meters"),
  4841. weight: math.unit(1000, "kg"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/asche/front.svg",
  4845. extra: 1258 / 1190,
  4846. bottom: 47 / 1305
  4847. }
  4848. },
  4849. frontUnderwear: {
  4850. height: math.unit(5, "meters"),
  4851. weight: math.unit(1000, "kg"),
  4852. name: "Front (Underwear)",
  4853. image: {
  4854. source: "./media/characters/asche/front-underwear.svg",
  4855. extra: 1258 / 1190,
  4856. bottom: 47 / 1305
  4857. }
  4858. },
  4859. frontDressed: {
  4860. height: math.unit(5, "meters"),
  4861. weight: math.unit(1000, "kg"),
  4862. name: "Front (Dressed)",
  4863. image: {
  4864. source: "./media/characters/asche/front-dressed.svg",
  4865. extra: 1258 / 1190,
  4866. bottom: 47 / 1305
  4867. }
  4868. },
  4869. frontArmor: {
  4870. height: math.unit(5, "meters"),
  4871. weight: math.unit(1000, "kg"),
  4872. name: "Front (Armored)",
  4873. image: {
  4874. source: "./media/characters/asche/front-armored.svg",
  4875. extra: 1374 / 1308,
  4876. bottom: 23 / 1397
  4877. }
  4878. },
  4879. mp724: {
  4880. height: math.unit(0.96, "meters"),
  4881. weight: math.unit(38, "kg"),
  4882. name: "H&K MP724",
  4883. image: {
  4884. source: "./media/characters/asche/h&k-mp724.svg"
  4885. }
  4886. },
  4887. side: {
  4888. height: math.unit(5, "meters"),
  4889. weight: math.unit(1000, "kg"),
  4890. name: "Side",
  4891. image: {
  4892. source: "./media/characters/asche/side.svg",
  4893. extra: 1717 / 1609,
  4894. bottom: 0.005
  4895. }
  4896. },
  4897. back: {
  4898. height: math.unit(5, "meters"),
  4899. weight: math.unit(1000, "kg"),
  4900. name: "Back",
  4901. image: {
  4902. source: "./media/characters/asche/back.svg",
  4903. extra: 1570 / 1501
  4904. }
  4905. },
  4906. },
  4907. [
  4908. {
  4909. name: "DEFCON 5",
  4910. height: math.unit(5, "meters")
  4911. },
  4912. {
  4913. name: "DEFCON 4",
  4914. height: math.unit(500, "meters"),
  4915. default: true
  4916. },
  4917. {
  4918. name: "DEFCON 3",
  4919. height: math.unit(5, "km")
  4920. },
  4921. {
  4922. name: "DEFCON 2",
  4923. height: math.unit(500, "km")
  4924. },
  4925. {
  4926. name: "DEFCON 1",
  4927. height: math.unit(500000, "km")
  4928. },
  4929. {
  4930. name: "DEFCON 0",
  4931. height: math.unit(3, "gigaparsecs")
  4932. },
  4933. ]
  4934. ))
  4935. characterMakers.push(() => makeCharacter(
  4936. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4937. {
  4938. front: {
  4939. height: math.unit(2, "meters"),
  4940. weight: math.unit(76, "kg"),
  4941. name: "Front",
  4942. image: {
  4943. source: "./media/characters/gale/front.svg"
  4944. }
  4945. },
  4946. frontAlt1: {
  4947. height: math.unit(2, "meters"),
  4948. weight: math.unit(76, "kg"),
  4949. name: "Front (Alt 1)",
  4950. image: {
  4951. source: "./media/characters/gale/front-alt-1.svg"
  4952. }
  4953. },
  4954. frontAlt2: {
  4955. height: math.unit(2, "meters"),
  4956. weight: math.unit(76, "kg"),
  4957. name: "Front (Alt 2)",
  4958. image: {
  4959. source: "./media/characters/gale/front-alt-2.svg"
  4960. }
  4961. },
  4962. },
  4963. [
  4964. {
  4965. name: "Normal",
  4966. height: math.unit(7, "feet")
  4967. },
  4968. {
  4969. name: "Macro",
  4970. height: math.unit(150, "feet"),
  4971. default: true
  4972. },
  4973. {
  4974. name: "Macro+",
  4975. height: math.unit(300, "feet")
  4976. },
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4981. {
  4982. front: {
  4983. height: math.unit(5 + 10/12, "feet"),
  4984. weight: math.unit(67, "kg"),
  4985. name: "Front",
  4986. image: {
  4987. source: "./media/characters/draylen/front.svg",
  4988. extra: 832/777,
  4989. bottom: 85/917
  4990. }
  4991. }
  4992. },
  4993. [
  4994. {
  4995. name: "Normal",
  4996. height: math.unit(5 + 10/12, "feet")
  4997. },
  4998. {
  4999. name: "Macro",
  5000. height: math.unit(150, "feet"),
  5001. default: true
  5002. }
  5003. ]
  5004. ))
  5005. characterMakers.push(() => makeCharacter(
  5006. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5007. {
  5008. front: {
  5009. height: math.unit(7 + 9 / 12, "feet"),
  5010. weight: math.unit(379, "lbs"),
  5011. name: "Front",
  5012. image: {
  5013. source: "./media/characters/chez/front.svg"
  5014. }
  5015. },
  5016. side: {
  5017. height: math.unit(7 + 9 / 12, "feet"),
  5018. weight: math.unit(379, "lbs"),
  5019. name: "Side",
  5020. image: {
  5021. source: "./media/characters/chez/side.svg"
  5022. }
  5023. }
  5024. },
  5025. [
  5026. {
  5027. name: "Normal",
  5028. height: math.unit(7 + 9 / 12, "feet"),
  5029. default: true
  5030. },
  5031. {
  5032. name: "God King",
  5033. height: math.unit(9750000, "meters")
  5034. }
  5035. ]
  5036. ))
  5037. characterMakers.push(() => makeCharacter(
  5038. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5039. {
  5040. front: {
  5041. height: math.unit(6, "feet"),
  5042. weight: math.unit(275, "lbs"),
  5043. name: "Front",
  5044. image: {
  5045. source: "./media/characters/kaylum/front.svg",
  5046. bottom: 0.01,
  5047. extra: 1166 / 1031
  5048. }
  5049. },
  5050. frontWingless: {
  5051. height: math.unit(6, "feet"),
  5052. weight: math.unit(275, "lbs"),
  5053. name: "Front (Wingless)",
  5054. image: {
  5055. source: "./media/characters/kaylum/front-wingless.svg",
  5056. bottom: 0.01,
  5057. extra: 1117 / 1031
  5058. }
  5059. }
  5060. },
  5061. [
  5062. {
  5063. name: "Normal",
  5064. height: math.unit(3.05, "meters")
  5065. },
  5066. {
  5067. name: "Master",
  5068. height: math.unit(5.5, "meters")
  5069. },
  5070. {
  5071. name: "Rampage",
  5072. height: math.unit(19, "meters")
  5073. },
  5074. {
  5075. name: "Macro Lite",
  5076. height: math.unit(37, "meters")
  5077. },
  5078. {
  5079. name: "Hyper Predator",
  5080. height: math.unit(61, "meters")
  5081. },
  5082. {
  5083. name: "Macro",
  5084. height: math.unit(138, "meters"),
  5085. default: true
  5086. }
  5087. ]
  5088. ))
  5089. characterMakers.push(() => makeCharacter(
  5090. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5091. {
  5092. front: {
  5093. height: math.unit(5 + 5 / 12, "feet"),
  5094. weight: math.unit(120, "lbs"),
  5095. name: "Front",
  5096. image: {
  5097. source: "./media/characters/geta/front.svg",
  5098. extra: 1003/933,
  5099. bottom: 21/1024
  5100. }
  5101. },
  5102. paw: {
  5103. height: math.unit(0.35, "feet"),
  5104. name: "Paw",
  5105. image: {
  5106. source: "./media/characters/geta/paw.svg"
  5107. }
  5108. },
  5109. },
  5110. [
  5111. {
  5112. name: "Micro",
  5113. height: math.unit(3, "inches"),
  5114. default: true
  5115. },
  5116. {
  5117. name: "Normal",
  5118. height: math.unit(5 + 5 / 12, "feet")
  5119. }
  5120. ]
  5121. ))
  5122. characterMakers.push(() => makeCharacter(
  5123. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5124. {
  5125. front: {
  5126. height: math.unit(6, "feet"),
  5127. weight: math.unit(300, "lbs"),
  5128. name: "Front",
  5129. image: {
  5130. source: "./media/characters/tyrnn/front.svg"
  5131. }
  5132. }
  5133. },
  5134. [
  5135. {
  5136. name: "Main Height",
  5137. height: math.unit(355, "feet"),
  5138. default: true
  5139. },
  5140. {
  5141. name: "Fave. Height",
  5142. height: math.unit(2400, "feet")
  5143. }
  5144. ]
  5145. ))
  5146. characterMakers.push(() => makeCharacter(
  5147. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5148. {
  5149. front: {
  5150. height: math.unit(6, "feet"),
  5151. weight: math.unit(300, "lbs"),
  5152. name: "Front",
  5153. image: {
  5154. source: "./media/characters/appledectomy/front.svg"
  5155. }
  5156. }
  5157. },
  5158. [
  5159. {
  5160. name: "Macro",
  5161. height: math.unit(2500, "feet")
  5162. },
  5163. {
  5164. name: "Megamacro",
  5165. height: math.unit(50, "miles"),
  5166. default: true
  5167. },
  5168. {
  5169. name: "Gigamacro",
  5170. height: math.unit(5000, "miles")
  5171. },
  5172. {
  5173. name: "Teramacro",
  5174. height: math.unit(250000, "miles")
  5175. },
  5176. ]
  5177. ))
  5178. characterMakers.push(() => makeCharacter(
  5179. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5180. {
  5181. front: {
  5182. height: math.unit(6, "feet"),
  5183. weight: math.unit(200, "lbs"),
  5184. name: "Front",
  5185. image: {
  5186. source: "./media/characters/vulpes/front.svg",
  5187. extra: 573 / 543,
  5188. bottom: 0.033
  5189. }
  5190. },
  5191. side: {
  5192. height: math.unit(6, "feet"),
  5193. weight: math.unit(200, "lbs"),
  5194. name: "Side",
  5195. image: {
  5196. source: "./media/characters/vulpes/side.svg",
  5197. extra: 577 / 549,
  5198. bottom: 11 / 588
  5199. }
  5200. },
  5201. back: {
  5202. height: math.unit(6, "feet"),
  5203. weight: math.unit(200, "lbs"),
  5204. name: "Back",
  5205. image: {
  5206. source: "./media/characters/vulpes/back.svg",
  5207. extra: 573 / 549,
  5208. bottom: 20 / 593
  5209. }
  5210. },
  5211. feet: {
  5212. height: math.unit(1.276, "feet"),
  5213. name: "Feet",
  5214. image: {
  5215. source: "./media/characters/vulpes/feet.svg"
  5216. }
  5217. },
  5218. maw: {
  5219. height: math.unit(1.18, "feet"),
  5220. name: "Maw",
  5221. image: {
  5222. source: "./media/characters/vulpes/maw.svg"
  5223. }
  5224. },
  5225. },
  5226. [
  5227. {
  5228. name: "Micro",
  5229. height: math.unit(2, "inches")
  5230. },
  5231. {
  5232. name: "Normal",
  5233. height: math.unit(6.3, "feet")
  5234. },
  5235. {
  5236. name: "Macro",
  5237. height: math.unit(850, "feet")
  5238. },
  5239. {
  5240. name: "Megamacro",
  5241. height: math.unit(7500, "feet"),
  5242. default: true
  5243. },
  5244. {
  5245. name: "Gigamacro",
  5246. height: math.unit(570000, "miles")
  5247. }
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5252. {
  5253. front: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(210, "lbs"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/rain-fallen/front.svg"
  5259. }
  5260. },
  5261. side: {
  5262. height: math.unit(6, "feet"),
  5263. weight: math.unit(210, "lbs"),
  5264. name: "Side",
  5265. image: {
  5266. source: "./media/characters/rain-fallen/side.svg"
  5267. }
  5268. },
  5269. back: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(210, "lbs"),
  5272. name: "Back",
  5273. image: {
  5274. source: "./media/characters/rain-fallen/back.svg"
  5275. }
  5276. },
  5277. feral: {
  5278. height: math.unit(9, "feet"),
  5279. weight: math.unit(700, "lbs"),
  5280. name: "Feral",
  5281. image: {
  5282. source: "./media/characters/rain-fallen/feral.svg"
  5283. }
  5284. },
  5285. },
  5286. [
  5287. {
  5288. name: "Meddling with Mortals",
  5289. height: math.unit(8 + 8/12, "feet")
  5290. },
  5291. {
  5292. name: "Normal",
  5293. height: math.unit(5, "meter")
  5294. },
  5295. {
  5296. name: "Macro",
  5297. height: math.unit(150, "meter"),
  5298. default: true
  5299. },
  5300. {
  5301. name: "Megamacro",
  5302. height: math.unit(278e6, "meter")
  5303. },
  5304. {
  5305. name: "Gigamacro",
  5306. height: math.unit(2e9, "meter")
  5307. },
  5308. {
  5309. name: "Teramacro",
  5310. height: math.unit(8e12, "meter")
  5311. },
  5312. {
  5313. name: "Devourer",
  5314. height: math.unit(14, "zettameters")
  5315. },
  5316. {
  5317. name: "Scarlet King",
  5318. height: math.unit(18, "yottameters")
  5319. },
  5320. {
  5321. name: "Void",
  5322. height: math.unit(1e88, "yottameters")
  5323. }
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5328. {
  5329. standing: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(180, "lbs"),
  5332. name: "Standing",
  5333. image: {
  5334. source: "./media/characters/zaakira/standing.svg",
  5335. extra: 1599/1504,
  5336. bottom: 39/1638
  5337. }
  5338. },
  5339. laying: {
  5340. height: math.unit(3.3, "feet"),
  5341. weight: math.unit(180, "lbs"),
  5342. name: "Laying",
  5343. image: {
  5344. source: "./media/characters/zaakira/laying.svg"
  5345. }
  5346. },
  5347. },
  5348. [
  5349. {
  5350. name: "Normal",
  5351. height: math.unit(12, "feet")
  5352. },
  5353. {
  5354. name: "Macro",
  5355. height: math.unit(279, "feet"),
  5356. default: true
  5357. }
  5358. ]
  5359. ))
  5360. characterMakers.push(() => makeCharacter(
  5361. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5362. {
  5363. femSfw: {
  5364. height: math.unit(8, "feet"),
  5365. weight: math.unit(350, "lb"),
  5366. name: "Fem",
  5367. image: {
  5368. source: "./media/characters/sigvald/fem-sfw.svg",
  5369. extra: 182 / 164,
  5370. bottom: 8.7 / 190.5
  5371. }
  5372. },
  5373. femNsfw: {
  5374. height: math.unit(8, "feet"),
  5375. weight: math.unit(350, "lb"),
  5376. name: "Fem (NSFW)",
  5377. image: {
  5378. source: "./media/characters/sigvald/fem-nsfw.svg",
  5379. extra: 182 / 164,
  5380. bottom: 8.7 / 190.5
  5381. }
  5382. },
  5383. maleNsfw: {
  5384. height: math.unit(8, "feet"),
  5385. weight: math.unit(350, "lb"),
  5386. name: "Male (NSFW)",
  5387. image: {
  5388. source: "./media/characters/sigvald/male-nsfw.svg",
  5389. extra: 182 / 164,
  5390. bottom: 8.7 / 190.5
  5391. }
  5392. },
  5393. hermNsfw: {
  5394. height: math.unit(8, "feet"),
  5395. weight: math.unit(350, "lb"),
  5396. name: "Herm (NSFW)",
  5397. image: {
  5398. source: "./media/characters/sigvald/herm-nsfw.svg",
  5399. extra: 182 / 164,
  5400. bottom: 8.7 / 190.5
  5401. }
  5402. },
  5403. dick: {
  5404. height: math.unit(2.36, "feet"),
  5405. name: "Dick",
  5406. image: {
  5407. source: "./media/characters/sigvald/dick.svg"
  5408. }
  5409. },
  5410. eye: {
  5411. height: math.unit(0.31, "feet"),
  5412. name: "Eye",
  5413. image: {
  5414. source: "./media/characters/sigvald/eye.svg"
  5415. }
  5416. },
  5417. mouth: {
  5418. height: math.unit(0.92, "feet"),
  5419. name: "Mouth",
  5420. image: {
  5421. source: "./media/characters/sigvald/mouth.svg"
  5422. }
  5423. },
  5424. paws: {
  5425. height: math.unit(2.2, "feet"),
  5426. name: "Paws",
  5427. image: {
  5428. source: "./media/characters/sigvald/paws.svg"
  5429. }
  5430. }
  5431. },
  5432. [
  5433. {
  5434. name: "Normal",
  5435. height: math.unit(8, "feet")
  5436. },
  5437. {
  5438. name: "Large",
  5439. height: math.unit(12, "feet")
  5440. },
  5441. {
  5442. name: "Larger",
  5443. height: math.unit(20, "feet")
  5444. },
  5445. {
  5446. name: "Macro",
  5447. height: math.unit(150, "feet")
  5448. },
  5449. {
  5450. name: "Macro+",
  5451. height: math.unit(200, "feet"),
  5452. default: true
  5453. },
  5454. ]
  5455. ))
  5456. characterMakers.push(() => makeCharacter(
  5457. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5458. {
  5459. side: {
  5460. height: math.unit(12, "feet"),
  5461. weight: math.unit(2000, "kg"),
  5462. name: "Side",
  5463. image: {
  5464. source: "./media/characters/scott/side.svg",
  5465. extra: 754 / 724,
  5466. bottom: 0.069
  5467. }
  5468. },
  5469. upright: {
  5470. height: math.unit(12, "feet"),
  5471. weight: math.unit(2000, "kg"),
  5472. name: "Upright",
  5473. image: {
  5474. source: "./media/characters/scott/upright.svg",
  5475. extra: 3881 / 3722,
  5476. bottom: 0.05
  5477. }
  5478. },
  5479. },
  5480. [
  5481. {
  5482. name: "Normal",
  5483. height: math.unit(12, "feet"),
  5484. default: true
  5485. },
  5486. ]
  5487. ))
  5488. characterMakers.push(() => makeCharacter(
  5489. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5490. {
  5491. side: {
  5492. height: math.unit(8, "meters"),
  5493. weight: math.unit(84755, "lbs"),
  5494. name: "Side",
  5495. image: {
  5496. source: "./media/characters/tobias/side.svg",
  5497. extra: 1474 / 1096,
  5498. bottom: 38.9 / 1513.1235
  5499. }
  5500. },
  5501. },
  5502. [
  5503. {
  5504. name: "Normal",
  5505. height: math.unit(8, "meters"),
  5506. default: true
  5507. },
  5508. ]
  5509. ))
  5510. characterMakers.push(() => makeCharacter(
  5511. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5512. {
  5513. front: {
  5514. height: math.unit(5.5, "feet"),
  5515. weight: math.unit(400, "lbs"),
  5516. name: "Front",
  5517. image: {
  5518. source: "./media/characters/kieran/front.svg",
  5519. extra: 2694 / 2364,
  5520. bottom: 217 / 2908
  5521. }
  5522. },
  5523. side: {
  5524. height: math.unit(5.5, "feet"),
  5525. weight: math.unit(400, "lbs"),
  5526. name: "Side",
  5527. image: {
  5528. source: "./media/characters/kieran/side.svg",
  5529. extra: 875 / 777,
  5530. bottom: 84.6 / 959
  5531. }
  5532. },
  5533. },
  5534. [
  5535. {
  5536. name: "Normal",
  5537. height: math.unit(5.5, "feet"),
  5538. default: true
  5539. },
  5540. ]
  5541. ))
  5542. characterMakers.push(() => makeCharacter(
  5543. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5544. {
  5545. side: {
  5546. height: math.unit(2, "meters"),
  5547. weight: math.unit(70, "kg"),
  5548. name: "Side",
  5549. image: {
  5550. source: "./media/characters/sanya/side.svg",
  5551. bottom: 0.02,
  5552. extra: 1.02
  5553. }
  5554. },
  5555. },
  5556. [
  5557. {
  5558. name: "Small",
  5559. height: math.unit(2, "meters")
  5560. },
  5561. {
  5562. name: "Normal",
  5563. height: math.unit(3, "meters")
  5564. },
  5565. {
  5566. name: "Macro",
  5567. height: math.unit(16, "meters"),
  5568. default: true
  5569. },
  5570. ]
  5571. ))
  5572. characterMakers.push(() => makeCharacter(
  5573. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5574. {
  5575. front: {
  5576. height: math.unit(2, "meters"),
  5577. weight: math.unit(120, "kg"),
  5578. name: "Front",
  5579. image: {
  5580. source: "./media/characters/miranda/front.svg",
  5581. extra: 195 / 185,
  5582. bottom: 10.9 / 206.5
  5583. }
  5584. },
  5585. back: {
  5586. height: math.unit(2, "meters"),
  5587. weight: math.unit(120, "kg"),
  5588. name: "Back",
  5589. image: {
  5590. source: "./media/characters/miranda/back.svg",
  5591. extra: 201 / 193,
  5592. bottom: 2.3 / 203.7
  5593. }
  5594. },
  5595. },
  5596. [
  5597. {
  5598. name: "Normal",
  5599. height: math.unit(10, "feet"),
  5600. default: true
  5601. }
  5602. ]
  5603. ))
  5604. characterMakers.push(() => makeCharacter(
  5605. { name: "James", species: ["deer"], tags: ["anthro"] },
  5606. {
  5607. side: {
  5608. height: math.unit(2, "meters"),
  5609. weight: math.unit(100, "kg"),
  5610. name: "Front",
  5611. image: {
  5612. source: "./media/characters/james/front.svg",
  5613. extra: 10 / 8.5
  5614. }
  5615. },
  5616. },
  5617. [
  5618. {
  5619. name: "Normal",
  5620. height: math.unit(8.5, "feet"),
  5621. default: true
  5622. }
  5623. ]
  5624. ))
  5625. characterMakers.push(() => makeCharacter(
  5626. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5627. {
  5628. side: {
  5629. height: math.unit(9.5, "feet"),
  5630. weight: math.unit(2500, "lbs"),
  5631. name: "Side",
  5632. image: {
  5633. source: "./media/characters/heather/side.svg"
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(9.5, "feet"),
  5641. default: true
  5642. }
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5647. {
  5648. side: {
  5649. height: math.unit(6.5, "feet"),
  5650. weight: math.unit(400, "lbs"),
  5651. name: "Side",
  5652. image: {
  5653. source: "./media/characters/lukas/side.svg",
  5654. extra: 7.25 / 6.5
  5655. }
  5656. },
  5657. },
  5658. [
  5659. {
  5660. name: "Normal",
  5661. height: math.unit(6.5, "feet"),
  5662. default: true
  5663. }
  5664. ]
  5665. ))
  5666. characterMakers.push(() => makeCharacter(
  5667. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5668. {
  5669. side: {
  5670. height: math.unit(5, "feet"),
  5671. weight: math.unit(3000, "lbs"),
  5672. name: "Side",
  5673. image: {
  5674. source: "./media/characters/louise/side.svg"
  5675. }
  5676. },
  5677. },
  5678. [
  5679. {
  5680. name: "Normal",
  5681. height: math.unit(5, "feet"),
  5682. default: true
  5683. }
  5684. ]
  5685. ))
  5686. characterMakers.push(() => makeCharacter(
  5687. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5688. {
  5689. side: {
  5690. height: math.unit(6, "feet"),
  5691. weight: math.unit(150, "lbs"),
  5692. name: "Side",
  5693. image: {
  5694. source: "./media/characters/ramona/side.svg",
  5695. extra: 871/854,
  5696. bottom: 41/912
  5697. }
  5698. },
  5699. },
  5700. [
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(5.3, "meters"),
  5704. default: true
  5705. },
  5706. {
  5707. name: "Macro",
  5708. height: math.unit(20, "stories")
  5709. },
  5710. {
  5711. name: "Macro+",
  5712. height: math.unit(50, "stories")
  5713. },
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5718. {
  5719. standing: {
  5720. height: math.unit(5.75, "feet"),
  5721. weight: math.unit(160, "lbs"),
  5722. name: "Standing",
  5723. image: {
  5724. source: "./media/characters/deerpuff/standing.svg",
  5725. extra: 682 / 624
  5726. }
  5727. },
  5728. sitting: {
  5729. height: math.unit(5.75 / 1.79, "feet"),
  5730. weight: math.unit(160, "lbs"),
  5731. name: "Sitting",
  5732. image: {
  5733. source: "./media/characters/deerpuff/sitting.svg",
  5734. bottom: 44 / 400,
  5735. extra: 1
  5736. }
  5737. },
  5738. taurLaying: {
  5739. height: math.unit(6, "feet"),
  5740. weight: math.unit(400, "lbs"),
  5741. name: "Taur (Laying)",
  5742. image: {
  5743. source: "./media/characters/deerpuff/taur-laying.svg"
  5744. }
  5745. },
  5746. },
  5747. [
  5748. {
  5749. name: "Puffball",
  5750. height: math.unit(6, "inches")
  5751. },
  5752. {
  5753. name: "Normalpuff",
  5754. height: math.unit(5.75, "feet")
  5755. },
  5756. {
  5757. name: "Macropuff",
  5758. height: math.unit(1500, "feet"),
  5759. default: true
  5760. },
  5761. {
  5762. name: "Megapuff",
  5763. height: math.unit(500, "miles")
  5764. },
  5765. {
  5766. name: "Gigapuff",
  5767. height: math.unit(250000, "miles")
  5768. },
  5769. {
  5770. name: "Omegapuff",
  5771. height: math.unit(1000, "lightyears")
  5772. },
  5773. ]
  5774. ))
  5775. characterMakers.push(() => makeCharacter(
  5776. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5777. {
  5778. stomping: {
  5779. height: math.unit(6, "feet"),
  5780. weight: math.unit(170, "lbs"),
  5781. name: "Stomping",
  5782. image: {
  5783. source: "./media/characters/vivian/stomping.svg"
  5784. }
  5785. },
  5786. sitting: {
  5787. height: math.unit(6 / 1.75, "feet"),
  5788. weight: math.unit(170, "lbs"),
  5789. name: "Sitting",
  5790. image: {
  5791. source: "./media/characters/vivian/sitting.svg",
  5792. bottom: 1 / 6.4,
  5793. extra: 1,
  5794. }
  5795. },
  5796. },
  5797. [
  5798. {
  5799. name: "Normal",
  5800. height: math.unit(7, "feet"),
  5801. default: true
  5802. },
  5803. {
  5804. name: "Macro",
  5805. height: math.unit(10, "stories")
  5806. },
  5807. {
  5808. name: "Macro+",
  5809. height: math.unit(30, "stories")
  5810. },
  5811. {
  5812. name: "Megamacro",
  5813. height: math.unit(10, "miles")
  5814. },
  5815. {
  5816. name: "Megamacro+",
  5817. height: math.unit(2750000, "meters")
  5818. },
  5819. ]
  5820. ))
  5821. characterMakers.push(() => makeCharacter(
  5822. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5823. {
  5824. front: {
  5825. height: math.unit(6, "feet"),
  5826. weight: math.unit(160, "lbs"),
  5827. name: "Front",
  5828. image: {
  5829. source: "./media/characters/prince/front.svg",
  5830. extra: 3400 / 3000
  5831. }
  5832. },
  5833. jumping: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(160, "lbs"),
  5836. name: "Jumping",
  5837. image: {
  5838. source: "./media/characters/prince/jump.svg",
  5839. extra: 2555 / 2134
  5840. }
  5841. },
  5842. },
  5843. [
  5844. {
  5845. name: "Normal",
  5846. height: math.unit(7.75, "feet"),
  5847. default: true
  5848. },
  5849. {
  5850. name: "Not cute",
  5851. height: math.unit(17, "feet")
  5852. },
  5853. {
  5854. name: "I said NOT",
  5855. height: math.unit(91, "feet")
  5856. },
  5857. {
  5858. name: "Please stop",
  5859. height: math.unit(560, "feet")
  5860. },
  5861. {
  5862. name: "What have you done",
  5863. height: math.unit(2200, "feet")
  5864. },
  5865. {
  5866. name: "Deer God",
  5867. height: math.unit(3.6, "miles")
  5868. },
  5869. ]
  5870. ))
  5871. characterMakers.push(() => makeCharacter(
  5872. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5873. {
  5874. standing: {
  5875. height: math.unit(6, "feet"),
  5876. weight: math.unit(300, "lbs"),
  5877. name: "Standing",
  5878. image: {
  5879. source: "./media/characters/psymon/standing.svg",
  5880. extra: 1888 / 1810,
  5881. bottom: 0.05
  5882. }
  5883. },
  5884. slithering: {
  5885. height: math.unit(6, "feet"),
  5886. weight: math.unit(300, "lbs"),
  5887. name: "Slithering",
  5888. image: {
  5889. source: "./media/characters/psymon/slithering.svg",
  5890. extra: 1330 / 1224
  5891. }
  5892. },
  5893. slitheringAlt: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(300, "lbs"),
  5896. name: "Slithering (Alt)",
  5897. image: {
  5898. source: "./media/characters/psymon/slithering-alt.svg",
  5899. extra: 1330 / 1224
  5900. }
  5901. },
  5902. },
  5903. [
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(11.25, "feet"),
  5907. default: true
  5908. },
  5909. {
  5910. name: "Large",
  5911. height: math.unit(27, "feet")
  5912. },
  5913. {
  5914. name: "Giant",
  5915. height: math.unit(87, "feet")
  5916. },
  5917. {
  5918. name: "Macro",
  5919. height: math.unit(365, "feet")
  5920. },
  5921. {
  5922. name: "Megamacro",
  5923. height: math.unit(3, "miles")
  5924. },
  5925. {
  5926. name: "World Serpent",
  5927. height: math.unit(8000, "miles")
  5928. },
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(6, "feet"),
  5936. weight: math.unit(180, "lbs"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/daimos/front.svg",
  5940. extra: 4160 / 3897,
  5941. bottom: 0.021
  5942. }
  5943. }
  5944. },
  5945. [
  5946. {
  5947. name: "Normal",
  5948. height: math.unit(8, "feet"),
  5949. default: true
  5950. },
  5951. {
  5952. name: "Big Dog",
  5953. height: math.unit(22, "feet")
  5954. },
  5955. {
  5956. name: "Macro",
  5957. height: math.unit(127, "feet")
  5958. },
  5959. {
  5960. name: "Megamacro",
  5961. height: math.unit(3600, "feet")
  5962. },
  5963. ]
  5964. ))
  5965. characterMakers.push(() => makeCharacter(
  5966. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5967. {
  5968. side: {
  5969. height: math.unit(6, "feet"),
  5970. weight: math.unit(180, "lbs"),
  5971. name: "Side",
  5972. image: {
  5973. source: "./media/characters/blake/side.svg",
  5974. extra: 1212 / 1120,
  5975. bottom: 0.05
  5976. }
  5977. },
  5978. crouched: {
  5979. height: math.unit(6 * 0.57, "feet"),
  5980. weight: math.unit(180, "lbs"),
  5981. name: "Crouched",
  5982. image: {
  5983. source: "./media/characters/blake/crouched.svg",
  5984. extra: 840 / 587,
  5985. bottom: 0.04
  5986. }
  5987. },
  5988. bent: {
  5989. height: math.unit(6 * 0.75, "feet"),
  5990. weight: math.unit(180, "lbs"),
  5991. name: "Bent",
  5992. image: {
  5993. source: "./media/characters/blake/bent.svg",
  5994. extra: 592 / 544,
  5995. bottom: 0.035
  5996. }
  5997. },
  5998. },
  5999. [
  6000. {
  6001. name: "Normal",
  6002. height: math.unit(8 + 1 / 6, "feet"),
  6003. default: true
  6004. },
  6005. {
  6006. name: "Big Backside",
  6007. height: math.unit(37, "feet")
  6008. },
  6009. {
  6010. name: "Subway Shredder",
  6011. height: math.unit(72, "feet")
  6012. },
  6013. {
  6014. name: "City Carver",
  6015. height: math.unit(1675, "feet")
  6016. },
  6017. {
  6018. name: "Tectonic Tweaker",
  6019. height: math.unit(2300, "miles")
  6020. },
  6021. ]
  6022. ))
  6023. characterMakers.push(() => makeCharacter(
  6024. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6025. {
  6026. front: {
  6027. height: math.unit(6, "feet"),
  6028. weight: math.unit(180, "lbs"),
  6029. name: "Front",
  6030. image: {
  6031. source: "./media/characters/guisetto/front.svg",
  6032. extra: 856 / 817,
  6033. bottom: 0.06
  6034. }
  6035. },
  6036. airborne: {
  6037. height: math.unit(6, "feet"),
  6038. weight: math.unit(180, "lbs"),
  6039. name: "Airborne",
  6040. image: {
  6041. source: "./media/characters/guisetto/airborne.svg",
  6042. extra: 584 / 525
  6043. }
  6044. },
  6045. },
  6046. [
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(10 + 11 / 12, "feet"),
  6050. default: true
  6051. },
  6052. {
  6053. name: "Large",
  6054. height: math.unit(35, "feet")
  6055. },
  6056. {
  6057. name: "Macro",
  6058. height: math.unit(475, "feet")
  6059. },
  6060. ]
  6061. ))
  6062. characterMakers.push(() => makeCharacter(
  6063. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6064. {
  6065. front: {
  6066. height: math.unit(6, "feet"),
  6067. weight: math.unit(180, "lbs"),
  6068. name: "Front",
  6069. image: {
  6070. source: "./media/characters/luxor/front.svg",
  6071. extra: 2940 / 2152
  6072. }
  6073. },
  6074. back: {
  6075. height: math.unit(6, "feet"),
  6076. weight: math.unit(180, "lbs"),
  6077. name: "Back",
  6078. image: {
  6079. source: "./media/characters/luxor/back.svg",
  6080. extra: 1083 / 960
  6081. }
  6082. },
  6083. },
  6084. [
  6085. {
  6086. name: "Normal",
  6087. height: math.unit(5 + 5 / 6, "feet"),
  6088. default: true
  6089. },
  6090. {
  6091. name: "Lamp",
  6092. height: math.unit(50, "feet")
  6093. },
  6094. {
  6095. name: "Lämp",
  6096. height: math.unit(300, "feet")
  6097. },
  6098. {
  6099. name: "The sun is a lamp",
  6100. height: math.unit(250000, "miles")
  6101. },
  6102. ]
  6103. ))
  6104. characterMakers.push(() => makeCharacter(
  6105. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6106. {
  6107. front: {
  6108. height: math.unit(6, "feet"),
  6109. weight: math.unit(50, "lbs"),
  6110. name: "Front",
  6111. image: {
  6112. source: "./media/characters/huoyan/front.svg"
  6113. }
  6114. },
  6115. side: {
  6116. height: math.unit(6, "feet"),
  6117. weight: math.unit(180, "lbs"),
  6118. name: "Side",
  6119. image: {
  6120. source: "./media/characters/huoyan/side.svg"
  6121. }
  6122. },
  6123. },
  6124. [
  6125. {
  6126. name: "Chef",
  6127. height: math.unit(9, "feet")
  6128. },
  6129. {
  6130. name: "Normal",
  6131. height: math.unit(65, "feet"),
  6132. default: true
  6133. },
  6134. {
  6135. name: "Macro",
  6136. height: math.unit(780, "feet")
  6137. },
  6138. {
  6139. name: "Flaming Mountain",
  6140. height: math.unit(4.8, "miles")
  6141. },
  6142. {
  6143. name: "Celestial",
  6144. height: math.unit(765000, "miles")
  6145. },
  6146. ]
  6147. ))
  6148. characterMakers.push(() => makeCharacter(
  6149. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6150. {
  6151. front: {
  6152. height: math.unit(5 + 3 / 4, "feet"),
  6153. weight: math.unit(120, "lbs"),
  6154. name: "Front",
  6155. image: {
  6156. source: "./media/characters/tails/front.svg"
  6157. }
  6158. }
  6159. },
  6160. [
  6161. {
  6162. name: "Normal",
  6163. height: math.unit(5 + 3 / 4, "feet"),
  6164. default: true
  6165. }
  6166. ]
  6167. ))
  6168. characterMakers.push(() => makeCharacter(
  6169. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6170. {
  6171. front: {
  6172. height: math.unit(4, "feet"),
  6173. weight: math.unit(50, "lbs"),
  6174. name: "Front",
  6175. image: {
  6176. source: "./media/characters/rainy/front.svg"
  6177. }
  6178. }
  6179. },
  6180. [
  6181. {
  6182. name: "Macro",
  6183. height: math.unit(800, "feet"),
  6184. default: true
  6185. }
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6190. {
  6191. front: {
  6192. height: math.unit(6, "feet"),
  6193. weight: math.unit(150, "lbs"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/rainier/front.svg"
  6197. }
  6198. }
  6199. },
  6200. [
  6201. {
  6202. name: "Micro",
  6203. height: math.unit(2, "mm"),
  6204. default: true
  6205. }
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6210. {
  6211. front: {
  6212. height: math.unit(8 + 4/12, "feet"),
  6213. weight: math.unit(450, "kilograms"),
  6214. volume: math.unit(5, "cups"),
  6215. name: "Front",
  6216. image: {
  6217. source: "./media/characters/andy-renard/front.svg",
  6218. extra: 1839/1726,
  6219. bottom: 134/1973
  6220. }
  6221. },
  6222. back: {
  6223. height: math.unit(8 + 4/12, "feet"),
  6224. weight: math.unit(450, "kilograms"),
  6225. volume: math.unit(5, "cups"),
  6226. name: "Back",
  6227. image: {
  6228. source: "./media/characters/andy-renard/back.svg",
  6229. extra: 1838/1710,
  6230. bottom: 105/1943
  6231. }
  6232. },
  6233. },
  6234. [
  6235. {
  6236. name: "Tall",
  6237. height: math.unit(8 + 4/12, "feet")
  6238. },
  6239. {
  6240. name: "Mini Macro",
  6241. height: math.unit(15, "feet"),
  6242. default: true
  6243. },
  6244. {
  6245. name: "Macro",
  6246. height: math.unit(100, "feet")
  6247. },
  6248. {
  6249. name: "Mega Macro",
  6250. height: math.unit(1000, "feet")
  6251. },
  6252. {
  6253. name: "Giga Macro",
  6254. height: math.unit(10, "miles")
  6255. },
  6256. {
  6257. name: "God Macro",
  6258. height: math.unit(1, "multiverse")
  6259. },
  6260. ]
  6261. ))
  6262. characterMakers.push(() => makeCharacter(
  6263. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6264. {
  6265. front: {
  6266. height: math.unit(6, "feet"),
  6267. weight: math.unit(210, "lbs"),
  6268. name: "Front",
  6269. image: {
  6270. source: "./media/characters/cimmaron/front-sfw.svg",
  6271. extra: 701 / 676,
  6272. bottom: 0.046
  6273. }
  6274. },
  6275. back: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(210, "lbs"),
  6278. name: "Back",
  6279. image: {
  6280. source: "./media/characters/cimmaron/back-sfw.svg",
  6281. extra: 701 / 676,
  6282. bottom: 0.046
  6283. }
  6284. },
  6285. frontNsfw: {
  6286. height: math.unit(6, "feet"),
  6287. weight: math.unit(210, "lbs"),
  6288. name: "Front (NSFW)",
  6289. image: {
  6290. source: "./media/characters/cimmaron/front-nsfw.svg",
  6291. extra: 701 / 676,
  6292. bottom: 0.046
  6293. }
  6294. },
  6295. backNsfw: {
  6296. height: math.unit(6, "feet"),
  6297. weight: math.unit(210, "lbs"),
  6298. name: "Back (NSFW)",
  6299. image: {
  6300. source: "./media/characters/cimmaron/back-nsfw.svg",
  6301. extra: 701 / 676,
  6302. bottom: 0.046
  6303. }
  6304. },
  6305. dick: {
  6306. height: math.unit(1.714, "feet"),
  6307. name: "Dick",
  6308. image: {
  6309. source: "./media/characters/cimmaron/dick.svg"
  6310. }
  6311. },
  6312. },
  6313. [
  6314. {
  6315. name: "Normal",
  6316. height: math.unit(6, "feet"),
  6317. default: true
  6318. },
  6319. {
  6320. name: "Macro Mayor",
  6321. height: math.unit(350, "meters")
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(6, "feet"),
  6330. weight: math.unit(200, "lbs"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/akari/front.svg",
  6334. extra: 962 / 901,
  6335. bottom: 0.04
  6336. }
  6337. }
  6338. },
  6339. [
  6340. {
  6341. name: "Micro",
  6342. height: math.unit(5, "inches"),
  6343. default: true
  6344. },
  6345. {
  6346. name: "Normal",
  6347. height: math.unit(7, "feet")
  6348. },
  6349. ]
  6350. ))
  6351. characterMakers.push(() => makeCharacter(
  6352. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6353. {
  6354. front: {
  6355. height: math.unit(6, "feet"),
  6356. weight: math.unit(140, "lbs"),
  6357. name: "Front",
  6358. image: {
  6359. source: "./media/characters/cynosura/front.svg",
  6360. extra: 896 / 847
  6361. }
  6362. },
  6363. back: {
  6364. height: math.unit(6, "feet"),
  6365. weight: math.unit(140, "lbs"),
  6366. name: "Back",
  6367. image: {
  6368. source: "./media/characters/cynosura/back.svg",
  6369. extra: 1365 / 1250
  6370. }
  6371. },
  6372. },
  6373. [
  6374. {
  6375. name: "Micro",
  6376. height: math.unit(4, "inches")
  6377. },
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(5.75, "feet"),
  6381. default: true
  6382. },
  6383. {
  6384. name: "Tall",
  6385. height: math.unit(10, "feet")
  6386. },
  6387. {
  6388. name: "Big",
  6389. height: math.unit(20, "feet")
  6390. },
  6391. {
  6392. name: "Macro",
  6393. height: math.unit(50, "feet")
  6394. },
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6399. {
  6400. front: {
  6401. height: math.unit(13 + 2/12, "feet"),
  6402. weight: math.unit(800, "kg"),
  6403. name: "Front",
  6404. image: {
  6405. source: "./media/characters/gin/front.svg",
  6406. extra: 1312/1191,
  6407. bottom: 45/1357
  6408. }
  6409. },
  6410. mouth: {
  6411. height: math.unit(2.39 * 1.8, "feet"),
  6412. name: "Mouth",
  6413. image: {
  6414. source: "./media/characters/gin/mouth.svg"
  6415. }
  6416. },
  6417. hand: {
  6418. height: math.unit(1.57 * 2.19, "feet"),
  6419. name: "Hand",
  6420. image: {
  6421. source: "./media/characters/gin/hand.svg"
  6422. }
  6423. },
  6424. foot: {
  6425. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6426. name: "Foot",
  6427. image: {
  6428. source: "./media/characters/gin/foot.svg"
  6429. }
  6430. },
  6431. sole: {
  6432. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6433. name: "Sole",
  6434. image: {
  6435. source: "./media/characters/gin/sole.svg"
  6436. }
  6437. },
  6438. },
  6439. [
  6440. {
  6441. name: "Very Small",
  6442. height: math.unit(13 + 2 / 12, "feet")
  6443. },
  6444. {
  6445. name: "Micro",
  6446. height: math.unit(600, "miles")
  6447. },
  6448. {
  6449. name: "Regular",
  6450. height: math.unit(20, "earths"),
  6451. default: true
  6452. },
  6453. {
  6454. name: "Macro",
  6455. height: math.unit(2.2, "solarradii")
  6456. },
  6457. {
  6458. name: "Teramacro",
  6459. height: math.unit(1.2, "galaxies")
  6460. },
  6461. {
  6462. name: "Omegamacro",
  6463. height: math.unit(200, "universes")
  6464. },
  6465. ]
  6466. ))
  6467. characterMakers.push(() => makeCharacter(
  6468. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6469. {
  6470. front: {
  6471. height: math.unit(6 + 1 / 6, "feet"),
  6472. weight: math.unit(178, "lbs"),
  6473. name: "Front",
  6474. image: {
  6475. source: "./media/characters/guy/front.svg"
  6476. }
  6477. }
  6478. },
  6479. [
  6480. {
  6481. name: "Normal",
  6482. height: math.unit(6 + 1 / 6, "feet"),
  6483. default: true
  6484. },
  6485. {
  6486. name: "Large",
  6487. height: math.unit(25 + 7 / 12, "feet")
  6488. },
  6489. {
  6490. name: "Macro",
  6491. height: math.unit(60 + 9 / 12, "feet")
  6492. },
  6493. {
  6494. name: "Macro+",
  6495. height: math.unit(246, "feet")
  6496. },
  6497. {
  6498. name: "Macro++",
  6499. height: math.unit(878, "feet")
  6500. }
  6501. ]
  6502. ))
  6503. characterMakers.push(() => makeCharacter(
  6504. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6505. {
  6506. front: {
  6507. height: math.unit(9, "feet"),
  6508. weight: math.unit(800, "lbs"),
  6509. name: "Front",
  6510. image: {
  6511. source: "./media/characters/tiberius/front.svg",
  6512. extra: 2295 / 2071
  6513. }
  6514. },
  6515. back: {
  6516. height: math.unit(9, "feet"),
  6517. weight: math.unit(800, "lbs"),
  6518. name: "Back",
  6519. image: {
  6520. source: "./media/characters/tiberius/back.svg",
  6521. extra: 2373 / 2160
  6522. }
  6523. },
  6524. },
  6525. [
  6526. {
  6527. name: "Normal",
  6528. height: math.unit(9, "feet"),
  6529. default: true
  6530. }
  6531. ]
  6532. ))
  6533. characterMakers.push(() => makeCharacter(
  6534. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6535. {
  6536. front: {
  6537. height: math.unit(6, "feet"),
  6538. weight: math.unit(600, "lbs"),
  6539. name: "Front",
  6540. image: {
  6541. source: "./media/characters/surgo/front.svg",
  6542. extra: 3591 / 2227
  6543. }
  6544. },
  6545. back: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(600, "lbs"),
  6548. name: "Back",
  6549. image: {
  6550. source: "./media/characters/surgo/back.svg",
  6551. extra: 3557 / 2228
  6552. }
  6553. },
  6554. laying: {
  6555. height: math.unit(6 * 0.85, "feet"),
  6556. weight: math.unit(600, "lbs"),
  6557. name: "Laying",
  6558. image: {
  6559. source: "./media/characters/surgo/laying.svg"
  6560. }
  6561. },
  6562. },
  6563. [
  6564. {
  6565. name: "Normal",
  6566. height: math.unit(6, "feet"),
  6567. default: true
  6568. }
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6573. {
  6574. side: {
  6575. height: math.unit(6, "feet"),
  6576. weight: math.unit(150, "lbs"),
  6577. name: "Side",
  6578. image: {
  6579. source: "./media/characters/cibus/side.svg",
  6580. extra: 800 / 400
  6581. }
  6582. },
  6583. },
  6584. [
  6585. {
  6586. name: "Normal",
  6587. height: math.unit(6, "feet"),
  6588. default: true
  6589. }
  6590. ]
  6591. ))
  6592. characterMakers.push(() => makeCharacter(
  6593. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6594. {
  6595. front: {
  6596. height: math.unit(6, "feet"),
  6597. weight: math.unit(240, "lbs"),
  6598. name: "Front",
  6599. image: {
  6600. source: "./media/characters/nibbles/front.svg"
  6601. }
  6602. },
  6603. side: {
  6604. height: math.unit(6, "feet"),
  6605. weight: math.unit(240, "lbs"),
  6606. name: "Side",
  6607. image: {
  6608. source: "./media/characters/nibbles/side.svg"
  6609. }
  6610. },
  6611. },
  6612. [
  6613. {
  6614. name: "Normal",
  6615. height: math.unit(9, "feet"),
  6616. default: true
  6617. }
  6618. ]
  6619. ))
  6620. characterMakers.push(() => makeCharacter(
  6621. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6622. {
  6623. side: {
  6624. height: math.unit(5 + 1 / 6, "feet"),
  6625. weight: math.unit(130, "lbs"),
  6626. name: "Side",
  6627. image: {
  6628. source: "./media/characters/rikky/side.svg",
  6629. extra: 851 / 801
  6630. }
  6631. },
  6632. },
  6633. [
  6634. {
  6635. name: "Normal",
  6636. height: math.unit(5 + 1 / 6, "feet")
  6637. },
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(152, "feet"),
  6641. default: true
  6642. },
  6643. {
  6644. name: "Megamacro",
  6645. height: math.unit(7, "miles")
  6646. }
  6647. ]
  6648. ))
  6649. characterMakers.push(() => makeCharacter(
  6650. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6651. {
  6652. side: {
  6653. height: math.unit(370, "cm"),
  6654. weight: math.unit(350, "lbs"),
  6655. name: "Side",
  6656. image: {
  6657. source: "./media/characters/malfressa/side.svg"
  6658. }
  6659. },
  6660. walking: {
  6661. height: math.unit(370, "cm"),
  6662. weight: math.unit(350, "lbs"),
  6663. name: "Walking",
  6664. image: {
  6665. source: "./media/characters/malfressa/walking.svg"
  6666. }
  6667. },
  6668. feral: {
  6669. height: math.unit(2500, "cm"),
  6670. weight: math.unit(100000, "lbs"),
  6671. name: "Feral",
  6672. image: {
  6673. source: "./media/characters/malfressa/feral.svg",
  6674. extra: 2108 / 837,
  6675. bottom: 0.02
  6676. }
  6677. },
  6678. },
  6679. [
  6680. {
  6681. name: "Normal",
  6682. height: math.unit(370, "cm")
  6683. },
  6684. {
  6685. name: "Macro",
  6686. height: math.unit(300, "meters"),
  6687. default: true
  6688. }
  6689. ]
  6690. ))
  6691. characterMakers.push(() => makeCharacter(
  6692. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6693. {
  6694. front: {
  6695. height: math.unit(6, "feet"),
  6696. weight: math.unit(60, "kg"),
  6697. name: "Front",
  6698. image: {
  6699. source: "./media/characters/jaro/front.svg",
  6700. extra: 845/817,
  6701. bottom: 45/890
  6702. }
  6703. },
  6704. back: {
  6705. height: math.unit(6, "feet"),
  6706. weight: math.unit(60, "kg"),
  6707. name: "Back",
  6708. image: {
  6709. source: "./media/characters/jaro/back.svg",
  6710. extra: 847/817,
  6711. bottom: 34/881
  6712. }
  6713. },
  6714. },
  6715. [
  6716. {
  6717. name: "Micro",
  6718. height: math.unit(7, "inches")
  6719. },
  6720. {
  6721. name: "Normal",
  6722. height: math.unit(5.5, "feet"),
  6723. default: true
  6724. },
  6725. {
  6726. name: "Minimacro",
  6727. height: math.unit(20, "feet")
  6728. },
  6729. {
  6730. name: "Macro",
  6731. height: math.unit(200, "meters")
  6732. }
  6733. ]
  6734. ))
  6735. characterMakers.push(() => makeCharacter(
  6736. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6737. {
  6738. front: {
  6739. height: math.unit(6, "feet"),
  6740. weight: math.unit(195, "lb"),
  6741. name: "Front",
  6742. image: {
  6743. source: "./media/characters/rogue/front.svg"
  6744. }
  6745. },
  6746. },
  6747. [
  6748. {
  6749. name: "Macro",
  6750. height: math.unit(90, "feet"),
  6751. default: true
  6752. },
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6757. {
  6758. standing: {
  6759. height: math.unit(5 + 8 / 12, "feet"),
  6760. weight: math.unit(140, "lb"),
  6761. name: "Standing",
  6762. image: {
  6763. source: "./media/characters/piper/standing.svg",
  6764. extra: 1440/1284,
  6765. bottom: 66/1506
  6766. }
  6767. },
  6768. running: {
  6769. height: math.unit(5 + 8 / 12, "feet"),
  6770. weight: math.unit(140, "lb"),
  6771. name: "Running",
  6772. image: {
  6773. source: "./media/characters/piper/running.svg",
  6774. extra: 3948/3655,
  6775. bottom: 0/3948
  6776. }
  6777. },
  6778. sole: {
  6779. height: math.unit(0.81, "feet"),
  6780. weight: math.unit(2, "kg"),
  6781. name: "Sole",
  6782. image: {
  6783. source: "./media/characters/piper/sole.svg"
  6784. }
  6785. },
  6786. nipple: {
  6787. height: math.unit(0.25, "feet"),
  6788. weight: math.unit(1.5, "lb"),
  6789. name: "Nipple",
  6790. image: {
  6791. source: "./media/characters/piper/nipple.svg"
  6792. }
  6793. },
  6794. head: {
  6795. height: math.unit(1.1, "feet"),
  6796. name: "Head",
  6797. image: {
  6798. source: "./media/characters/piper/head.svg"
  6799. }
  6800. },
  6801. },
  6802. [
  6803. {
  6804. name: "Micro",
  6805. height: math.unit(2, "inches")
  6806. },
  6807. {
  6808. name: "Normal",
  6809. height: math.unit(5 + 8 / 12, "feet")
  6810. },
  6811. {
  6812. name: "Macro",
  6813. height: math.unit(250, "feet"),
  6814. default: true
  6815. },
  6816. {
  6817. name: "Megamacro",
  6818. height: math.unit(7, "miles")
  6819. },
  6820. ]
  6821. ))
  6822. characterMakers.push(() => makeCharacter(
  6823. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6824. {
  6825. front: {
  6826. height: math.unit(6, "feet"),
  6827. weight: math.unit(220, "lb"),
  6828. name: "Front",
  6829. image: {
  6830. source: "./media/characters/gemini/front.svg"
  6831. }
  6832. },
  6833. back: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(220, "lb"),
  6836. name: "Back",
  6837. image: {
  6838. source: "./media/characters/gemini/back.svg"
  6839. }
  6840. },
  6841. kneeling: {
  6842. height: math.unit(6 / 1.5, "feet"),
  6843. weight: math.unit(220, "lb"),
  6844. name: "Kneeling",
  6845. image: {
  6846. source: "./media/characters/gemini/kneeling.svg",
  6847. bottom: 0.02
  6848. }
  6849. },
  6850. },
  6851. [
  6852. {
  6853. name: "Macro",
  6854. height: math.unit(300, "meters"),
  6855. default: true
  6856. },
  6857. {
  6858. name: "Megamacro",
  6859. height: math.unit(6900, "meters")
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6865. {
  6866. anthro: {
  6867. height: math.unit(2.35, "meters"),
  6868. weight: math.unit(73, "kg"),
  6869. name: "Anthro",
  6870. image: {
  6871. source: "./media/characters/alicia/anthro.svg",
  6872. extra: 2571 / 2385,
  6873. bottom: 75 / 2648
  6874. }
  6875. },
  6876. paw: {
  6877. height: math.unit(1.32, "feet"),
  6878. name: "Paw",
  6879. image: {
  6880. source: "./media/characters/alicia/paw.svg"
  6881. }
  6882. },
  6883. feral: {
  6884. height: math.unit(1.69, "meters"),
  6885. weight: math.unit(73, "kg"),
  6886. name: "Feral",
  6887. image: {
  6888. source: "./media/characters/alicia/feral.svg",
  6889. extra: 2123 / 1715,
  6890. bottom: 222 / 2349
  6891. }
  6892. },
  6893. },
  6894. [
  6895. {
  6896. name: "Normal",
  6897. height: math.unit(2.35, "meters")
  6898. },
  6899. {
  6900. name: "Macro",
  6901. height: math.unit(60, "meters"),
  6902. default: true
  6903. },
  6904. {
  6905. name: "Megamacro",
  6906. height: math.unit(10000, "kilometers")
  6907. },
  6908. ]
  6909. ))
  6910. characterMakers.push(() => makeCharacter(
  6911. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6912. {
  6913. front: {
  6914. height: math.unit(7, "feet"),
  6915. weight: math.unit(250, "lbs"),
  6916. name: "Front",
  6917. image: {
  6918. source: "./media/characters/archy/front.svg"
  6919. }
  6920. }
  6921. },
  6922. [
  6923. {
  6924. name: "Micro",
  6925. height: math.unit(1, "inch")
  6926. },
  6927. {
  6928. name: "Shorty",
  6929. height: math.unit(5, "feet")
  6930. },
  6931. {
  6932. name: "Normal",
  6933. height: math.unit(7, "feet")
  6934. },
  6935. {
  6936. name: "Macro",
  6937. height: math.unit(600, "meters"),
  6938. default: true
  6939. },
  6940. {
  6941. name: "Megamacro",
  6942. height: math.unit(1, "mile")
  6943. },
  6944. ]
  6945. ))
  6946. characterMakers.push(() => makeCharacter(
  6947. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6948. {
  6949. front: {
  6950. height: math.unit(1.65, "meters"),
  6951. weight: math.unit(74, "kg"),
  6952. name: "Front",
  6953. image: {
  6954. source: "./media/characters/berri/front.svg",
  6955. extra: 857 / 837,
  6956. bottom: 18 / 877
  6957. }
  6958. },
  6959. bum: {
  6960. height: math.unit(1.46, "feet"),
  6961. name: "Bum",
  6962. image: {
  6963. source: "./media/characters/berri/bum.svg"
  6964. }
  6965. },
  6966. mouth: {
  6967. height: math.unit(0.44, "feet"),
  6968. name: "Mouth",
  6969. image: {
  6970. source: "./media/characters/berri/mouth.svg"
  6971. }
  6972. },
  6973. paw: {
  6974. height: math.unit(0.826, "feet"),
  6975. name: "Paw",
  6976. image: {
  6977. source: "./media/characters/berri/paw.svg"
  6978. }
  6979. },
  6980. },
  6981. [
  6982. {
  6983. name: "Normal",
  6984. height: math.unit(1.65, "meters")
  6985. },
  6986. {
  6987. name: "Macro",
  6988. height: math.unit(60, "m"),
  6989. default: true
  6990. },
  6991. {
  6992. name: "Megamacro",
  6993. height: math.unit(9.213, "km")
  6994. },
  6995. {
  6996. name: "Planet Eater",
  6997. height: math.unit(489, "megameters")
  6998. },
  6999. {
  7000. name: "Teramacro",
  7001. height: math.unit(2471635000000, "meters")
  7002. },
  7003. {
  7004. name: "Examacro",
  7005. height: math.unit(8.0624e+26, "meters")
  7006. }
  7007. ]
  7008. ))
  7009. characterMakers.push(() => makeCharacter(
  7010. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7011. {
  7012. front: {
  7013. height: math.unit(1.72, "meters"),
  7014. weight: math.unit(68, "kg"),
  7015. name: "Front",
  7016. image: {
  7017. source: "./media/characters/lexi/front.svg"
  7018. }
  7019. }
  7020. },
  7021. [
  7022. {
  7023. name: "Very Smol",
  7024. height: math.unit(10, "mm")
  7025. },
  7026. {
  7027. name: "Micro",
  7028. height: math.unit(6.8, "cm"),
  7029. default: true
  7030. },
  7031. {
  7032. name: "Normal",
  7033. height: math.unit(1.72, "m")
  7034. }
  7035. ]
  7036. ))
  7037. characterMakers.push(() => makeCharacter(
  7038. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7039. {
  7040. front: {
  7041. height: math.unit(1.69, "meters"),
  7042. weight: math.unit(68, "kg"),
  7043. name: "Front",
  7044. image: {
  7045. source: "./media/characters/martin/front.svg",
  7046. extra: 596 / 581
  7047. }
  7048. }
  7049. },
  7050. [
  7051. {
  7052. name: "Micro",
  7053. height: math.unit(6.85, "cm"),
  7054. default: true
  7055. },
  7056. {
  7057. name: "Normal",
  7058. height: math.unit(1.69, "m")
  7059. }
  7060. ]
  7061. ))
  7062. characterMakers.push(() => makeCharacter(
  7063. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7064. {
  7065. front: {
  7066. height: math.unit(1.69, "meters"),
  7067. weight: math.unit(68, "kg"),
  7068. name: "Front",
  7069. image: {
  7070. source: "./media/characters/juno/front.svg"
  7071. }
  7072. }
  7073. },
  7074. [
  7075. {
  7076. name: "Micro",
  7077. height: math.unit(7, "cm")
  7078. },
  7079. {
  7080. name: "Normal",
  7081. height: math.unit(1.89, "m")
  7082. },
  7083. {
  7084. name: "Macro",
  7085. height: math.unit(353, "meters"),
  7086. default: true
  7087. }
  7088. ]
  7089. ))
  7090. characterMakers.push(() => makeCharacter(
  7091. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7092. {
  7093. front: {
  7094. height: math.unit(1.93, "meters"),
  7095. weight: math.unit(83, "kg"),
  7096. name: "Front",
  7097. image: {
  7098. source: "./media/characters/samantha/front.svg"
  7099. }
  7100. },
  7101. frontClothed: {
  7102. height: math.unit(1.93, "meters"),
  7103. weight: math.unit(83, "kg"),
  7104. name: "Front (Clothed)",
  7105. image: {
  7106. source: "./media/characters/samantha/front-clothed.svg"
  7107. }
  7108. },
  7109. back: {
  7110. height: math.unit(1.93, "meters"),
  7111. weight: math.unit(83, "kg"),
  7112. name: "Back",
  7113. image: {
  7114. source: "./media/characters/samantha/back.svg"
  7115. }
  7116. },
  7117. },
  7118. [
  7119. {
  7120. name: "Normal",
  7121. height: math.unit(1.93, "m")
  7122. },
  7123. {
  7124. name: "Macro",
  7125. height: math.unit(74, "meters"),
  7126. default: true
  7127. },
  7128. {
  7129. name: "Macro+",
  7130. height: math.unit(223, "meters"),
  7131. },
  7132. {
  7133. name: "Megamacro",
  7134. height: math.unit(8381, "meters"),
  7135. },
  7136. {
  7137. name: "Megamacro+",
  7138. height: math.unit(12000, "kilometers")
  7139. },
  7140. ]
  7141. ))
  7142. characterMakers.push(() => makeCharacter(
  7143. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7144. {
  7145. front: {
  7146. height: math.unit(1.92, "meters"),
  7147. weight: math.unit(80, "kg"),
  7148. name: "Front",
  7149. image: {
  7150. source: "./media/characters/dr-clay/front.svg"
  7151. }
  7152. },
  7153. frontClothed: {
  7154. height: math.unit(1.92, "meters"),
  7155. weight: math.unit(80, "kg"),
  7156. name: "Front (Clothed)",
  7157. image: {
  7158. source: "./media/characters/dr-clay/front-clothed.svg"
  7159. }
  7160. }
  7161. },
  7162. [
  7163. {
  7164. name: "Normal",
  7165. height: math.unit(1.92, "m")
  7166. },
  7167. {
  7168. name: "Macro",
  7169. height: math.unit(214, "meters"),
  7170. default: true
  7171. },
  7172. {
  7173. name: "Macro+",
  7174. height: math.unit(12.237, "meters"),
  7175. },
  7176. {
  7177. name: "Megamacro",
  7178. height: math.unit(557, "megameters"),
  7179. },
  7180. {
  7181. name: "Unimaginable",
  7182. height: math.unit(120e9, "lightyears")
  7183. },
  7184. ]
  7185. ))
  7186. characterMakers.push(() => makeCharacter(
  7187. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7188. {
  7189. front: {
  7190. height: math.unit(2, "meters"),
  7191. weight: math.unit(80, "kg"),
  7192. name: "Front",
  7193. image: {
  7194. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7195. }
  7196. }
  7197. },
  7198. [
  7199. {
  7200. name: "Teramacro",
  7201. height: math.unit(500000, "lightyears"),
  7202. default: true
  7203. },
  7204. ]
  7205. ))
  7206. characterMakers.push(() => makeCharacter(
  7207. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7208. {
  7209. crux: {
  7210. height: math.unit(2, "meters"),
  7211. weight: math.unit(150, "kg"),
  7212. name: "Crux",
  7213. image: {
  7214. source: "./media/characters/vemus/crux.svg",
  7215. extra: 1074/936,
  7216. bottom: 23/1097
  7217. }
  7218. },
  7219. skunkTanuki: {
  7220. height: math.unit(2, "meters"),
  7221. weight: math.unit(150, "kg"),
  7222. name: "Skunk-Tanuki",
  7223. image: {
  7224. source: "./media/characters/vemus/skunk-tanuki.svg",
  7225. extra: 926/893,
  7226. bottom: 20/946
  7227. }
  7228. },
  7229. },
  7230. [
  7231. {
  7232. name: "Normal",
  7233. height: math.unit(4, "meters"),
  7234. default: true
  7235. },
  7236. {
  7237. name: "Big",
  7238. height: math.unit(8, "meters")
  7239. },
  7240. {
  7241. name: "Macro",
  7242. height: math.unit(100, "meters")
  7243. },
  7244. {
  7245. name: "Macro+",
  7246. height: math.unit(1500, "meters")
  7247. },
  7248. {
  7249. name: "Stellar",
  7250. height: math.unit(14e8, "meters")
  7251. },
  7252. ]
  7253. ))
  7254. characterMakers.push(() => makeCharacter(
  7255. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7256. {
  7257. front: {
  7258. height: math.unit(2, "meters"),
  7259. weight: math.unit(70, "kg"),
  7260. name: "Front",
  7261. image: {
  7262. source: "./media/characters/beherit/front.svg",
  7263. extra: 1234/1109,
  7264. bottom: 55/1289
  7265. }
  7266. }
  7267. },
  7268. [
  7269. {
  7270. name: "Normal",
  7271. height: math.unit(6, "feet")
  7272. },
  7273. {
  7274. name: "Lorg",
  7275. height: math.unit(25, "feet"),
  7276. default: true
  7277. },
  7278. {
  7279. name: "Lorger",
  7280. height: math.unit(75, "feet")
  7281. },
  7282. {
  7283. name: "Macro",
  7284. height: math.unit(200, "meters")
  7285. },
  7286. ]
  7287. ))
  7288. characterMakers.push(() => makeCharacter(
  7289. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7290. {
  7291. front: {
  7292. height: math.unit(2, "meters"),
  7293. weight: math.unit(150, "kg"),
  7294. name: "Front",
  7295. image: {
  7296. source: "./media/characters/everett/front.svg",
  7297. extra: 1017/866,
  7298. bottom: 86/1103
  7299. }
  7300. },
  7301. paw: {
  7302. height: math.unit(2 / 3.6, "meters"),
  7303. name: "Paw",
  7304. image: {
  7305. source: "./media/characters/everett/paw.svg"
  7306. }
  7307. },
  7308. },
  7309. [
  7310. {
  7311. name: "Normal",
  7312. height: math.unit(15, "feet"),
  7313. default: true
  7314. },
  7315. {
  7316. name: "Lorg",
  7317. height: math.unit(70, "feet"),
  7318. default: true
  7319. },
  7320. {
  7321. name: "Lorger",
  7322. height: math.unit(250, "feet")
  7323. },
  7324. {
  7325. name: "Macro",
  7326. height: math.unit(500, "meters")
  7327. },
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7332. {
  7333. front: {
  7334. height: math.unit(2, "meters"),
  7335. weight: math.unit(86, "kg"),
  7336. name: "Front",
  7337. image: {
  7338. source: "./media/characters/rose/front.svg",
  7339. extra: 1785/1636,
  7340. bottom: 30/1815
  7341. },
  7342. form: "liom",
  7343. default: true
  7344. },
  7345. frontSporty: {
  7346. height: math.unit(2, "meters"),
  7347. weight: math.unit(86, "kg"),
  7348. name: "Front (Sporty)",
  7349. image: {
  7350. source: "./media/characters/rose/front-sporty.svg",
  7351. extra: 350/335,
  7352. bottom: 10/360
  7353. },
  7354. form: "liom"
  7355. },
  7356. frontAlt: {
  7357. height: math.unit(1.6, "meters"),
  7358. weight: math.unit(86, "kg"),
  7359. name: "Front (Alt)",
  7360. image: {
  7361. source: "./media/characters/rose/front-alt.svg",
  7362. extra: 299/283,
  7363. bottom: 3/302
  7364. },
  7365. form: "liom"
  7366. },
  7367. plush: {
  7368. height: math.unit(2, "meters"),
  7369. weight: math.unit(86/3, "kg"),
  7370. name: "Plush",
  7371. image: {
  7372. source: "./media/characters/rose/plush.svg",
  7373. extra: 361/337,
  7374. bottom: 11/372
  7375. },
  7376. form: "plush",
  7377. default: true
  7378. },
  7379. faeStanding: {
  7380. height: math.unit(10, "cm"),
  7381. weight: math.unit(10, "grams"),
  7382. name: "Standing",
  7383. image: {
  7384. source: "./media/characters/rose/fae-standing.svg",
  7385. extra: 1189/1060,
  7386. bottom: 27/1216
  7387. },
  7388. form: "fae",
  7389. default: true
  7390. },
  7391. faeSitting: {
  7392. height: math.unit(5, "cm"),
  7393. weight: math.unit(10, "grams"),
  7394. name: "Sitting",
  7395. image: {
  7396. source: "./media/characters/rose/fae-sitting.svg",
  7397. extra: 737/577,
  7398. bottom: 356/1093
  7399. },
  7400. form: "fae"
  7401. },
  7402. faePaw: {
  7403. height: math.unit(1.35, "cm"),
  7404. name: "Paw",
  7405. image: {
  7406. source: "./media/characters/rose/fae-paw.svg"
  7407. },
  7408. form: "fae"
  7409. },
  7410. },
  7411. [
  7412. {
  7413. name: "True Micro",
  7414. height: math.unit(9, "cm"),
  7415. form: "liom"
  7416. },
  7417. {
  7418. name: "Micro",
  7419. height: math.unit(16, "cm"),
  7420. form: "liom"
  7421. },
  7422. {
  7423. name: "Normal",
  7424. height: math.unit(1.85, "meters"),
  7425. default: true,
  7426. form: "liom"
  7427. },
  7428. {
  7429. name: "Mini-Macro",
  7430. height: math.unit(5, "meters"),
  7431. form: "liom"
  7432. },
  7433. {
  7434. name: "Macro",
  7435. height: math.unit(15, "meters"),
  7436. form: "liom"
  7437. },
  7438. {
  7439. name: "True Macro",
  7440. height: math.unit(40, "meters"),
  7441. form: "liom"
  7442. },
  7443. {
  7444. name: "City Scale",
  7445. height: math.unit(1, "km"),
  7446. form: "liom"
  7447. },
  7448. {
  7449. name: "Plushie",
  7450. height: math.unit(9, "cm"),
  7451. form: "plush",
  7452. default: true
  7453. },
  7454. {
  7455. name: "Fae",
  7456. height: math.unit(10, "cm"),
  7457. form: "fae",
  7458. default: true
  7459. },
  7460. ],
  7461. {
  7462. "liom": {
  7463. name: "Liom"
  7464. },
  7465. "plush": {
  7466. name: "Plush"
  7467. },
  7468. "fae": {
  7469. name: "Fae Fox",
  7470. default: true
  7471. }
  7472. }
  7473. ))
  7474. characterMakers.push(() => makeCharacter(
  7475. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7476. {
  7477. front: {
  7478. height: math.unit(2, "meters"),
  7479. weight: math.unit(350, "lbs"),
  7480. name: "Front",
  7481. image: {
  7482. source: "./media/characters/regal/front.svg"
  7483. }
  7484. },
  7485. back: {
  7486. height: math.unit(2, "meters"),
  7487. weight: math.unit(350, "lbs"),
  7488. name: "Back",
  7489. image: {
  7490. source: "./media/characters/regal/back.svg"
  7491. }
  7492. },
  7493. },
  7494. [
  7495. {
  7496. name: "Macro",
  7497. height: math.unit(350, "feet"),
  7498. default: true
  7499. }
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7504. {
  7505. front: {
  7506. height: math.unit(4 + 11 / 12, "feet"),
  7507. weight: math.unit(100, "lbs"),
  7508. name: "Front",
  7509. image: {
  7510. source: "./media/characters/opal/front.svg"
  7511. }
  7512. },
  7513. frontAlt: {
  7514. height: math.unit(4 + 11 / 12, "feet"),
  7515. weight: math.unit(100, "lbs"),
  7516. name: "Front (Alt)",
  7517. image: {
  7518. source: "./media/characters/opal/front-alt.svg"
  7519. }
  7520. },
  7521. },
  7522. [
  7523. {
  7524. name: "Small",
  7525. height: math.unit(4 + 11 / 12, "feet")
  7526. },
  7527. {
  7528. name: "Normal",
  7529. height: math.unit(20, "feet"),
  7530. default: true
  7531. },
  7532. {
  7533. name: "Macro",
  7534. height: math.unit(120, "feet")
  7535. },
  7536. {
  7537. name: "Megamacro",
  7538. height: math.unit(80, "miles")
  7539. },
  7540. {
  7541. name: "True Size",
  7542. height: math.unit(100000, "lightyears")
  7543. },
  7544. ]
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7548. {
  7549. front: {
  7550. height: math.unit(6, "feet"),
  7551. weight: math.unit(200, "lbs"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/vector-wuff/front.svg"
  7555. }
  7556. }
  7557. },
  7558. [
  7559. {
  7560. name: "Normal",
  7561. height: math.unit(2.8, "meters")
  7562. },
  7563. {
  7564. name: "Macro",
  7565. height: math.unit(450, "meters"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Megamacro",
  7570. height: math.unit(15, "kilometers")
  7571. }
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7576. {
  7577. front: {
  7578. height: math.unit(6, "feet"),
  7579. weight: math.unit(256, "lbs"),
  7580. name: "Front",
  7581. image: {
  7582. source: "./media/characters/dannik/front.svg"
  7583. }
  7584. }
  7585. },
  7586. [
  7587. {
  7588. name: "Macro",
  7589. height: math.unit(69.57, "meters"),
  7590. default: true
  7591. },
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7596. {
  7597. front: {
  7598. height: math.unit(6, "feet"),
  7599. weight: math.unit(120, "lbs"),
  7600. name: "Front",
  7601. image: {
  7602. source: "./media/characters/azura-saharah/front.svg"
  7603. }
  7604. },
  7605. back: {
  7606. height: math.unit(6, "feet"),
  7607. weight: math.unit(120, "lbs"),
  7608. name: "Back",
  7609. image: {
  7610. source: "./media/characters/azura-saharah/back.svg"
  7611. }
  7612. },
  7613. },
  7614. [
  7615. {
  7616. name: "Macro",
  7617. height: math.unit(100, "feet"),
  7618. default: true
  7619. },
  7620. ]
  7621. ))
  7622. characterMakers.push(() => makeCharacter(
  7623. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7624. {
  7625. side: {
  7626. height: math.unit(5 + 4 / 12, "feet"),
  7627. weight: math.unit(163, "lbs"),
  7628. name: "Side",
  7629. image: {
  7630. source: "./media/characters/kennedy/side.svg"
  7631. }
  7632. }
  7633. },
  7634. [
  7635. {
  7636. name: "Standard Doggo",
  7637. height: math.unit(5 + 4 / 12, "feet")
  7638. },
  7639. {
  7640. name: "Big Doggo",
  7641. height: math.unit(25 + 3 / 12, "feet"),
  7642. default: true
  7643. },
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7648. {
  7649. front: {
  7650. height: math.unit(5 + 5/12, "feet"),
  7651. weight: math.unit(100, "lbs"),
  7652. name: "Front",
  7653. image: {
  7654. source: "./media/characters/odios-de-lunar/front.svg",
  7655. extra: 1468/1323,
  7656. bottom: 22/1490
  7657. }
  7658. }
  7659. },
  7660. [
  7661. {
  7662. name: "Micro",
  7663. height: math.unit(3, "inches")
  7664. },
  7665. {
  7666. name: "Normal",
  7667. height: math.unit(5.5, "feet"),
  7668. default: true
  7669. },
  7670. {
  7671. name: "Macro",
  7672. height: math.unit(100, "feet")
  7673. },
  7674. ]
  7675. ))
  7676. characterMakers.push(() => makeCharacter(
  7677. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7678. {
  7679. back: {
  7680. height: math.unit(6, "feet"),
  7681. weight: math.unit(220, "lbs"),
  7682. name: "Back",
  7683. image: {
  7684. source: "./media/characters/mandake/back.svg"
  7685. }
  7686. }
  7687. },
  7688. [
  7689. {
  7690. name: "Normal",
  7691. height: math.unit(7, "feet"),
  7692. default: true
  7693. },
  7694. {
  7695. name: "Macro",
  7696. height: math.unit(78, "feet")
  7697. },
  7698. {
  7699. name: "Macro+",
  7700. height: math.unit(300, "meters")
  7701. },
  7702. {
  7703. name: "Macro++",
  7704. height: math.unit(2400, "feet")
  7705. },
  7706. {
  7707. name: "Megamacro",
  7708. height: math.unit(5167, "meters")
  7709. },
  7710. {
  7711. name: "Gigamacro",
  7712. height: math.unit(41769, "miles")
  7713. },
  7714. ]
  7715. ))
  7716. characterMakers.push(() => makeCharacter(
  7717. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7718. {
  7719. front: {
  7720. height: math.unit(6, "feet"),
  7721. weight: math.unit(120, "lbs"),
  7722. name: "Front",
  7723. image: {
  7724. source: "./media/characters/yozey/front.svg"
  7725. }
  7726. },
  7727. frontAlt: {
  7728. height: math.unit(6, "feet"),
  7729. weight: math.unit(120, "lbs"),
  7730. name: "Front (Alt)",
  7731. image: {
  7732. source: "./media/characters/yozey/front-alt.svg"
  7733. }
  7734. },
  7735. side: {
  7736. height: math.unit(6, "feet"),
  7737. weight: math.unit(120, "lbs"),
  7738. name: "Side",
  7739. image: {
  7740. source: "./media/characters/yozey/side.svg"
  7741. }
  7742. },
  7743. },
  7744. [
  7745. {
  7746. name: "Micro",
  7747. height: math.unit(3, "inches"),
  7748. default: true
  7749. },
  7750. {
  7751. name: "Normal",
  7752. height: math.unit(6, "feet")
  7753. }
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(6, "feet"),
  7761. weight: math.unit(103, "lbs"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/valeska-voss/front.svg"
  7765. }
  7766. }
  7767. },
  7768. [
  7769. {
  7770. name: "Mini-Sized Sub",
  7771. height: math.unit(3.1, "inches")
  7772. },
  7773. {
  7774. name: "Mid-Sized Sub",
  7775. height: math.unit(6.2, "inches")
  7776. },
  7777. {
  7778. name: "Full-Sized Sub",
  7779. height: math.unit(9.3, "inches")
  7780. },
  7781. {
  7782. name: "Normal",
  7783. height: math.unit(5 + 2 / 12, "foot"),
  7784. default: true
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(6, "feet"),
  7793. weight: math.unit(160, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/gene-zeta/front.svg",
  7797. extra: 3006 / 2826,
  7798. bottom: 182 / 3188
  7799. }
  7800. }
  7801. },
  7802. [
  7803. {
  7804. name: "Micro",
  7805. height: math.unit(6, "inches")
  7806. },
  7807. {
  7808. name: "Normal",
  7809. height: math.unit(5 + 11 / 12, "foot"),
  7810. default: true
  7811. },
  7812. {
  7813. name: "Macro",
  7814. height: math.unit(140, "feet")
  7815. },
  7816. {
  7817. name: "Supercharged",
  7818. height: math.unit(2500, "feet")
  7819. },
  7820. ]
  7821. ))
  7822. characterMakers.push(() => makeCharacter(
  7823. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7824. {
  7825. front: {
  7826. height: math.unit(6, "feet"),
  7827. weight: math.unit(350, "lbs"),
  7828. name: "Front",
  7829. image: {
  7830. source: "./media/characters/razinox/front.svg",
  7831. extra: 1686 / 1548,
  7832. bottom: 28.2 / 1868
  7833. }
  7834. },
  7835. back: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(350, "lbs"),
  7838. name: "Back",
  7839. image: {
  7840. source: "./media/characters/razinox/back.svg",
  7841. extra: 1660 / 1590,
  7842. bottom: 15 / 1665
  7843. }
  7844. },
  7845. },
  7846. [
  7847. {
  7848. name: "Normal",
  7849. height: math.unit(10 + 8 / 12, "foot")
  7850. },
  7851. {
  7852. name: "Minimacro",
  7853. height: math.unit(15, "foot")
  7854. },
  7855. {
  7856. name: "Macro",
  7857. height: math.unit(60, "foot"),
  7858. default: true
  7859. },
  7860. {
  7861. name: "Megamacro",
  7862. height: math.unit(5, "miles")
  7863. },
  7864. {
  7865. name: "Gigamacro",
  7866. height: math.unit(6000, "miles")
  7867. },
  7868. ]
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(6, "feet"),
  7875. weight: math.unit(150, "lbs"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/cobalt/front.svg"
  7879. }
  7880. }
  7881. },
  7882. [
  7883. {
  7884. name: "Normal",
  7885. height: math.unit(8 + 1 / 12, "foot")
  7886. },
  7887. {
  7888. name: "Macro",
  7889. height: math.unit(111, "foot"),
  7890. default: true
  7891. },
  7892. {
  7893. name: "Supracosmic",
  7894. height: math.unit(1e42, "feet")
  7895. },
  7896. ]
  7897. ))
  7898. characterMakers.push(() => makeCharacter(
  7899. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7900. {
  7901. front: {
  7902. height: math.unit(5, "inches"),
  7903. name: "Front",
  7904. image: {
  7905. source: "./media/characters/amanda/front.svg",
  7906. extra: 926/791,
  7907. bottom: 38/964
  7908. }
  7909. },
  7910. back: {
  7911. height: math.unit(5, "inches"),
  7912. name: "Back",
  7913. image: {
  7914. source: "./media/characters/amanda/back.svg",
  7915. extra: 909/805,
  7916. bottom: 43/952
  7917. }
  7918. },
  7919. },
  7920. [
  7921. {
  7922. name: "Micro",
  7923. height: math.unit(5, "inches"),
  7924. default: true
  7925. },
  7926. ]
  7927. ))
  7928. characterMakers.push(() => makeCharacter(
  7929. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7930. {
  7931. front: {
  7932. height: math.unit(2.75, "meters"),
  7933. weight: math.unit(1200, "lb"),
  7934. name: "Front",
  7935. image: {
  7936. source: "./media/characters/teal/front.svg",
  7937. extra: 2463 / 2320,
  7938. bottom: 166 / 2629
  7939. }
  7940. },
  7941. back: {
  7942. height: math.unit(2.75, "meters"),
  7943. weight: math.unit(1200, "lb"),
  7944. name: "Back",
  7945. image: {
  7946. source: "./media/characters/teal/back.svg",
  7947. extra: 2580 / 2489,
  7948. bottom: 151 / 2731
  7949. }
  7950. },
  7951. sitting: {
  7952. height: math.unit(1.9, "meters"),
  7953. weight: math.unit(1200, "lb"),
  7954. name: "Sitting",
  7955. image: {
  7956. source: "./media/characters/teal/sitting.svg",
  7957. extra: 623 / 590,
  7958. bottom: 121 / 744
  7959. }
  7960. },
  7961. standing: {
  7962. height: math.unit(2.75, "meters"),
  7963. weight: math.unit(1200, "lb"),
  7964. name: "Standing",
  7965. image: {
  7966. source: "./media/characters/teal/standing.svg",
  7967. extra: 923 / 893,
  7968. bottom: 60 / 983
  7969. }
  7970. },
  7971. stretching: {
  7972. height: math.unit(3.65, "meters"),
  7973. weight: math.unit(1200, "lb"),
  7974. name: "Stretching",
  7975. image: {
  7976. source: "./media/characters/teal/stretching.svg",
  7977. extra: 1276 / 1244,
  7978. bottom: 0 / 1276
  7979. }
  7980. },
  7981. legged: {
  7982. height: math.unit(1.3, "meters"),
  7983. weight: math.unit(100, "lb"),
  7984. name: "Legged",
  7985. image: {
  7986. source: "./media/characters/teal/legged.svg",
  7987. extra: 462 / 437,
  7988. bottom: 24 / 486
  7989. }
  7990. },
  7991. naga: {
  7992. height: math.unit(5.4, "meters"),
  7993. weight: math.unit(4000, "lb"),
  7994. name: "Naga",
  7995. image: {
  7996. source: "./media/characters/teal/naga.svg",
  7997. extra: 1902 / 1858,
  7998. bottom: 0 / 1902
  7999. }
  8000. },
  8001. hand: {
  8002. height: math.unit(0.52, "meters"),
  8003. name: "Hand",
  8004. image: {
  8005. source: "./media/characters/teal/hand.svg"
  8006. }
  8007. },
  8008. maw: {
  8009. height: math.unit(0.43, "meters"),
  8010. name: "Maw",
  8011. image: {
  8012. source: "./media/characters/teal/maw.svg"
  8013. }
  8014. },
  8015. slit: {
  8016. height: math.unit(0.25, "meters"),
  8017. name: "Slit",
  8018. image: {
  8019. source: "./media/characters/teal/slit.svg"
  8020. }
  8021. },
  8022. },
  8023. [
  8024. {
  8025. name: "Normal",
  8026. height: math.unit(2.75, "meters"),
  8027. default: true
  8028. },
  8029. {
  8030. name: "Macro",
  8031. height: math.unit(300, "feet")
  8032. },
  8033. {
  8034. name: "Macro+",
  8035. height: math.unit(2000, "feet")
  8036. },
  8037. ]
  8038. ))
  8039. characterMakers.push(() => makeCharacter(
  8040. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8041. {
  8042. frontCat: {
  8043. height: math.unit(6, "feet"),
  8044. weight: math.unit(180, "lbs"),
  8045. name: "Front (Cat)",
  8046. image: {
  8047. source: "./media/characters/ravin-amulet/front-cat.svg"
  8048. }
  8049. },
  8050. frontCatAlt: {
  8051. height: math.unit(6, "feet"),
  8052. weight: math.unit(180, "lbs"),
  8053. name: "Front (Alt, Cat)",
  8054. image: {
  8055. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8056. }
  8057. },
  8058. frontWerewolf: {
  8059. height: math.unit(6 * 1.2, "feet"),
  8060. weight: math.unit(225, "lbs"),
  8061. name: "Front (Werewolf)",
  8062. image: {
  8063. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8064. }
  8065. },
  8066. backWerewolf: {
  8067. height: math.unit(6 * 1.2, "feet"),
  8068. weight: math.unit(225, "lbs"),
  8069. name: "Back (Werewolf)",
  8070. image: {
  8071. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8072. }
  8073. },
  8074. },
  8075. [
  8076. {
  8077. name: "Nano",
  8078. height: math.unit(1, "micrometer")
  8079. },
  8080. {
  8081. name: "Micro",
  8082. height: math.unit(1, "inch")
  8083. },
  8084. {
  8085. name: "Normal",
  8086. height: math.unit(6, "feet"),
  8087. default: true
  8088. },
  8089. {
  8090. name: "Macro",
  8091. height: math.unit(60, "feet")
  8092. }
  8093. ]
  8094. ))
  8095. characterMakers.push(() => makeCharacter(
  8096. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8097. {
  8098. front: {
  8099. height: math.unit(6, "feet"),
  8100. weight: math.unit(165, "lbs"),
  8101. name: "Front",
  8102. image: {
  8103. source: "./media/characters/fluoresce/front.svg"
  8104. }
  8105. }
  8106. },
  8107. [
  8108. {
  8109. name: "Micro",
  8110. height: math.unit(6, "cm")
  8111. },
  8112. {
  8113. name: "Normal",
  8114. height: math.unit(5 + 7 / 12, "feet"),
  8115. default: true
  8116. },
  8117. {
  8118. name: "Macro",
  8119. height: math.unit(56, "feet")
  8120. },
  8121. {
  8122. name: "Megamacro",
  8123. height: math.unit(1.9, "miles")
  8124. },
  8125. ]
  8126. ))
  8127. characterMakers.push(() => makeCharacter(
  8128. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8129. {
  8130. front: {
  8131. height: math.unit(9 + 6 / 12, "feet"),
  8132. weight: math.unit(523, "lbs"),
  8133. name: "Side",
  8134. image: {
  8135. source: "./media/characters/aurora/side.svg"
  8136. }
  8137. }
  8138. },
  8139. [
  8140. {
  8141. name: "Normal",
  8142. height: math.unit(9 + 6 / 12, "feet")
  8143. },
  8144. {
  8145. name: "Macro",
  8146. height: math.unit(96, "feet"),
  8147. default: true
  8148. },
  8149. {
  8150. name: "Macro+",
  8151. height: math.unit(243, "feet")
  8152. },
  8153. ]
  8154. ))
  8155. characterMakers.push(() => makeCharacter(
  8156. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8157. {
  8158. front: {
  8159. height: math.unit(194, "cm"),
  8160. weight: math.unit(90, "kg"),
  8161. name: "Front",
  8162. image: {
  8163. source: "./media/characters/ranek/front.svg",
  8164. extra: 1862/1791,
  8165. bottom: 80/1942
  8166. }
  8167. },
  8168. back: {
  8169. height: math.unit(194, "cm"),
  8170. weight: math.unit(90, "kg"),
  8171. name: "Back",
  8172. image: {
  8173. source: "./media/characters/ranek/back.svg",
  8174. extra: 1853/1787,
  8175. bottom: 74/1927
  8176. }
  8177. },
  8178. feral: {
  8179. height: math.unit(30, "cm"),
  8180. weight: math.unit(1.6, "lbs"),
  8181. name: "Feral",
  8182. image: {
  8183. source: "./media/characters/ranek/feral.svg",
  8184. extra: 990/631,
  8185. bottom: 29/1019
  8186. }
  8187. },
  8188. },
  8189. [
  8190. {
  8191. name: "Normal",
  8192. height: math.unit(194, "cm"),
  8193. default: true
  8194. },
  8195. {
  8196. name: "Macro",
  8197. height: math.unit(100, "meters")
  8198. },
  8199. ]
  8200. ))
  8201. characterMakers.push(() => makeCharacter(
  8202. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8203. {
  8204. front: {
  8205. height: math.unit(5 + 6 / 12, "feet"),
  8206. weight: math.unit(153, "lbs"),
  8207. name: "Front",
  8208. image: {
  8209. source: "./media/characters/andrew-cooper/front.svg"
  8210. }
  8211. },
  8212. },
  8213. [
  8214. {
  8215. name: "Nano",
  8216. height: math.unit(1, "mm")
  8217. },
  8218. {
  8219. name: "Micro",
  8220. height: math.unit(2, "inches")
  8221. },
  8222. {
  8223. name: "Normal",
  8224. height: math.unit(5 + 6 / 12, "feet"),
  8225. default: true
  8226. }
  8227. ]
  8228. ))
  8229. characterMakers.push(() => makeCharacter(
  8230. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8231. {
  8232. front: {
  8233. height: math.unit(6, "feet"),
  8234. weight: math.unit(180, "lbs"),
  8235. name: "Front",
  8236. image: {
  8237. source: "./media/characters/akane-sato/front.svg",
  8238. extra: 1219 / 1140
  8239. }
  8240. },
  8241. back: {
  8242. height: math.unit(6, "feet"),
  8243. weight: math.unit(180, "lbs"),
  8244. name: "Back",
  8245. image: {
  8246. source: "./media/characters/akane-sato/back.svg",
  8247. extra: 1219 / 1170
  8248. }
  8249. },
  8250. },
  8251. [
  8252. {
  8253. name: "Normal",
  8254. height: math.unit(2.5, "meters")
  8255. },
  8256. {
  8257. name: "Macro",
  8258. height: math.unit(250, "meters"),
  8259. default: true
  8260. },
  8261. {
  8262. name: "Megamacro",
  8263. height: math.unit(25, "km")
  8264. },
  8265. ]
  8266. ))
  8267. characterMakers.push(() => makeCharacter(
  8268. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8269. {
  8270. front: {
  8271. height: math.unit(6, "feet"),
  8272. weight: math.unit(65, "kg"),
  8273. name: "Front",
  8274. image: {
  8275. source: "./media/characters/rook/front.svg",
  8276. extra: 960 / 950
  8277. }
  8278. }
  8279. },
  8280. [
  8281. {
  8282. name: "Normal",
  8283. height: math.unit(8.8, "feet")
  8284. },
  8285. {
  8286. name: "Macro",
  8287. height: math.unit(88, "feet"),
  8288. default: true
  8289. },
  8290. {
  8291. name: "Megamacro",
  8292. height: math.unit(8, "miles")
  8293. },
  8294. ]
  8295. ))
  8296. characterMakers.push(() => makeCharacter(
  8297. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8298. {
  8299. front: {
  8300. height: math.unit(12 + 2 / 12, "feet"),
  8301. weight: math.unit(808, "lbs"),
  8302. name: "Front",
  8303. image: {
  8304. source: "./media/characters/prodigy/front.svg"
  8305. }
  8306. }
  8307. },
  8308. [
  8309. {
  8310. name: "Normal",
  8311. height: math.unit(12 + 2 / 12, "feet"),
  8312. default: true
  8313. },
  8314. {
  8315. name: "Macro",
  8316. height: math.unit(143, "feet")
  8317. },
  8318. {
  8319. name: "Macro+",
  8320. height: math.unit(400, "feet")
  8321. },
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8326. {
  8327. front: {
  8328. height: math.unit(6, "feet"),
  8329. weight: math.unit(225, "lbs"),
  8330. name: "Front",
  8331. image: {
  8332. source: "./media/characters/daniel/front.svg"
  8333. }
  8334. },
  8335. leaning: {
  8336. height: math.unit(6, "feet"),
  8337. weight: math.unit(225, "lbs"),
  8338. name: "Leaning",
  8339. image: {
  8340. source: "./media/characters/daniel/leaning.svg"
  8341. }
  8342. },
  8343. },
  8344. [
  8345. {
  8346. name: "Macro",
  8347. height: math.unit(1000, "feet"),
  8348. default: true
  8349. },
  8350. ]
  8351. ))
  8352. characterMakers.push(() => makeCharacter(
  8353. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8354. {
  8355. front: {
  8356. height: math.unit(6, "feet"),
  8357. weight: math.unit(88, "lbs"),
  8358. name: "Front",
  8359. image: {
  8360. source: "./media/characters/chiros/front.svg",
  8361. extra: 306 / 226
  8362. }
  8363. },
  8364. side: {
  8365. height: math.unit(6, "feet"),
  8366. weight: math.unit(88, "lbs"),
  8367. name: "Side",
  8368. image: {
  8369. source: "./media/characters/chiros/side.svg",
  8370. extra: 306 / 226
  8371. }
  8372. },
  8373. },
  8374. [
  8375. {
  8376. name: "Normal",
  8377. height: math.unit(6, "cm"),
  8378. default: true
  8379. },
  8380. ]
  8381. ))
  8382. characterMakers.push(() => makeCharacter(
  8383. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8384. {
  8385. front: {
  8386. height: math.unit(6, "feet"),
  8387. weight: math.unit(100, "lbs"),
  8388. name: "Front",
  8389. image: {
  8390. source: "./media/characters/selka/front.svg",
  8391. extra: 947 / 887
  8392. }
  8393. }
  8394. },
  8395. [
  8396. {
  8397. name: "Normal",
  8398. height: math.unit(5, "cm"),
  8399. default: true
  8400. },
  8401. ]
  8402. ))
  8403. characterMakers.push(() => makeCharacter(
  8404. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8405. {
  8406. front: {
  8407. height: math.unit(8 + 3 / 12, "feet"),
  8408. weight: math.unit(424, "lbs"),
  8409. name: "Front",
  8410. image: {
  8411. source: "./media/characters/verin/front.svg",
  8412. extra: 1845 / 1550
  8413. }
  8414. },
  8415. frontArmored: {
  8416. height: math.unit(8 + 3 / 12, "feet"),
  8417. weight: math.unit(424, "lbs"),
  8418. name: "Front (Armored)",
  8419. image: {
  8420. source: "./media/characters/verin/front-armor.svg",
  8421. extra: 1845 / 1550,
  8422. bottom: 0.01
  8423. }
  8424. },
  8425. back: {
  8426. height: math.unit(8 + 3 / 12, "feet"),
  8427. weight: math.unit(424, "lbs"),
  8428. name: "Back",
  8429. image: {
  8430. source: "./media/characters/verin/back.svg",
  8431. bottom: 0.1,
  8432. extra: 1
  8433. }
  8434. },
  8435. foot: {
  8436. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8437. name: "Foot",
  8438. image: {
  8439. source: "./media/characters/verin/foot.svg"
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Normal",
  8446. height: math.unit(8 + 3 / 12, "feet")
  8447. },
  8448. {
  8449. name: "Minimacro",
  8450. height: math.unit(21, "feet"),
  8451. default: true
  8452. },
  8453. {
  8454. name: "Macro",
  8455. height: math.unit(626, "feet")
  8456. },
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8461. {
  8462. front: {
  8463. height: math.unit(2.718, "meters"),
  8464. weight: math.unit(150, "lbs"),
  8465. name: "Front",
  8466. image: {
  8467. source: "./media/characters/sovrim-terraquian/front.svg",
  8468. extra: 1752/1689,
  8469. bottom: 36/1788
  8470. }
  8471. },
  8472. back: {
  8473. height: math.unit(2.718, "meters"),
  8474. weight: math.unit(150, "lbs"),
  8475. name: "Back",
  8476. image: {
  8477. source: "./media/characters/sovrim-terraquian/back.svg",
  8478. extra: 1698/1657,
  8479. bottom: 58/1756
  8480. }
  8481. },
  8482. tongue: {
  8483. height: math.unit(2.865, "feet"),
  8484. name: "Tongue",
  8485. image: {
  8486. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8487. }
  8488. },
  8489. hand: {
  8490. height: math.unit(1.61, "feet"),
  8491. name: "Hand",
  8492. image: {
  8493. source: "./media/characters/sovrim-terraquian/hand.svg"
  8494. }
  8495. },
  8496. foot: {
  8497. height: math.unit(1.05, "feet"),
  8498. name: "Foot",
  8499. image: {
  8500. source: "./media/characters/sovrim-terraquian/foot.svg"
  8501. }
  8502. },
  8503. footAlt: {
  8504. height: math.unit(0.88, "feet"),
  8505. name: "Foot (Alt)",
  8506. image: {
  8507. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8508. }
  8509. },
  8510. },
  8511. [
  8512. {
  8513. name: "Micro",
  8514. height: math.unit(2, "inches")
  8515. },
  8516. {
  8517. name: "Small",
  8518. height: math.unit(1, "meter")
  8519. },
  8520. {
  8521. name: "Normal",
  8522. height: math.unit(Math.E, "meters"),
  8523. default: true
  8524. },
  8525. {
  8526. name: "Macro",
  8527. height: math.unit(20, "meters")
  8528. },
  8529. {
  8530. name: "Macro+",
  8531. height: math.unit(400, "meters")
  8532. },
  8533. ]
  8534. ))
  8535. characterMakers.push(() => makeCharacter(
  8536. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8537. {
  8538. front: {
  8539. height: math.unit(7, "feet"),
  8540. weight: math.unit(489, "lbs"),
  8541. name: "Front",
  8542. image: {
  8543. source: "./media/characters/reece-silvermane/front.svg",
  8544. bottom: 0.02,
  8545. extra: 1
  8546. }
  8547. },
  8548. },
  8549. [
  8550. {
  8551. name: "Macro",
  8552. height: math.unit(1.5, "miles"),
  8553. default: true
  8554. },
  8555. ]
  8556. ))
  8557. characterMakers.push(() => makeCharacter(
  8558. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8559. {
  8560. front: {
  8561. height: math.unit(6, "feet"),
  8562. weight: math.unit(78, "kg"),
  8563. name: "Front",
  8564. image: {
  8565. source: "./media/characters/kane/front.svg",
  8566. extra: 978 / 899
  8567. }
  8568. },
  8569. },
  8570. [
  8571. {
  8572. name: "Normal",
  8573. height: math.unit(2.1, "m"),
  8574. },
  8575. {
  8576. name: "Macro",
  8577. height: math.unit(1, "km"),
  8578. default: true
  8579. },
  8580. ]
  8581. ))
  8582. characterMakers.push(() => makeCharacter(
  8583. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8584. {
  8585. front: {
  8586. height: math.unit(6, "feet"),
  8587. weight: math.unit(200, "kg"),
  8588. name: "Front",
  8589. image: {
  8590. source: "./media/characters/tegon/front.svg",
  8591. bottom: 0.01,
  8592. extra: 1
  8593. }
  8594. },
  8595. },
  8596. [
  8597. {
  8598. name: "Micro",
  8599. height: math.unit(1, "inch")
  8600. },
  8601. {
  8602. name: "Normal",
  8603. height: math.unit(6 + 3 / 12, "feet"),
  8604. default: true
  8605. },
  8606. {
  8607. name: "Macro",
  8608. height: math.unit(300, "feet")
  8609. },
  8610. {
  8611. name: "Megamacro",
  8612. height: math.unit(69, "miles")
  8613. },
  8614. ]
  8615. ))
  8616. characterMakers.push(() => makeCharacter(
  8617. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8618. {
  8619. side: {
  8620. height: math.unit(6, "feet"),
  8621. weight: math.unit(2304, "lbs"),
  8622. name: "Side",
  8623. image: {
  8624. source: "./media/characters/arcturax/side.svg",
  8625. extra: 790 / 376,
  8626. bottom: 0.01
  8627. }
  8628. },
  8629. },
  8630. [
  8631. {
  8632. name: "Micro",
  8633. height: math.unit(2, "inch")
  8634. },
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(6, "feet")
  8638. },
  8639. {
  8640. name: "Macro",
  8641. height: math.unit(39, "feet"),
  8642. default: true
  8643. },
  8644. {
  8645. name: "Megamacro",
  8646. height: math.unit(7, "miles")
  8647. },
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8652. {
  8653. front: {
  8654. height: math.unit(6, "feet"),
  8655. weight: math.unit(50, "lbs"),
  8656. name: "Front",
  8657. image: {
  8658. source: "./media/characters/sentri/front.svg",
  8659. extra: 1750 / 1570,
  8660. bottom: 0.025
  8661. }
  8662. },
  8663. frontAlt: {
  8664. height: math.unit(6, "feet"),
  8665. weight: math.unit(50, "lbs"),
  8666. name: "Front (Alt)",
  8667. image: {
  8668. source: "./media/characters/sentri/front-alt.svg",
  8669. extra: 1750 / 1570,
  8670. bottom: 0.025
  8671. }
  8672. },
  8673. },
  8674. [
  8675. {
  8676. name: "Normal",
  8677. height: math.unit(15, "feet"),
  8678. default: true
  8679. },
  8680. {
  8681. name: "Macro",
  8682. height: math.unit(2500, "feet")
  8683. }
  8684. ]
  8685. ))
  8686. characterMakers.push(() => makeCharacter(
  8687. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8688. {
  8689. front: {
  8690. height: math.unit(5 + 8 / 12, "feet"),
  8691. weight: math.unit(130, "lbs"),
  8692. name: "Front",
  8693. image: {
  8694. source: "./media/characters/corvin/front.svg",
  8695. extra: 1803 / 1629
  8696. }
  8697. },
  8698. frontShirt: {
  8699. height: math.unit(5 + 8 / 12, "feet"),
  8700. weight: math.unit(130, "lbs"),
  8701. name: "Front (Shirt)",
  8702. image: {
  8703. source: "./media/characters/corvin/front-shirt.svg",
  8704. extra: 1803 / 1629
  8705. }
  8706. },
  8707. frontPoncho: {
  8708. height: math.unit(5 + 8 / 12, "feet"),
  8709. weight: math.unit(130, "lbs"),
  8710. name: "Front (Poncho)",
  8711. image: {
  8712. source: "./media/characters/corvin/front-poncho.svg",
  8713. extra: 1803 / 1629
  8714. }
  8715. },
  8716. side: {
  8717. height: math.unit(5 + 8 / 12, "feet"),
  8718. weight: math.unit(130, "lbs"),
  8719. name: "Side",
  8720. image: {
  8721. source: "./media/characters/corvin/side.svg",
  8722. extra: 1012 / 945
  8723. }
  8724. },
  8725. back: {
  8726. height: math.unit(5 + 8 / 12, "feet"),
  8727. weight: math.unit(130, "lbs"),
  8728. name: "Back",
  8729. image: {
  8730. source: "./media/characters/corvin/back.svg",
  8731. extra: 1803 / 1629
  8732. }
  8733. },
  8734. },
  8735. [
  8736. {
  8737. name: "Micro",
  8738. height: math.unit(3, "inches")
  8739. },
  8740. {
  8741. name: "Normal",
  8742. height: math.unit(5 + 8 / 12, "feet")
  8743. },
  8744. {
  8745. name: "Macro",
  8746. height: math.unit(300, "feet"),
  8747. default: true
  8748. },
  8749. {
  8750. name: "Megamacro",
  8751. height: math.unit(500, "miles")
  8752. }
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8757. {
  8758. front: {
  8759. height: math.unit(6, "feet"),
  8760. weight: math.unit(135, "lbs"),
  8761. name: "Front",
  8762. image: {
  8763. source: "./media/characters/q/front.svg",
  8764. extra: 854 / 752,
  8765. bottom: 0.005
  8766. }
  8767. },
  8768. back: {
  8769. height: math.unit(6, "feet"),
  8770. weight: math.unit(130, "lbs"),
  8771. name: "Back",
  8772. image: {
  8773. source: "./media/characters/q/back.svg",
  8774. extra: 854 / 752
  8775. }
  8776. },
  8777. },
  8778. [
  8779. {
  8780. name: "Macro",
  8781. height: math.unit(90, "feet"),
  8782. default: true
  8783. },
  8784. {
  8785. name: "Extra Macro",
  8786. height: math.unit(300, "feet"),
  8787. },
  8788. {
  8789. name: "BIG WALF",
  8790. height: math.unit(750, "feet"),
  8791. },
  8792. ]
  8793. ))
  8794. characterMakers.push(() => makeCharacter(
  8795. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8796. {
  8797. front: {
  8798. height: math.unit(6, "feet"),
  8799. weight: math.unit(150, "lbs"),
  8800. name: "Front",
  8801. image: {
  8802. source: "./media/characters/carley/front.svg",
  8803. extra: 3927 / 3540,
  8804. bottom: 29.2 / 735
  8805. }
  8806. }
  8807. },
  8808. [
  8809. {
  8810. name: "Normal",
  8811. height: math.unit(6 + 3 / 12, "feet")
  8812. },
  8813. {
  8814. name: "Macro",
  8815. height: math.unit(185, "feet"),
  8816. default: true
  8817. },
  8818. {
  8819. name: "Megamacro",
  8820. height: math.unit(8, "miles"),
  8821. },
  8822. ]
  8823. ))
  8824. characterMakers.push(() => makeCharacter(
  8825. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8826. {
  8827. front: {
  8828. height: math.unit(3, "feet"),
  8829. weight: math.unit(28, "lbs"),
  8830. name: "Front",
  8831. image: {
  8832. source: "./media/characters/citrine/front.svg"
  8833. }
  8834. }
  8835. },
  8836. [
  8837. {
  8838. name: "Normal",
  8839. height: math.unit(3, "feet"),
  8840. default: true
  8841. }
  8842. ]
  8843. ))
  8844. characterMakers.push(() => makeCharacter(
  8845. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8846. {
  8847. front: {
  8848. height: math.unit(14, "feet"),
  8849. weight: math.unit(1450, "kg"),
  8850. preyCapacity: math.unit(15, "people"),
  8851. name: "Front",
  8852. image: {
  8853. source: "./media/characters/aura-starwind/front.svg",
  8854. extra: 1440/1327,
  8855. bottom: 11/1451
  8856. }
  8857. },
  8858. side: {
  8859. height: math.unit(14, "feet"),
  8860. weight: math.unit(1450, "kg"),
  8861. preyCapacity: math.unit(15, "people"),
  8862. name: "Side",
  8863. image: {
  8864. source: "./media/characters/aura-starwind/side.svg",
  8865. extra: 1654 / 1497
  8866. }
  8867. },
  8868. taur: {
  8869. height: math.unit(18, "feet"),
  8870. weight: math.unit(5500, "kg"),
  8871. preyCapacity: math.unit(50, "people"),
  8872. name: "Taur",
  8873. image: {
  8874. source: "./media/characters/aura-starwind/taur.svg",
  8875. extra: 1760 / 1650
  8876. }
  8877. },
  8878. feral: {
  8879. height: math.unit(46, "feet"),
  8880. weight: math.unit(25000, "kg"),
  8881. preyCapacity: math.unit(120, "people"),
  8882. name: "Feral",
  8883. image: {
  8884. source: "./media/characters/aura-starwind/feral.svg"
  8885. }
  8886. },
  8887. },
  8888. [
  8889. {
  8890. name: "Normal",
  8891. height: math.unit(14, "feet"),
  8892. default: true
  8893. },
  8894. {
  8895. name: "Macro",
  8896. height: math.unit(50, "meters")
  8897. },
  8898. {
  8899. name: "Megamacro",
  8900. height: math.unit(5000, "meters")
  8901. },
  8902. {
  8903. name: "Gigamacro",
  8904. height: math.unit(100000, "kilometers")
  8905. },
  8906. ]
  8907. ))
  8908. characterMakers.push(() => makeCharacter(
  8909. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8910. {
  8911. front: {
  8912. height: math.unit(2 + 7 / 12, "feet"),
  8913. weight: math.unit(32, "lbs"),
  8914. name: "Front",
  8915. image: {
  8916. source: "./media/characters/rivet/front.svg",
  8917. extra: 1716 / 1658,
  8918. bottom: 0.03
  8919. }
  8920. },
  8921. foot: {
  8922. height: math.unit(0.551, "feet"),
  8923. name: "Rivet's Foot",
  8924. image: {
  8925. source: "./media/characters/rivet/foot.svg"
  8926. },
  8927. rename: true
  8928. }
  8929. },
  8930. [
  8931. {
  8932. name: "Micro",
  8933. height: math.unit(1.5, "inches"),
  8934. },
  8935. {
  8936. name: "Normal",
  8937. height: math.unit(2 + 7 / 12, "feet"),
  8938. default: true
  8939. },
  8940. {
  8941. name: "Macro",
  8942. height: math.unit(85, "feet")
  8943. },
  8944. {
  8945. name: "Megamacro",
  8946. height: math.unit(2.2, "km")
  8947. }
  8948. ]
  8949. ))
  8950. characterMakers.push(() => makeCharacter(
  8951. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8952. {
  8953. front: {
  8954. height: math.unit(5 + 9 / 12, "feet"),
  8955. weight: math.unit(150, "lbs"),
  8956. name: "Front",
  8957. image: {
  8958. source: "./media/characters/coffee/front.svg",
  8959. extra: 3666 / 3032,
  8960. bottom: 0.04
  8961. }
  8962. },
  8963. foot: {
  8964. height: math.unit(1.29, "feet"),
  8965. name: "Foot",
  8966. image: {
  8967. source: "./media/characters/coffee/foot.svg"
  8968. }
  8969. },
  8970. },
  8971. [
  8972. {
  8973. name: "Micro",
  8974. height: math.unit(2, "inches"),
  8975. },
  8976. {
  8977. name: "Normal",
  8978. height: math.unit(5 + 9 / 12, "feet"),
  8979. default: true
  8980. },
  8981. {
  8982. name: "Macro",
  8983. height: math.unit(800, "feet")
  8984. },
  8985. {
  8986. name: "Megamacro",
  8987. height: math.unit(25, "miles")
  8988. }
  8989. ]
  8990. ))
  8991. characterMakers.push(() => makeCharacter(
  8992. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8993. {
  8994. front: {
  8995. height: math.unit(6, "feet"),
  8996. weight: math.unit(200, "lbs"),
  8997. name: "Front",
  8998. image: {
  8999. source: "./media/characters/chari-gal/front.svg",
  9000. extra: 1568 / 1385,
  9001. bottom: 0.047
  9002. }
  9003. },
  9004. gigantamax: {
  9005. height: math.unit(6 * 16, "feet"),
  9006. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9007. name: "Gigantamax",
  9008. image: {
  9009. source: "./media/characters/chari-gal/gigantamax.svg",
  9010. extra: 1124 / 888,
  9011. bottom: 0.03
  9012. }
  9013. },
  9014. },
  9015. [
  9016. {
  9017. name: "Normal",
  9018. height: math.unit(5 + 7 / 12, "feet")
  9019. },
  9020. {
  9021. name: "Macro",
  9022. height: math.unit(200, "feet"),
  9023. default: true
  9024. }
  9025. ]
  9026. ))
  9027. characterMakers.push(() => makeCharacter(
  9028. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9029. {
  9030. front: {
  9031. height: math.unit(6, "feet"),
  9032. weight: math.unit(150, "lbs"),
  9033. name: "Front",
  9034. image: {
  9035. source: "./media/characters/nova/front.svg",
  9036. extra: 5000 / 4722,
  9037. bottom: 0.02
  9038. }
  9039. }
  9040. },
  9041. [
  9042. {
  9043. name: "Micro-",
  9044. height: math.unit(0.8, "inches")
  9045. },
  9046. {
  9047. name: "Micro",
  9048. height: math.unit(2, "inches"),
  9049. default: true
  9050. },
  9051. ]
  9052. ))
  9053. characterMakers.push(() => makeCharacter(
  9054. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9055. {
  9056. front: {
  9057. height: math.unit(3 + 1 / 12, "feet"),
  9058. weight: math.unit(21.7, "lbs"),
  9059. name: "Front",
  9060. image: {
  9061. source: "./media/characters/argent/front.svg",
  9062. extra: 1471 / 1331,
  9063. bottom: 100.8 / 1575.5
  9064. }
  9065. }
  9066. },
  9067. [
  9068. {
  9069. name: "Micro",
  9070. height: math.unit(2, "inches")
  9071. },
  9072. {
  9073. name: "Normal",
  9074. height: math.unit(3 + 1 / 12, "feet"),
  9075. default: true
  9076. },
  9077. {
  9078. name: "Macro",
  9079. height: math.unit(120, "feet")
  9080. },
  9081. ]
  9082. ))
  9083. characterMakers.push(() => makeCharacter(
  9084. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9085. {
  9086. lamp: {
  9087. height: math.unit(7 * 1559 / 989, "feet"),
  9088. name: "Magic Lamp",
  9089. image: {
  9090. source: "./media/characters/mira-al-cul/lamp.svg",
  9091. extra: 1617 / 1559
  9092. }
  9093. },
  9094. front: {
  9095. height: math.unit(7, "feet"),
  9096. name: "Front",
  9097. image: {
  9098. source: "./media/characters/mira-al-cul/front.svg",
  9099. extra: 1044 / 990
  9100. }
  9101. },
  9102. },
  9103. [
  9104. {
  9105. name: "Heavily Restricted",
  9106. height: math.unit(7 * 1559 / 989, "feet")
  9107. },
  9108. {
  9109. name: "Freshly Freed",
  9110. height: math.unit(50 * 1559 / 989, "feet")
  9111. },
  9112. {
  9113. name: "World Encompassing",
  9114. height: math.unit(10000 * 1559 / 989, "miles")
  9115. },
  9116. {
  9117. name: "Galactic",
  9118. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9119. },
  9120. {
  9121. name: "Palmed Universe",
  9122. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9123. default: true
  9124. },
  9125. {
  9126. name: "Multiversal Matriarch",
  9127. height: math.unit(8.87e10, "yottameters")
  9128. },
  9129. {
  9130. name: "Void Mother",
  9131. height: math.unit(3.14e110, "yottaparsecs")
  9132. },
  9133. {
  9134. name: "Toying with Transcendence",
  9135. height: math.unit(1e307, "meters")
  9136. },
  9137. ]
  9138. ))
  9139. characterMakers.push(() => makeCharacter(
  9140. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9141. {
  9142. front: {
  9143. height: math.unit(17 + 1 / 12, "feet"),
  9144. weight: math.unit(476.2 * 5, "lbs"),
  9145. name: "Front",
  9146. image: {
  9147. source: "./media/characters/kuro-shi-uchū/front.svg",
  9148. extra: 2329 / 1835,
  9149. bottom: 0.02
  9150. }
  9151. },
  9152. },
  9153. [
  9154. {
  9155. name: "Micro",
  9156. height: math.unit(2, "inches")
  9157. },
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(12, "meters")
  9161. },
  9162. {
  9163. name: "Planetary",
  9164. height: math.unit(0.00929, "AU"),
  9165. default: true
  9166. },
  9167. {
  9168. name: "Universal",
  9169. height: math.unit(20, "gigaparsecs")
  9170. },
  9171. ]
  9172. ))
  9173. characterMakers.push(() => makeCharacter(
  9174. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9175. {
  9176. front: {
  9177. height: math.unit(5 + 2 / 12, "feet"),
  9178. weight: math.unit(120, "lbs"),
  9179. name: "Front",
  9180. image: {
  9181. source: "./media/characters/katherine/front.svg",
  9182. extra: 2075 / 1969
  9183. }
  9184. },
  9185. dress: {
  9186. height: math.unit(5 + 2 / 12, "feet"),
  9187. weight: math.unit(120, "lbs"),
  9188. name: "Dress",
  9189. image: {
  9190. source: "./media/characters/katherine/dress.svg",
  9191. extra: 2258 / 2064
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Micro",
  9198. height: math.unit(1, "inches"),
  9199. default: true
  9200. },
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(5 + 2 / 12, "feet")
  9204. },
  9205. {
  9206. name: "Macro",
  9207. height: math.unit(100, "meters")
  9208. },
  9209. {
  9210. name: "Megamacro",
  9211. height: math.unit(80, "miles")
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(7 + 8 / 12, "feet"),
  9220. weight: math.unit(250, "lbs"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/yevis/front.svg",
  9224. extra: 1938 / 1755
  9225. }
  9226. }
  9227. },
  9228. [
  9229. {
  9230. name: "Mortal",
  9231. height: math.unit(7 + 8 / 12, "feet")
  9232. },
  9233. {
  9234. name: "Battle",
  9235. height: math.unit(25 + 11 / 12, "feet")
  9236. },
  9237. {
  9238. name: "Wrath",
  9239. height: math.unit(1654 + 11 / 12, "feet")
  9240. },
  9241. {
  9242. name: "Planet Destroyer",
  9243. height: math.unit(12000, "miles")
  9244. },
  9245. {
  9246. name: "Galaxy Conqueror",
  9247. height: math.unit(1.45, "zettameters"),
  9248. default: true
  9249. },
  9250. {
  9251. name: "Universal War",
  9252. height: math.unit(184, "gigaparsecs")
  9253. },
  9254. {
  9255. name: "Eternity War",
  9256. height: math.unit(1.98e55, "yottaparsecs")
  9257. },
  9258. ]
  9259. ))
  9260. characterMakers.push(() => makeCharacter(
  9261. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9262. {
  9263. front: {
  9264. height: math.unit(5 + 8 / 12, "feet"),
  9265. weight: math.unit(63, "kg"),
  9266. name: "Front",
  9267. image: {
  9268. source: "./media/characters/xavier/front.svg",
  9269. extra: 944 / 883
  9270. }
  9271. },
  9272. frontStretch: {
  9273. height: math.unit(5 + 8 / 12, "feet"),
  9274. weight: math.unit(63, "kg"),
  9275. name: "Stretching",
  9276. image: {
  9277. source: "./media/characters/xavier/front-stretch.svg",
  9278. extra: 962 / 820
  9279. }
  9280. },
  9281. },
  9282. [
  9283. {
  9284. name: "Normal",
  9285. height: math.unit(5 + 8 / 12, "feet")
  9286. },
  9287. {
  9288. name: "Macro",
  9289. height: math.unit(100, "meters"),
  9290. default: true
  9291. },
  9292. {
  9293. name: "McLargeHuge",
  9294. height: math.unit(10, "miles")
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9300. {
  9301. front: {
  9302. height: math.unit(5 + 5 / 12, "feet"),
  9303. weight: math.unit(150, "lb"),
  9304. name: "Front",
  9305. image: {
  9306. source: "./media/characters/joshii/front.svg",
  9307. extra: 765 / 653,
  9308. bottom: 51 / 816
  9309. }
  9310. },
  9311. foot: {
  9312. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9313. name: "Foot",
  9314. image: {
  9315. source: "./media/characters/joshii/foot.svg"
  9316. }
  9317. },
  9318. },
  9319. [
  9320. {
  9321. name: "Micro",
  9322. height: math.unit(2, "inches"),
  9323. default: true
  9324. },
  9325. {
  9326. name: "Normal",
  9327. height: math.unit(5 + 5 / 12, "feet")
  9328. },
  9329. {
  9330. name: "Macro",
  9331. height: math.unit(785, "feet")
  9332. },
  9333. {
  9334. name: "Megamacro",
  9335. height: math.unit(24.5, "miles")
  9336. },
  9337. ]
  9338. ))
  9339. characterMakers.push(() => makeCharacter(
  9340. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9341. {
  9342. front: {
  9343. height: math.unit(6, "feet"),
  9344. weight: math.unit(150, "lb"),
  9345. name: "Front",
  9346. image: {
  9347. source: "./media/characters/goddess-elizabeth/front.svg",
  9348. extra: 1800 / 1525,
  9349. bottom: 0.005
  9350. }
  9351. },
  9352. foot: {
  9353. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9354. name: "Foot",
  9355. image: {
  9356. source: "./media/characters/goddess-elizabeth/foot.svg"
  9357. }
  9358. },
  9359. mouth: {
  9360. height: math.unit(6, "feet"),
  9361. name: "Mouth",
  9362. image: {
  9363. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9364. }
  9365. },
  9366. },
  9367. [
  9368. {
  9369. name: "Micro",
  9370. height: math.unit(12, "feet")
  9371. },
  9372. {
  9373. name: "Normal",
  9374. height: math.unit(80, "miles"),
  9375. default: true
  9376. },
  9377. {
  9378. name: "Macro",
  9379. height: math.unit(15000, "parsecs")
  9380. },
  9381. ]
  9382. ))
  9383. characterMakers.push(() => makeCharacter(
  9384. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9385. {
  9386. front: {
  9387. height: math.unit(5 + 9 / 12, "feet"),
  9388. weight: math.unit(144, "lb"),
  9389. name: "Front",
  9390. image: {
  9391. source: "./media/characters/kara/front.svg"
  9392. }
  9393. },
  9394. feet: {
  9395. height: math.unit(6 / 6.765, "feet"),
  9396. name: "Kara's Feet",
  9397. rename: true,
  9398. image: {
  9399. source: "./media/characters/kara/feet.svg"
  9400. }
  9401. },
  9402. },
  9403. [
  9404. {
  9405. name: "Normal",
  9406. height: math.unit(5 + 9 / 12, "feet")
  9407. },
  9408. {
  9409. name: "Macro",
  9410. height: math.unit(174, "feet"),
  9411. default: true
  9412. },
  9413. ]
  9414. ))
  9415. characterMakers.push(() => makeCharacter(
  9416. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9417. {
  9418. front: {
  9419. height: math.unit(18, "feet"),
  9420. weight: math.unit(4050, "lb"),
  9421. name: "Front",
  9422. image: {
  9423. source: "./media/characters/tyrone/front.svg",
  9424. extra: 2405 / 2270,
  9425. bottom: 182 / 2587
  9426. }
  9427. },
  9428. },
  9429. [
  9430. {
  9431. name: "Normal",
  9432. height: math.unit(18, "feet"),
  9433. default: true
  9434. },
  9435. {
  9436. name: "Macro",
  9437. height: math.unit(300, "feet")
  9438. },
  9439. {
  9440. name: "Megamacro",
  9441. height: math.unit(15, "km")
  9442. },
  9443. {
  9444. name: "Gigamacro",
  9445. height: math.unit(500, "km")
  9446. },
  9447. {
  9448. name: "Teramacro",
  9449. height: math.unit(0.5, "gigameters")
  9450. },
  9451. {
  9452. name: "Omnimacro",
  9453. height: math.unit(1e252, "yottauniverse")
  9454. },
  9455. ]
  9456. ))
  9457. characterMakers.push(() => makeCharacter(
  9458. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9459. {
  9460. front: {
  9461. height: math.unit(7 + 8 / 12, "feet"),
  9462. weight: math.unit(120, "lb"),
  9463. name: "Front",
  9464. image: {
  9465. source: "./media/characters/danny/front.svg",
  9466. extra: 1490 / 1350
  9467. }
  9468. },
  9469. back: {
  9470. height: math.unit(7 + 8 / 12, "feet"),
  9471. weight: math.unit(120, "lb"),
  9472. name: "Back",
  9473. image: {
  9474. source: "./media/characters/danny/back.svg",
  9475. extra: 1490 / 1350
  9476. }
  9477. },
  9478. },
  9479. [
  9480. {
  9481. name: "Normal",
  9482. height: math.unit(7 + 8 / 12, "feet"),
  9483. default: true
  9484. },
  9485. ]
  9486. ))
  9487. characterMakers.push(() => makeCharacter(
  9488. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9489. {
  9490. front: {
  9491. height: math.unit(3.5, "inches"),
  9492. weight: math.unit(19, "grams"),
  9493. name: "Front",
  9494. image: {
  9495. source: "./media/characters/mallow/front.svg",
  9496. extra: 471 / 431
  9497. }
  9498. },
  9499. back: {
  9500. height: math.unit(3.5, "inches"),
  9501. weight: math.unit(19, "grams"),
  9502. name: "Back",
  9503. image: {
  9504. source: "./media/characters/mallow/back.svg",
  9505. extra: 471 / 431
  9506. }
  9507. },
  9508. },
  9509. [
  9510. {
  9511. name: "Normal",
  9512. height: math.unit(3.5, "inches"),
  9513. default: true
  9514. },
  9515. ]
  9516. ))
  9517. characterMakers.push(() => makeCharacter(
  9518. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9519. {
  9520. front: {
  9521. height: math.unit(9, "feet"),
  9522. weight: math.unit(230, "kg"),
  9523. name: "Front",
  9524. image: {
  9525. source: "./media/characters/starry-aqua/front.svg"
  9526. }
  9527. },
  9528. back: {
  9529. height: math.unit(9, "feet"),
  9530. weight: math.unit(230, "kg"),
  9531. name: "Back",
  9532. image: {
  9533. source: "./media/characters/starry-aqua/back.svg"
  9534. }
  9535. },
  9536. hand: {
  9537. height: math.unit(9 * 0.1168, "feet"),
  9538. name: "Hand",
  9539. image: {
  9540. source: "./media/characters/starry-aqua/hand.svg"
  9541. }
  9542. },
  9543. foot: {
  9544. height: math.unit(9 * 0.18, "feet"),
  9545. name: "Foot",
  9546. image: {
  9547. source: "./media/characters/starry-aqua/foot.svg"
  9548. }
  9549. }
  9550. },
  9551. [
  9552. {
  9553. name: "Micro",
  9554. height: math.unit(3, "inches")
  9555. },
  9556. {
  9557. name: "Normal",
  9558. height: math.unit(9, "feet")
  9559. },
  9560. {
  9561. name: "Macro",
  9562. height: math.unit(300, "feet"),
  9563. default: true
  9564. },
  9565. {
  9566. name: "Megamacro",
  9567. height: math.unit(3200, "feet")
  9568. }
  9569. ]
  9570. ))
  9571. characterMakers.push(() => makeCharacter(
  9572. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9573. {
  9574. front: {
  9575. height: math.unit(15, "feet"),
  9576. weight: math.unit(5026, "lb"),
  9577. name: "Front",
  9578. image: {
  9579. source: "./media/characters/luka-towers/front.svg",
  9580. extra: 1269/1133,
  9581. bottom: 51/1320
  9582. }
  9583. },
  9584. },
  9585. [
  9586. {
  9587. name: "Normal",
  9588. height: math.unit(15, "feet"),
  9589. default: true
  9590. },
  9591. {
  9592. name: "Minimacro",
  9593. height: math.unit(25, "feet")
  9594. },
  9595. {
  9596. name: "Macro",
  9597. height: math.unit(320, "feet")
  9598. },
  9599. {
  9600. name: "Megamacro",
  9601. height: math.unit(35000, "feet")
  9602. },
  9603. {
  9604. name: "Gigamacro",
  9605. height: math.unit(4000, "miles")
  9606. },
  9607. {
  9608. name: "Teramacro",
  9609. height: math.unit(15000, "miles")
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(6, "feet"),
  9618. weight: math.unit(150, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/natalie-nightring/front.svg",
  9622. extra: 1,
  9623. bottom: 0.06
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Uh Oh",
  9630. height: math.unit(0.1, "mm")
  9631. },
  9632. {
  9633. name: "Small",
  9634. height: math.unit(3, "inches")
  9635. },
  9636. {
  9637. name: "Human Scale",
  9638. height: math.unit(6, "feet")
  9639. },
  9640. {
  9641. name: "Librarian",
  9642. height: math.unit(50, "feet"),
  9643. default: true
  9644. },
  9645. {
  9646. name: "Immense",
  9647. height: math.unit(200, "miles")
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9653. {
  9654. front: {
  9655. height: math.unit(6, "feet"),
  9656. weight: math.unit(180, "lbs"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/danni-rosie/front.svg",
  9660. extra: 1260 / 1128,
  9661. bottom: 0.022
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Micro",
  9668. height: math.unit(2, "inches"),
  9669. default: true
  9670. },
  9671. ]
  9672. ))
  9673. characterMakers.push(() => makeCharacter(
  9674. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9675. {
  9676. front: {
  9677. height: math.unit(5 + 9 / 12, "feet"),
  9678. weight: math.unit(220, "lb"),
  9679. name: "Front",
  9680. image: {
  9681. source: "./media/characters/samantha-kruse/front.svg",
  9682. extra: (985 / 935),
  9683. bottom: 0.03
  9684. }
  9685. },
  9686. frontUndressed: {
  9687. height: math.unit(5 + 9 / 12, "feet"),
  9688. weight: math.unit(220, "lb"),
  9689. name: "Front (Undressed)",
  9690. image: {
  9691. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9692. extra: (973 / 923),
  9693. bottom: 0.025
  9694. }
  9695. },
  9696. fat: {
  9697. height: math.unit(5 + 9 / 12, "feet"),
  9698. weight: math.unit(900, "lb"),
  9699. name: "Front (Fat)",
  9700. image: {
  9701. source: "./media/characters/samantha-kruse/fat.svg",
  9702. extra: 2688 / 2561
  9703. }
  9704. },
  9705. },
  9706. [
  9707. {
  9708. name: "Normal",
  9709. height: math.unit(5 + 9 / 12, "feet"),
  9710. default: true
  9711. }
  9712. ]
  9713. ))
  9714. characterMakers.push(() => makeCharacter(
  9715. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9716. {
  9717. back: {
  9718. height: math.unit(5 + 4 / 12, "feet"),
  9719. weight: math.unit(4963, "lb"),
  9720. name: "Back",
  9721. image: {
  9722. source: "./media/characters/amelia-rosie/back.svg",
  9723. extra: 1113 / 963,
  9724. bottom: 0.01
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Level 0",
  9731. height: math.unit(5 + 4 / 12, "feet")
  9732. },
  9733. {
  9734. name: "Level 1",
  9735. height: math.unit(164597, "feet"),
  9736. default: true
  9737. },
  9738. {
  9739. name: "Level 2",
  9740. height: math.unit(956243, "miles")
  9741. },
  9742. {
  9743. name: "Level 3",
  9744. height: math.unit(29421709423, "miles")
  9745. },
  9746. {
  9747. name: "Level 4",
  9748. height: math.unit(154, "lightyears")
  9749. },
  9750. {
  9751. name: "Level 5",
  9752. height: math.unit(4738272, "lightyears")
  9753. },
  9754. {
  9755. name: "Level 6",
  9756. height: math.unit(145787152896, "lightyears")
  9757. },
  9758. ]
  9759. ))
  9760. characterMakers.push(() => makeCharacter(
  9761. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9762. {
  9763. front: {
  9764. height: math.unit(5 + 11 / 12, "feet"),
  9765. weight: math.unit(65, "kg"),
  9766. name: "Front",
  9767. image: {
  9768. source: "./media/characters/rook-kitara/front.svg",
  9769. extra: 1347 / 1274,
  9770. bottom: 0.005
  9771. }
  9772. },
  9773. },
  9774. [
  9775. {
  9776. name: "Totally Unfair",
  9777. height: math.unit(1.8, "mm")
  9778. },
  9779. {
  9780. name: "Lap Rookie",
  9781. height: math.unit(1.4, "feet")
  9782. },
  9783. {
  9784. name: "Normal",
  9785. height: math.unit(5 + 11 / 12, "feet"),
  9786. default: true
  9787. },
  9788. {
  9789. name: "How Did This Happen",
  9790. height: math.unit(80, "miles")
  9791. }
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9796. {
  9797. front: {
  9798. height: math.unit(7, "feet"),
  9799. weight: math.unit(300, "lb"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/pisces/front.svg",
  9803. extra: 2255 / 2115,
  9804. bottom: 0.03
  9805. }
  9806. },
  9807. back: {
  9808. height: math.unit(7, "feet"),
  9809. weight: math.unit(300, "lb"),
  9810. name: "Back",
  9811. image: {
  9812. source: "./media/characters/pisces/back.svg",
  9813. extra: 2146 / 2055,
  9814. bottom: 0.04
  9815. }
  9816. },
  9817. },
  9818. [
  9819. {
  9820. name: "Normal",
  9821. height: math.unit(7, "feet"),
  9822. default: true
  9823. },
  9824. {
  9825. name: "Swimming Pool",
  9826. height: math.unit(12.2, "meters")
  9827. },
  9828. {
  9829. name: "Olympic Swimming Pool",
  9830. height: math.unit(56.3, "meters")
  9831. },
  9832. {
  9833. name: "Lake Superior",
  9834. height: math.unit(93900, "meters")
  9835. },
  9836. {
  9837. name: "Mediterranean Sea",
  9838. height: math.unit(644457, "meters")
  9839. },
  9840. {
  9841. name: "World's Oceans",
  9842. height: math.unit(4567491, "meters")
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9848. {
  9849. front: {
  9850. height: math.unit(2.3, "meters"),
  9851. weight: math.unit(120, "kg"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/zelas/front.svg"
  9855. }
  9856. },
  9857. side: {
  9858. height: math.unit(2.3, "meters"),
  9859. weight: math.unit(120, "kg"),
  9860. name: "Side",
  9861. image: {
  9862. source: "./media/characters/zelas/side.svg"
  9863. }
  9864. },
  9865. back: {
  9866. height: math.unit(2.3, "meters"),
  9867. weight: math.unit(120, "kg"),
  9868. name: "Back",
  9869. image: {
  9870. source: "./media/characters/zelas/back.svg"
  9871. }
  9872. },
  9873. foot: {
  9874. height: math.unit(1.116, "feet"),
  9875. name: "Foot",
  9876. image: {
  9877. source: "./media/characters/zelas/foot.svg"
  9878. }
  9879. },
  9880. },
  9881. [
  9882. {
  9883. name: "Normal",
  9884. height: math.unit(2.3, "meters")
  9885. },
  9886. {
  9887. name: "Macro",
  9888. height: math.unit(30, "meters"),
  9889. default: true
  9890. },
  9891. ]
  9892. ))
  9893. characterMakers.push(() => makeCharacter(
  9894. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9895. {
  9896. front: {
  9897. height: math.unit(1, "inch"),
  9898. weight: math.unit(0.21, "grams"),
  9899. name: "Front",
  9900. image: {
  9901. source: "./media/characters/talbot/front.svg",
  9902. extra: 594 / 544
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Micro",
  9909. height: math.unit(1, "inch"),
  9910. default: true
  9911. },
  9912. ]
  9913. ))
  9914. characterMakers.push(() => makeCharacter(
  9915. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9916. {
  9917. front: {
  9918. height: math.unit(3 + 3 / 12, "feet"),
  9919. weight: math.unit(51.8, "lb"),
  9920. name: "Front",
  9921. image: {
  9922. source: "./media/characters/fliss/front.svg",
  9923. extra: 840 / 640
  9924. }
  9925. },
  9926. },
  9927. [
  9928. {
  9929. name: "Teeny Tiny",
  9930. height: math.unit(1, "mm")
  9931. },
  9932. {
  9933. name: "Small",
  9934. height: math.unit(1, "inch"),
  9935. default: true
  9936. },
  9937. {
  9938. name: "Standard Sylveon",
  9939. height: math.unit(3 + 3 / 12, "feet")
  9940. },
  9941. {
  9942. name: "Large Nuisance",
  9943. height: math.unit(33, "feet")
  9944. },
  9945. {
  9946. name: "City Filler",
  9947. height: math.unit(3000, "feet")
  9948. },
  9949. {
  9950. name: "New Horizon",
  9951. height: math.unit(6000, "miles")
  9952. },
  9953. ]
  9954. ))
  9955. characterMakers.push(() => makeCharacter(
  9956. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9957. {
  9958. front: {
  9959. height: math.unit(5, "cm"),
  9960. weight: math.unit(1.94, "g"),
  9961. name: "Front",
  9962. image: {
  9963. source: "./media/characters/fleta/front.svg",
  9964. extra: 835 / 803
  9965. }
  9966. },
  9967. back: {
  9968. height: math.unit(5, "cm"),
  9969. weight: math.unit(1.94, "g"),
  9970. name: "Back",
  9971. image: {
  9972. source: "./media/characters/fleta/back.svg",
  9973. extra: 835 / 803
  9974. }
  9975. },
  9976. },
  9977. [
  9978. {
  9979. name: "Micro",
  9980. height: math.unit(5, "cm"),
  9981. default: true
  9982. },
  9983. ]
  9984. ))
  9985. characterMakers.push(() => makeCharacter(
  9986. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9987. {
  9988. front: {
  9989. height: math.unit(6, "feet"),
  9990. weight: math.unit(225, "lb"),
  9991. name: "Front",
  9992. image: {
  9993. source: "./media/characters/dominic/front.svg",
  9994. extra: 1770 / 1620,
  9995. bottom: 0.025
  9996. }
  9997. },
  9998. back: {
  9999. height: math.unit(6, "feet"),
  10000. weight: math.unit(225, "lb"),
  10001. name: "Back",
  10002. image: {
  10003. source: "./media/characters/dominic/back.svg",
  10004. extra: 1745 / 1620,
  10005. bottom: 0.065
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Nano",
  10012. height: math.unit(0.1, "mm")
  10013. },
  10014. {
  10015. name: "Micro-",
  10016. height: math.unit(1, "mm")
  10017. },
  10018. {
  10019. name: "Micro",
  10020. height: math.unit(4, "inches")
  10021. },
  10022. {
  10023. name: "Normal",
  10024. height: math.unit(6 + 4 / 12, "feet"),
  10025. default: true
  10026. },
  10027. {
  10028. name: "Macro",
  10029. height: math.unit(115, "feet")
  10030. },
  10031. {
  10032. name: "Macro+",
  10033. height: math.unit(955, "feet")
  10034. },
  10035. {
  10036. name: "Megamacro",
  10037. height: math.unit(8990, "feet")
  10038. },
  10039. {
  10040. name: "Gigmacro",
  10041. height: math.unit(9310, "miles")
  10042. },
  10043. {
  10044. name: "Teramacro",
  10045. height: math.unit(1567005010, "miles")
  10046. },
  10047. {
  10048. name: "Examacro",
  10049. height: math.unit(1425, "parsecs")
  10050. },
  10051. ]
  10052. ))
  10053. characterMakers.push(() => makeCharacter(
  10054. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10055. {
  10056. front: {
  10057. height: math.unit(400, "feet"),
  10058. weight: math.unit(44444444, "lb"),
  10059. name: "Front",
  10060. image: {
  10061. source: "./media/characters/major-colonel/front.svg"
  10062. }
  10063. },
  10064. back: {
  10065. height: math.unit(400, "feet"),
  10066. weight: math.unit(44444444, "lb"),
  10067. name: "Back",
  10068. image: {
  10069. source: "./media/characters/major-colonel/back.svg"
  10070. }
  10071. },
  10072. },
  10073. [
  10074. {
  10075. name: "Macro",
  10076. height: math.unit(400, "feet"),
  10077. default: true
  10078. },
  10079. ]
  10080. ))
  10081. characterMakers.push(() => makeCharacter(
  10082. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10083. {
  10084. catFront: {
  10085. height: math.unit(6, "feet"),
  10086. weight: math.unit(120, "lb"),
  10087. name: "Front (Cat Side)",
  10088. image: {
  10089. source: "./media/characters/axel-lycan/cat-front.svg",
  10090. extra: 430 / 402,
  10091. bottom: 43 / 472.35
  10092. }
  10093. },
  10094. catBack: {
  10095. height: math.unit(6, "feet"),
  10096. weight: math.unit(120, "lb"),
  10097. name: "Back (Cat Side)",
  10098. image: {
  10099. source: "./media/characters/axel-lycan/cat-back.svg",
  10100. extra: 447 / 419,
  10101. bottom: 23.3 / 469
  10102. }
  10103. },
  10104. wolfFront: {
  10105. height: math.unit(6, "feet"),
  10106. weight: math.unit(120, "lb"),
  10107. name: "Front (Wolf Side)",
  10108. image: {
  10109. source: "./media/characters/axel-lycan/wolf-front.svg",
  10110. extra: 485 / 456,
  10111. bottom: 19 / 504
  10112. }
  10113. },
  10114. wolfBack: {
  10115. height: math.unit(6, "feet"),
  10116. weight: math.unit(120, "lb"),
  10117. name: "Back (Wolf Side)",
  10118. image: {
  10119. source: "./media/characters/axel-lycan/wolf-back.svg",
  10120. extra: 475 / 438,
  10121. bottom: 39.2 / 514
  10122. }
  10123. },
  10124. },
  10125. [
  10126. {
  10127. name: "Macro",
  10128. height: math.unit(1, "km"),
  10129. default: true
  10130. },
  10131. ]
  10132. ))
  10133. characterMakers.push(() => makeCharacter(
  10134. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10135. {
  10136. front: {
  10137. height: math.unit(5 + 9 / 12, "feet"),
  10138. weight: math.unit(175, "lb"),
  10139. name: "Front",
  10140. image: {
  10141. source: "./media/characters/vanrel-hyena/front.svg",
  10142. extra: 1086 / 1010,
  10143. bottom: 0.04
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Normal",
  10150. height: math.unit(5 + 9 / 12, "feet"),
  10151. default: true
  10152. },
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10157. {
  10158. front: {
  10159. height: math.unit(6, "feet"),
  10160. weight: math.unit(103, "lb"),
  10161. name: "Front",
  10162. image: {
  10163. source: "./media/characters/abbott-absol/front.svg",
  10164. extra: 2010 / 1842
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Megamicro",
  10171. height: math.unit(0.1, "mm")
  10172. },
  10173. {
  10174. name: "Micro",
  10175. height: math.unit(1, "inch")
  10176. },
  10177. {
  10178. name: "Normal",
  10179. height: math.unit(6, "feet"),
  10180. default: true
  10181. },
  10182. ]
  10183. ))
  10184. characterMakers.push(() => makeCharacter(
  10185. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10186. {
  10187. front: {
  10188. height: math.unit(6, "feet"),
  10189. weight: math.unit(264, "lb"),
  10190. name: "Front",
  10191. image: {
  10192. source: "./media/characters/hector/front.svg",
  10193. extra: 2280 / 2130,
  10194. bottom: 0.07
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Normal",
  10201. height: math.unit(12.25, "foot"),
  10202. default: true
  10203. },
  10204. {
  10205. name: "Macro",
  10206. height: math.unit(160, "feet")
  10207. },
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10212. {
  10213. front: {
  10214. height: math.unit(6, "feet"),
  10215. weight: math.unit(150, "lb"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/sal/front.svg",
  10219. extra: 1846 / 1699,
  10220. bottom: 0.04
  10221. }
  10222. },
  10223. },
  10224. [
  10225. {
  10226. name: "Megamacro",
  10227. height: math.unit(10, "miles"),
  10228. default: true
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10234. {
  10235. front: {
  10236. height: math.unit(3, "meters"),
  10237. weight: math.unit(450, "kg"),
  10238. name: "front",
  10239. image: {
  10240. source: "./media/characters/ranger/front.svg",
  10241. extra: 2401 / 2243,
  10242. bottom: 0.05
  10243. }
  10244. },
  10245. },
  10246. [
  10247. {
  10248. name: "Normal",
  10249. height: math.unit(3, "meters"),
  10250. default: true
  10251. },
  10252. ]
  10253. ))
  10254. characterMakers.push(() => makeCharacter(
  10255. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10256. {
  10257. front: {
  10258. height: math.unit(14, "feet"),
  10259. weight: math.unit(800, "kg"),
  10260. name: "Front",
  10261. image: {
  10262. source: "./media/characters/theresa/front.svg",
  10263. extra: 3575 / 3346,
  10264. bottom: 0.03
  10265. }
  10266. },
  10267. },
  10268. [
  10269. {
  10270. name: "Normal",
  10271. height: math.unit(14, "feet"),
  10272. default: true
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10278. {
  10279. front: {
  10280. height: math.unit(6, "feet"),
  10281. weight: math.unit(3, "kg"),
  10282. name: "Front",
  10283. image: {
  10284. source: "./media/characters/ine/front.svg",
  10285. extra: 678 / 539,
  10286. bottom: 0.023
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Normal",
  10293. height: math.unit(2.265, "feet"),
  10294. default: true
  10295. },
  10296. ]
  10297. ))
  10298. characterMakers.push(() => makeCharacter(
  10299. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10300. {
  10301. front: {
  10302. height: math.unit(5, "feet"),
  10303. weight: math.unit(30, "kg"),
  10304. name: "Front",
  10305. image: {
  10306. source: "./media/characters/vial/front.svg",
  10307. extra: 1365 / 1277,
  10308. bottom: 0.04
  10309. }
  10310. },
  10311. },
  10312. [
  10313. {
  10314. name: "Normal",
  10315. height: math.unit(5, "feet"),
  10316. default: true
  10317. },
  10318. ]
  10319. ))
  10320. characterMakers.push(() => makeCharacter(
  10321. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10322. {
  10323. side: {
  10324. height: math.unit(3.4, "meters"),
  10325. weight: math.unit(1000, "lb"),
  10326. name: "Side",
  10327. image: {
  10328. source: "./media/characters/rovoska/side.svg",
  10329. extra: 4403 / 1515
  10330. }
  10331. },
  10332. },
  10333. [
  10334. {
  10335. name: "Normal",
  10336. height: math.unit(3.4, "meters"),
  10337. default: true
  10338. },
  10339. ]
  10340. ))
  10341. characterMakers.push(() => makeCharacter(
  10342. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10343. {
  10344. front: {
  10345. height: math.unit(8, "feet"),
  10346. weight: math.unit(315, "lb"),
  10347. name: "Front",
  10348. image: {
  10349. source: "./media/characters/gunner-rotthbauer/front.svg"
  10350. }
  10351. },
  10352. back: {
  10353. height: math.unit(8, "feet"),
  10354. weight: math.unit(315, "lb"),
  10355. name: "Back",
  10356. image: {
  10357. source: "./media/characters/gunner-rotthbauer/back.svg"
  10358. }
  10359. },
  10360. },
  10361. [
  10362. {
  10363. name: "Micro",
  10364. height: math.unit(3.5, "inches")
  10365. },
  10366. {
  10367. name: "Normal",
  10368. height: math.unit(8, "feet"),
  10369. default: true
  10370. },
  10371. {
  10372. name: "Macro",
  10373. height: math.unit(250, "feet")
  10374. },
  10375. {
  10376. name: "Megamacro",
  10377. height: math.unit(1, "AU")
  10378. },
  10379. ]
  10380. ))
  10381. characterMakers.push(() => makeCharacter(
  10382. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10383. {
  10384. front: {
  10385. height: math.unit(5 + 5 / 12, "feet"),
  10386. weight: math.unit(140, "lb"),
  10387. name: "Front",
  10388. image: {
  10389. source: "./media/characters/allatia/front.svg",
  10390. extra: 1227 / 1180,
  10391. bottom: 0.027
  10392. }
  10393. },
  10394. },
  10395. [
  10396. {
  10397. name: "Normal",
  10398. height: math.unit(5 + 5 / 12, "feet")
  10399. },
  10400. {
  10401. name: "Macro",
  10402. height: math.unit(250, "feet"),
  10403. default: true
  10404. },
  10405. {
  10406. name: "Megamacro",
  10407. height: math.unit(8, "miles")
  10408. }
  10409. ]
  10410. ))
  10411. characterMakers.push(() => makeCharacter(
  10412. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10413. {
  10414. front: {
  10415. height: math.unit(6, "feet"),
  10416. weight: math.unit(120, "lb"),
  10417. name: "Front",
  10418. image: {
  10419. source: "./media/characters/tene/front.svg",
  10420. extra: 814/750,
  10421. bottom: 36/850
  10422. }
  10423. },
  10424. stomping: {
  10425. height: math.unit(2.025, "meters"),
  10426. weight: math.unit(120, "lb"),
  10427. name: "Stomping",
  10428. image: {
  10429. source: "./media/characters/tene/stomping.svg",
  10430. extra: 885/821,
  10431. bottom: 15/900
  10432. }
  10433. },
  10434. sitting: {
  10435. height: math.unit(1, "meter"),
  10436. weight: math.unit(120, "lb"),
  10437. name: "Sitting",
  10438. image: {
  10439. source: "./media/characters/tene/sitting.svg",
  10440. extra: 396/366,
  10441. bottom: 79/475
  10442. }
  10443. },
  10444. smiling: {
  10445. height: math.unit(1.2, "feet"),
  10446. name: "Smiling",
  10447. image: {
  10448. source: "./media/characters/tene/smiling.svg",
  10449. extra: 1364/1071,
  10450. bottom: 0/1364
  10451. }
  10452. },
  10453. smug: {
  10454. height: math.unit(1.3, "feet"),
  10455. name: "Smug",
  10456. image: {
  10457. source: "./media/characters/tene/smug.svg",
  10458. extra: 1323/1082,
  10459. bottom: 0/1323
  10460. }
  10461. },
  10462. feral: {
  10463. height: math.unit(3.9, "feet"),
  10464. weight: math.unit(250, "lb"),
  10465. name: "Feral",
  10466. image: {
  10467. source: "./media/characters/tene/feral.svg",
  10468. extra: 717 / 458,
  10469. bottom: 0.179
  10470. }
  10471. },
  10472. },
  10473. [
  10474. {
  10475. name: "Normal",
  10476. height: math.unit(6, "feet")
  10477. },
  10478. {
  10479. name: "Macro",
  10480. height: math.unit(300, "feet"),
  10481. default: true
  10482. },
  10483. {
  10484. name: "Megamacro",
  10485. height: math.unit(5, "miles")
  10486. },
  10487. ]
  10488. ))
  10489. characterMakers.push(() => makeCharacter(
  10490. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10491. {
  10492. side: {
  10493. height: math.unit(6, "feet"),
  10494. name: "Side",
  10495. image: {
  10496. source: "./media/characters/evander/side.svg",
  10497. extra: 877 / 477
  10498. }
  10499. },
  10500. },
  10501. [
  10502. {
  10503. name: "Normal",
  10504. height: math.unit(0.83, "meters"),
  10505. default: true
  10506. },
  10507. ]
  10508. ))
  10509. characterMakers.push(() => makeCharacter(
  10510. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10511. {
  10512. front: {
  10513. height: math.unit(12, "feet"),
  10514. weight: math.unit(1000, "lb"),
  10515. name: "Front",
  10516. image: {
  10517. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10518. extra: 1762 / 1611
  10519. }
  10520. },
  10521. back: {
  10522. height: math.unit(12, "feet"),
  10523. weight: math.unit(1000, "lb"),
  10524. name: "Back",
  10525. image: {
  10526. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10527. extra: 1762 / 1611
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Normal",
  10534. height: math.unit(12, "feet"),
  10535. default: true
  10536. },
  10537. {
  10538. name: "Kaiju",
  10539. height: math.unit(150, "feet")
  10540. },
  10541. ]
  10542. ))
  10543. characterMakers.push(() => makeCharacter(
  10544. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10545. {
  10546. front: {
  10547. height: math.unit(6, "feet"),
  10548. weight: math.unit(150, "lb"),
  10549. name: "Front",
  10550. image: {
  10551. source: "./media/characters/zero-alurus/front.svg"
  10552. }
  10553. },
  10554. back: {
  10555. height: math.unit(6, "feet"),
  10556. weight: math.unit(150, "lb"),
  10557. name: "Back",
  10558. image: {
  10559. source: "./media/characters/zero-alurus/back.svg"
  10560. }
  10561. },
  10562. },
  10563. [
  10564. {
  10565. name: "Normal",
  10566. height: math.unit(5 + 10 / 12, "feet")
  10567. },
  10568. {
  10569. name: "Macro",
  10570. height: math.unit(60, "feet"),
  10571. default: true
  10572. },
  10573. {
  10574. name: "Macro+",
  10575. height: math.unit(450, "feet")
  10576. },
  10577. ]
  10578. ))
  10579. characterMakers.push(() => makeCharacter(
  10580. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10581. {
  10582. front: {
  10583. height: math.unit(6, "feet"),
  10584. weight: math.unit(200, "lb"),
  10585. name: "Front",
  10586. image: {
  10587. source: "./media/characters/mega-shi/front.svg",
  10588. extra: 1279 / 1250,
  10589. bottom: 0.02
  10590. }
  10591. },
  10592. back: {
  10593. height: math.unit(6, "feet"),
  10594. weight: math.unit(200, "lb"),
  10595. name: "Back",
  10596. image: {
  10597. source: "./media/characters/mega-shi/back.svg",
  10598. extra: 1279 / 1250,
  10599. bottom: 0.02
  10600. }
  10601. },
  10602. },
  10603. [
  10604. {
  10605. name: "Micro",
  10606. height: math.unit(16 + 6 / 12, "feet")
  10607. },
  10608. {
  10609. name: "Third Dimension",
  10610. height: math.unit(40, "meters")
  10611. },
  10612. {
  10613. name: "Normal",
  10614. height: math.unit(660, "feet"),
  10615. default: true
  10616. },
  10617. {
  10618. name: "Megamacro",
  10619. height: math.unit(10, "miles")
  10620. },
  10621. {
  10622. name: "Planetary Launch",
  10623. height: math.unit(500, "miles")
  10624. },
  10625. {
  10626. name: "Interstellar",
  10627. height: math.unit(1e9, "miles")
  10628. },
  10629. {
  10630. name: "Leaving the Universe",
  10631. height: math.unit(1, "gigaparsec")
  10632. },
  10633. {
  10634. name: "Travelling Universes",
  10635. height: math.unit(30e15, "parsecs")
  10636. },
  10637. ]
  10638. ))
  10639. characterMakers.push(() => makeCharacter(
  10640. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10641. {
  10642. front: {
  10643. height: math.unit(5 + 4/12, "feet"),
  10644. weight: math.unit(120, "lb"),
  10645. name: "Front",
  10646. image: {
  10647. source: "./media/characters/odyssey/front.svg",
  10648. extra: 1747/1571,
  10649. bottom: 47/1794
  10650. }
  10651. },
  10652. side: {
  10653. height: math.unit(5.1, "feet"),
  10654. weight: math.unit(120, "lb"),
  10655. name: "Side",
  10656. image: {
  10657. source: "./media/characters/odyssey/side.svg",
  10658. extra: 1847/1619,
  10659. bottom: 47/1894
  10660. }
  10661. },
  10662. lounging: {
  10663. height: math.unit(1.464, "feet"),
  10664. weight: math.unit(120, "lb"),
  10665. name: "Lounging",
  10666. image: {
  10667. source: "./media/characters/odyssey/lounging.svg",
  10668. extra: 1235/837,
  10669. bottom: 551/1786
  10670. }
  10671. },
  10672. },
  10673. [
  10674. {
  10675. name: "Normal",
  10676. height: math.unit(5 + 4 / 12, "feet")
  10677. },
  10678. {
  10679. name: "Macro",
  10680. height: math.unit(1, "km")
  10681. },
  10682. {
  10683. name: "Megamacro",
  10684. height: math.unit(3000, "km")
  10685. },
  10686. {
  10687. name: "Gigamacro",
  10688. height: math.unit(1, "AU"),
  10689. default: true
  10690. },
  10691. {
  10692. name: "Omniversal",
  10693. height: math.unit(100e14, "lightyears")
  10694. },
  10695. ]
  10696. ))
  10697. characterMakers.push(() => makeCharacter(
  10698. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10699. {
  10700. front: {
  10701. height: math.unit(6, "feet"),
  10702. weight: math.unit(300, "lb"),
  10703. name: "Front",
  10704. image: {
  10705. source: "./media/characters/mekuto/front.svg",
  10706. extra: 921 / 832,
  10707. bottom: 0.03
  10708. }
  10709. },
  10710. hand: {
  10711. height: math.unit(6 / 10.24, "feet"),
  10712. name: "Hand",
  10713. image: {
  10714. source: "./media/characters/mekuto/hand.svg"
  10715. }
  10716. },
  10717. foot: {
  10718. height: math.unit(6 / 5.05, "feet"),
  10719. name: "Foot",
  10720. image: {
  10721. source: "./media/characters/mekuto/foot.svg"
  10722. }
  10723. },
  10724. },
  10725. [
  10726. {
  10727. name: "Minimicro",
  10728. height: math.unit(0.2, "inches")
  10729. },
  10730. {
  10731. name: "Micro",
  10732. height: math.unit(1.5, "inches")
  10733. },
  10734. {
  10735. name: "Normal",
  10736. height: math.unit(5 + 11 / 12, "feet"),
  10737. default: true
  10738. },
  10739. {
  10740. name: "Minimacro",
  10741. height: math.unit(17 + 9 / 12, "feet")
  10742. },
  10743. {
  10744. name: "Macro",
  10745. height: math.unit(177.5, "feet")
  10746. },
  10747. {
  10748. name: "Megamacro",
  10749. height: math.unit(152, "miles")
  10750. },
  10751. ]
  10752. ))
  10753. characterMakers.push(() => makeCharacter(
  10754. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10755. {
  10756. front: {
  10757. height: math.unit(6.5, "inches"),
  10758. weight: math.unit(13, "oz"),
  10759. name: "Front",
  10760. image: {
  10761. source: "./media/characters/dafydd-tomos/front.svg",
  10762. extra: 2990 / 2603,
  10763. bottom: 0.03
  10764. }
  10765. },
  10766. },
  10767. [
  10768. {
  10769. name: "Micro",
  10770. height: math.unit(6.5, "inches"),
  10771. default: true
  10772. },
  10773. ]
  10774. ))
  10775. characterMakers.push(() => makeCharacter(
  10776. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10777. {
  10778. front: {
  10779. height: math.unit(6, "feet"),
  10780. weight: math.unit(150, "lb"),
  10781. name: "Front",
  10782. image: {
  10783. source: "./media/characters/splinter/front.svg",
  10784. extra: 2990 / 2882,
  10785. bottom: 0.04
  10786. }
  10787. },
  10788. back: {
  10789. height: math.unit(6, "feet"),
  10790. weight: math.unit(150, "lb"),
  10791. name: "Back",
  10792. image: {
  10793. source: "./media/characters/splinter/back.svg",
  10794. extra: 2990 / 2882,
  10795. bottom: 0.04
  10796. }
  10797. },
  10798. },
  10799. [
  10800. {
  10801. name: "Normal",
  10802. height: math.unit(6, "feet")
  10803. },
  10804. {
  10805. name: "Macro",
  10806. height: math.unit(230, "meters"),
  10807. default: true
  10808. },
  10809. ]
  10810. ))
  10811. characterMakers.push(() => makeCharacter(
  10812. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10813. {
  10814. front: {
  10815. height: math.unit(4 + 10 / 12, "feet"),
  10816. weight: math.unit(480, "lb"),
  10817. name: "Front",
  10818. image: {
  10819. source: "./media/characters/snow-gabumon/front.svg",
  10820. extra: 1140 / 963,
  10821. bottom: 0.058
  10822. }
  10823. },
  10824. back: {
  10825. height: math.unit(4 + 10 / 12, "feet"),
  10826. weight: math.unit(480, "lb"),
  10827. name: "Back",
  10828. image: {
  10829. source: "./media/characters/snow-gabumon/back.svg",
  10830. extra: 1115 / 962,
  10831. bottom: 0.041
  10832. }
  10833. },
  10834. frontUndresed: {
  10835. height: math.unit(4 + 10 / 12, "feet"),
  10836. weight: math.unit(480, "lb"),
  10837. name: "Front (Undressed)",
  10838. image: {
  10839. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10840. extra: 1061 / 960,
  10841. bottom: 0.045
  10842. }
  10843. },
  10844. },
  10845. [
  10846. {
  10847. name: "Micro",
  10848. height: math.unit(1, "inch")
  10849. },
  10850. {
  10851. name: "Normal",
  10852. height: math.unit(4 + 10 / 12, "feet"),
  10853. default: true
  10854. },
  10855. {
  10856. name: "Macro",
  10857. height: math.unit(200, "feet")
  10858. },
  10859. {
  10860. name: "Megamacro",
  10861. height: math.unit(120, "miles")
  10862. },
  10863. {
  10864. name: "Gigamacro",
  10865. height: math.unit(9800, "miles")
  10866. },
  10867. ]
  10868. ))
  10869. characterMakers.push(() => makeCharacter(
  10870. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10871. {
  10872. front: {
  10873. height: math.unit(1.7, "meters"),
  10874. weight: math.unit(140, "lb"),
  10875. name: "Front",
  10876. image: {
  10877. source: "./media/characters/moody/front.svg",
  10878. extra: 3226 / 3007,
  10879. bottom: 0.087
  10880. }
  10881. },
  10882. },
  10883. [
  10884. {
  10885. name: "Micro",
  10886. height: math.unit(1, "mm")
  10887. },
  10888. {
  10889. name: "Normal",
  10890. height: math.unit(1.7, "meters"),
  10891. default: true
  10892. },
  10893. {
  10894. name: "Macro",
  10895. height: math.unit(80, "meters")
  10896. },
  10897. {
  10898. name: "Macro+",
  10899. height: math.unit(500, "meters")
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10905. {
  10906. front: {
  10907. height: math.unit(6, "feet"),
  10908. weight: math.unit(150, "lb"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/zyas/front.svg",
  10912. extra: 1180 / 1120,
  10913. bottom: 0.045
  10914. }
  10915. },
  10916. },
  10917. [
  10918. {
  10919. name: "Normal",
  10920. height: math.unit(10, "feet"),
  10921. default: true
  10922. },
  10923. {
  10924. name: "Macro",
  10925. height: math.unit(500, "feet")
  10926. },
  10927. {
  10928. name: "Megamacro",
  10929. height: math.unit(5, "miles")
  10930. },
  10931. {
  10932. name: "Teramacro",
  10933. height: math.unit(150000, "miles")
  10934. },
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10939. {
  10940. front: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(150, "lb"),
  10943. name: "Front",
  10944. image: {
  10945. source: "./media/characters/cuon/front.svg",
  10946. extra: 1390 / 1320,
  10947. bottom: 0.008
  10948. }
  10949. },
  10950. },
  10951. [
  10952. {
  10953. name: "Micro",
  10954. height: math.unit(3, "inches")
  10955. },
  10956. {
  10957. name: "Normal",
  10958. height: math.unit(18 + 9 / 12, "feet"),
  10959. default: true
  10960. },
  10961. {
  10962. name: "Macro",
  10963. height: math.unit(360, "feet")
  10964. },
  10965. {
  10966. name: "Megamacro",
  10967. height: math.unit(360, "miles")
  10968. },
  10969. ]
  10970. ))
  10971. characterMakers.push(() => makeCharacter(
  10972. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10973. {
  10974. front: {
  10975. height: math.unit(2.4, "meters"),
  10976. weight: math.unit(70, "kg"),
  10977. name: "Front",
  10978. image: {
  10979. source: "./media/characters/nyanuxk/front.svg",
  10980. extra: 1172 / 1084,
  10981. bottom: 0.065
  10982. }
  10983. },
  10984. side: {
  10985. height: math.unit(2.4, "meters"),
  10986. weight: math.unit(70, "kg"),
  10987. name: "Side",
  10988. image: {
  10989. source: "./media/characters/nyanuxk/side.svg",
  10990. extra: 1190 / 1132,
  10991. bottom: 0.007
  10992. }
  10993. },
  10994. back: {
  10995. height: math.unit(2.4, "meters"),
  10996. weight: math.unit(70, "kg"),
  10997. name: "Back",
  10998. image: {
  10999. source: "./media/characters/nyanuxk/back.svg",
  11000. extra: 1200 / 1141,
  11001. bottom: 0.015
  11002. }
  11003. },
  11004. foot: {
  11005. height: math.unit(0.52, "meters"),
  11006. name: "Foot",
  11007. image: {
  11008. source: "./media/characters/nyanuxk/foot.svg"
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Micro",
  11015. height: math.unit(2, "cm")
  11016. },
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(2.4, "meters"),
  11020. default: true
  11021. },
  11022. {
  11023. name: "Smaller Macro",
  11024. height: math.unit(120, "meters")
  11025. },
  11026. {
  11027. name: "Bigger Macro",
  11028. height: math.unit(1.2, "km")
  11029. },
  11030. {
  11031. name: "Megamacro",
  11032. height: math.unit(15, "kilometers")
  11033. },
  11034. {
  11035. name: "Gigamacro",
  11036. height: math.unit(2000, "km")
  11037. },
  11038. {
  11039. name: "Teramacro",
  11040. height: math.unit(500000, "km")
  11041. },
  11042. ]
  11043. ))
  11044. characterMakers.push(() => makeCharacter(
  11045. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11046. {
  11047. side: {
  11048. height: math.unit(6, "feet"),
  11049. name: "Side",
  11050. image: {
  11051. source: "./media/characters/ailbhe/side.svg",
  11052. extra: 757 / 464,
  11053. bottom: 0.041
  11054. }
  11055. },
  11056. },
  11057. [
  11058. {
  11059. name: "Normal",
  11060. height: math.unit(1.07, "meters"),
  11061. default: true
  11062. },
  11063. ]
  11064. ))
  11065. characterMakers.push(() => makeCharacter(
  11066. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11067. {
  11068. front: {
  11069. height: math.unit(6, "feet"),
  11070. weight: math.unit(120, "kg"),
  11071. name: "Front",
  11072. image: {
  11073. source: "./media/characters/zevulfius/front.svg",
  11074. extra: 965 / 903
  11075. }
  11076. },
  11077. side: {
  11078. height: math.unit(6, "feet"),
  11079. weight: math.unit(120, "kg"),
  11080. name: "Side",
  11081. image: {
  11082. source: "./media/characters/zevulfius/side.svg",
  11083. extra: 939 / 900
  11084. }
  11085. },
  11086. back: {
  11087. height: math.unit(6, "feet"),
  11088. weight: math.unit(120, "kg"),
  11089. name: "Back",
  11090. image: {
  11091. source: "./media/characters/zevulfius/back.svg",
  11092. extra: 918 / 854,
  11093. bottom: 0.005
  11094. }
  11095. },
  11096. foot: {
  11097. height: math.unit(6 / 3.72, "feet"),
  11098. name: "Foot",
  11099. image: {
  11100. source: "./media/characters/zevulfius/foot.svg"
  11101. }
  11102. },
  11103. },
  11104. [
  11105. {
  11106. name: "Macro",
  11107. height: math.unit(750, "meters")
  11108. },
  11109. {
  11110. name: "Megamacro",
  11111. height: math.unit(20, "km"),
  11112. default: true
  11113. },
  11114. {
  11115. name: "Gigamacro",
  11116. height: math.unit(2000, "km")
  11117. },
  11118. {
  11119. name: "Teramacro",
  11120. height: math.unit(250000, "km")
  11121. },
  11122. ]
  11123. ))
  11124. characterMakers.push(() => makeCharacter(
  11125. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11126. {
  11127. front: {
  11128. height: math.unit(100, "feet"),
  11129. weight: math.unit(350, "kg"),
  11130. name: "Front",
  11131. image: {
  11132. source: "./media/characters/rikes/front.svg",
  11133. extra: 1565 / 1483,
  11134. bottom: 0.017
  11135. }
  11136. },
  11137. },
  11138. [
  11139. {
  11140. name: "Macro",
  11141. height: math.unit(100, "feet"),
  11142. default: true
  11143. },
  11144. ]
  11145. ))
  11146. characterMakers.push(() => makeCharacter(
  11147. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11148. {
  11149. front: {
  11150. height: math.unit(8, "feet"),
  11151. weight: math.unit(356, "lb"),
  11152. name: "Front",
  11153. image: {
  11154. source: "./media/characters/adam-silver-mane/front.svg",
  11155. extra: 1036/937,
  11156. bottom: 63/1099
  11157. }
  11158. },
  11159. side: {
  11160. height: math.unit(8, "feet"),
  11161. weight: math.unit(356, "lb"),
  11162. name: "Side",
  11163. image: {
  11164. source: "./media/characters/adam-silver-mane/side.svg",
  11165. extra: 997/901,
  11166. bottom: 59/1056
  11167. }
  11168. },
  11169. frontNsfw: {
  11170. height: math.unit(8, "feet"),
  11171. weight: math.unit(356, "lb"),
  11172. name: "Front (NSFW)",
  11173. image: {
  11174. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11175. extra: 1036/937,
  11176. bottom: 63/1099
  11177. }
  11178. },
  11179. sideNsfw: {
  11180. height: math.unit(8, "feet"),
  11181. weight: math.unit(356, "lb"),
  11182. name: "Side (NSFW)",
  11183. image: {
  11184. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11185. extra: 997/901,
  11186. bottom: 59/1056
  11187. }
  11188. },
  11189. dick: {
  11190. height: math.unit(2.1, "feet"),
  11191. name: "Dick",
  11192. image: {
  11193. source: "./media/characters/adam-silver-mane/dick.svg"
  11194. }
  11195. },
  11196. taur: {
  11197. height: math.unit(16, "feet"),
  11198. weight: math.unit(1500, "kg"),
  11199. name: "Taur",
  11200. image: {
  11201. source: "./media/characters/adam-silver-mane/taur.svg",
  11202. extra: 1713 / 1571,
  11203. bottom: 0.01
  11204. }
  11205. },
  11206. },
  11207. [
  11208. {
  11209. name: "Normal",
  11210. height: math.unit(8, "feet")
  11211. },
  11212. {
  11213. name: "Minimacro",
  11214. height: math.unit(80, "feet")
  11215. },
  11216. {
  11217. name: "MDA",
  11218. height: math.unit(80, "meters")
  11219. },
  11220. {
  11221. name: "Macro",
  11222. height: math.unit(800, "feet"),
  11223. default: true
  11224. },
  11225. {
  11226. name: "Megamacro",
  11227. height: math.unit(8000, "feet")
  11228. },
  11229. {
  11230. name: "Gigamacro",
  11231. height: math.unit(800, "miles")
  11232. },
  11233. {
  11234. name: "Teramacro",
  11235. height: math.unit(80000, "miles")
  11236. },
  11237. {
  11238. name: "Celestial",
  11239. height: math.unit(8e6, "miles")
  11240. },
  11241. {
  11242. name: "Star Dragon",
  11243. height: math.unit(800000, "parsecs")
  11244. },
  11245. {
  11246. name: "Godly",
  11247. height: math.unit(800, "teraparsecs")
  11248. },
  11249. ]
  11250. ))
  11251. characterMakers.push(() => makeCharacter(
  11252. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11253. {
  11254. front: {
  11255. height: math.unit(6, "feet"),
  11256. weight: math.unit(150, "lb"),
  11257. name: "Front",
  11258. image: {
  11259. source: "./media/characters/ky'owin/front.svg",
  11260. extra: 3888 / 3068,
  11261. bottom: 0.015
  11262. }
  11263. },
  11264. },
  11265. [
  11266. {
  11267. name: "Normal",
  11268. height: math.unit(6 + 8 / 12, "feet")
  11269. },
  11270. {
  11271. name: "Large",
  11272. height: math.unit(68, "feet")
  11273. },
  11274. {
  11275. name: "Macro",
  11276. height: math.unit(132, "feet")
  11277. },
  11278. {
  11279. name: "Macro+",
  11280. height: math.unit(340, "feet")
  11281. },
  11282. {
  11283. name: "Macro++",
  11284. height: math.unit(680, "feet"),
  11285. default: true
  11286. },
  11287. {
  11288. name: "Megamacro",
  11289. height: math.unit(1, "mile")
  11290. },
  11291. {
  11292. name: "Megamacro+",
  11293. height: math.unit(10, "miles")
  11294. },
  11295. ]
  11296. ))
  11297. characterMakers.push(() => makeCharacter(
  11298. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11299. {
  11300. front: {
  11301. height: math.unit(4, "feet"),
  11302. weight: math.unit(50, "lb"),
  11303. name: "Front",
  11304. image: {
  11305. source: "./media/characters/mal/front.svg",
  11306. extra: 785 / 724,
  11307. bottom: 0.07
  11308. }
  11309. },
  11310. },
  11311. [
  11312. {
  11313. name: "Micro",
  11314. height: math.unit(4, "inches")
  11315. },
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(4, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Macro",
  11323. height: math.unit(200, "feet")
  11324. },
  11325. ]
  11326. ))
  11327. characterMakers.push(() => makeCharacter(
  11328. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11329. {
  11330. front: {
  11331. height: math.unit(6, "feet"),
  11332. weight: math.unit(150, "lb"),
  11333. name: "Front",
  11334. image: {
  11335. source: "./media/characters/jordan-deware/front.svg",
  11336. extra: 1191 / 1012
  11337. }
  11338. },
  11339. },
  11340. [
  11341. {
  11342. name: "Nano",
  11343. height: math.unit(0.01, "mm")
  11344. },
  11345. {
  11346. name: "Minimicro",
  11347. height: math.unit(1, "mm")
  11348. },
  11349. {
  11350. name: "Micro",
  11351. height: math.unit(0.5, "inches")
  11352. },
  11353. {
  11354. name: "Normal",
  11355. height: math.unit(4, "feet"),
  11356. default: true
  11357. },
  11358. {
  11359. name: "Minimacro",
  11360. height: math.unit(40, "meters")
  11361. },
  11362. {
  11363. name: "Small Macro",
  11364. height: math.unit(400, "meters")
  11365. },
  11366. {
  11367. name: "Macro",
  11368. height: math.unit(4, "miles")
  11369. },
  11370. {
  11371. name: "Megamacro",
  11372. height: math.unit(40, "miles")
  11373. },
  11374. {
  11375. name: "Megamacro+",
  11376. height: math.unit(400, "miles")
  11377. },
  11378. {
  11379. name: "Gigamacro",
  11380. height: math.unit(400000, "miles")
  11381. },
  11382. ]
  11383. ))
  11384. characterMakers.push(() => makeCharacter(
  11385. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11386. {
  11387. side: {
  11388. height: math.unit(6, "feet"),
  11389. weight: math.unit(150, "lb"),
  11390. name: "Side",
  11391. image: {
  11392. source: "./media/characters/kimiko/side.svg",
  11393. extra: 600 / 358
  11394. }
  11395. },
  11396. },
  11397. [
  11398. {
  11399. name: "Normal",
  11400. height: math.unit(15, "feet"),
  11401. default: true
  11402. },
  11403. {
  11404. name: "Macro",
  11405. height: math.unit(220, "feet")
  11406. },
  11407. {
  11408. name: "Macro+",
  11409. height: math.unit(1450, "feet")
  11410. },
  11411. {
  11412. name: "Megamacro",
  11413. height: math.unit(11500, "feet")
  11414. },
  11415. {
  11416. name: "Gigamacro",
  11417. height: math.unit(9500, "miles")
  11418. },
  11419. {
  11420. name: "Teramacro",
  11421. height: math.unit(2208005005, "miles")
  11422. },
  11423. {
  11424. name: "Examacro",
  11425. height: math.unit(2750, "parsecs")
  11426. },
  11427. {
  11428. name: "Zettamacro",
  11429. height: math.unit(101500, "parsecs")
  11430. },
  11431. ]
  11432. ))
  11433. characterMakers.push(() => makeCharacter(
  11434. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11435. {
  11436. front: {
  11437. height: math.unit(6, "feet"),
  11438. weight: math.unit(70, "kg"),
  11439. name: "Front",
  11440. image: {
  11441. source: "./media/characters/andrew-sleepy/front.svg"
  11442. }
  11443. },
  11444. side: {
  11445. height: math.unit(6, "feet"),
  11446. weight: math.unit(70, "kg"),
  11447. name: "Side",
  11448. image: {
  11449. source: "./media/characters/andrew-sleepy/side.svg"
  11450. }
  11451. },
  11452. },
  11453. [
  11454. {
  11455. name: "Micro",
  11456. height: math.unit(1, "mm"),
  11457. default: true
  11458. },
  11459. ]
  11460. ))
  11461. characterMakers.push(() => makeCharacter(
  11462. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11463. {
  11464. front: {
  11465. height: math.unit(6, "feet"),
  11466. weight: math.unit(150, "lb"),
  11467. name: "Front",
  11468. image: {
  11469. source: "./media/characters/judio/front.svg",
  11470. extra: 1258 / 1110
  11471. }
  11472. },
  11473. },
  11474. [
  11475. {
  11476. name: "Normal",
  11477. height: math.unit(5 + 6 / 12, "feet")
  11478. },
  11479. {
  11480. name: "Macro",
  11481. height: math.unit(1000, "feet"),
  11482. default: true
  11483. },
  11484. {
  11485. name: "Megamacro",
  11486. height: math.unit(10, "miles")
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11492. {
  11493. frontDressed: {
  11494. height: math.unit(6, "feet"),
  11495. weight: math.unit(68, "kg"),
  11496. name: "Front (Dressed)",
  11497. image: {
  11498. source: "./media/characters/nomaxice/front-dressed.svg",
  11499. extra: 1137/824,
  11500. bottom: 74/1211
  11501. }
  11502. },
  11503. frontShorts: {
  11504. height: math.unit(6, "feet"),
  11505. weight: math.unit(68, "kg"),
  11506. name: "Front (Shorts)",
  11507. image: {
  11508. source: "./media/characters/nomaxice/front-shorts.svg",
  11509. extra: 1137/824,
  11510. bottom: 74/1211
  11511. }
  11512. },
  11513. back: {
  11514. height: math.unit(6, "feet"),
  11515. weight: math.unit(68, "kg"),
  11516. name: "Back",
  11517. image: {
  11518. source: "./media/characters/nomaxice/back.svg",
  11519. extra: 822/786,
  11520. bottom: 39/861
  11521. }
  11522. },
  11523. hand: {
  11524. height: math.unit(0.565, "feet"),
  11525. name: "Hand",
  11526. image: {
  11527. source: "./media/characters/nomaxice/hand.svg"
  11528. }
  11529. },
  11530. foot: {
  11531. height: math.unit(1, "feet"),
  11532. name: "Foot",
  11533. image: {
  11534. source: "./media/characters/nomaxice/foot.svg"
  11535. }
  11536. },
  11537. },
  11538. [
  11539. {
  11540. name: "Micro",
  11541. height: math.unit(8, "cm")
  11542. },
  11543. {
  11544. name: "Norm",
  11545. height: math.unit(1.82, "m")
  11546. },
  11547. {
  11548. name: "Norm+",
  11549. height: math.unit(8.8, "feet"),
  11550. default: true
  11551. },
  11552. {
  11553. name: "Big",
  11554. height: math.unit(8, "meters")
  11555. },
  11556. {
  11557. name: "Macro",
  11558. height: math.unit(18, "meters")
  11559. },
  11560. {
  11561. name: "Macro+",
  11562. height: math.unit(88, "meters")
  11563. },
  11564. ]
  11565. ))
  11566. characterMakers.push(() => makeCharacter(
  11567. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11568. {
  11569. front: {
  11570. height: math.unit(12, "feet"),
  11571. weight: math.unit(1.5, "tons"),
  11572. name: "Front",
  11573. image: {
  11574. source: "./media/characters/dydros/front.svg",
  11575. extra: 863 / 800,
  11576. bottom: 0.015
  11577. }
  11578. },
  11579. back: {
  11580. height: math.unit(12, "feet"),
  11581. weight: math.unit(1.5, "tons"),
  11582. name: "Back",
  11583. image: {
  11584. source: "./media/characters/dydros/back.svg",
  11585. extra: 900 / 843,
  11586. bottom: 0.005
  11587. }
  11588. },
  11589. },
  11590. [
  11591. {
  11592. name: "Normal",
  11593. height: math.unit(12, "feet"),
  11594. default: true
  11595. },
  11596. ]
  11597. ))
  11598. characterMakers.push(() => makeCharacter(
  11599. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11600. {
  11601. front: {
  11602. height: math.unit(6, "feet"),
  11603. weight: math.unit(100, "kg"),
  11604. name: "Front",
  11605. image: {
  11606. source: "./media/characters/riggi/front.svg",
  11607. extra: 5787 / 5303
  11608. }
  11609. },
  11610. hyper: {
  11611. height: math.unit(6 * 5 / 3, "feet"),
  11612. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11613. name: "Hyper",
  11614. image: {
  11615. source: "./media/characters/riggi/hyper.svg",
  11616. extra: 3595 / 3485
  11617. }
  11618. },
  11619. },
  11620. [
  11621. {
  11622. name: "Small Macro",
  11623. height: math.unit(50, "feet")
  11624. },
  11625. {
  11626. name: "Default",
  11627. height: math.unit(200, "feet"),
  11628. default: true
  11629. },
  11630. {
  11631. name: "Loom",
  11632. height: math.unit(10000, "feet")
  11633. },
  11634. {
  11635. name: "Cruising Altitude",
  11636. height: math.unit(30000, "feet")
  11637. },
  11638. {
  11639. name: "Megamacro",
  11640. height: math.unit(100, "miles")
  11641. },
  11642. {
  11643. name: "Continent Sized",
  11644. height: math.unit(2800, "miles")
  11645. },
  11646. {
  11647. name: "Earth Sized",
  11648. height: math.unit(8000, "miles")
  11649. },
  11650. ]
  11651. ))
  11652. characterMakers.push(() => makeCharacter(
  11653. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11654. {
  11655. front: {
  11656. height: math.unit(6, "feet"),
  11657. weight: math.unit(250, "lb"),
  11658. name: "Front",
  11659. image: {
  11660. source: "./media/characters/alexi/front.svg",
  11661. extra: 3483 / 3291,
  11662. bottom: 0.04
  11663. }
  11664. },
  11665. back: {
  11666. height: math.unit(6, "feet"),
  11667. weight: math.unit(250, "lb"),
  11668. name: "Back",
  11669. image: {
  11670. source: "./media/characters/alexi/back.svg",
  11671. extra: 3533 / 3356,
  11672. bottom: 0.021
  11673. }
  11674. },
  11675. frontTransforming: {
  11676. height: math.unit(8.58, "feet"),
  11677. weight: math.unit(1300, "lb"),
  11678. name: "Transforming",
  11679. image: {
  11680. source: "./media/characters/alexi/front-transforming.svg",
  11681. extra: 437 / 409,
  11682. bottom: 19 / 458.66
  11683. }
  11684. },
  11685. frontTransformed: {
  11686. height: math.unit(12.5, "feet"),
  11687. weight: math.unit(4000, "lb"),
  11688. name: "Transformed",
  11689. image: {
  11690. source: "./media/characters/alexi/front-transformed.svg",
  11691. extra: 639 / 614,
  11692. bottom: 30.55 / 671
  11693. }
  11694. },
  11695. },
  11696. [
  11697. {
  11698. name: "Normal",
  11699. height: math.unit(14, "feet"),
  11700. default: true
  11701. },
  11702. {
  11703. name: "Minimacro",
  11704. height: math.unit(30, "meters")
  11705. },
  11706. {
  11707. name: "Macro",
  11708. height: math.unit(500, "meters")
  11709. },
  11710. {
  11711. name: "Megamacro",
  11712. height: math.unit(9000, "km")
  11713. },
  11714. {
  11715. name: "Teramacro",
  11716. height: math.unit(384000, "km")
  11717. },
  11718. ]
  11719. ))
  11720. characterMakers.push(() => makeCharacter(
  11721. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11722. {
  11723. front: {
  11724. height: math.unit(6, "feet"),
  11725. weight: math.unit(150, "lb"),
  11726. name: "Front",
  11727. image: {
  11728. source: "./media/characters/kayroo/front.svg",
  11729. extra: 1153 / 1038,
  11730. bottom: 0.06
  11731. }
  11732. },
  11733. foot: {
  11734. height: math.unit(6, "feet"),
  11735. weight: math.unit(150, "lb"),
  11736. name: "Foot",
  11737. image: {
  11738. source: "./media/characters/kayroo/foot.svg"
  11739. }
  11740. },
  11741. },
  11742. [
  11743. {
  11744. name: "Normal",
  11745. height: math.unit(8, "feet"),
  11746. default: true
  11747. },
  11748. {
  11749. name: "Minimacro",
  11750. height: math.unit(250, "feet")
  11751. },
  11752. {
  11753. name: "Macro",
  11754. height: math.unit(2800, "feet")
  11755. },
  11756. {
  11757. name: "Megamacro",
  11758. height: math.unit(5200, "feet")
  11759. },
  11760. {
  11761. name: "Gigamacro",
  11762. height: math.unit(27000, "feet")
  11763. },
  11764. {
  11765. name: "Omega",
  11766. height: math.unit(45000, "feet")
  11767. },
  11768. ]
  11769. ))
  11770. characterMakers.push(() => makeCharacter(
  11771. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11772. {
  11773. front: {
  11774. height: math.unit(18, "feet"),
  11775. weight: math.unit(5800, "lb"),
  11776. name: "Front",
  11777. image: {
  11778. source: "./media/characters/rhys/front.svg",
  11779. extra: 3386 / 3090,
  11780. bottom: 0.07
  11781. }
  11782. },
  11783. },
  11784. [
  11785. {
  11786. name: "Normal",
  11787. height: math.unit(18, "feet"),
  11788. default: true
  11789. },
  11790. {
  11791. name: "Working Size",
  11792. height: math.unit(200, "feet")
  11793. },
  11794. {
  11795. name: "Demolition Size",
  11796. height: math.unit(2000, "feet")
  11797. },
  11798. {
  11799. name: "Maximum Licensed Size",
  11800. height: math.unit(5, "miles")
  11801. },
  11802. {
  11803. name: "Maximum Observed Size",
  11804. height: math.unit(10, "yottameters")
  11805. },
  11806. ]
  11807. ))
  11808. characterMakers.push(() => makeCharacter(
  11809. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11810. {
  11811. front: {
  11812. height: math.unit(6, "feet"),
  11813. weight: math.unit(250, "lb"),
  11814. name: "Front",
  11815. image: {
  11816. source: "./media/characters/toto/front.svg",
  11817. extra: 527 / 479,
  11818. bottom: 0.05
  11819. }
  11820. },
  11821. },
  11822. [
  11823. {
  11824. name: "Micro",
  11825. height: math.unit(3, "feet")
  11826. },
  11827. {
  11828. name: "Normal",
  11829. height: math.unit(10, "feet")
  11830. },
  11831. {
  11832. name: "Macro",
  11833. height: math.unit(150, "feet"),
  11834. default: true
  11835. },
  11836. {
  11837. name: "Megamacro",
  11838. height: math.unit(1200, "feet")
  11839. },
  11840. ]
  11841. ))
  11842. characterMakers.push(() => makeCharacter(
  11843. { name: "King", species: ["lion"], tags: ["anthro"] },
  11844. {
  11845. back: {
  11846. height: math.unit(6, "feet"),
  11847. weight: math.unit(150, "lb"),
  11848. name: "Back",
  11849. image: {
  11850. source: "./media/characters/king/back.svg"
  11851. }
  11852. },
  11853. },
  11854. [
  11855. {
  11856. name: "Micro",
  11857. height: math.unit(2, "inches")
  11858. },
  11859. {
  11860. name: "Normal",
  11861. height: math.unit(8, "feet")
  11862. },
  11863. {
  11864. name: "Macro",
  11865. height: math.unit(200, "feet"),
  11866. default: true
  11867. },
  11868. {
  11869. name: "Megamacro",
  11870. height: math.unit(50, "miles")
  11871. },
  11872. ]
  11873. ))
  11874. characterMakers.push(() => makeCharacter(
  11875. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11876. {
  11877. front: {
  11878. height: math.unit(11, "feet"),
  11879. weight: math.unit(1400, "lb"),
  11880. name: "Front",
  11881. image: {
  11882. source: "./media/characters/cordite/front.svg",
  11883. extra: 1919/1827,
  11884. bottom: 40/1959
  11885. }
  11886. },
  11887. side: {
  11888. height: math.unit(11, "feet"),
  11889. weight: math.unit(1400, "lb"),
  11890. name: "Side",
  11891. image: {
  11892. source: "./media/characters/cordite/side.svg",
  11893. extra: 1908/1793,
  11894. bottom: 38/1946
  11895. }
  11896. },
  11897. back: {
  11898. height: math.unit(11, "feet"),
  11899. weight: math.unit(1400, "lb"),
  11900. name: "Back",
  11901. image: {
  11902. source: "./media/characters/cordite/back.svg",
  11903. extra: 1938/1837,
  11904. bottom: 10/1948
  11905. }
  11906. },
  11907. feral: {
  11908. height: math.unit(2, "feet"),
  11909. weight: math.unit(90, "lb"),
  11910. name: "Feral",
  11911. image: {
  11912. source: "./media/characters/cordite/feral.svg",
  11913. extra: 1260 / 755,
  11914. bottom: 0.05
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Normal",
  11921. height: math.unit(11, "feet"),
  11922. default: true
  11923. },
  11924. ]
  11925. ))
  11926. characterMakers.push(() => makeCharacter(
  11927. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11928. {
  11929. front: {
  11930. height: math.unit(6, "feet"),
  11931. weight: math.unit(150, "lb"),
  11932. name: "Front",
  11933. image: {
  11934. source: "./media/characters/pianostrong/front.svg",
  11935. extra: 6577 / 6254,
  11936. bottom: 0.02
  11937. }
  11938. },
  11939. side: {
  11940. height: math.unit(6, "feet"),
  11941. weight: math.unit(150, "lb"),
  11942. name: "Side",
  11943. image: {
  11944. source: "./media/characters/pianostrong/side.svg",
  11945. extra: 6106 / 5730
  11946. }
  11947. },
  11948. back: {
  11949. height: math.unit(6, "feet"),
  11950. weight: math.unit(150, "lb"),
  11951. name: "Back",
  11952. image: {
  11953. source: "./media/characters/pianostrong/back.svg",
  11954. extra: 6085 / 5733,
  11955. bottom: 0.01
  11956. }
  11957. },
  11958. },
  11959. [
  11960. {
  11961. name: "Macro",
  11962. height: math.unit(100, "feet")
  11963. },
  11964. {
  11965. name: "Macro+",
  11966. height: math.unit(300, "feet"),
  11967. default: true
  11968. },
  11969. {
  11970. name: "Macro++",
  11971. height: math.unit(1000, "feet")
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11977. {
  11978. front: {
  11979. height: math.unit(6, "feet"),
  11980. weight: math.unit(150, "lb"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/kona/front.svg",
  11984. extra: 2960 / 2629,
  11985. bottom: 0.005
  11986. }
  11987. },
  11988. },
  11989. [
  11990. {
  11991. name: "Normal",
  11992. height: math.unit(11 + 8 / 12, "feet")
  11993. },
  11994. {
  11995. name: "Macro",
  11996. height: math.unit(850, "feet"),
  11997. default: true
  11998. },
  11999. {
  12000. name: "Macro+",
  12001. height: math.unit(1.5, "km"),
  12002. default: true
  12003. },
  12004. {
  12005. name: "Megamacro",
  12006. height: math.unit(80, "miles")
  12007. },
  12008. {
  12009. name: "Gigamacro",
  12010. height: math.unit(3500, "miles")
  12011. },
  12012. ]
  12013. ))
  12014. characterMakers.push(() => makeCharacter(
  12015. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12016. {
  12017. side: {
  12018. height: math.unit(1.9, "meters"),
  12019. weight: math.unit(326, "kg"),
  12020. name: "Side",
  12021. image: {
  12022. source: "./media/characters/levi/side.svg",
  12023. extra: 1704 / 1334,
  12024. bottom: 0.02
  12025. }
  12026. },
  12027. },
  12028. [
  12029. {
  12030. name: "Normal",
  12031. height: math.unit(1.9, "meters"),
  12032. default: true
  12033. },
  12034. {
  12035. name: "Macro",
  12036. height: math.unit(20, "meters")
  12037. },
  12038. {
  12039. name: "Macro+",
  12040. height: math.unit(200, "meters")
  12041. },
  12042. {
  12043. name: "Megamacro",
  12044. height: math.unit(2, "km")
  12045. },
  12046. {
  12047. name: "Megamacro+",
  12048. height: math.unit(20, "km")
  12049. },
  12050. {
  12051. name: "Gigamacro",
  12052. height: math.unit(2500, "km")
  12053. },
  12054. {
  12055. name: "Gigamacro+",
  12056. height: math.unit(120000, "km")
  12057. },
  12058. {
  12059. name: "Teramacro",
  12060. height: math.unit(7.77e6, "km")
  12061. },
  12062. ]
  12063. ))
  12064. characterMakers.push(() => makeCharacter(
  12065. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12066. {
  12067. front: {
  12068. height: math.unit(6 + 4/12, "feet"),
  12069. weight: math.unit(190, "lb"),
  12070. name: "Front",
  12071. image: {
  12072. source: "./media/characters/bmc/front.svg",
  12073. extra: 1626/1472,
  12074. bottom: 79/1705
  12075. }
  12076. },
  12077. back: {
  12078. height: math.unit(6 + 4/12, "feet"),
  12079. weight: math.unit(190, "lb"),
  12080. name: "Back",
  12081. image: {
  12082. source: "./media/characters/bmc/back.svg",
  12083. extra: 1640/1479,
  12084. bottom: 45/1685
  12085. }
  12086. },
  12087. frontArmor: {
  12088. height: math.unit(6 + 4/12, "feet"),
  12089. weight: math.unit(190, "lb"),
  12090. name: "Front-armor",
  12091. image: {
  12092. source: "./media/characters/bmc/front-armor.svg",
  12093. extra: 1538/1468,
  12094. bottom: 79/1617
  12095. }
  12096. },
  12097. },
  12098. [
  12099. {
  12100. name: "Human-sized",
  12101. height: math.unit(6 + 4 / 12, "feet")
  12102. },
  12103. {
  12104. name: "Interactive Size",
  12105. height: math.unit(25, "feet")
  12106. },
  12107. {
  12108. name: "Small",
  12109. height: math.unit(250, "feet")
  12110. },
  12111. {
  12112. name: "Normal",
  12113. height: math.unit(1250, "feet"),
  12114. default: true
  12115. },
  12116. {
  12117. name: "Good Day",
  12118. height: math.unit(88, "miles")
  12119. },
  12120. {
  12121. name: "Largest Measured Size",
  12122. height: math.unit(105.960, "galaxies")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(20, "feet"),
  12131. weight: math.unit(2016, "kg"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/sven-the-kaiju/front.svg",
  12135. extra: 1277/1250,
  12136. bottom: 35/1312
  12137. }
  12138. },
  12139. mouth: {
  12140. height: math.unit(1.85, "feet"),
  12141. name: "Mouth",
  12142. image: {
  12143. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12144. }
  12145. },
  12146. },
  12147. [
  12148. {
  12149. name: "Fairy",
  12150. height: math.unit(6, "inches")
  12151. },
  12152. {
  12153. name: "Normal",
  12154. height: math.unit(20, "feet"),
  12155. default: true
  12156. },
  12157. {
  12158. name: "Rampage",
  12159. height: math.unit(200, "feet")
  12160. },
  12161. {
  12162. name: "Archfey Forest Guardian",
  12163. height: math.unit(1, "mile")
  12164. },
  12165. ]
  12166. ))
  12167. characterMakers.push(() => makeCharacter(
  12168. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12169. {
  12170. front: {
  12171. height: math.unit(4, "meters"),
  12172. weight: math.unit(2, "tons"),
  12173. name: "Front",
  12174. image: {
  12175. source: "./media/characters/marik/front.svg",
  12176. extra: 1057 / 1003,
  12177. bottom: 0.08
  12178. }
  12179. },
  12180. },
  12181. [
  12182. {
  12183. name: "Normal",
  12184. height: math.unit(4, "meters"),
  12185. default: true
  12186. },
  12187. {
  12188. name: "Macro",
  12189. height: math.unit(20, "meters")
  12190. },
  12191. {
  12192. name: "Megamacro",
  12193. height: math.unit(50, "km")
  12194. },
  12195. {
  12196. name: "Gigamacro",
  12197. height: math.unit(100, "km")
  12198. },
  12199. {
  12200. name: "Alpha Macro",
  12201. height: math.unit(7.88e7, "yottameters")
  12202. },
  12203. ]
  12204. ))
  12205. characterMakers.push(() => makeCharacter(
  12206. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12207. {
  12208. front: {
  12209. height: math.unit(6, "feet"),
  12210. weight: math.unit(110, "lb"),
  12211. name: "Front",
  12212. image: {
  12213. source: "./media/characters/mel/front.svg",
  12214. extra: 736 / 617,
  12215. bottom: 0.017
  12216. }
  12217. },
  12218. },
  12219. [
  12220. {
  12221. name: "Pico",
  12222. height: math.unit(3, "pm")
  12223. },
  12224. {
  12225. name: "Nano",
  12226. height: math.unit(3, "nm")
  12227. },
  12228. {
  12229. name: "Micro",
  12230. height: math.unit(0.3, "mm"),
  12231. default: true
  12232. },
  12233. {
  12234. name: "Micro+",
  12235. height: math.unit(3, "mm")
  12236. },
  12237. {
  12238. name: "Normal",
  12239. height: math.unit(5 + 10.5 / 12, "feet")
  12240. },
  12241. ]
  12242. ))
  12243. characterMakers.push(() => makeCharacter(
  12244. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12245. {
  12246. kaiju: {
  12247. height: math.unit(1.75, "meters"),
  12248. weight: math.unit(55, "kg"),
  12249. name: "Kaiju",
  12250. image: {
  12251. source: "./media/characters/lykonous/kaiju.svg",
  12252. extra: 1055 / 946,
  12253. bottom: 0.135
  12254. }
  12255. },
  12256. },
  12257. [
  12258. {
  12259. name: "Normal",
  12260. height: math.unit(2.5, "meters"),
  12261. default: true
  12262. },
  12263. {
  12264. name: "Kaiju Dragon",
  12265. height: math.unit(60, "meters")
  12266. },
  12267. {
  12268. name: "Mega Kaiju",
  12269. height: math.unit(120, "km")
  12270. },
  12271. {
  12272. name: "Giga Kaiju",
  12273. height: math.unit(200, "megameters")
  12274. },
  12275. {
  12276. name: "Terra Kaiju",
  12277. height: math.unit(400, "gigameters")
  12278. },
  12279. {
  12280. name: "Kaiju Dragon God",
  12281. height: math.unit(13000, "exaparsecs")
  12282. },
  12283. ]
  12284. ))
  12285. characterMakers.push(() => makeCharacter(
  12286. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12287. {
  12288. front: {
  12289. height: math.unit(6, "feet"),
  12290. weight: math.unit(150, "lb"),
  12291. name: "Front",
  12292. image: {
  12293. source: "./media/characters/blü/front.svg",
  12294. extra: 1883 / 1564,
  12295. bottom: 0.031
  12296. }
  12297. },
  12298. },
  12299. [
  12300. {
  12301. name: "Normal",
  12302. height: math.unit(13, "feet"),
  12303. default: true
  12304. },
  12305. {
  12306. name: "Big Boi",
  12307. height: math.unit(150, "meters")
  12308. },
  12309. {
  12310. name: "Mini Stomper",
  12311. height: math.unit(300, "meters")
  12312. },
  12313. {
  12314. name: "Macro",
  12315. height: math.unit(1000, "meters")
  12316. },
  12317. {
  12318. name: "Megamacro",
  12319. height: math.unit(11000, "meters")
  12320. },
  12321. {
  12322. name: "Gigamacro",
  12323. height: math.unit(11000, "km")
  12324. },
  12325. {
  12326. name: "Teramacro",
  12327. height: math.unit(420000, "km")
  12328. },
  12329. {
  12330. name: "Examacro",
  12331. height: math.unit(120, "parsecs")
  12332. },
  12333. {
  12334. name: "God Tho",
  12335. height: math.unit(98000000000, "parsecs")
  12336. },
  12337. ]
  12338. ))
  12339. characterMakers.push(() => makeCharacter(
  12340. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12341. {
  12342. taurFront: {
  12343. height: math.unit(6, "feet"),
  12344. weight: math.unit(200, "lb"),
  12345. name: "Taur (Front)",
  12346. image: {
  12347. source: "./media/characters/scales/taur-front.svg",
  12348. extra: 1,
  12349. bottom: 0.05
  12350. }
  12351. },
  12352. taurBack: {
  12353. height: math.unit(6, "feet"),
  12354. weight: math.unit(200, "lb"),
  12355. name: "Taur (Back)",
  12356. image: {
  12357. source: "./media/characters/scales/taur-back.svg",
  12358. extra: 1,
  12359. bottom: 0.08
  12360. }
  12361. },
  12362. anthro: {
  12363. height: math.unit(6 * 7 / 12, "feet"),
  12364. weight: math.unit(100, "lb"),
  12365. name: "Anthro",
  12366. image: {
  12367. source: "./media/characters/scales/anthro.svg",
  12368. extra: 1,
  12369. bottom: 0.06
  12370. }
  12371. },
  12372. },
  12373. [
  12374. {
  12375. name: "Normal",
  12376. height: math.unit(12, "feet"),
  12377. default: true
  12378. },
  12379. ]
  12380. ))
  12381. characterMakers.push(() => makeCharacter(
  12382. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12383. {
  12384. front: {
  12385. height: math.unit(6, "feet"),
  12386. weight: math.unit(150, "lb"),
  12387. name: "Front",
  12388. image: {
  12389. source: "./media/characters/koragos/front.svg",
  12390. extra: 841 / 794,
  12391. bottom: 0.035
  12392. }
  12393. },
  12394. back: {
  12395. height: math.unit(6, "feet"),
  12396. weight: math.unit(150, "lb"),
  12397. name: "Back",
  12398. image: {
  12399. source: "./media/characters/koragos/back.svg",
  12400. extra: 841 / 810,
  12401. bottom: 0.022
  12402. }
  12403. },
  12404. },
  12405. [
  12406. {
  12407. name: "Normal",
  12408. height: math.unit(6 + 11 / 12, "feet"),
  12409. default: true
  12410. },
  12411. {
  12412. name: "Macro",
  12413. height: math.unit(490, "feet")
  12414. },
  12415. {
  12416. name: "Megamacro",
  12417. height: math.unit(10, "miles")
  12418. },
  12419. {
  12420. name: "Gigamacro",
  12421. height: math.unit(50, "miles")
  12422. },
  12423. ]
  12424. ))
  12425. characterMakers.push(() => makeCharacter(
  12426. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12427. {
  12428. front: {
  12429. height: math.unit(6, "feet"),
  12430. weight: math.unit(250, "lb"),
  12431. name: "Front",
  12432. image: {
  12433. source: "./media/characters/xylrem/front.svg",
  12434. extra: 3323 / 3050,
  12435. bottom: 0.065
  12436. }
  12437. },
  12438. },
  12439. [
  12440. {
  12441. name: "Micro",
  12442. height: math.unit(4, "feet")
  12443. },
  12444. {
  12445. name: "Normal",
  12446. height: math.unit(16, "feet"),
  12447. default: true
  12448. },
  12449. {
  12450. name: "Macro",
  12451. height: math.unit(2720, "feet")
  12452. },
  12453. {
  12454. name: "Megamacro",
  12455. height: math.unit(25000, "miles")
  12456. },
  12457. ]
  12458. ))
  12459. characterMakers.push(() => makeCharacter(
  12460. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12461. {
  12462. front: {
  12463. height: math.unit(8, "feet"),
  12464. weight: math.unit(250, "kg"),
  12465. name: "Front",
  12466. image: {
  12467. source: "./media/characters/ikideru/front.svg",
  12468. extra: 930 / 870,
  12469. bottom: 0.087
  12470. }
  12471. },
  12472. back: {
  12473. height: math.unit(8, "feet"),
  12474. weight: math.unit(250, "kg"),
  12475. name: "Back",
  12476. image: {
  12477. source: "./media/characters/ikideru/back.svg",
  12478. extra: 919 / 852,
  12479. bottom: 0.055
  12480. }
  12481. },
  12482. },
  12483. [
  12484. {
  12485. name: "Rare",
  12486. height: math.unit(8, "feet"),
  12487. default: true
  12488. },
  12489. {
  12490. name: "Playful Loom",
  12491. height: math.unit(80, "feet")
  12492. },
  12493. {
  12494. name: "City Leaner",
  12495. height: math.unit(230, "feet")
  12496. },
  12497. {
  12498. name: "Megamacro",
  12499. height: math.unit(2500, "feet")
  12500. },
  12501. {
  12502. name: "Gigamacro",
  12503. height: math.unit(26400, "feet")
  12504. },
  12505. {
  12506. name: "Tectonic Shifter",
  12507. height: math.unit(1.7, "megameters")
  12508. },
  12509. {
  12510. name: "Planet Carer",
  12511. height: math.unit(21, "megameters")
  12512. },
  12513. {
  12514. name: "God",
  12515. height: math.unit(11157.22, "parsecs")
  12516. },
  12517. ]
  12518. ))
  12519. characterMakers.push(() => makeCharacter(
  12520. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12521. {
  12522. front: {
  12523. height: math.unit(6, "feet"),
  12524. weight: math.unit(120, "lb"),
  12525. name: "Front",
  12526. image: {
  12527. source: "./media/characters/neo/front.svg"
  12528. }
  12529. },
  12530. },
  12531. [
  12532. {
  12533. name: "Micro",
  12534. height: math.unit(2, "inches"),
  12535. default: true
  12536. },
  12537. {
  12538. name: "Human Size",
  12539. height: math.unit(5 + 8 / 12, "feet")
  12540. },
  12541. ]
  12542. ))
  12543. characterMakers.push(() => makeCharacter(
  12544. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12545. {
  12546. front: {
  12547. height: math.unit(13 + 10 / 12, "feet"),
  12548. weight: math.unit(5320, "lb"),
  12549. name: "Front",
  12550. image: {
  12551. source: "./media/characters/chauncey-chantz/front.svg",
  12552. extra: 1587 / 1435,
  12553. bottom: 0.02
  12554. }
  12555. },
  12556. },
  12557. [
  12558. {
  12559. name: "Normal",
  12560. height: math.unit(13 + 10 / 12, "feet"),
  12561. default: true
  12562. },
  12563. {
  12564. name: "Macro",
  12565. height: math.unit(45, "feet")
  12566. },
  12567. {
  12568. name: "Megamacro",
  12569. height: math.unit(250, "miles")
  12570. },
  12571. {
  12572. name: "Planetary",
  12573. height: math.unit(10000, "miles")
  12574. },
  12575. {
  12576. name: "Galactic",
  12577. height: math.unit(40000, "parsecs")
  12578. },
  12579. {
  12580. name: "Universal",
  12581. height: math.unit(1, "yottameter")
  12582. },
  12583. ]
  12584. ))
  12585. characterMakers.push(() => makeCharacter(
  12586. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12587. {
  12588. front: {
  12589. height: math.unit(6, "feet"),
  12590. weight: math.unit(150, "lb"),
  12591. name: "Front",
  12592. image: {
  12593. source: "./media/characters/epifox/front.svg",
  12594. extra: 1,
  12595. bottom: 0.075
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Micro",
  12602. height: math.unit(6, "inches")
  12603. },
  12604. {
  12605. name: "Normal",
  12606. height: math.unit(12, "feet"),
  12607. default: true
  12608. },
  12609. {
  12610. name: "Macro",
  12611. height: math.unit(3810, "feet")
  12612. },
  12613. {
  12614. name: "Megamacro",
  12615. height: math.unit(500, "miles")
  12616. },
  12617. ]
  12618. ))
  12619. characterMakers.push(() => makeCharacter(
  12620. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12621. {
  12622. front: {
  12623. height: math.unit(1.8796, "m"),
  12624. weight: math.unit(230, "lb"),
  12625. name: "Front",
  12626. image: {
  12627. source: "./media/characters/colin-t/front.svg",
  12628. extra: 1272 / 1193,
  12629. bottom: 0.07
  12630. }
  12631. },
  12632. },
  12633. [
  12634. {
  12635. name: "Micro",
  12636. height: math.unit(0.571, "meters")
  12637. },
  12638. {
  12639. name: "Normal",
  12640. height: math.unit(1.8796, "meters"),
  12641. default: true
  12642. },
  12643. {
  12644. name: "Tall",
  12645. height: math.unit(4, "meters")
  12646. },
  12647. {
  12648. name: "Macro",
  12649. height: math.unit(67.241, "meters")
  12650. },
  12651. {
  12652. name: "Megamacro",
  12653. height: math.unit(371.856, "meters")
  12654. },
  12655. {
  12656. name: "Planetary",
  12657. height: math.unit(12631.5689, "km")
  12658. },
  12659. ]
  12660. ))
  12661. characterMakers.push(() => makeCharacter(
  12662. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12663. {
  12664. front: {
  12665. height: math.unit(1.85, "meters"),
  12666. weight: math.unit(80, "kg"),
  12667. name: "Front",
  12668. image: {
  12669. source: "./media/characters/matvei/front.svg",
  12670. extra: 614 / 594,
  12671. bottom: 0.01
  12672. }
  12673. },
  12674. },
  12675. [
  12676. {
  12677. name: "Normal",
  12678. height: math.unit(1.85, "meters"),
  12679. default: true
  12680. },
  12681. ]
  12682. ))
  12683. characterMakers.push(() => makeCharacter(
  12684. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12685. {
  12686. front: {
  12687. height: math.unit(5 + 9 / 12, "feet"),
  12688. weight: math.unit(70, "lb"),
  12689. name: "Front",
  12690. image: {
  12691. source: "./media/characters/quincy/front.svg",
  12692. extra: 3041 / 2751
  12693. }
  12694. },
  12695. back: {
  12696. height: math.unit(5 + 9 / 12, "feet"),
  12697. weight: math.unit(70, "lb"),
  12698. name: "Back",
  12699. image: {
  12700. source: "./media/characters/quincy/back.svg",
  12701. extra: 3041 / 2751
  12702. }
  12703. },
  12704. flying: {
  12705. height: math.unit(5 + 4 / 12, "feet"),
  12706. weight: math.unit(70, "lb"),
  12707. name: "Flying",
  12708. image: {
  12709. source: "./media/characters/quincy/flying.svg",
  12710. extra: 1044 / 930
  12711. }
  12712. },
  12713. },
  12714. [
  12715. {
  12716. name: "Micro",
  12717. height: math.unit(3, "cm")
  12718. },
  12719. {
  12720. name: "Normal",
  12721. height: math.unit(5 + 9 / 12, "feet")
  12722. },
  12723. {
  12724. name: "Macro",
  12725. height: math.unit(200, "meters"),
  12726. default: true
  12727. },
  12728. {
  12729. name: "Megamacro",
  12730. height: math.unit(1000, "meters")
  12731. },
  12732. ]
  12733. ))
  12734. characterMakers.push(() => makeCharacter(
  12735. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12736. {
  12737. front: {
  12738. height: math.unit(3 + 11/12, "feet"),
  12739. weight: math.unit(50, "lb"),
  12740. name: "Front",
  12741. image: {
  12742. source: "./media/characters/vanrel/front.svg",
  12743. extra: 1104/949,
  12744. bottom: 52/1156
  12745. }
  12746. },
  12747. back: {
  12748. height: math.unit(3 + 11/12, "feet"),
  12749. weight: math.unit(50, "lb"),
  12750. name: "Back",
  12751. image: {
  12752. source: "./media/characters/vanrel/back.svg",
  12753. extra: 1119/976,
  12754. bottom: 37/1156
  12755. }
  12756. },
  12757. tome: {
  12758. height: math.unit(1.35, "feet"),
  12759. weight: math.unit(10, "lb"),
  12760. name: "Vanrel's Tome",
  12761. rename: true,
  12762. image: {
  12763. source: "./media/characters/vanrel/tome.svg"
  12764. }
  12765. },
  12766. beans: {
  12767. height: math.unit(0.89, "feet"),
  12768. name: "Beans",
  12769. image: {
  12770. source: "./media/characters/vanrel/beans.svg"
  12771. }
  12772. },
  12773. },
  12774. [
  12775. {
  12776. name: "Normal",
  12777. height: math.unit(3 + 11/12, "feet"),
  12778. default: true
  12779. },
  12780. ]
  12781. ))
  12782. characterMakers.push(() => makeCharacter(
  12783. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12784. {
  12785. front: {
  12786. height: math.unit(7 + 5 / 12, "feet"),
  12787. name: "Front",
  12788. image: {
  12789. source: "./media/characters/kuiper-vanrel/front.svg",
  12790. extra: 1219/1169,
  12791. bottom: 69/1288
  12792. }
  12793. },
  12794. back: {
  12795. height: math.unit(7 + 5 / 12, "feet"),
  12796. name: "Back",
  12797. image: {
  12798. source: "./media/characters/kuiper-vanrel/back.svg",
  12799. extra: 1236/1193,
  12800. bottom: 27/1263
  12801. }
  12802. },
  12803. foot: {
  12804. height: math.unit(0.55, "meters"),
  12805. name: "Foot",
  12806. image: {
  12807. source: "./media/characters/kuiper-vanrel/foot.svg",
  12808. }
  12809. },
  12810. battle: {
  12811. height: math.unit(6.824, "feet"),
  12812. name: "Battle",
  12813. image: {
  12814. source: "./media/characters/kuiper-vanrel/battle.svg",
  12815. extra: 1466 / 1327,
  12816. bottom: 29 / 1492.5
  12817. }
  12818. },
  12819. meerkui: {
  12820. height: math.unit(18, "inches"),
  12821. name: "Meerkui",
  12822. image: {
  12823. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12824. extra: 1354/1289,
  12825. bottom: 69/1423
  12826. }
  12827. },
  12828. },
  12829. [
  12830. {
  12831. name: "Normal",
  12832. height: math.unit(7 + 5 / 12, "feet"),
  12833. default: true
  12834. },
  12835. ]
  12836. ))
  12837. characterMakers.push(() => makeCharacter(
  12838. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12839. {
  12840. front: {
  12841. height: math.unit(8 + 5 / 12, "feet"),
  12842. name: "Front",
  12843. image: {
  12844. source: "./media/characters/keset-vanrel/front.svg",
  12845. extra: 1231/1148,
  12846. bottom: 82/1313
  12847. }
  12848. },
  12849. back: {
  12850. height: math.unit(8 + 5 / 12, "feet"),
  12851. name: "Back",
  12852. image: {
  12853. source: "./media/characters/keset-vanrel/back.svg",
  12854. extra: 1240/1174,
  12855. bottom: 33/1273
  12856. }
  12857. },
  12858. hand: {
  12859. height: math.unit(0.6, "meters"),
  12860. name: "Hand",
  12861. image: {
  12862. source: "./media/characters/keset-vanrel/hand.svg"
  12863. }
  12864. },
  12865. foot: {
  12866. height: math.unit(0.94978, "meters"),
  12867. name: "Foot",
  12868. image: {
  12869. source: "./media/characters/keset-vanrel/foot.svg"
  12870. }
  12871. },
  12872. battle: {
  12873. height: math.unit(7.408, "feet"),
  12874. name: "Battle",
  12875. image: {
  12876. source: "./media/characters/keset-vanrel/battle.svg",
  12877. extra: 1890 / 1386,
  12878. bottom: 73.28 / 1970
  12879. }
  12880. },
  12881. },
  12882. [
  12883. {
  12884. name: "Normal",
  12885. height: math.unit(8 + 5 / 12, "feet"),
  12886. default: true
  12887. },
  12888. ]
  12889. ))
  12890. characterMakers.push(() => makeCharacter(
  12891. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12892. {
  12893. front: {
  12894. height: math.unit(6, "feet"),
  12895. weight: math.unit(150, "lb"),
  12896. name: "Front",
  12897. image: {
  12898. source: "./media/characters/neos/front.svg",
  12899. extra: 1696 / 992,
  12900. bottom: 0.14
  12901. }
  12902. },
  12903. },
  12904. [
  12905. {
  12906. name: "Normal",
  12907. height: math.unit(54, "cm"),
  12908. default: true
  12909. },
  12910. {
  12911. name: "Macro",
  12912. height: math.unit(100, "m")
  12913. },
  12914. {
  12915. name: "Megamacro",
  12916. height: math.unit(10, "km")
  12917. },
  12918. {
  12919. name: "Megamacro+",
  12920. height: math.unit(100, "km")
  12921. },
  12922. {
  12923. name: "Gigamacro",
  12924. height: math.unit(100, "Mm")
  12925. },
  12926. {
  12927. name: "Teramacro",
  12928. height: math.unit(100, "Gm")
  12929. },
  12930. {
  12931. name: "Examacro",
  12932. height: math.unit(100, "Em")
  12933. },
  12934. {
  12935. name: "Godly",
  12936. height: math.unit(10000, "Ym")
  12937. },
  12938. {
  12939. name: "Beyond Godly",
  12940. height: math.unit(25, "multiverses")
  12941. },
  12942. ]
  12943. ))
  12944. characterMakers.push(() => makeCharacter(
  12945. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12946. {
  12947. feminine: {
  12948. height: math.unit(5, "feet"),
  12949. weight: math.unit(100, "lb"),
  12950. name: "Feminine",
  12951. image: {
  12952. source: "./media/characters/sammy-mouse/feminine.svg",
  12953. extra: 2526 / 2425,
  12954. bottom: 0.123
  12955. }
  12956. },
  12957. masculine: {
  12958. height: math.unit(5, "feet"),
  12959. weight: math.unit(100, "lb"),
  12960. name: "Masculine",
  12961. image: {
  12962. source: "./media/characters/sammy-mouse/masculine.svg",
  12963. extra: 2526 / 2425,
  12964. bottom: 0.123
  12965. }
  12966. },
  12967. },
  12968. [
  12969. {
  12970. name: "Micro",
  12971. height: math.unit(5, "inches")
  12972. },
  12973. {
  12974. name: "Normal",
  12975. height: math.unit(5, "feet"),
  12976. default: true
  12977. },
  12978. {
  12979. name: "Macro",
  12980. height: math.unit(60, "feet")
  12981. },
  12982. ]
  12983. ))
  12984. characterMakers.push(() => makeCharacter(
  12985. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12986. {
  12987. front: {
  12988. height: math.unit(4, "feet"),
  12989. weight: math.unit(50, "lb"),
  12990. name: "Front",
  12991. image: {
  12992. source: "./media/characters/kole/front.svg",
  12993. extra: 1423 / 1303,
  12994. bottom: 0.025
  12995. }
  12996. },
  12997. back: {
  12998. height: math.unit(4, "feet"),
  12999. weight: math.unit(50, "lb"),
  13000. name: "Back",
  13001. image: {
  13002. source: "./media/characters/kole/back.svg",
  13003. extra: 1426 / 1280,
  13004. bottom: 0.02
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Normal",
  13011. height: math.unit(4, "feet"),
  13012. default: true
  13013. },
  13014. ]
  13015. ))
  13016. characterMakers.push(() => makeCharacter(
  13017. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13018. {
  13019. front: {
  13020. height: math.unit(2.5, "feet"),
  13021. weight: math.unit(32, "lb"),
  13022. name: "Front",
  13023. image: {
  13024. source: "./media/characters/rufran/front.svg",
  13025. extra: 1313/885,
  13026. bottom: 94/1407
  13027. }
  13028. },
  13029. side: {
  13030. height: math.unit(2.5, "feet"),
  13031. weight: math.unit(32, "lb"),
  13032. name: "Side",
  13033. image: {
  13034. source: "./media/characters/rufran/side.svg",
  13035. extra: 1109/852,
  13036. bottom: 118/1227
  13037. }
  13038. },
  13039. back: {
  13040. height: math.unit(2.5, "feet"),
  13041. weight: math.unit(32, "lb"),
  13042. name: "Back",
  13043. image: {
  13044. source: "./media/characters/rufran/back.svg",
  13045. extra: 1280/878,
  13046. bottom: 131/1411
  13047. }
  13048. },
  13049. mouth: {
  13050. height: math.unit(1.13, "feet"),
  13051. name: "Mouth",
  13052. image: {
  13053. source: "./media/characters/rufran/mouth.svg"
  13054. }
  13055. },
  13056. foot: {
  13057. height: math.unit(1.33, "feet"),
  13058. name: "Foot",
  13059. image: {
  13060. source: "./media/characters/rufran/foot.svg"
  13061. }
  13062. },
  13063. koboldFront: {
  13064. height: math.unit(2 + 6 / 12, "feet"),
  13065. weight: math.unit(20, "lb"),
  13066. name: "Front (Kobold)",
  13067. image: {
  13068. source: "./media/characters/rufran/kobold-front.svg",
  13069. extra: 2041 / 1839,
  13070. bottom: 0.055
  13071. }
  13072. },
  13073. koboldBack: {
  13074. height: math.unit(2 + 6 / 12, "feet"),
  13075. weight: math.unit(20, "lb"),
  13076. name: "Back (Kobold)",
  13077. image: {
  13078. source: "./media/characters/rufran/kobold-back.svg",
  13079. extra: 2054 / 1839,
  13080. bottom: 0.01
  13081. }
  13082. },
  13083. koboldHand: {
  13084. height: math.unit(0.2166, "meters"),
  13085. name: "Hand (Kobold)",
  13086. image: {
  13087. source: "./media/characters/rufran/kobold-hand.svg"
  13088. }
  13089. },
  13090. koboldFoot: {
  13091. height: math.unit(0.185, "meters"),
  13092. name: "Foot (Kobold)",
  13093. image: {
  13094. source: "./media/characters/rufran/kobold-foot.svg"
  13095. }
  13096. },
  13097. },
  13098. [
  13099. {
  13100. name: "Micro",
  13101. height: math.unit(1, "inch")
  13102. },
  13103. {
  13104. name: "Normal",
  13105. height: math.unit(2 + 6 / 12, "feet"),
  13106. default: true
  13107. },
  13108. {
  13109. name: "Big",
  13110. height: math.unit(60, "feet")
  13111. },
  13112. {
  13113. name: "Macro",
  13114. height: math.unit(325, "feet")
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13120. {
  13121. front: {
  13122. height: math.unit(0.3, "meters"),
  13123. weight: math.unit(3.5, "kg"),
  13124. name: "Front",
  13125. image: {
  13126. source: "./media/characters/chip/front.svg",
  13127. extra: 748 / 674
  13128. }
  13129. },
  13130. },
  13131. [
  13132. {
  13133. name: "Micro",
  13134. height: math.unit(1, "inch"),
  13135. default: true
  13136. },
  13137. ]
  13138. ))
  13139. characterMakers.push(() => makeCharacter(
  13140. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13141. {
  13142. side: {
  13143. height: math.unit(2.3, "meters"),
  13144. weight: math.unit(3500, "lb"),
  13145. name: "Side",
  13146. image: {
  13147. source: "./media/characters/torvid/side.svg",
  13148. extra: 1972 / 722,
  13149. bottom: 0.035
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Normal",
  13156. height: math.unit(2.3, "meters"),
  13157. default: true
  13158. },
  13159. ]
  13160. ))
  13161. characterMakers.push(() => makeCharacter(
  13162. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13163. {
  13164. front: {
  13165. height: math.unit(2, "meters"),
  13166. weight: math.unit(150.5, "kg"),
  13167. name: "Front",
  13168. image: {
  13169. source: "./media/characters/susan/front.svg",
  13170. extra: 693 / 635,
  13171. bottom: 0.05
  13172. }
  13173. },
  13174. },
  13175. [
  13176. {
  13177. name: "Megamacro",
  13178. height: math.unit(505, "miles"),
  13179. default: true
  13180. },
  13181. ]
  13182. ))
  13183. characterMakers.push(() => makeCharacter(
  13184. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13185. {
  13186. front: {
  13187. height: math.unit(6, "feet"),
  13188. weight: math.unit(150, "lb"),
  13189. name: "Front",
  13190. image: {
  13191. source: "./media/characters/raindrops/front.svg",
  13192. extra: 2655 / 2461,
  13193. bottom: 49 / 2705
  13194. }
  13195. },
  13196. back: {
  13197. height: math.unit(6, "feet"),
  13198. weight: math.unit(150, "lb"),
  13199. name: "Back",
  13200. image: {
  13201. source: "./media/characters/raindrops/back.svg",
  13202. extra: 2574 / 2400,
  13203. bottom: 65 / 2634
  13204. }
  13205. },
  13206. },
  13207. [
  13208. {
  13209. name: "Micro",
  13210. height: math.unit(6, "inches")
  13211. },
  13212. {
  13213. name: "Normal",
  13214. height: math.unit(6 + 2 / 12, "feet")
  13215. },
  13216. {
  13217. name: "Macro",
  13218. height: math.unit(131, "feet"),
  13219. default: true
  13220. },
  13221. {
  13222. name: "Megamacro",
  13223. height: math.unit(15, "miles")
  13224. },
  13225. {
  13226. name: "Gigamacro",
  13227. height: math.unit(4000, "miles")
  13228. },
  13229. {
  13230. name: "Teramacro",
  13231. height: math.unit(315000, "miles")
  13232. },
  13233. ]
  13234. ))
  13235. characterMakers.push(() => makeCharacter(
  13236. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13237. {
  13238. front: {
  13239. height: math.unit(2.794, "meters"),
  13240. weight: math.unit(325, "kg"),
  13241. name: "Front",
  13242. image: {
  13243. source: "./media/characters/tezwa/front.svg",
  13244. extra: 2083 / 1906,
  13245. bottom: 0.031
  13246. }
  13247. },
  13248. foot: {
  13249. height: math.unit(0.687, "meters"),
  13250. name: "Foot",
  13251. image: {
  13252. source: "./media/characters/tezwa/foot.svg"
  13253. }
  13254. },
  13255. },
  13256. [
  13257. {
  13258. name: "Normal",
  13259. height: math.unit(9 + 2 / 12, "feet"),
  13260. default: true
  13261. },
  13262. ]
  13263. ))
  13264. characterMakers.push(() => makeCharacter(
  13265. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13266. {
  13267. front: {
  13268. height: math.unit(58, "feet"),
  13269. weight: math.unit(89000, "lb"),
  13270. name: "Front",
  13271. image: {
  13272. source: "./media/characters/typhus/front.svg",
  13273. extra: 816 / 800,
  13274. bottom: 0.065
  13275. }
  13276. },
  13277. },
  13278. [
  13279. {
  13280. name: "Macro",
  13281. height: math.unit(58, "feet"),
  13282. default: true
  13283. },
  13284. ]
  13285. ))
  13286. characterMakers.push(() => makeCharacter(
  13287. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13288. {
  13289. front: {
  13290. height: math.unit(12, "feet"),
  13291. weight: math.unit(6, "tonnes"),
  13292. name: "Front",
  13293. image: {
  13294. source: "./media/characters/lyra-von-wulf/front.svg",
  13295. extra: 1,
  13296. bottom: 0.10
  13297. }
  13298. },
  13299. frontMecha: {
  13300. height: math.unit(12, "feet"),
  13301. weight: math.unit(12, "tonnes"),
  13302. name: "Front (Mecha)",
  13303. image: {
  13304. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13305. extra: 1,
  13306. bottom: 0.042
  13307. }
  13308. },
  13309. maw: {
  13310. height: math.unit(2.2, "feet"),
  13311. name: "Maw",
  13312. image: {
  13313. source: "./media/characters/lyra-von-wulf/maw.svg"
  13314. }
  13315. },
  13316. },
  13317. [
  13318. {
  13319. name: "Normal",
  13320. height: math.unit(12, "feet"),
  13321. default: true
  13322. },
  13323. {
  13324. name: "Classic",
  13325. height: math.unit(50, "feet")
  13326. },
  13327. {
  13328. name: "Macro",
  13329. height: math.unit(500, "feet")
  13330. },
  13331. {
  13332. name: "Megamacro",
  13333. height: math.unit(1, "mile")
  13334. },
  13335. {
  13336. name: "Gigamacro",
  13337. height: math.unit(400, "miles")
  13338. },
  13339. {
  13340. name: "Teramacro",
  13341. height: math.unit(22000, "miles")
  13342. },
  13343. {
  13344. name: "Solarmacro",
  13345. height: math.unit(8600000, "miles")
  13346. },
  13347. {
  13348. name: "Galactic",
  13349. height: math.unit(1057000, "lightyears")
  13350. },
  13351. ]
  13352. ))
  13353. characterMakers.push(() => makeCharacter(
  13354. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13355. {
  13356. front: {
  13357. height: math.unit(6 + 10 / 12, "feet"),
  13358. weight: math.unit(150, "lb"),
  13359. name: "Front",
  13360. image: {
  13361. source: "./media/characters/dixon/front.svg",
  13362. extra: 3361 / 3209,
  13363. bottom: 0.01
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Normal",
  13370. height: math.unit(6 + 10 / 12, "feet"),
  13371. default: true
  13372. },
  13373. {
  13374. name: "Big",
  13375. height: math.unit(12, "meters")
  13376. },
  13377. {
  13378. name: "Macro",
  13379. height: math.unit(500, "meters")
  13380. },
  13381. {
  13382. name: "Megamacro",
  13383. height: math.unit(2, "km")
  13384. },
  13385. ]
  13386. ))
  13387. characterMakers.push(() => makeCharacter(
  13388. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13389. {
  13390. front: {
  13391. height: math.unit(185, "cm"),
  13392. weight: math.unit(68, "kg"),
  13393. name: "Front",
  13394. image: {
  13395. source: "./media/characters/kauko/front.svg",
  13396. extra: 1455 / 1421,
  13397. bottom: 0.03
  13398. }
  13399. },
  13400. back: {
  13401. height: math.unit(185, "cm"),
  13402. weight: math.unit(68, "kg"),
  13403. name: "Back",
  13404. image: {
  13405. source: "./media/characters/kauko/back.svg",
  13406. extra: 1455 / 1421,
  13407. bottom: 0.004
  13408. }
  13409. },
  13410. },
  13411. [
  13412. {
  13413. name: "Normal",
  13414. height: math.unit(185, "cm"),
  13415. default: true
  13416. },
  13417. ]
  13418. ))
  13419. characterMakers.push(() => makeCharacter(
  13420. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13421. {
  13422. front: {
  13423. height: math.unit(6, "feet"),
  13424. weight: math.unit(150, "kg"),
  13425. name: "Front",
  13426. image: {
  13427. source: "./media/characters/varg/front.svg",
  13428. extra: 1108 / 1018,
  13429. bottom: 0.0375
  13430. }
  13431. },
  13432. },
  13433. [
  13434. {
  13435. name: "Normal",
  13436. height: math.unit(5, "meters")
  13437. },
  13438. {
  13439. name: "Macro",
  13440. height: math.unit(200, "meters")
  13441. },
  13442. {
  13443. name: "Megamacro",
  13444. height: math.unit(20, "kilometers")
  13445. },
  13446. {
  13447. name: "True Size",
  13448. height: math.unit(211, "km"),
  13449. default: true
  13450. },
  13451. {
  13452. name: "Gigamacro",
  13453. height: math.unit(1000, "km")
  13454. },
  13455. {
  13456. name: "Gigamacro+",
  13457. height: math.unit(8000, "km")
  13458. },
  13459. {
  13460. name: "Teramacro",
  13461. height: math.unit(1000000, "km")
  13462. },
  13463. ]
  13464. ))
  13465. characterMakers.push(() => makeCharacter(
  13466. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13467. {
  13468. front: {
  13469. height: math.unit(7 + 7 / 12, "feet"),
  13470. weight: math.unit(267, "lb"),
  13471. name: "Front",
  13472. image: {
  13473. source: "./media/characters/dayza/front.svg",
  13474. extra: 1262 / 1200,
  13475. bottom: 0.035
  13476. }
  13477. },
  13478. side: {
  13479. height: math.unit(7 + 7 / 12, "feet"),
  13480. weight: math.unit(267, "lb"),
  13481. name: "Side",
  13482. image: {
  13483. source: "./media/characters/dayza/side.svg",
  13484. extra: 1295 / 1245,
  13485. bottom: 0.05
  13486. }
  13487. },
  13488. back: {
  13489. height: math.unit(7 + 7 / 12, "feet"),
  13490. weight: math.unit(267, "lb"),
  13491. name: "Back",
  13492. image: {
  13493. source: "./media/characters/dayza/back.svg",
  13494. extra: 1241 / 1170
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Normal",
  13501. height: math.unit(7 + 7 / 12, "feet"),
  13502. default: true
  13503. },
  13504. {
  13505. name: "Macro",
  13506. height: math.unit(155, "feet")
  13507. },
  13508. ]
  13509. ))
  13510. characterMakers.push(() => makeCharacter(
  13511. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13512. {
  13513. front: {
  13514. height: math.unit(6 + 5 / 12, "feet"),
  13515. weight: math.unit(160, "lb"),
  13516. name: "Front",
  13517. image: {
  13518. source: "./media/characters/xanthos/front.svg",
  13519. extra: 1,
  13520. bottom: 0.04
  13521. }
  13522. },
  13523. back: {
  13524. height: math.unit(6 + 5 / 12, "feet"),
  13525. weight: math.unit(160, "lb"),
  13526. name: "Back",
  13527. image: {
  13528. source: "./media/characters/xanthos/back.svg",
  13529. extra: 1,
  13530. bottom: 0.03
  13531. }
  13532. },
  13533. hand: {
  13534. height: math.unit(0.928, "feet"),
  13535. name: "Hand",
  13536. image: {
  13537. source: "./media/characters/xanthos/hand.svg"
  13538. }
  13539. },
  13540. foot: {
  13541. height: math.unit(1.286, "feet"),
  13542. name: "Foot",
  13543. image: {
  13544. source: "./media/characters/xanthos/foot.svg"
  13545. }
  13546. },
  13547. },
  13548. [
  13549. {
  13550. name: "Normal",
  13551. height: math.unit(6 + 5 / 12, "feet"),
  13552. default: true
  13553. },
  13554. {
  13555. name: "Normal+",
  13556. height: math.unit(6, "meters")
  13557. },
  13558. {
  13559. name: "Macro",
  13560. height: math.unit(40, "feet")
  13561. },
  13562. {
  13563. name: "Macro+",
  13564. height: math.unit(200, "meters")
  13565. },
  13566. {
  13567. name: "Megamacro",
  13568. height: math.unit(20, "km")
  13569. },
  13570. {
  13571. name: "Megamacro+",
  13572. height: math.unit(100, "km")
  13573. },
  13574. {
  13575. name: "Gigamacro",
  13576. height: math.unit(200, "megameters")
  13577. },
  13578. {
  13579. name: "Gigamacro+",
  13580. height: math.unit(1.5, "gigameters")
  13581. },
  13582. ]
  13583. ))
  13584. characterMakers.push(() => makeCharacter(
  13585. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13586. {
  13587. front: {
  13588. height: math.unit(6 + 3 / 12, "feet"),
  13589. weight: math.unit(215, "lb"),
  13590. name: "Front",
  13591. image: {
  13592. source: "./media/characters/grynn/front.svg",
  13593. extra: 4627 / 4209,
  13594. bottom: 0.047
  13595. }
  13596. },
  13597. },
  13598. [
  13599. {
  13600. name: "Micro",
  13601. height: math.unit(6, "inches")
  13602. },
  13603. {
  13604. name: "Normal",
  13605. height: math.unit(6 + 3 / 12, "feet"),
  13606. default: true
  13607. },
  13608. {
  13609. name: "Big",
  13610. height: math.unit(104, "feet")
  13611. },
  13612. {
  13613. name: "Macro",
  13614. height: math.unit(944, "feet")
  13615. },
  13616. {
  13617. name: "Macro+",
  13618. height: math.unit(9480, "feet")
  13619. },
  13620. {
  13621. name: "Megamacro",
  13622. height: math.unit(78752, "feet")
  13623. },
  13624. {
  13625. name: "Megamacro+",
  13626. height: math.unit(630128, "feet")
  13627. },
  13628. {
  13629. name: "Megamacro++",
  13630. height: math.unit(3150695, "feet")
  13631. },
  13632. ]
  13633. ))
  13634. characterMakers.push(() => makeCharacter(
  13635. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13636. {
  13637. front: {
  13638. height: math.unit(7 + 5 / 12, "feet"),
  13639. weight: math.unit(450, "lb"),
  13640. name: "Front",
  13641. image: {
  13642. source: "./media/characters/mocha-aura/front.svg",
  13643. extra: 1907 / 1817,
  13644. bottom: 0.04
  13645. }
  13646. },
  13647. back: {
  13648. height: math.unit(7 + 5 / 12, "feet"),
  13649. weight: math.unit(450, "lb"),
  13650. name: "Back",
  13651. image: {
  13652. source: "./media/characters/mocha-aura/back.svg",
  13653. extra: 1900 / 1825,
  13654. bottom: 0.045
  13655. }
  13656. },
  13657. },
  13658. [
  13659. {
  13660. name: "Nano",
  13661. height: math.unit(1, "nm")
  13662. },
  13663. {
  13664. name: "Megamicro",
  13665. height: math.unit(1, "mm")
  13666. },
  13667. {
  13668. name: "Micro",
  13669. height: math.unit(3, "inches")
  13670. },
  13671. {
  13672. name: "Normal",
  13673. height: math.unit(7 + 5 / 12, "feet"),
  13674. default: true
  13675. },
  13676. {
  13677. name: "Macro",
  13678. height: math.unit(30, "feet")
  13679. },
  13680. {
  13681. name: "Megamacro",
  13682. height: math.unit(3500, "feet")
  13683. },
  13684. {
  13685. name: "Teramacro",
  13686. height: math.unit(500000, "miles")
  13687. },
  13688. {
  13689. name: "Petamacro",
  13690. height: math.unit(50000000000000000, "parsecs")
  13691. },
  13692. ]
  13693. ))
  13694. characterMakers.push(() => makeCharacter(
  13695. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13696. {
  13697. front: {
  13698. height: math.unit(6, "feet"),
  13699. weight: math.unit(150, "lb"),
  13700. name: "Front",
  13701. image: {
  13702. source: "./media/characters/ilisha-devya/front.svg",
  13703. extra: 1053/1049,
  13704. bottom: 270/1323
  13705. }
  13706. },
  13707. back: {
  13708. height: math.unit(6, "feet"),
  13709. weight: math.unit(150, "lb"),
  13710. name: "Back",
  13711. image: {
  13712. source: "./media/characters/ilisha-devya/back.svg",
  13713. extra: 1131/1128,
  13714. bottom: 39/1170
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Macro",
  13721. height: math.unit(500, "feet"),
  13722. default: true
  13723. },
  13724. {
  13725. name: "Megamacro",
  13726. height: math.unit(10, "miles")
  13727. },
  13728. {
  13729. name: "Gigamacro",
  13730. height: math.unit(100000, "miles")
  13731. },
  13732. {
  13733. name: "Examacro",
  13734. height: math.unit(1e9, "lightyears")
  13735. },
  13736. {
  13737. name: "Omniversal",
  13738. height: math.unit(1e33, "lightyears")
  13739. },
  13740. {
  13741. name: "Beyond Infinite",
  13742. height: math.unit(1e100, "lightyears")
  13743. },
  13744. ]
  13745. ))
  13746. characterMakers.push(() => makeCharacter(
  13747. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13748. {
  13749. Side: {
  13750. height: math.unit(6, "feet"),
  13751. weight: math.unit(150, "lb"),
  13752. name: "Side",
  13753. image: {
  13754. source: "./media/characters/mira/side.svg",
  13755. extra: 900 / 799,
  13756. bottom: 0.02
  13757. }
  13758. },
  13759. },
  13760. [
  13761. {
  13762. name: "Human Size",
  13763. height: math.unit(6, "feet")
  13764. },
  13765. {
  13766. name: "Macro",
  13767. height: math.unit(100, "feet"),
  13768. default: true
  13769. },
  13770. {
  13771. name: "Megamacro",
  13772. height: math.unit(10, "miles")
  13773. },
  13774. {
  13775. name: "Gigamacro",
  13776. height: math.unit(25000, "miles")
  13777. },
  13778. {
  13779. name: "Teramacro",
  13780. height: math.unit(300, "AU")
  13781. },
  13782. {
  13783. name: "Full Size",
  13784. height: math.unit(4.5e10, "lightyears")
  13785. },
  13786. ]
  13787. ))
  13788. characterMakers.push(() => makeCharacter(
  13789. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13790. {
  13791. front: {
  13792. height: math.unit(6, "feet"),
  13793. weight: math.unit(150, "lb"),
  13794. name: "Front",
  13795. image: {
  13796. source: "./media/characters/holly/front.svg",
  13797. extra: 639 / 606
  13798. }
  13799. },
  13800. back: {
  13801. height: math.unit(6, "feet"),
  13802. weight: math.unit(150, "lb"),
  13803. name: "Back",
  13804. image: {
  13805. source: "./media/characters/holly/back.svg",
  13806. extra: 623 / 598
  13807. }
  13808. },
  13809. frontWorking: {
  13810. height: math.unit(6, "feet"),
  13811. weight: math.unit(150, "lb"),
  13812. name: "Front (Working)",
  13813. image: {
  13814. source: "./media/characters/holly/front-working.svg",
  13815. extra: 607 / 577,
  13816. bottom: 0.048
  13817. }
  13818. },
  13819. },
  13820. [
  13821. {
  13822. name: "Normal",
  13823. height: math.unit(12 + 3 / 12, "feet"),
  13824. default: true
  13825. },
  13826. ]
  13827. ))
  13828. characterMakers.push(() => makeCharacter(
  13829. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13830. {
  13831. front: {
  13832. height: math.unit(6, "feet"),
  13833. weight: math.unit(150, "lb"),
  13834. name: "Front",
  13835. image: {
  13836. source: "./media/characters/porter/front.svg",
  13837. extra: 1,
  13838. bottom: 0.01
  13839. }
  13840. },
  13841. frontRobes: {
  13842. height: math.unit(6, "feet"),
  13843. weight: math.unit(150, "lb"),
  13844. name: "Front (Robes)",
  13845. image: {
  13846. source: "./media/characters/porter/front-robes.svg",
  13847. extra: 1.01,
  13848. bottom: 0.01
  13849. }
  13850. },
  13851. },
  13852. [
  13853. {
  13854. name: "Normal",
  13855. height: math.unit(11 + 9 / 12, "feet"),
  13856. default: true
  13857. },
  13858. ]
  13859. ))
  13860. characterMakers.push(() => makeCharacter(
  13861. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13862. {
  13863. legendary: {
  13864. height: math.unit(6, "feet"),
  13865. weight: math.unit(150, "lb"),
  13866. name: "Legendary",
  13867. image: {
  13868. source: "./media/characters/lucy/legendary.svg",
  13869. extra: 1355 / 1100,
  13870. bottom: 0.045
  13871. }
  13872. },
  13873. },
  13874. [
  13875. {
  13876. name: "Legendary",
  13877. height: math.unit(86882 * 2, "miles"),
  13878. default: true
  13879. },
  13880. ]
  13881. ))
  13882. characterMakers.push(() => makeCharacter(
  13883. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13884. {
  13885. front: {
  13886. height: math.unit(6, "feet"),
  13887. weight: math.unit(150, "lb"),
  13888. name: "Front",
  13889. image: {
  13890. source: "./media/characters/drusilla/front.svg",
  13891. extra: 678 / 635,
  13892. bottom: 0.03
  13893. }
  13894. },
  13895. back: {
  13896. height: math.unit(6, "feet"),
  13897. weight: math.unit(150, "lb"),
  13898. name: "Back",
  13899. image: {
  13900. source: "./media/characters/drusilla/back.svg",
  13901. extra: 678 / 635,
  13902. bottom: 0.005
  13903. }
  13904. },
  13905. },
  13906. [
  13907. {
  13908. name: "Macro",
  13909. height: math.unit(100, "feet")
  13910. },
  13911. {
  13912. name: "Canon Height",
  13913. height: math.unit(2000, "feet"),
  13914. default: true
  13915. },
  13916. ]
  13917. ))
  13918. characterMakers.push(() => makeCharacter(
  13919. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13920. {
  13921. front: {
  13922. height: math.unit(6, "feet"),
  13923. weight: math.unit(180, "lb"),
  13924. name: "Front",
  13925. image: {
  13926. source: "./media/characters/renard-thatch/front.svg",
  13927. extra: 2411 / 2275,
  13928. bottom: 0.01
  13929. }
  13930. },
  13931. frontPosing: {
  13932. height: math.unit(6, "feet"),
  13933. weight: math.unit(180, "lb"),
  13934. name: "Front (Posing)",
  13935. image: {
  13936. source: "./media/characters/renard-thatch/front-posing.svg",
  13937. extra: 2381 / 2261,
  13938. bottom: 0.01
  13939. }
  13940. },
  13941. back: {
  13942. height: math.unit(6, "feet"),
  13943. weight: math.unit(180, "lb"),
  13944. name: "Back",
  13945. image: {
  13946. source: "./media/characters/renard-thatch/back.svg",
  13947. extra: 2428 / 2288
  13948. }
  13949. },
  13950. },
  13951. [
  13952. {
  13953. name: "Micro",
  13954. height: math.unit(3, "inches")
  13955. },
  13956. {
  13957. name: "Default",
  13958. height: math.unit(6, "feet"),
  13959. default: true
  13960. },
  13961. {
  13962. name: "Macro",
  13963. height: math.unit(75, "feet")
  13964. },
  13965. ]
  13966. ))
  13967. characterMakers.push(() => makeCharacter(
  13968. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13969. {
  13970. front: {
  13971. height: math.unit(1450, "feet"),
  13972. weight: math.unit(1.21e6, "tons"),
  13973. name: "Front",
  13974. image: {
  13975. source: "./media/characters/sekvra/front.svg",
  13976. extra: 1193/1190,
  13977. bottom: 78/1271
  13978. }
  13979. },
  13980. side: {
  13981. height: math.unit(1450, "feet"),
  13982. weight: math.unit(1.21e6, "tons"),
  13983. name: "Side",
  13984. image: {
  13985. source: "./media/characters/sekvra/side.svg",
  13986. extra: 1193/1190,
  13987. bottom: 52/1245
  13988. }
  13989. },
  13990. back: {
  13991. height: math.unit(1450, "feet"),
  13992. weight: math.unit(1.21e6, "tons"),
  13993. name: "Back",
  13994. image: {
  13995. source: "./media/characters/sekvra/back.svg",
  13996. extra: 1219/1216,
  13997. bottom: 21/1240
  13998. }
  13999. },
  14000. frontClothed: {
  14001. height: math.unit(1450, "feet"),
  14002. weight: math.unit(1.21e6, "tons"),
  14003. name: "Front (Clothed)",
  14004. image: {
  14005. source: "./media/characters/sekvra/front-clothed.svg",
  14006. extra: 1192/1189,
  14007. bottom: 79/1271
  14008. }
  14009. },
  14010. },
  14011. [
  14012. {
  14013. name: "Macro",
  14014. height: math.unit(1450, "feet"),
  14015. default: true
  14016. },
  14017. {
  14018. name: "Megamacro",
  14019. height: math.unit(15000, "feet")
  14020. },
  14021. ]
  14022. ))
  14023. characterMakers.push(() => makeCharacter(
  14024. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14025. {
  14026. front: {
  14027. height: math.unit(6, "feet"),
  14028. weight: math.unit(150, "lb"),
  14029. name: "Front",
  14030. image: {
  14031. source: "./media/characters/carmine/front.svg",
  14032. extra: 1,
  14033. bottom: 0.035
  14034. }
  14035. },
  14036. frontArmor: {
  14037. height: math.unit(6, "feet"),
  14038. weight: math.unit(150, "lb"),
  14039. name: "Front (Armor)",
  14040. image: {
  14041. source: "./media/characters/carmine/front-armor.svg",
  14042. extra: 1,
  14043. bottom: 0.035
  14044. }
  14045. },
  14046. },
  14047. [
  14048. {
  14049. name: "Large",
  14050. height: math.unit(1, "mile")
  14051. },
  14052. {
  14053. name: "Huge",
  14054. height: math.unit(40, "miles"),
  14055. default: true
  14056. },
  14057. {
  14058. name: "Colossal",
  14059. height: math.unit(2500, "miles")
  14060. },
  14061. ]
  14062. ))
  14063. characterMakers.push(() => makeCharacter(
  14064. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14065. {
  14066. front: {
  14067. height: math.unit(6, "feet"),
  14068. weight: math.unit(150, "lb"),
  14069. name: "Front",
  14070. image: {
  14071. source: "./media/characters/elyssia/front.svg",
  14072. extra: 2201 / 2035,
  14073. bottom: 0.05
  14074. }
  14075. },
  14076. frontClothed: {
  14077. height: math.unit(6, "feet"),
  14078. weight: math.unit(150, "lb"),
  14079. name: "Front (Clothed)",
  14080. image: {
  14081. source: "./media/characters/elyssia/front-clothed.svg",
  14082. extra: 2201 / 2035,
  14083. bottom: 0.05
  14084. }
  14085. },
  14086. back: {
  14087. height: math.unit(6, "feet"),
  14088. weight: math.unit(150, "lb"),
  14089. name: "Back",
  14090. image: {
  14091. source: "./media/characters/elyssia/back.svg",
  14092. extra: 2201 / 2035,
  14093. bottom: 0.013
  14094. }
  14095. },
  14096. },
  14097. [
  14098. {
  14099. name: "Smaller",
  14100. height: math.unit(150, "feet")
  14101. },
  14102. {
  14103. name: "Standard",
  14104. height: math.unit(1400, "feet"),
  14105. default: true
  14106. },
  14107. {
  14108. name: "Distracted",
  14109. height: math.unit(15000, "feet")
  14110. },
  14111. ]
  14112. ))
  14113. characterMakers.push(() => makeCharacter(
  14114. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14115. {
  14116. front: {
  14117. height: math.unit(7 + 4/12, "feet"),
  14118. weight: math.unit(690, "lb"),
  14119. name: "Front",
  14120. image: {
  14121. source: "./media/characters/geno-maxwell/front.svg",
  14122. extra: 984/856,
  14123. bottom: 87/1071
  14124. }
  14125. },
  14126. back: {
  14127. height: math.unit(7 + 4/12, "feet"),
  14128. weight: math.unit(690, "lb"),
  14129. name: "Back",
  14130. image: {
  14131. source: "./media/characters/geno-maxwell/back.svg",
  14132. extra: 981/854,
  14133. bottom: 57/1038
  14134. }
  14135. },
  14136. frontCostume: {
  14137. height: math.unit(7 + 4/12, "feet"),
  14138. weight: math.unit(690, "lb"),
  14139. name: "Front (Costume)",
  14140. image: {
  14141. source: "./media/characters/geno-maxwell/front-costume.svg",
  14142. extra: 984/856,
  14143. bottom: 87/1071
  14144. }
  14145. },
  14146. backcostume: {
  14147. height: math.unit(7 + 4/12, "feet"),
  14148. weight: math.unit(690, "lb"),
  14149. name: "Back (Costume)",
  14150. image: {
  14151. source: "./media/characters/geno-maxwell/back-costume.svg",
  14152. extra: 981/854,
  14153. bottom: 57/1038
  14154. }
  14155. },
  14156. },
  14157. [
  14158. {
  14159. name: "Micro",
  14160. height: math.unit(3, "inches")
  14161. },
  14162. {
  14163. name: "Normal",
  14164. height: math.unit(7 + 4 / 12, "feet"),
  14165. default: true
  14166. },
  14167. {
  14168. name: "Macro",
  14169. height: math.unit(220, "feet")
  14170. },
  14171. {
  14172. name: "Megamacro",
  14173. height: math.unit(11, "miles")
  14174. },
  14175. ]
  14176. ))
  14177. characterMakers.push(() => makeCharacter(
  14178. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14179. {
  14180. front: {
  14181. height: math.unit(7 + 4/12, "feet"),
  14182. weight: math.unit(750, "lb"),
  14183. name: "Front",
  14184. image: {
  14185. source: "./media/characters/regena-maxwell/front.svg",
  14186. extra: 984/856,
  14187. bottom: 87/1071
  14188. }
  14189. },
  14190. back: {
  14191. height: math.unit(7 + 4/12, "feet"),
  14192. weight: math.unit(750, "lb"),
  14193. name: "Back",
  14194. image: {
  14195. source: "./media/characters/regena-maxwell/back.svg",
  14196. extra: 981/854,
  14197. bottom: 57/1038
  14198. }
  14199. },
  14200. frontCostume: {
  14201. height: math.unit(7 + 4/12, "feet"),
  14202. weight: math.unit(750, "lb"),
  14203. name: "Front (Costume)",
  14204. image: {
  14205. source: "./media/characters/regena-maxwell/front-costume.svg",
  14206. extra: 984/856,
  14207. bottom: 87/1071
  14208. }
  14209. },
  14210. backcostume: {
  14211. height: math.unit(7 + 4/12, "feet"),
  14212. weight: math.unit(750, "lb"),
  14213. name: "Back (Costume)",
  14214. image: {
  14215. source: "./media/characters/regena-maxwell/back-costume.svg",
  14216. extra: 981/854,
  14217. bottom: 57/1038
  14218. }
  14219. },
  14220. },
  14221. [
  14222. {
  14223. name: "Normal",
  14224. height: math.unit(7 + 4 / 12, "feet"),
  14225. default: true
  14226. },
  14227. {
  14228. name: "Macro",
  14229. height: math.unit(220, "feet")
  14230. },
  14231. {
  14232. name: "Megamacro",
  14233. height: math.unit(11, "miles")
  14234. },
  14235. ]
  14236. ))
  14237. characterMakers.push(() => makeCharacter(
  14238. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14239. {
  14240. front: {
  14241. height: math.unit(6, "feet"),
  14242. weight: math.unit(150, "lb"),
  14243. name: "Front",
  14244. image: {
  14245. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14246. extra: 860 / 690,
  14247. bottom: 0.03
  14248. }
  14249. },
  14250. },
  14251. [
  14252. {
  14253. name: "Normal",
  14254. height: math.unit(1.7, "meters"),
  14255. default: true
  14256. },
  14257. ]
  14258. ))
  14259. characterMakers.push(() => makeCharacter(
  14260. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14261. {
  14262. front: {
  14263. height: math.unit(6, "feet"),
  14264. weight: math.unit(150, "lb"),
  14265. name: "Front",
  14266. image: {
  14267. source: "./media/characters/quilly/front.svg",
  14268. extra: 890 / 776
  14269. }
  14270. },
  14271. },
  14272. [
  14273. {
  14274. name: "Gigamacro",
  14275. height: math.unit(404090, "miles"),
  14276. default: true
  14277. },
  14278. ]
  14279. ))
  14280. characterMakers.push(() => makeCharacter(
  14281. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14282. {
  14283. front: {
  14284. height: math.unit(7 + 8 / 12, "feet"),
  14285. weight: math.unit(350, "lb"),
  14286. name: "Front",
  14287. image: {
  14288. source: "./media/characters/tempest/front.svg",
  14289. extra: 1175 / 1086,
  14290. bottom: 0.02
  14291. }
  14292. },
  14293. },
  14294. [
  14295. {
  14296. name: "Normal",
  14297. height: math.unit(7 + 8 / 12, "feet"),
  14298. default: true
  14299. },
  14300. ]
  14301. ))
  14302. characterMakers.push(() => makeCharacter(
  14303. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14304. {
  14305. side: {
  14306. height: math.unit(4 + 5 / 12, "feet"),
  14307. weight: math.unit(80, "lb"),
  14308. name: "Side",
  14309. image: {
  14310. source: "./media/characters/rodger/side.svg",
  14311. extra: 1235 / 1118
  14312. }
  14313. },
  14314. },
  14315. [
  14316. {
  14317. name: "Micro",
  14318. height: math.unit(1, "inch")
  14319. },
  14320. {
  14321. name: "Normal",
  14322. height: math.unit(4 + 5 / 12, "feet"),
  14323. default: true
  14324. },
  14325. {
  14326. name: "Macro",
  14327. height: math.unit(120, "feet")
  14328. },
  14329. ]
  14330. ))
  14331. characterMakers.push(() => makeCharacter(
  14332. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14333. {
  14334. front: {
  14335. height: math.unit(6, "feet"),
  14336. weight: math.unit(150, "lb"),
  14337. name: "Front",
  14338. image: {
  14339. source: "./media/characters/danyel/front.svg",
  14340. extra: 1185 / 1123,
  14341. bottom: 0.05
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Shrunken",
  14348. height: math.unit(0.5, "mm")
  14349. },
  14350. {
  14351. name: "Micro",
  14352. height: math.unit(1, "mm"),
  14353. default: true
  14354. },
  14355. {
  14356. name: "Upsized",
  14357. height: math.unit(5 + 5 / 12, "feet")
  14358. },
  14359. ]
  14360. ))
  14361. characterMakers.push(() => makeCharacter(
  14362. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14363. {
  14364. front: {
  14365. height: math.unit(5 + 6 / 12, "feet"),
  14366. weight: math.unit(200, "lb"),
  14367. name: "Front",
  14368. image: {
  14369. source: "./media/characters/vivian-bijoux/front.svg",
  14370. extra: 1217/1209,
  14371. bottom: 76/1293
  14372. }
  14373. },
  14374. back: {
  14375. height: math.unit(5 + 6 / 12, "feet"),
  14376. weight: math.unit(200, "lb"),
  14377. name: "Back",
  14378. image: {
  14379. source: "./media/characters/vivian-bijoux/back.svg",
  14380. extra: 1214/1208,
  14381. bottom: 51/1265
  14382. }
  14383. },
  14384. dressed: {
  14385. height: math.unit(5 + 6 / 12, "feet"),
  14386. weight: math.unit(200, "lb"),
  14387. name: "Dressed",
  14388. image: {
  14389. source: "./media/characters/vivian-bijoux/dressed.svg",
  14390. extra: 1217/1209,
  14391. bottom: 76/1293
  14392. }
  14393. },
  14394. },
  14395. [
  14396. {
  14397. name: "Normal",
  14398. height: math.unit(5 + 6 / 12, "feet"),
  14399. default: true
  14400. },
  14401. {
  14402. name: "Bad Dream",
  14403. height: math.unit(500, "feet")
  14404. },
  14405. {
  14406. name: "Nightmare",
  14407. height: math.unit(500, "miles")
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14413. {
  14414. front: {
  14415. height: math.unit(6 + 1 / 12, "feet"),
  14416. weight: math.unit(260, "lb"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/zeta/front.svg",
  14420. extra: 1968 / 1889,
  14421. bottom: 0.06
  14422. }
  14423. },
  14424. back: {
  14425. height: math.unit(6 + 1 / 12, "feet"),
  14426. weight: math.unit(260, "lb"),
  14427. name: "Back",
  14428. image: {
  14429. source: "./media/characters/zeta/back.svg",
  14430. extra: 1944 / 1858,
  14431. bottom: 0.03
  14432. }
  14433. },
  14434. hand: {
  14435. height: math.unit(1.112, "feet"),
  14436. name: "Hand",
  14437. image: {
  14438. source: "./media/characters/zeta/hand.svg"
  14439. }
  14440. },
  14441. foot: {
  14442. height: math.unit(1.48, "feet"),
  14443. name: "Foot",
  14444. image: {
  14445. source: "./media/characters/zeta/foot.svg"
  14446. }
  14447. },
  14448. },
  14449. [
  14450. {
  14451. name: "Micro",
  14452. height: math.unit(6, "inches")
  14453. },
  14454. {
  14455. name: "Normal",
  14456. height: math.unit(6 + 1 / 12, "feet"),
  14457. default: true
  14458. },
  14459. {
  14460. name: "Macro",
  14461. height: math.unit(20, "feet")
  14462. },
  14463. ]
  14464. ))
  14465. characterMakers.push(() => makeCharacter(
  14466. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14467. {
  14468. front: {
  14469. height: math.unit(6, "feet"),
  14470. weight: math.unit(150, "lb"),
  14471. name: "Front",
  14472. image: {
  14473. source: "./media/characters/jamie-larsen/front.svg",
  14474. extra: 962 / 933,
  14475. bottom: 0.02
  14476. }
  14477. },
  14478. back: {
  14479. height: math.unit(6, "feet"),
  14480. weight: math.unit(150, "lb"),
  14481. name: "Back",
  14482. image: {
  14483. source: "./media/characters/jamie-larsen/back.svg",
  14484. extra: 997 / 946
  14485. }
  14486. },
  14487. },
  14488. [
  14489. {
  14490. name: "Macro",
  14491. height: math.unit(28 + 7 / 12, "feet"),
  14492. default: true
  14493. },
  14494. {
  14495. name: "Macro+",
  14496. height: math.unit(180, "feet")
  14497. },
  14498. {
  14499. name: "Megamacro",
  14500. height: math.unit(10, "miles")
  14501. },
  14502. {
  14503. name: "Gigamacro",
  14504. height: math.unit(200000, "miles")
  14505. },
  14506. ]
  14507. ))
  14508. characterMakers.push(() => makeCharacter(
  14509. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14510. {
  14511. front: {
  14512. height: math.unit(6, "feet"),
  14513. weight: math.unit(120, "lb"),
  14514. name: "Front",
  14515. image: {
  14516. source: "./media/characters/vance/front.svg",
  14517. extra: 1980 / 1890,
  14518. bottom: 0.09
  14519. }
  14520. },
  14521. back: {
  14522. height: math.unit(6, "feet"),
  14523. weight: math.unit(120, "lb"),
  14524. name: "Back",
  14525. image: {
  14526. source: "./media/characters/vance/back.svg",
  14527. extra: 2081 / 1994,
  14528. bottom: 0.014
  14529. }
  14530. },
  14531. hand: {
  14532. height: math.unit(0.88, "feet"),
  14533. name: "Hand",
  14534. image: {
  14535. source: "./media/characters/vance/hand.svg"
  14536. }
  14537. },
  14538. foot: {
  14539. height: math.unit(0.64, "feet"),
  14540. name: "Foot",
  14541. image: {
  14542. source: "./media/characters/vance/foot.svg"
  14543. }
  14544. },
  14545. },
  14546. [
  14547. {
  14548. name: "Small",
  14549. height: math.unit(90, "feet"),
  14550. default: true
  14551. },
  14552. {
  14553. name: "Macro",
  14554. height: math.unit(100, "meters")
  14555. },
  14556. {
  14557. name: "Megamacro",
  14558. height: math.unit(15, "miles")
  14559. },
  14560. ]
  14561. ))
  14562. characterMakers.push(() => makeCharacter(
  14563. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14564. {
  14565. front: {
  14566. height: math.unit(6, "feet"),
  14567. weight: math.unit(180, "lb"),
  14568. name: "Front",
  14569. image: {
  14570. source: "./media/characters/xochitl/front.svg",
  14571. extra: 2297 / 2261,
  14572. bottom: 0.065
  14573. }
  14574. },
  14575. back: {
  14576. height: math.unit(6, "feet"),
  14577. weight: math.unit(180, "lb"),
  14578. name: "Back",
  14579. image: {
  14580. source: "./media/characters/xochitl/back.svg",
  14581. extra: 2386 / 2354,
  14582. bottom: 0.01
  14583. }
  14584. },
  14585. foot: {
  14586. height: math.unit(6 / 5 * 1.15, "feet"),
  14587. weight: math.unit(150, "lb"),
  14588. name: "Foot",
  14589. image: {
  14590. source: "./media/characters/xochitl/foot.svg"
  14591. }
  14592. },
  14593. },
  14594. [
  14595. {
  14596. name: "Macro",
  14597. height: math.unit(80, "feet")
  14598. },
  14599. {
  14600. name: "Macro+",
  14601. height: math.unit(400, "feet"),
  14602. default: true
  14603. },
  14604. {
  14605. name: "Gigamacro",
  14606. height: math.unit(80000, "miles")
  14607. },
  14608. {
  14609. name: "Gigamacro+",
  14610. height: math.unit(400000, "miles")
  14611. },
  14612. {
  14613. name: "Teramacro",
  14614. height: math.unit(300, "AU")
  14615. },
  14616. ]
  14617. ))
  14618. characterMakers.push(() => makeCharacter(
  14619. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14620. {
  14621. front: {
  14622. height: math.unit(6, "feet"),
  14623. weight: math.unit(150, "lb"),
  14624. name: "Front",
  14625. image: {
  14626. source: "./media/characters/vincent/front.svg",
  14627. extra: 1130 / 1080,
  14628. bottom: 0.055
  14629. }
  14630. },
  14631. beak: {
  14632. height: math.unit(6 * 0.1, "feet"),
  14633. name: "Beak",
  14634. image: {
  14635. source: "./media/characters/vincent/beak.svg"
  14636. }
  14637. },
  14638. hand: {
  14639. height: math.unit(6 * 0.85, "feet"),
  14640. weight: math.unit(150, "lb"),
  14641. name: "Hand",
  14642. image: {
  14643. source: "./media/characters/vincent/hand.svg"
  14644. }
  14645. },
  14646. foot: {
  14647. height: math.unit(6 * 0.19, "feet"),
  14648. weight: math.unit(150, "lb"),
  14649. name: "Foot",
  14650. image: {
  14651. source: "./media/characters/vincent/foot.svg"
  14652. }
  14653. },
  14654. },
  14655. [
  14656. {
  14657. name: "Base",
  14658. height: math.unit(6 + 5 / 12, "feet"),
  14659. default: true
  14660. },
  14661. {
  14662. name: "Macro",
  14663. height: math.unit(300, "feet")
  14664. },
  14665. {
  14666. name: "Megamacro",
  14667. height: math.unit(2, "miles")
  14668. },
  14669. {
  14670. name: "Gigamacro",
  14671. height: math.unit(1000, "miles")
  14672. },
  14673. ]
  14674. ))
  14675. characterMakers.push(() => makeCharacter(
  14676. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14677. {
  14678. front: {
  14679. height: math.unit(2, "meters"),
  14680. weight: math.unit(500, "kg"),
  14681. name: "Front",
  14682. image: {
  14683. source: "./media/characters/coatl/front.svg",
  14684. extra: 3948 / 3500,
  14685. bottom: 0.082
  14686. }
  14687. },
  14688. },
  14689. [
  14690. {
  14691. name: "Normal",
  14692. height: math.unit(4, "meters")
  14693. },
  14694. {
  14695. name: "Macro",
  14696. height: math.unit(100, "meters"),
  14697. default: true
  14698. },
  14699. {
  14700. name: "Macro+",
  14701. height: math.unit(300, "meters")
  14702. },
  14703. {
  14704. name: "Megamacro",
  14705. height: math.unit(3, "gigameters")
  14706. },
  14707. {
  14708. name: "Megamacro+",
  14709. height: math.unit(300, "terameters")
  14710. },
  14711. {
  14712. name: "Megamacro++",
  14713. height: math.unit(3, "lightyears")
  14714. },
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14719. {
  14720. front: {
  14721. height: math.unit(6, "feet"),
  14722. weight: math.unit(50, "kg"),
  14723. name: "front",
  14724. image: {
  14725. source: "./media/characters/shiroryu/front.svg",
  14726. extra: 1990 / 1935
  14727. }
  14728. },
  14729. },
  14730. [
  14731. {
  14732. name: "Mortal Mingling",
  14733. height: math.unit(3, "meters")
  14734. },
  14735. {
  14736. name: "Kaiju-ish",
  14737. height: math.unit(250, "meters")
  14738. },
  14739. {
  14740. name: "Somewhat Godly",
  14741. height: math.unit(400, "km"),
  14742. default: true
  14743. },
  14744. {
  14745. name: "Planetary",
  14746. height: math.unit(300, "megameters")
  14747. },
  14748. {
  14749. name: "Galaxy-dwarfing",
  14750. height: math.unit(450, "kiloparsecs")
  14751. },
  14752. {
  14753. name: "Universe Eater",
  14754. height: math.unit(150, "gigaparsecs")
  14755. },
  14756. {
  14757. name: "Almost Immeasurable",
  14758. height: math.unit(1.3e266, "yottaparsecs")
  14759. },
  14760. ]
  14761. ))
  14762. characterMakers.push(() => makeCharacter(
  14763. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14764. {
  14765. front: {
  14766. height: math.unit(6, "feet"),
  14767. weight: math.unit(150, "lb"),
  14768. name: "Front",
  14769. image: {
  14770. source: "./media/characters/umeko/front.svg",
  14771. extra: 1,
  14772. bottom: 0.019
  14773. }
  14774. },
  14775. frontArmored: {
  14776. height: math.unit(6, "feet"),
  14777. weight: math.unit(150, "lb"),
  14778. name: "Front (Armored)",
  14779. image: {
  14780. source: "./media/characters/umeko/front-armored.svg",
  14781. extra: 1,
  14782. bottom: 0.021
  14783. }
  14784. },
  14785. },
  14786. [
  14787. {
  14788. name: "Macro",
  14789. height: math.unit(220, "feet"),
  14790. default: true
  14791. },
  14792. {
  14793. name: "Guardian Dragon",
  14794. height: math.unit(50, "miles")
  14795. },
  14796. {
  14797. name: "Cosmic",
  14798. height: math.unit(800000, "miles")
  14799. },
  14800. ]
  14801. ))
  14802. characterMakers.push(() => makeCharacter(
  14803. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14804. {
  14805. front: {
  14806. height: math.unit(6, "feet"),
  14807. weight: math.unit(150, "lb"),
  14808. name: "Front",
  14809. image: {
  14810. source: "./media/characters/cassidy/front.svg",
  14811. extra: 810/808,
  14812. bottom: 41/851
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "Canon Height",
  14819. height: math.unit(120, "feet"),
  14820. default: true
  14821. },
  14822. {
  14823. name: "Macro+",
  14824. height: math.unit(400, "feet")
  14825. },
  14826. {
  14827. name: "Macro++",
  14828. height: math.unit(4000, "feet")
  14829. },
  14830. {
  14831. name: "Megamacro",
  14832. height: math.unit(3, "miles")
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14838. {
  14839. front: {
  14840. height: math.unit(6, "feet"),
  14841. weight: math.unit(150, "lb"),
  14842. name: "Front",
  14843. image: {
  14844. source: "./media/characters/isaac/front.svg",
  14845. extra: 896 / 815,
  14846. bottom: 0.11
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Human Size",
  14853. height: math.unit(8, "feet"),
  14854. default: true
  14855. },
  14856. {
  14857. name: "Macro",
  14858. height: math.unit(400, "feet")
  14859. },
  14860. {
  14861. name: "Megamacro",
  14862. height: math.unit(50, "miles")
  14863. },
  14864. {
  14865. name: "Canon Height",
  14866. height: math.unit(200, "AU")
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14872. {
  14873. front: {
  14874. height: math.unit(6, "feet"),
  14875. weight: math.unit(72, "kg"),
  14876. name: "Front",
  14877. image: {
  14878. source: "./media/characters/sleekit/front.svg",
  14879. extra: 4693 / 4487,
  14880. bottom: 0.012
  14881. }
  14882. },
  14883. },
  14884. [
  14885. {
  14886. name: "Minimum Height",
  14887. height: math.unit(10, "meters")
  14888. },
  14889. {
  14890. name: "Smaller",
  14891. height: math.unit(25, "meters")
  14892. },
  14893. {
  14894. name: "Larger",
  14895. height: math.unit(38, "meters"),
  14896. default: true
  14897. },
  14898. {
  14899. name: "Maximum height",
  14900. height: math.unit(100, "meters")
  14901. },
  14902. ]
  14903. ))
  14904. characterMakers.push(() => makeCharacter(
  14905. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14906. {
  14907. front: {
  14908. height: math.unit(6, "feet"),
  14909. weight: math.unit(150, "lb"),
  14910. name: "Front",
  14911. image: {
  14912. source: "./media/characters/nillia/front.svg",
  14913. extra: 2195 / 2037,
  14914. bottom: 0.005
  14915. }
  14916. },
  14917. back: {
  14918. height: math.unit(6, "feet"),
  14919. weight: math.unit(150, "lb"),
  14920. name: "Back",
  14921. image: {
  14922. source: "./media/characters/nillia/back.svg",
  14923. extra: 2195 / 2037,
  14924. bottom: 0.005
  14925. }
  14926. },
  14927. },
  14928. [
  14929. {
  14930. name: "Canon Height",
  14931. height: math.unit(489, "feet"),
  14932. default: true
  14933. }
  14934. ]
  14935. ))
  14936. characterMakers.push(() => makeCharacter(
  14937. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14938. {
  14939. front: {
  14940. height: math.unit(6, "feet"),
  14941. weight: math.unit(150, "lb"),
  14942. name: "Front",
  14943. image: {
  14944. source: "./media/characters/mesmyriza/front.svg",
  14945. extra: 2067 / 1784,
  14946. bottom: 0.035
  14947. }
  14948. },
  14949. foot: {
  14950. height: math.unit(6 / (250 / 35), "feet"),
  14951. name: "Foot",
  14952. image: {
  14953. source: "./media/characters/mesmyriza/foot.svg"
  14954. }
  14955. },
  14956. },
  14957. [
  14958. {
  14959. name: "Macro",
  14960. height: math.unit(457, "meters"),
  14961. default: true
  14962. },
  14963. {
  14964. name: "Megamacro",
  14965. height: math.unit(8, "megameters")
  14966. },
  14967. ]
  14968. ))
  14969. characterMakers.push(() => makeCharacter(
  14970. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14971. {
  14972. front: {
  14973. height: math.unit(6, "feet"),
  14974. weight: math.unit(250, "lb"),
  14975. name: "Front",
  14976. image: {
  14977. source: "./media/characters/saudade/front.svg",
  14978. extra: 1172 / 1139,
  14979. bottom: 0.035
  14980. }
  14981. },
  14982. },
  14983. [
  14984. {
  14985. name: "Micro",
  14986. height: math.unit(3, "inches")
  14987. },
  14988. {
  14989. name: "Normal",
  14990. height: math.unit(6, "feet"),
  14991. default: true
  14992. },
  14993. {
  14994. name: "Macro",
  14995. height: math.unit(50, "feet")
  14996. },
  14997. {
  14998. name: "Megamacro",
  14999. height: math.unit(2800, "feet")
  15000. },
  15001. ]
  15002. ))
  15003. characterMakers.push(() => makeCharacter(
  15004. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15005. {
  15006. front: {
  15007. height: math.unit(5 + 4 / 12, "feet"),
  15008. weight: math.unit(100, "lb"),
  15009. name: "Front",
  15010. image: {
  15011. source: "./media/characters/keireer/front.svg",
  15012. extra: 716 / 666,
  15013. bottom: 0.05
  15014. }
  15015. },
  15016. },
  15017. [
  15018. {
  15019. name: "Normal",
  15020. height: math.unit(5 + 4 / 12, "feet"),
  15021. default: true
  15022. },
  15023. ]
  15024. ))
  15025. characterMakers.push(() => makeCharacter(
  15026. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15027. {
  15028. front: {
  15029. height: math.unit(6, "feet"),
  15030. weight: math.unit(90, "kg"),
  15031. name: "Front",
  15032. image: {
  15033. source: "./media/characters/mirja/front.svg",
  15034. extra: 1789 / 1683,
  15035. bottom: 0.05
  15036. }
  15037. },
  15038. frontDressed: {
  15039. height: math.unit(6, "feet"),
  15040. weight: math.unit(90, "lb"),
  15041. name: "Front (Dressed)",
  15042. image: {
  15043. source: "./media/characters/mirja/front-dressed.svg",
  15044. extra: 1789 / 1683,
  15045. bottom: 0.05
  15046. }
  15047. },
  15048. back: {
  15049. height: math.unit(6, "feet"),
  15050. weight: math.unit(90, "lb"),
  15051. name: "Back",
  15052. image: {
  15053. source: "./media/characters/mirja/back.svg",
  15054. extra: 953 / 917,
  15055. bottom: 0.017
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "\"Incognito\"",
  15062. height: math.unit(3, "meters")
  15063. },
  15064. {
  15065. name: "Strolling Size",
  15066. height: math.unit(15, "km")
  15067. },
  15068. {
  15069. name: "Larger Strolling Size",
  15070. height: math.unit(400, "km")
  15071. },
  15072. {
  15073. name: "Preferred Size",
  15074. height: math.unit(5000, "km")
  15075. },
  15076. {
  15077. name: "True Size",
  15078. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15079. default: true
  15080. },
  15081. ]
  15082. ))
  15083. characterMakers.push(() => makeCharacter(
  15084. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15085. {
  15086. front: {
  15087. height: math.unit(15, "feet"),
  15088. weight: math.unit(880, "kg"),
  15089. name: "Front",
  15090. image: {
  15091. source: "./media/characters/nightraver/front.svg",
  15092. extra: 2444 / 2160,
  15093. bottom: 0.027
  15094. }
  15095. },
  15096. back: {
  15097. height: math.unit(15, "feet"),
  15098. weight: math.unit(880, "kg"),
  15099. name: "Back",
  15100. image: {
  15101. source: "./media/characters/nightraver/back.svg",
  15102. extra: 2309 / 2180,
  15103. bottom: 0.005
  15104. }
  15105. },
  15106. sole: {
  15107. height: math.unit(2.878, "feet"),
  15108. name: "Sole",
  15109. image: {
  15110. source: "./media/characters/nightraver/sole.svg"
  15111. }
  15112. },
  15113. foot: {
  15114. height: math.unit(2.285, "feet"),
  15115. name: "Foot",
  15116. image: {
  15117. source: "./media/characters/nightraver/foot.svg"
  15118. }
  15119. },
  15120. maw: {
  15121. height: math.unit(2.67, "feet"),
  15122. name: "Maw",
  15123. image: {
  15124. source: "./media/characters/nightraver/maw.svg"
  15125. }
  15126. },
  15127. },
  15128. [
  15129. {
  15130. name: "Micro",
  15131. height: math.unit(1, "cm")
  15132. },
  15133. {
  15134. name: "Normal",
  15135. height: math.unit(15, "feet"),
  15136. default: true
  15137. },
  15138. {
  15139. name: "Macro",
  15140. height: math.unit(300, "feet")
  15141. },
  15142. {
  15143. name: "Megamacro",
  15144. height: math.unit(300, "miles")
  15145. },
  15146. {
  15147. name: "Gigamacro",
  15148. height: math.unit(10000, "miles")
  15149. },
  15150. ]
  15151. ))
  15152. characterMakers.push(() => makeCharacter(
  15153. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15154. {
  15155. side: {
  15156. height: math.unit(2, "inches"),
  15157. weight: math.unit(5, "grams"),
  15158. name: "Side",
  15159. image: {
  15160. source: "./media/characters/arc/side.svg"
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Micro",
  15167. height: math.unit(2, "inches"),
  15168. default: true
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15174. {
  15175. front: {
  15176. height: math.unit(1.1938, "meters"),
  15177. weight: math.unit(54, "kg"),
  15178. name: "Front",
  15179. image: {
  15180. source: "./media/characters/nebula-shahar/front.svg",
  15181. extra: 1642 / 1436,
  15182. bottom: 0.06
  15183. }
  15184. },
  15185. },
  15186. [
  15187. {
  15188. name: "Megamicro",
  15189. height: math.unit(0.3, "mm")
  15190. },
  15191. {
  15192. name: "Micro",
  15193. height: math.unit(3, "cm")
  15194. },
  15195. {
  15196. name: "Normal",
  15197. height: math.unit(138, "cm"),
  15198. default: true
  15199. },
  15200. {
  15201. name: "Macro",
  15202. height: math.unit(30, "m")
  15203. },
  15204. ]
  15205. ))
  15206. characterMakers.push(() => makeCharacter(
  15207. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15208. {
  15209. front: {
  15210. height: math.unit(5.24, "feet"),
  15211. weight: math.unit(150, "lb"),
  15212. name: "Front",
  15213. image: {
  15214. source: "./media/characters/shayla/front.svg",
  15215. extra: 1512 / 1414,
  15216. bottom: 0.01
  15217. }
  15218. },
  15219. back: {
  15220. height: math.unit(5.24, "feet"),
  15221. weight: math.unit(150, "lb"),
  15222. name: "Back",
  15223. image: {
  15224. source: "./media/characters/shayla/back.svg",
  15225. extra: 1512 / 1414
  15226. }
  15227. },
  15228. hand: {
  15229. height: math.unit(0.7781496062992126, "feet"),
  15230. name: "Hand",
  15231. image: {
  15232. source: "./media/characters/shayla/hand.svg"
  15233. }
  15234. },
  15235. foot: {
  15236. height: math.unit(1.4206036745406823, "feet"),
  15237. name: "Foot",
  15238. image: {
  15239. source: "./media/characters/shayla/foot.svg"
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Micro",
  15246. height: math.unit(0.32, "feet")
  15247. },
  15248. {
  15249. name: "Normal",
  15250. height: math.unit(5.24, "feet"),
  15251. default: true
  15252. },
  15253. {
  15254. name: "Macro",
  15255. height: math.unit(492.12, "feet")
  15256. },
  15257. {
  15258. name: "Megamacro",
  15259. height: math.unit(186.41, "miles")
  15260. },
  15261. ]
  15262. ))
  15263. characterMakers.push(() => makeCharacter(
  15264. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15265. {
  15266. front: {
  15267. height: math.unit(2.2, "m"),
  15268. weight: math.unit(120, "kg"),
  15269. name: "Front",
  15270. image: {
  15271. source: "./media/characters/pia-jr/front.svg",
  15272. extra: 1000 / 970,
  15273. bottom: 0.035
  15274. }
  15275. },
  15276. hand: {
  15277. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15278. name: "Hand",
  15279. image: {
  15280. source: "./media/characters/pia-jr/hand.svg"
  15281. }
  15282. },
  15283. paw: {
  15284. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15285. name: "Paw",
  15286. image: {
  15287. source: "./media/characters/pia-jr/paw.svg"
  15288. }
  15289. },
  15290. },
  15291. [
  15292. {
  15293. name: "Micro",
  15294. height: math.unit(1.2, "cm")
  15295. },
  15296. {
  15297. name: "Normal",
  15298. height: math.unit(2.2, "m"),
  15299. default: true
  15300. },
  15301. {
  15302. name: "Macro",
  15303. height: math.unit(180, "m")
  15304. },
  15305. {
  15306. name: "Megamacro",
  15307. height: math.unit(420, "km")
  15308. },
  15309. ]
  15310. ))
  15311. characterMakers.push(() => makeCharacter(
  15312. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15313. {
  15314. front: {
  15315. height: math.unit(2, "m"),
  15316. weight: math.unit(115, "kg"),
  15317. name: "Front",
  15318. image: {
  15319. source: "./media/characters/pia-sr/front.svg",
  15320. extra: 760 / 730,
  15321. bottom: 0.015
  15322. }
  15323. },
  15324. back: {
  15325. height: math.unit(2, "m"),
  15326. weight: math.unit(115, "kg"),
  15327. name: "Back",
  15328. image: {
  15329. source: "./media/characters/pia-sr/back.svg",
  15330. extra: 760 / 730,
  15331. bottom: 0.01
  15332. }
  15333. },
  15334. hand: {
  15335. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15336. name: "Hand",
  15337. image: {
  15338. source: "./media/characters/pia-sr/hand.svg"
  15339. }
  15340. },
  15341. foot: {
  15342. height: math.unit(1.83, "feet"),
  15343. name: "Foot",
  15344. image: {
  15345. source: "./media/characters/pia-sr/foot.svg"
  15346. }
  15347. },
  15348. },
  15349. [
  15350. {
  15351. name: "Micro",
  15352. height: math.unit(88, "mm")
  15353. },
  15354. {
  15355. name: "Normal",
  15356. height: math.unit(2, "m"),
  15357. default: true
  15358. },
  15359. {
  15360. name: "Macro",
  15361. height: math.unit(200, "m")
  15362. },
  15363. {
  15364. name: "Megamacro",
  15365. height: math.unit(420, "km")
  15366. },
  15367. ]
  15368. ))
  15369. characterMakers.push(() => makeCharacter(
  15370. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15371. {
  15372. front: {
  15373. height: math.unit(8 + 2 / 12, "feet"),
  15374. weight: math.unit(300, "lb"),
  15375. name: "Front",
  15376. image: {
  15377. source: "./media/characters/kibibyte/front.svg",
  15378. extra: 2221 / 2098,
  15379. bottom: 0.04
  15380. }
  15381. },
  15382. },
  15383. [
  15384. {
  15385. name: "Normal",
  15386. height: math.unit(8 + 2 / 12, "feet"),
  15387. default: true
  15388. },
  15389. {
  15390. name: "Socialable Macro",
  15391. height: math.unit(50, "feet")
  15392. },
  15393. {
  15394. name: "Macro",
  15395. height: math.unit(300, "feet")
  15396. },
  15397. {
  15398. name: "Megamacro",
  15399. height: math.unit(500, "miles")
  15400. },
  15401. ]
  15402. ))
  15403. characterMakers.push(() => makeCharacter(
  15404. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15405. {
  15406. front: {
  15407. height: math.unit(6, "feet"),
  15408. weight: math.unit(150, "lb"),
  15409. name: "Front",
  15410. image: {
  15411. source: "./media/characters/felix/front.svg",
  15412. extra: 762 / 722,
  15413. bottom: 0.02
  15414. }
  15415. },
  15416. frontClothed: {
  15417. height: math.unit(6, "feet"),
  15418. weight: math.unit(150, "lb"),
  15419. name: "Front (Clothed)",
  15420. image: {
  15421. source: "./media/characters/felix/front-clothed.svg",
  15422. extra: 762 / 722,
  15423. bottom: 0.02
  15424. }
  15425. },
  15426. },
  15427. [
  15428. {
  15429. name: "Normal",
  15430. height: math.unit(6 + 8 / 12, "feet"),
  15431. default: true
  15432. },
  15433. {
  15434. name: "Macro",
  15435. height: math.unit(2600, "feet")
  15436. },
  15437. {
  15438. name: "Megamacro",
  15439. height: math.unit(450, "miles")
  15440. },
  15441. ]
  15442. ))
  15443. characterMakers.push(() => makeCharacter(
  15444. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15445. {
  15446. front: {
  15447. height: math.unit(6 + 1 / 12, "feet"),
  15448. weight: math.unit(250, "lb"),
  15449. name: "Front",
  15450. image: {
  15451. source: "./media/characters/tobo/front.svg",
  15452. extra: 608 / 586,
  15453. bottom: 0.023
  15454. }
  15455. },
  15456. back: {
  15457. height: math.unit(6 + 1 / 12, "feet"),
  15458. weight: math.unit(250, "lb"),
  15459. name: "Back",
  15460. image: {
  15461. source: "./media/characters/tobo/back.svg",
  15462. extra: 608 / 586
  15463. }
  15464. },
  15465. },
  15466. [
  15467. {
  15468. name: "Nano",
  15469. height: math.unit(2, "nm")
  15470. },
  15471. {
  15472. name: "Megamicro",
  15473. height: math.unit(0.1, "mm")
  15474. },
  15475. {
  15476. name: "Micro",
  15477. height: math.unit(1, "inch"),
  15478. default: true
  15479. },
  15480. {
  15481. name: "Human-sized",
  15482. height: math.unit(6 + 1 / 12, "feet")
  15483. },
  15484. {
  15485. name: "Macro",
  15486. height: math.unit(250, "feet")
  15487. },
  15488. {
  15489. name: "Megamacro",
  15490. height: math.unit(75, "miles")
  15491. },
  15492. {
  15493. name: "Texas-sized",
  15494. height: math.unit(750, "miles")
  15495. },
  15496. {
  15497. name: "Teramacro",
  15498. height: math.unit(50000, "miles")
  15499. },
  15500. ]
  15501. ))
  15502. characterMakers.push(() => makeCharacter(
  15503. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15504. {
  15505. front: {
  15506. height: math.unit(6, "feet"),
  15507. weight: math.unit(269, "lb"),
  15508. name: "Front",
  15509. image: {
  15510. source: "./media/characters/danny-kapowsky/front.svg",
  15511. extra: 766 / 736,
  15512. bottom: 0.044
  15513. }
  15514. },
  15515. back: {
  15516. height: math.unit(6, "feet"),
  15517. weight: math.unit(269, "lb"),
  15518. name: "Back",
  15519. image: {
  15520. source: "./media/characters/danny-kapowsky/back.svg",
  15521. extra: 797 / 760,
  15522. bottom: 0.025
  15523. }
  15524. },
  15525. },
  15526. [
  15527. {
  15528. name: "Macro",
  15529. height: math.unit(150, "feet"),
  15530. default: true
  15531. },
  15532. {
  15533. name: "Macro+",
  15534. height: math.unit(200, "feet")
  15535. },
  15536. {
  15537. name: "Macro++",
  15538. height: math.unit(300, "feet")
  15539. },
  15540. {
  15541. name: "Macro+++",
  15542. height: math.unit(400, "feet")
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15548. {
  15549. side: {
  15550. height: math.unit(6, "feet"),
  15551. weight: math.unit(170, "lb"),
  15552. name: "Side",
  15553. image: {
  15554. source: "./media/characters/finn/side.svg",
  15555. extra: 1953 / 1807,
  15556. bottom: 0.057
  15557. }
  15558. },
  15559. },
  15560. [
  15561. {
  15562. name: "Megamacro",
  15563. height: math.unit(14445, "feet"),
  15564. default: true
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15570. {
  15571. front: {
  15572. height: math.unit(5 + 6 / 12, "feet"),
  15573. weight: math.unit(125, "lb"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/roy/front.svg",
  15577. extra: 1,
  15578. bottom: 0.11
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Micro",
  15585. height: math.unit(3, "inches"),
  15586. default: true
  15587. },
  15588. {
  15589. name: "Normal",
  15590. height: math.unit(5 + 6 / 12, "feet")
  15591. },
  15592. {
  15593. name: "Lesser Macro",
  15594. height: math.unit(60, "feet")
  15595. },
  15596. {
  15597. name: "Greater Macro",
  15598. height: math.unit(120, "feet")
  15599. },
  15600. ]
  15601. ))
  15602. characterMakers.push(() => makeCharacter(
  15603. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15604. {
  15605. front: {
  15606. height: math.unit(6, "feet"),
  15607. weight: math.unit(100, "lb"),
  15608. name: "Front",
  15609. image: {
  15610. source: "./media/characters/aevsivs/front.svg",
  15611. extra: 1,
  15612. bottom: 0.03
  15613. }
  15614. },
  15615. back: {
  15616. height: math.unit(6, "feet"),
  15617. weight: math.unit(100, "lb"),
  15618. name: "Back",
  15619. image: {
  15620. source: "./media/characters/aevsivs/back.svg"
  15621. }
  15622. },
  15623. },
  15624. [
  15625. {
  15626. name: "Micro",
  15627. height: math.unit(2, "inches"),
  15628. default: true
  15629. },
  15630. {
  15631. name: "Normal",
  15632. height: math.unit(5, "feet")
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15638. {
  15639. front: {
  15640. height: math.unit(5 + 7 / 12, "feet"),
  15641. weight: math.unit(159, "lb"),
  15642. name: "Front",
  15643. image: {
  15644. source: "./media/characters/hildegard/front.svg",
  15645. extra: 289 / 269,
  15646. bottom: 7.63 / 297.8
  15647. }
  15648. },
  15649. back: {
  15650. height: math.unit(5 + 7 / 12, "feet"),
  15651. weight: math.unit(159, "lb"),
  15652. name: "Back",
  15653. image: {
  15654. source: "./media/characters/hildegard/back.svg",
  15655. extra: 280 / 260,
  15656. bottom: 2.3 / 282
  15657. }
  15658. },
  15659. },
  15660. [
  15661. {
  15662. name: "Normal",
  15663. height: math.unit(5 + 7 / 12, "feet"),
  15664. default: true
  15665. },
  15666. ]
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15670. {
  15671. bernard: {
  15672. height: math.unit(2 + 7 / 12, "feet"),
  15673. weight: math.unit(66, "lb"),
  15674. name: "Bernard",
  15675. rename: true,
  15676. image: {
  15677. source: "./media/characters/bernard-wilder/bernard.svg",
  15678. extra: 192 / 128,
  15679. bottom: 0.05
  15680. }
  15681. },
  15682. wilder: {
  15683. height: math.unit(5 + 8 / 12, "feet"),
  15684. weight: math.unit(143, "lb"),
  15685. name: "Wilder",
  15686. rename: true,
  15687. image: {
  15688. source: "./media/characters/bernard-wilder/wilder.svg",
  15689. extra: 361 / 312,
  15690. bottom: 0.02
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Normal",
  15697. height: math.unit(2 + 7 / 12, "feet"),
  15698. default: true
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15704. {
  15705. anthro: {
  15706. height: math.unit(6 + 1 / 12, "feet"),
  15707. weight: math.unit(155, "lb"),
  15708. name: "Anthro",
  15709. image: {
  15710. source: "./media/characters/hearth/anthro.svg",
  15711. extra: 1178/1136,
  15712. bottom: 28/1206
  15713. }
  15714. },
  15715. feral: {
  15716. height: math.unit(3.78, "feet"),
  15717. weight: math.unit(35, "kg"),
  15718. name: "Feral",
  15719. image: {
  15720. source: "./media/characters/hearth/feral.svg",
  15721. extra: 153 / 135,
  15722. bottom: 0.03
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Normal",
  15729. height: math.unit(6 + 1 / 12, "feet"),
  15730. default: true
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15736. {
  15737. front: {
  15738. height: math.unit(6, "feet"),
  15739. weight: math.unit(182, "lb"),
  15740. name: "Front",
  15741. image: {
  15742. source: "./media/characters/ingrid/front.svg",
  15743. extra: 294 / 268,
  15744. bottom: 0.027
  15745. }
  15746. },
  15747. },
  15748. [
  15749. {
  15750. name: "Normal",
  15751. height: math.unit(6, "feet"),
  15752. default: true
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15758. {
  15759. eevee: {
  15760. height: math.unit(2 + 10 / 12, "feet"),
  15761. weight: math.unit(86, "lb"),
  15762. name: "Malgam",
  15763. image: {
  15764. source: "./media/characters/malgam/eevee.svg",
  15765. extra: 952/784,
  15766. bottom: 38/990
  15767. }
  15768. },
  15769. sylveon: {
  15770. height: math.unit(4, "feet"),
  15771. weight: math.unit(101, "lb"),
  15772. name: "Future Malgam",
  15773. rename: true,
  15774. image: {
  15775. source: "./media/characters/malgam/sylveon.svg",
  15776. extra: 371 / 325,
  15777. bottom: 0.015
  15778. }
  15779. },
  15780. gigantamax: {
  15781. height: math.unit(50, "feet"),
  15782. name: "Gigantamax Malgam",
  15783. rename: true,
  15784. image: {
  15785. source: "./media/characters/malgam/gigantamax.svg"
  15786. }
  15787. },
  15788. },
  15789. [
  15790. {
  15791. name: "Normal",
  15792. height: math.unit(2 + 10 / 12, "feet"),
  15793. default: true
  15794. },
  15795. ]
  15796. ))
  15797. characterMakers.push(() => makeCharacter(
  15798. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15799. {
  15800. front: {
  15801. height: math.unit(5 + 11 / 12, "feet"),
  15802. weight: math.unit(188, "lb"),
  15803. name: "Front",
  15804. image: {
  15805. source: "./media/characters/fleur/front.svg",
  15806. extra: 309 / 283,
  15807. bottom: 0.007
  15808. }
  15809. },
  15810. },
  15811. [
  15812. {
  15813. name: "Normal",
  15814. height: math.unit(5 + 11 / 12, "feet"),
  15815. default: true
  15816. },
  15817. ]
  15818. ))
  15819. characterMakers.push(() => makeCharacter(
  15820. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15821. {
  15822. front: {
  15823. height: math.unit(5 + 4 / 12, "feet"),
  15824. weight: math.unit(122, "lb"),
  15825. name: "Front",
  15826. image: {
  15827. source: "./media/characters/jude/front.svg",
  15828. extra: 288 / 273,
  15829. bottom: 0.03
  15830. }
  15831. },
  15832. },
  15833. [
  15834. {
  15835. name: "Normal",
  15836. height: math.unit(5 + 4 / 12, "feet"),
  15837. default: true
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15843. {
  15844. front: {
  15845. height: math.unit(5 + 11 / 12, "feet"),
  15846. weight: math.unit(190, "lb"),
  15847. name: "Front",
  15848. image: {
  15849. source: "./media/characters/seara/front.svg",
  15850. extra: 1,
  15851. bottom: 0.05
  15852. }
  15853. },
  15854. },
  15855. [
  15856. {
  15857. name: "Normal",
  15858. height: math.unit(5 + 11 / 12, "feet"),
  15859. default: true
  15860. },
  15861. ]
  15862. ))
  15863. characterMakers.push(() => makeCharacter(
  15864. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15865. {
  15866. front: {
  15867. height: math.unit(16 + 5 / 12, "feet"),
  15868. weight: math.unit(524, "lb"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/caspian-lugia/front.svg",
  15872. extra: 1,
  15873. bottom: 0.04
  15874. }
  15875. },
  15876. },
  15877. [
  15878. {
  15879. name: "Normal",
  15880. height: math.unit(16 + 5 / 12, "feet"),
  15881. default: true
  15882. },
  15883. ]
  15884. ))
  15885. characterMakers.push(() => makeCharacter(
  15886. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15887. {
  15888. front: {
  15889. height: math.unit(5 + 7 / 12, "feet"),
  15890. weight: math.unit(170, "lb"),
  15891. name: "Front",
  15892. image: {
  15893. source: "./media/characters/mika/front.svg",
  15894. extra: 1,
  15895. bottom: 0.016
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(5 + 7 / 12, "feet"),
  15903. default: true
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15909. {
  15910. front: {
  15911. height: math.unit(6 + 2 / 12, "feet"),
  15912. weight: math.unit(268, "lb"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/sol/front.svg",
  15916. extra: 247 / 231,
  15917. bottom: 0.05
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "Normal",
  15924. height: math.unit(6 + 2 / 12, "feet"),
  15925. default: true
  15926. },
  15927. ]
  15928. ))
  15929. characterMakers.push(() => makeCharacter(
  15930. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15931. {
  15932. buizel: {
  15933. height: math.unit(2 + 5 / 12, "feet"),
  15934. weight: math.unit(87, "lb"),
  15935. name: "Front",
  15936. image: {
  15937. source: "./media/characters/umiko/buizel.svg",
  15938. extra: 172 / 157,
  15939. bottom: 0.01
  15940. },
  15941. form: "buizel",
  15942. default: true
  15943. },
  15944. floatzel: {
  15945. height: math.unit(5 + 9 / 12, "feet"),
  15946. weight: math.unit(250, "lb"),
  15947. name: "Front",
  15948. image: {
  15949. source: "./media/characters/umiko/floatzel.svg",
  15950. extra: 1076/1006,
  15951. bottom: 15/1091
  15952. },
  15953. form: "floatzel",
  15954. default: true
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(2 + 5 / 12, "feet"),
  15961. form: "buizel",
  15962. default: true
  15963. },
  15964. {
  15965. name: "Normal",
  15966. height: math.unit(5 + 9 / 12, "feet"),
  15967. form: "floatzel",
  15968. default: true
  15969. },
  15970. ],
  15971. {
  15972. "buizel": {
  15973. name: "Buizel"
  15974. },
  15975. "floatzel": {
  15976. name: "Floatzel",
  15977. default: true
  15978. }
  15979. }
  15980. ))
  15981. characterMakers.push(() => makeCharacter(
  15982. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15983. {
  15984. front: {
  15985. height: math.unit(6 + 2 / 12, "feet"),
  15986. weight: math.unit(146, "lb"),
  15987. name: "Front",
  15988. image: {
  15989. source: "./media/characters/iliac/front.svg",
  15990. extra: 389 / 365,
  15991. bottom: 0.035
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(6 + 2 / 12, "feet"),
  15999. default: true
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(6, "feet"),
  16008. weight: math.unit(170, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/topaz/front.svg",
  16012. extra: 317 / 303,
  16013. bottom: 0.055
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Normal",
  16020. height: math.unit(6, "feet"),
  16021. default: true
  16022. },
  16023. ]
  16024. ))
  16025. characterMakers.push(() => makeCharacter(
  16026. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16027. {
  16028. front: {
  16029. height: math.unit(5 + 11 / 12, "feet"),
  16030. weight: math.unit(144, "lb"),
  16031. name: "Front",
  16032. image: {
  16033. source: "./media/characters/gabriel/front.svg",
  16034. extra: 285 / 262,
  16035. bottom: 0.004
  16036. }
  16037. },
  16038. },
  16039. [
  16040. {
  16041. name: "Normal",
  16042. height: math.unit(5 + 11 / 12, "feet"),
  16043. default: true
  16044. },
  16045. ]
  16046. ))
  16047. characterMakers.push(() => makeCharacter(
  16048. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16049. {
  16050. side: {
  16051. height: math.unit(6 + 5 / 12, "feet"),
  16052. weight: math.unit(300, "lb"),
  16053. name: "Side",
  16054. image: {
  16055. source: "./media/characters/tempest-suicune/side.svg",
  16056. extra: 195 / 154,
  16057. bottom: 0.04
  16058. }
  16059. },
  16060. },
  16061. [
  16062. {
  16063. name: "Normal",
  16064. height: math.unit(6 + 5 / 12, "feet"),
  16065. default: true
  16066. },
  16067. ]
  16068. ))
  16069. characterMakers.push(() => makeCharacter(
  16070. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16071. {
  16072. front: {
  16073. height: math.unit(7 + 2 / 12, "feet"),
  16074. weight: math.unit(322, "lb"),
  16075. name: "Front",
  16076. image: {
  16077. source: "./media/characters/vulcan/front.svg",
  16078. extra: 154 / 147,
  16079. bottom: 0.04
  16080. }
  16081. },
  16082. },
  16083. [
  16084. {
  16085. name: "Normal",
  16086. height: math.unit(7 + 2 / 12, "feet"),
  16087. default: true
  16088. },
  16089. ]
  16090. ))
  16091. characterMakers.push(() => makeCharacter(
  16092. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16093. {
  16094. front: {
  16095. height: math.unit(5 + 10 / 12, "feet"),
  16096. weight: math.unit(264, "lb"),
  16097. name: "Front",
  16098. image: {
  16099. source: "./media/characters/gault/front.svg",
  16100. extra: 161 / 140,
  16101. bottom: 0.028
  16102. }
  16103. },
  16104. },
  16105. [
  16106. {
  16107. name: "Normal",
  16108. height: math.unit(5 + 10 / 12, "feet"),
  16109. default: true
  16110. },
  16111. ]
  16112. ))
  16113. characterMakers.push(() => makeCharacter(
  16114. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16115. {
  16116. front: {
  16117. height: math.unit(6, "feet"),
  16118. weight: math.unit(150, "lb"),
  16119. name: "Front",
  16120. image: {
  16121. source: "./media/characters/shard/front.svg",
  16122. extra: 273 / 238,
  16123. bottom: 0.02
  16124. }
  16125. },
  16126. },
  16127. [
  16128. {
  16129. name: "Normal",
  16130. height: math.unit(3 + 6 / 12, "feet"),
  16131. default: true
  16132. },
  16133. ]
  16134. ))
  16135. characterMakers.push(() => makeCharacter(
  16136. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16137. {
  16138. front: {
  16139. height: math.unit(5 + 11 / 12, "feet"),
  16140. weight: math.unit(146, "lb"),
  16141. name: "Front",
  16142. image: {
  16143. source: "./media/characters/ashe/front.svg",
  16144. extra: 400 / 373,
  16145. bottom: 0.01
  16146. }
  16147. },
  16148. },
  16149. [
  16150. {
  16151. name: "Normal",
  16152. height: math.unit(5 + 11 / 12, "feet"),
  16153. default: true
  16154. },
  16155. ]
  16156. ))
  16157. characterMakers.push(() => makeCharacter(
  16158. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16159. {
  16160. front: {
  16161. height: math.unit(5 + 5 / 12, "feet"),
  16162. weight: math.unit(135, "lb"),
  16163. name: "Front",
  16164. image: {
  16165. source: "./media/characters/beatrix/front.svg",
  16166. extra: 392 / 379,
  16167. bottom: 0.01
  16168. }
  16169. },
  16170. },
  16171. [
  16172. {
  16173. name: "Normal",
  16174. height: math.unit(6, "feet"),
  16175. default: true
  16176. },
  16177. ]
  16178. ))
  16179. characterMakers.push(() => makeCharacter(
  16180. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16181. {
  16182. front: {
  16183. height: math.unit(6 + 2/12, "feet"),
  16184. weight: math.unit(135, "lb"),
  16185. name: "Front",
  16186. image: {
  16187. source: "./media/characters/ignatius/front.svg",
  16188. extra: 1380/1259,
  16189. bottom: 27/1407
  16190. }
  16191. },
  16192. },
  16193. [
  16194. {
  16195. name: "Normal",
  16196. height: math.unit(6 + 2/12, "feet"),
  16197. default: true
  16198. },
  16199. ]
  16200. ))
  16201. characterMakers.push(() => makeCharacter(
  16202. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16203. {
  16204. front: {
  16205. height: math.unit(6 + 2 / 12, "feet"),
  16206. weight: math.unit(138, "lb"),
  16207. name: "Front",
  16208. image: {
  16209. source: "./media/characters/mei-li/front.svg",
  16210. extra: 237 / 229,
  16211. bottom: 0.03
  16212. }
  16213. },
  16214. },
  16215. [
  16216. {
  16217. name: "Normal",
  16218. height: math.unit(6 + 2 / 12, "feet"),
  16219. default: true
  16220. },
  16221. ]
  16222. ))
  16223. characterMakers.push(() => makeCharacter(
  16224. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16225. {
  16226. front: {
  16227. height: math.unit(2 + 4 / 12, "feet"),
  16228. weight: math.unit(62, "lb"),
  16229. name: "Front",
  16230. image: {
  16231. source: "./media/characters/puru/front.svg",
  16232. extra: 206 / 149,
  16233. bottom: 0.06
  16234. }
  16235. },
  16236. },
  16237. [
  16238. {
  16239. name: "Normal",
  16240. height: math.unit(2 + 4 / 12, "feet"),
  16241. default: true
  16242. },
  16243. ]
  16244. ))
  16245. characterMakers.push(() => makeCharacter(
  16246. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16247. {
  16248. anthro: {
  16249. height: math.unit(5 + 8/12, "feet"),
  16250. weight: math.unit(200, "lb"),
  16251. energyNeed: math.unit(2000, "kcal"),
  16252. name: "Anthro",
  16253. image: {
  16254. source: "./media/characters/kee/anthro.svg",
  16255. extra: 3251/3184,
  16256. bottom: 250/3501
  16257. }
  16258. },
  16259. taur: {
  16260. height: math.unit(11, "feet"),
  16261. weight: math.unit(500, "lb"),
  16262. energyNeed: math.unit(5000, "kcal"),
  16263. name: "Taur",
  16264. image: {
  16265. source: "./media/characters/kee/taur.svg",
  16266. extra: 1362/1320,
  16267. bottom: 83/1445
  16268. }
  16269. },
  16270. },
  16271. [
  16272. {
  16273. name: "Normal",
  16274. height: math.unit(5 + 8/12, "feet"),
  16275. default: true
  16276. },
  16277. {
  16278. name: "Macro",
  16279. height: math.unit(35, "feet")
  16280. },
  16281. ]
  16282. ))
  16283. characterMakers.push(() => makeCharacter(
  16284. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16285. {
  16286. anthro: {
  16287. height: math.unit(7, "feet"),
  16288. weight: math.unit(190, "lb"),
  16289. name: "Anthro",
  16290. image: {
  16291. source: "./media/characters/cobalt-dracha/anthro.svg",
  16292. extra: 231 / 225,
  16293. bottom: 0.04
  16294. }
  16295. },
  16296. feral: {
  16297. height: math.unit(9 + 7 / 12, "feet"),
  16298. weight: math.unit(294, "lb"),
  16299. name: "Feral",
  16300. image: {
  16301. source: "./media/characters/cobalt-dracha/feral.svg",
  16302. extra: 692 / 633,
  16303. bottom: 0.05
  16304. }
  16305. },
  16306. },
  16307. [
  16308. {
  16309. name: "Normal",
  16310. height: math.unit(7, "feet"),
  16311. default: true
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16317. {
  16318. fallen: {
  16319. height: math.unit(11 + 8 / 12, "feet"),
  16320. weight: math.unit(485, "lb"),
  16321. name: "Java (Fallen)",
  16322. rename: true,
  16323. image: {
  16324. source: "./media/characters/java/fallen.svg",
  16325. extra: 226 / 208,
  16326. bottom: 0.005
  16327. }
  16328. },
  16329. godkin: {
  16330. height: math.unit(10 + 6 / 12, "feet"),
  16331. weight: math.unit(328, "lb"),
  16332. name: "Java (Godkin)",
  16333. rename: true,
  16334. image: {
  16335. source: "./media/characters/java/godkin.svg",
  16336. extra: 1104/1068,
  16337. bottom: 36/1140
  16338. }
  16339. },
  16340. },
  16341. [
  16342. {
  16343. name: "Normal",
  16344. height: math.unit(11 + 8 / 12, "feet"),
  16345. default: true
  16346. },
  16347. ]
  16348. ))
  16349. characterMakers.push(() => makeCharacter(
  16350. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16351. {
  16352. front: {
  16353. height: math.unit(5 + 9 / 12, "feet"),
  16354. weight: math.unit(170, "lb"),
  16355. name: "Front",
  16356. image: {
  16357. source: "./media/characters/purna/front.svg",
  16358. extra: 239 / 229,
  16359. bottom: 0.01
  16360. }
  16361. },
  16362. },
  16363. [
  16364. {
  16365. name: "Normal",
  16366. height: math.unit(5 + 9 / 12, "feet"),
  16367. default: true
  16368. },
  16369. ]
  16370. ))
  16371. characterMakers.push(() => makeCharacter(
  16372. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16373. {
  16374. front: {
  16375. height: math.unit(5 + 9 / 12, "feet"),
  16376. weight: math.unit(142, "lb"),
  16377. name: "Front",
  16378. image: {
  16379. source: "./media/characters/kuva/front.svg",
  16380. extra: 281 / 271,
  16381. bottom: 0.006
  16382. }
  16383. },
  16384. },
  16385. [
  16386. {
  16387. name: "Normal",
  16388. height: math.unit(5 + 9 / 12, "feet"),
  16389. default: true
  16390. },
  16391. ]
  16392. ))
  16393. characterMakers.push(() => makeCharacter(
  16394. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16395. {
  16396. anthro: {
  16397. height: math.unit(9 + 2 / 12, "feet"),
  16398. weight: math.unit(270, "lb"),
  16399. name: "Anthro",
  16400. image: {
  16401. source: "./media/characters/embra/anthro.svg",
  16402. extra: 200 / 187,
  16403. bottom: 0.02
  16404. }
  16405. },
  16406. feral: {
  16407. height: math.unit(18 + 8 / 12, "feet"),
  16408. weight: math.unit(576, "lb"),
  16409. name: "Feral",
  16410. image: {
  16411. source: "./media/characters/embra/feral.svg",
  16412. extra: 152 / 137,
  16413. bottom: 0.037
  16414. }
  16415. },
  16416. },
  16417. [
  16418. {
  16419. name: "Normal",
  16420. height: math.unit(9 + 2 / 12, "feet"),
  16421. default: true
  16422. },
  16423. ]
  16424. ))
  16425. characterMakers.push(() => makeCharacter(
  16426. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16427. {
  16428. anthro: {
  16429. height: math.unit(10 + 9 / 12, "feet"),
  16430. weight: math.unit(224, "lb"),
  16431. name: "Anthro",
  16432. image: {
  16433. source: "./media/characters/grottos/anthro.svg",
  16434. extra: 350 / 332,
  16435. bottom: 0.045
  16436. }
  16437. },
  16438. feral: {
  16439. height: math.unit(20 + 7 / 12, "feet"),
  16440. weight: math.unit(629, "lb"),
  16441. name: "Feral",
  16442. image: {
  16443. source: "./media/characters/grottos/feral.svg",
  16444. extra: 207 / 190,
  16445. bottom: 0.05
  16446. }
  16447. },
  16448. },
  16449. [
  16450. {
  16451. name: "Normal",
  16452. height: math.unit(10 + 9 / 12, "feet"),
  16453. default: true
  16454. },
  16455. ]
  16456. ))
  16457. characterMakers.push(() => makeCharacter(
  16458. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16459. {
  16460. anthro: {
  16461. height: math.unit(9 + 6 / 12, "feet"),
  16462. weight: math.unit(298, "lb"),
  16463. name: "Anthro",
  16464. image: {
  16465. source: "./media/characters/frifna/anthro.svg",
  16466. extra: 282 / 269,
  16467. bottom: 0.015
  16468. }
  16469. },
  16470. feral: {
  16471. height: math.unit(16 + 2 / 12, "feet"),
  16472. weight: math.unit(624, "lb"),
  16473. name: "Feral",
  16474. image: {
  16475. source: "./media/characters/frifna/feral.svg"
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(9 + 6 / 12, "feet"),
  16483. default: true
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(6 + 2 / 12, "feet"),
  16492. weight: math.unit(168, "lb"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/elise/front.svg",
  16496. extra: 276 / 271
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Normal",
  16503. height: math.unit(6 + 2 / 12, "feet"),
  16504. default: true
  16505. },
  16506. ]
  16507. ))
  16508. characterMakers.push(() => makeCharacter(
  16509. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16510. {
  16511. front: {
  16512. height: math.unit(5 + 10 / 12, "feet"),
  16513. weight: math.unit(210, "lb"),
  16514. name: "Front",
  16515. image: {
  16516. source: "./media/characters/glade/front.svg",
  16517. extra: 258 / 247,
  16518. bottom: 0.008
  16519. }
  16520. },
  16521. },
  16522. [
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(5 + 10 / 12, "feet"),
  16526. default: true
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16532. {
  16533. front: {
  16534. height: math.unit(5 + 10 / 12, "feet"),
  16535. weight: math.unit(129, "lb"),
  16536. name: "Front",
  16537. image: {
  16538. source: "./media/characters/rina/front.svg",
  16539. extra: 266 / 255,
  16540. bottom: 0.005
  16541. }
  16542. },
  16543. },
  16544. [
  16545. {
  16546. name: "Normal",
  16547. height: math.unit(5 + 10 / 12, "feet"),
  16548. default: true
  16549. },
  16550. ]
  16551. ))
  16552. characterMakers.push(() => makeCharacter(
  16553. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16554. {
  16555. front: {
  16556. height: math.unit(6 + 1 / 12, "feet"),
  16557. weight: math.unit(192, "lb"),
  16558. name: "Front",
  16559. image: {
  16560. source: "./media/characters/veronica/front.svg",
  16561. extra: 319 / 309,
  16562. bottom: 0.005
  16563. }
  16564. },
  16565. },
  16566. [
  16567. {
  16568. name: "Normal",
  16569. height: math.unit(6 + 1 / 12, "feet"),
  16570. default: true
  16571. },
  16572. ]
  16573. ))
  16574. characterMakers.push(() => makeCharacter(
  16575. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16576. {
  16577. front: {
  16578. height: math.unit(9 + 3 / 12, "feet"),
  16579. weight: math.unit(1100, "lb"),
  16580. name: "Front",
  16581. image: {
  16582. source: "./media/characters/braxton/front.svg",
  16583. extra: 1057 / 984,
  16584. bottom: 0.05
  16585. }
  16586. },
  16587. },
  16588. [
  16589. {
  16590. name: "Normal",
  16591. height: math.unit(9 + 3 / 12, "feet")
  16592. },
  16593. {
  16594. name: "Giant",
  16595. height: math.unit(300, "feet"),
  16596. default: true
  16597. },
  16598. {
  16599. name: "Macro",
  16600. height: math.unit(700, "feet")
  16601. },
  16602. {
  16603. name: "Megamacro",
  16604. height: math.unit(6000, "feet")
  16605. },
  16606. ]
  16607. ))
  16608. characterMakers.push(() => makeCharacter(
  16609. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16610. {
  16611. front: {
  16612. height: math.unit(6 + 7 / 12, "feet"),
  16613. weight: math.unit(150, "lb"),
  16614. name: "Front",
  16615. image: {
  16616. source: "./media/characters/blue-feyonics/front.svg",
  16617. extra: 1403 / 1306,
  16618. bottom: 0.047
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(6 + 7 / 12, "feet"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16632. {
  16633. front: {
  16634. height: math.unit(1.8, "meters"),
  16635. weight: math.unit(60, "kg"),
  16636. name: "Front",
  16637. image: {
  16638. source: "./media/characters/maxwell/front.svg",
  16639. extra: 2060 / 1873
  16640. }
  16641. },
  16642. },
  16643. [
  16644. {
  16645. name: "Micro",
  16646. height: math.unit(1, "mm")
  16647. },
  16648. {
  16649. name: "Normal",
  16650. height: math.unit(1.8, "meter"),
  16651. default: true
  16652. },
  16653. {
  16654. name: "Macro",
  16655. height: math.unit(30, "meters")
  16656. },
  16657. {
  16658. name: "Megamacro",
  16659. height: math.unit(10, "km")
  16660. },
  16661. ]
  16662. ))
  16663. characterMakers.push(() => makeCharacter(
  16664. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16665. {
  16666. front: {
  16667. height: math.unit(6, "feet"),
  16668. weight: math.unit(150, "lb"),
  16669. name: "Front",
  16670. image: {
  16671. source: "./media/characters/jack/front.svg",
  16672. extra: 1754 / 1640,
  16673. bottom: 0.01
  16674. }
  16675. },
  16676. },
  16677. [
  16678. {
  16679. name: "Normal",
  16680. height: math.unit(80000, "feet"),
  16681. default: true
  16682. },
  16683. {
  16684. name: "Max size",
  16685. height: math.unit(10, "lightyears")
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16691. {
  16692. urban: {
  16693. height: math.unit(5, "feet"),
  16694. weight: math.unit(240, "lb"),
  16695. name: "Urban",
  16696. image: {
  16697. source: "./media/characters/cafat/urban.svg",
  16698. extra: 1223/1126,
  16699. bottom: 205/1428
  16700. }
  16701. },
  16702. summer: {
  16703. height: math.unit(5, "feet"),
  16704. weight: math.unit(240, "lb"),
  16705. name: "Summer",
  16706. image: {
  16707. source: "./media/characters/cafat/summer.svg",
  16708. extra: 1223/1126,
  16709. bottom: 205/1428
  16710. }
  16711. },
  16712. winter: {
  16713. height: math.unit(5, "feet"),
  16714. weight: math.unit(240, "lb"),
  16715. name: "Winter",
  16716. image: {
  16717. source: "./media/characters/cafat/winter.svg",
  16718. extra: 1223/1126,
  16719. bottom: 205/1428
  16720. }
  16721. },
  16722. lingerie: {
  16723. height: math.unit(5, "feet"),
  16724. weight: math.unit(240, "lb"),
  16725. name: "Lingerie",
  16726. image: {
  16727. source: "./media/characters/cafat/lingerie.svg",
  16728. extra: 1223/1126,
  16729. bottom: 205/1428
  16730. }
  16731. },
  16732. upright: {
  16733. height: math.unit(6.3, "feet"),
  16734. weight: math.unit(240, "lb"),
  16735. name: "Upright",
  16736. image: {
  16737. source: "./media/characters/cafat/upright.svg",
  16738. bottom: 0.01
  16739. }
  16740. },
  16741. uprightFull: {
  16742. height: math.unit(6.3, "feet"),
  16743. weight: math.unit(240, "lb"),
  16744. name: "Upright (Full)",
  16745. image: {
  16746. source: "./media/characters/cafat/upright-full.svg",
  16747. bottom: 0.01
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Small",
  16754. height: math.unit(5, "feet"),
  16755. default: true
  16756. },
  16757. {
  16758. name: "Large",
  16759. height: math.unit(13, "feet")
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(6, "feet"),
  16768. weight: math.unit(150, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/verin-raharra/front.svg",
  16772. extra: 5019 / 4835,
  16773. bottom: 0.023
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(7 + 5 / 12, "feet"),
  16781. default: true
  16782. },
  16783. {
  16784. name: "Upsized",
  16785. height: math.unit(20, "feet")
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16791. {
  16792. front: {
  16793. height: math.unit(7, "feet"),
  16794. weight: math.unit(230, "lb"),
  16795. name: "Front",
  16796. image: {
  16797. source: "./media/characters/nakata/front.svg",
  16798. extra: 1.005,
  16799. bottom: 0.01
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(7, "feet"),
  16807. default: true
  16808. },
  16809. {
  16810. name: "Big",
  16811. height: math.unit(14, "feet")
  16812. },
  16813. {
  16814. name: "Macro",
  16815. height: math.unit(400, "feet")
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(4.91, "feet"),
  16824. weight: math.unit(100, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/lily/front.svg",
  16828. extra: 1585 / 1415,
  16829. bottom: 0.02
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(4.91, "feet"),
  16837. default: true
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16843. {
  16844. laying: {
  16845. height: math.unit(4 + 4 / 12, "feet"),
  16846. weight: math.unit(600, "lb"),
  16847. name: "Laying",
  16848. image: {
  16849. source: "./media/characters/sheila/laying.svg",
  16850. extra: 1333 / 1265,
  16851. bottom: 0.16
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Normal",
  16858. height: math.unit(4 + 4 / 12, "feet"),
  16859. default: true
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16865. {
  16866. front: {
  16867. height: math.unit(6, "feet"),
  16868. weight: math.unit(190, "lb"),
  16869. name: "Front",
  16870. image: {
  16871. source: "./media/characters/sax/front.svg",
  16872. extra: 1187 / 973,
  16873. bottom: 0.042
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Micro",
  16880. height: math.unit(4, "inches"),
  16881. default: true
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16887. {
  16888. front: {
  16889. height: math.unit(6, "feet"),
  16890. weight: math.unit(150, "lb"),
  16891. name: "Front",
  16892. image: {
  16893. source: "./media/characters/pandora/front.svg",
  16894. extra: 2720 / 2556,
  16895. bottom: 0.015
  16896. }
  16897. },
  16898. back: {
  16899. height: math.unit(6, "feet"),
  16900. weight: math.unit(150, "lb"),
  16901. name: "Back",
  16902. image: {
  16903. source: "./media/characters/pandora/back.svg",
  16904. extra: 2720 / 2556,
  16905. bottom: 0.01
  16906. }
  16907. },
  16908. beans: {
  16909. height: math.unit(6 / 8, "feet"),
  16910. name: "Beans",
  16911. image: {
  16912. source: "./media/characters/pandora/beans.svg"
  16913. }
  16914. },
  16915. collar: {
  16916. height: math.unit(0.31, "feet"),
  16917. name: "Collar",
  16918. image: {
  16919. source: "./media/characters/pandora/collar.svg"
  16920. }
  16921. },
  16922. skirt: {
  16923. height: math.unit(6, "feet"),
  16924. weight: math.unit(150, "lb"),
  16925. name: "Skirt",
  16926. image: {
  16927. source: "./media/characters/pandora/skirt.svg",
  16928. extra: 1622 / 1525,
  16929. bottom: 0.015
  16930. }
  16931. },
  16932. hoodie: {
  16933. height: math.unit(6, "feet"),
  16934. weight: math.unit(150, "lb"),
  16935. name: "Hoodie",
  16936. image: {
  16937. source: "./media/characters/pandora/hoodie.svg",
  16938. extra: 1622 / 1525,
  16939. bottom: 0.015
  16940. }
  16941. },
  16942. casual: {
  16943. height: math.unit(6, "feet"),
  16944. weight: math.unit(150, "lb"),
  16945. name: "Casual",
  16946. image: {
  16947. source: "./media/characters/pandora/casual.svg",
  16948. extra: 1622 / 1525,
  16949. bottom: 0.015
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Normal",
  16956. height: math.unit(6, "feet")
  16957. },
  16958. {
  16959. name: "Big Steppy",
  16960. height: math.unit(1, "km"),
  16961. default: true
  16962. },
  16963. {
  16964. name: "Galactic Steppy",
  16965. height: math.unit(2, "gigameters")
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16971. {
  16972. side: {
  16973. height: math.unit(10, "feet"),
  16974. weight: math.unit(800, "kg"),
  16975. name: "Side",
  16976. image: {
  16977. source: "./media/characters/venio-darcony/side.svg",
  16978. extra: 1373 / 1003,
  16979. bottom: 0.037
  16980. }
  16981. },
  16982. front: {
  16983. height: math.unit(19, "feet"),
  16984. weight: math.unit(800, "kg"),
  16985. name: "Front",
  16986. image: {
  16987. source: "./media/characters/venio-darcony/front.svg"
  16988. }
  16989. },
  16990. back: {
  16991. height: math.unit(19, "feet"),
  16992. weight: math.unit(800, "kg"),
  16993. name: "Back",
  16994. image: {
  16995. source: "./media/characters/venio-darcony/back.svg"
  16996. }
  16997. },
  16998. sideNsfw: {
  16999. height: math.unit(10, "feet"),
  17000. weight: math.unit(800, "kg"),
  17001. name: "Side (NSFW)",
  17002. image: {
  17003. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17004. extra: 1373 / 1003,
  17005. bottom: 0.037
  17006. }
  17007. },
  17008. frontNsfw: {
  17009. height: math.unit(19, "feet"),
  17010. weight: math.unit(800, "kg"),
  17011. name: "Front (NSFW)",
  17012. image: {
  17013. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17014. }
  17015. },
  17016. backNsfw: {
  17017. height: math.unit(19, "feet"),
  17018. weight: math.unit(800, "kg"),
  17019. name: "Back (NSFW)",
  17020. image: {
  17021. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17022. }
  17023. },
  17024. sideArmored: {
  17025. height: math.unit(10, "feet"),
  17026. weight: math.unit(800, "kg"),
  17027. name: "Side (Armored)",
  17028. image: {
  17029. source: "./media/characters/venio-darcony/side-armored.svg",
  17030. extra: 1373 / 1003,
  17031. bottom: 0.037
  17032. }
  17033. },
  17034. frontArmored: {
  17035. height: math.unit(19, "feet"),
  17036. weight: math.unit(900, "kg"),
  17037. name: "Front (Armored)",
  17038. image: {
  17039. source: "./media/characters/venio-darcony/front-armored.svg"
  17040. }
  17041. },
  17042. backArmored: {
  17043. height: math.unit(19, "feet"),
  17044. weight: math.unit(900, "kg"),
  17045. name: "Back (Armored)",
  17046. image: {
  17047. source: "./media/characters/venio-darcony/back-armored.svg"
  17048. }
  17049. },
  17050. sword: {
  17051. height: math.unit(10, "feet"),
  17052. weight: math.unit(50, "lb"),
  17053. name: "Sword",
  17054. image: {
  17055. source: "./media/characters/venio-darcony/sword.svg"
  17056. }
  17057. },
  17058. },
  17059. [
  17060. {
  17061. name: "Normal",
  17062. height: math.unit(10, "feet")
  17063. },
  17064. {
  17065. name: "Macro",
  17066. height: math.unit(130, "feet"),
  17067. default: true
  17068. },
  17069. {
  17070. name: "Macro+",
  17071. height: math.unit(240, "feet")
  17072. },
  17073. ]
  17074. ))
  17075. characterMakers.push(() => makeCharacter(
  17076. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17077. {
  17078. front: {
  17079. height: math.unit(6, "feet"),
  17080. weight: math.unit(150, "lb"),
  17081. name: "Front",
  17082. image: {
  17083. source: "./media/characters/veski/front.svg",
  17084. extra: 1299 / 1225,
  17085. bottom: 0.04
  17086. }
  17087. },
  17088. back: {
  17089. height: math.unit(6, "feet"),
  17090. weight: math.unit(150, "lb"),
  17091. name: "Back",
  17092. image: {
  17093. source: "./media/characters/veski/back.svg",
  17094. extra: 1299 / 1225,
  17095. bottom: 0.008
  17096. }
  17097. },
  17098. maw: {
  17099. height: math.unit(1.5 * 1.21, "feet"),
  17100. name: "Maw",
  17101. image: {
  17102. source: "./media/characters/veski/maw.svg"
  17103. }
  17104. },
  17105. },
  17106. [
  17107. {
  17108. name: "Macro",
  17109. height: math.unit(2, "km"),
  17110. default: true
  17111. },
  17112. ]
  17113. ))
  17114. characterMakers.push(() => makeCharacter(
  17115. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17116. {
  17117. front: {
  17118. height: math.unit(5 + 7 / 12, "feet"),
  17119. name: "Front",
  17120. image: {
  17121. source: "./media/characters/isabelle/front.svg",
  17122. extra: 2130 / 1976,
  17123. bottom: 0.05
  17124. }
  17125. },
  17126. },
  17127. [
  17128. {
  17129. name: "Supermicro",
  17130. height: math.unit(10, "micrometers")
  17131. },
  17132. {
  17133. name: "Micro",
  17134. height: math.unit(1, "inch")
  17135. },
  17136. {
  17137. name: "Tiny",
  17138. height: math.unit(5, "inches")
  17139. },
  17140. {
  17141. name: "Standard",
  17142. height: math.unit(5 + 7 / 12, "inches")
  17143. },
  17144. {
  17145. name: "Macro",
  17146. height: math.unit(80, "meters"),
  17147. default: true
  17148. },
  17149. {
  17150. name: "Megamacro",
  17151. height: math.unit(250, "meters")
  17152. },
  17153. {
  17154. name: "Gigamacro",
  17155. height: math.unit(5, "km")
  17156. },
  17157. {
  17158. name: "Cosmic",
  17159. height: math.unit(2.5e6, "miles")
  17160. },
  17161. ]
  17162. ))
  17163. characterMakers.push(() => makeCharacter(
  17164. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17165. {
  17166. front: {
  17167. height: math.unit(6, "feet"),
  17168. weight: math.unit(150, "lb"),
  17169. name: "Front",
  17170. image: {
  17171. source: "./media/characters/hanzo/front.svg",
  17172. extra: 374 / 344,
  17173. bottom: 0.02
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Normal",
  17180. height: math.unit(8, "feet"),
  17181. default: true
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17187. {
  17188. front: {
  17189. height: math.unit(7, "feet"),
  17190. weight: math.unit(130, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/anna/front.svg",
  17194. extra: 169 / 145,
  17195. bottom: 0.06
  17196. }
  17197. },
  17198. full: {
  17199. height: math.unit(4.96, "feet"),
  17200. weight: math.unit(220, "lb"),
  17201. name: "Full",
  17202. image: {
  17203. source: "./media/characters/anna/full.svg",
  17204. extra: 138 / 114,
  17205. bottom: 0.15
  17206. }
  17207. },
  17208. tongue: {
  17209. height: math.unit(2.53, "feet"),
  17210. name: "Tongue",
  17211. image: {
  17212. source: "./media/characters/anna/tongue.svg"
  17213. }
  17214. },
  17215. },
  17216. [
  17217. {
  17218. name: "Normal",
  17219. height: math.unit(7, "feet"),
  17220. default: true
  17221. },
  17222. ]
  17223. ))
  17224. characterMakers.push(() => makeCharacter(
  17225. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17226. {
  17227. front: {
  17228. height: math.unit(7, "feet"),
  17229. weight: math.unit(150, "lb"),
  17230. name: "Front",
  17231. image: {
  17232. source: "./media/characters/ian-corvid/front.svg",
  17233. extra: 150 / 142,
  17234. bottom: 0.02
  17235. }
  17236. },
  17237. back: {
  17238. height: math.unit(7, "feet"),
  17239. weight: math.unit(150, "lb"),
  17240. name: "Back",
  17241. image: {
  17242. source: "./media/characters/ian-corvid/back.svg",
  17243. extra: 150 / 143,
  17244. bottom: 0.01
  17245. }
  17246. },
  17247. stomping: {
  17248. height: math.unit(7, "feet"),
  17249. weight: math.unit(150, "lb"),
  17250. name: "Stomping",
  17251. image: {
  17252. source: "./media/characters/ian-corvid/stomping.svg",
  17253. extra: 76 / 72
  17254. }
  17255. },
  17256. sitting: {
  17257. height: math.unit(7 / 1.8, "feet"),
  17258. weight: math.unit(150, "lb"),
  17259. name: "Sitting",
  17260. image: {
  17261. source: "./media/characters/ian-corvid/sitting.svg",
  17262. extra: 1400 / 1269,
  17263. bottom: 0.15
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Tiny Microw",
  17270. height: math.unit(1, "inch")
  17271. },
  17272. {
  17273. name: "Microw",
  17274. height: math.unit(6, "inches")
  17275. },
  17276. {
  17277. name: "Crow",
  17278. height: math.unit(7 + 1 / 12, "feet"),
  17279. default: true
  17280. },
  17281. {
  17282. name: "Macrow",
  17283. height: math.unit(176, "feet")
  17284. },
  17285. ]
  17286. ))
  17287. characterMakers.push(() => makeCharacter(
  17288. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17289. {
  17290. front: {
  17291. height: math.unit(5 + 7 / 12, "feet"),
  17292. weight: math.unit(147, "lb"),
  17293. name: "Front",
  17294. image: {
  17295. source: "./media/characters/natalie-kellon/front.svg",
  17296. extra: 1214 / 1141,
  17297. bottom: 0.02
  17298. }
  17299. },
  17300. },
  17301. [
  17302. {
  17303. name: "Micro",
  17304. height: math.unit(1 / 16, "inch")
  17305. },
  17306. {
  17307. name: "Tiny",
  17308. height: math.unit(4, "inches")
  17309. },
  17310. {
  17311. name: "Normal",
  17312. height: math.unit(5 + 7 / 12, "feet"),
  17313. default: true
  17314. },
  17315. {
  17316. name: "Amazon",
  17317. height: math.unit(12, "feet")
  17318. },
  17319. {
  17320. name: "Giantess",
  17321. height: math.unit(160, "meters")
  17322. },
  17323. {
  17324. name: "Titaness",
  17325. height: math.unit(800, "meters")
  17326. },
  17327. ]
  17328. ))
  17329. characterMakers.push(() => makeCharacter(
  17330. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17331. {
  17332. front: {
  17333. height: math.unit(6, "feet"),
  17334. weight: math.unit(150, "lb"),
  17335. name: "Front",
  17336. image: {
  17337. source: "./media/characters/alluria/front.svg",
  17338. extra: 806 / 738,
  17339. bottom: 0.01
  17340. }
  17341. },
  17342. side: {
  17343. height: math.unit(6, "feet"),
  17344. weight: math.unit(150, "lb"),
  17345. name: "Side",
  17346. image: {
  17347. source: "./media/characters/alluria/side.svg",
  17348. extra: 800 / 750,
  17349. }
  17350. },
  17351. back: {
  17352. height: math.unit(6, "feet"),
  17353. weight: math.unit(150, "lb"),
  17354. name: "Back",
  17355. image: {
  17356. source: "./media/characters/alluria/back.svg",
  17357. extra: 806 / 738,
  17358. }
  17359. },
  17360. frontMaid: {
  17361. height: math.unit(6, "feet"),
  17362. weight: math.unit(150, "lb"),
  17363. name: "Front (Maid)",
  17364. image: {
  17365. source: "./media/characters/alluria/front-maid.svg",
  17366. extra: 806 / 738,
  17367. bottom: 0.01
  17368. }
  17369. },
  17370. sideMaid: {
  17371. height: math.unit(6, "feet"),
  17372. weight: math.unit(150, "lb"),
  17373. name: "Side (Maid)",
  17374. image: {
  17375. source: "./media/characters/alluria/side-maid.svg",
  17376. extra: 800 / 750,
  17377. bottom: 0.005
  17378. }
  17379. },
  17380. backMaid: {
  17381. height: math.unit(6, "feet"),
  17382. weight: math.unit(150, "lb"),
  17383. name: "Back (Maid)",
  17384. image: {
  17385. source: "./media/characters/alluria/back-maid.svg",
  17386. extra: 806 / 738,
  17387. }
  17388. },
  17389. },
  17390. [
  17391. {
  17392. name: "Micro",
  17393. height: math.unit(6, "inches"),
  17394. default: true
  17395. },
  17396. ]
  17397. ))
  17398. characterMakers.push(() => makeCharacter(
  17399. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17400. {
  17401. front: {
  17402. height: math.unit(6, "feet"),
  17403. weight: math.unit(150, "lb"),
  17404. name: "Front",
  17405. image: {
  17406. source: "./media/characters/kyle/front.svg",
  17407. extra: 1069 / 962,
  17408. bottom: 77.228 / 1727.45
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Macro",
  17415. height: math.unit(150, "feet"),
  17416. default: true
  17417. },
  17418. ]
  17419. ))
  17420. characterMakers.push(() => makeCharacter(
  17421. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17422. {
  17423. front: {
  17424. height: math.unit(6, "feet"),
  17425. weight: math.unit(300, "lb"),
  17426. name: "Front",
  17427. image: {
  17428. source: "./media/characters/duncan/front.svg",
  17429. extra: 1650 / 1482,
  17430. bottom: 0.05
  17431. }
  17432. },
  17433. },
  17434. [
  17435. {
  17436. name: "Macro",
  17437. height: math.unit(100, "feet"),
  17438. default: true
  17439. },
  17440. ]
  17441. ))
  17442. characterMakers.push(() => makeCharacter(
  17443. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17444. {
  17445. front: {
  17446. height: math.unit(5 + 4 / 12, "feet"),
  17447. weight: math.unit(220, "lb"),
  17448. name: "Front",
  17449. image: {
  17450. source: "./media/characters/memory/front.svg",
  17451. extra: 3641 / 3545,
  17452. bottom: 0.03
  17453. }
  17454. },
  17455. back: {
  17456. height: math.unit(5 + 4 / 12, "feet"),
  17457. weight: math.unit(220, "lb"),
  17458. name: "Back",
  17459. image: {
  17460. source: "./media/characters/memory/back.svg",
  17461. extra: 3641 / 3545,
  17462. bottom: 0.025
  17463. }
  17464. },
  17465. frontSkirt: {
  17466. height: math.unit(5 + 4 / 12, "feet"),
  17467. weight: math.unit(220, "lb"),
  17468. name: "Front (Skirt)",
  17469. image: {
  17470. source: "./media/characters/memory/front-skirt.svg",
  17471. extra: 3641 / 3545,
  17472. bottom: 0.03
  17473. }
  17474. },
  17475. frontDress: {
  17476. height: math.unit(5 + 4 / 12, "feet"),
  17477. weight: math.unit(220, "lb"),
  17478. name: "Front (Dress)",
  17479. image: {
  17480. source: "./media/characters/memory/front-dress.svg",
  17481. extra: 3641 / 3545,
  17482. bottom: 0.03
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Micro",
  17489. height: math.unit(6, "inches"),
  17490. default: true
  17491. },
  17492. {
  17493. name: "Normal",
  17494. height: math.unit(5 + 4 / 12, "feet")
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17500. {
  17501. front: {
  17502. height: math.unit(4 + 11 / 12, "feet"),
  17503. weight: math.unit(100, "lb"),
  17504. name: "Front",
  17505. image: {
  17506. source: "./media/characters/luno/front.svg",
  17507. extra: 1535 / 1487,
  17508. bottom: 0.03
  17509. }
  17510. },
  17511. },
  17512. [
  17513. {
  17514. name: "Micro",
  17515. height: math.unit(3, "inches")
  17516. },
  17517. {
  17518. name: "Normal",
  17519. height: math.unit(4 + 11 / 12, "feet"),
  17520. default: true
  17521. },
  17522. {
  17523. name: "Macro",
  17524. height: math.unit(300, "feet")
  17525. },
  17526. {
  17527. name: "Megamacro",
  17528. height: math.unit(700, "miles")
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17534. {
  17535. front: {
  17536. height: math.unit(6 + 2 / 12, "feet"),
  17537. weight: math.unit(170, "lb"),
  17538. name: "Front",
  17539. image: {
  17540. source: "./media/characters/jamesy/front.svg",
  17541. extra: 440 / 382,
  17542. bottom: 0.005
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Micro",
  17549. height: math.unit(3, "inches")
  17550. },
  17551. {
  17552. name: "Normal",
  17553. height: math.unit(6 + 2 / 12, "feet"),
  17554. default: true
  17555. },
  17556. {
  17557. name: "Macro",
  17558. height: math.unit(300, "feet")
  17559. },
  17560. {
  17561. name: "Megamacro",
  17562. height: math.unit(700, "miles")
  17563. },
  17564. ]
  17565. ))
  17566. characterMakers.push(() => makeCharacter(
  17567. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17568. {
  17569. front: {
  17570. height: math.unit(6, "feet"),
  17571. weight: math.unit(160, "lb"),
  17572. name: "Front",
  17573. image: {
  17574. source: "./media/characters/mark/front.svg",
  17575. extra: 3300 / 3100,
  17576. bottom: 136.42 / 3440.47
  17577. }
  17578. },
  17579. },
  17580. [
  17581. {
  17582. name: "Macro",
  17583. height: math.unit(120, "meters")
  17584. },
  17585. {
  17586. name: "Bigger Macro",
  17587. height: math.unit(350, "meters")
  17588. },
  17589. {
  17590. name: "Megamacro",
  17591. height: math.unit(8, "km"),
  17592. default: true
  17593. },
  17594. {
  17595. name: "Continental",
  17596. height: math.unit(4550, "km")
  17597. },
  17598. {
  17599. name: "Planetary",
  17600. height: math.unit(65000, "km")
  17601. },
  17602. ]
  17603. ))
  17604. characterMakers.push(() => makeCharacter(
  17605. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17606. {
  17607. front: {
  17608. height: math.unit(6, "feet"),
  17609. weight: math.unit(400, "lb"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/mac/front.svg",
  17613. extra: 1048 / 987.7,
  17614. bottom: 60 / 1107.6,
  17615. }
  17616. },
  17617. },
  17618. [
  17619. {
  17620. name: "Macro",
  17621. height: math.unit(500, "feet"),
  17622. default: true
  17623. },
  17624. ]
  17625. ))
  17626. characterMakers.push(() => makeCharacter(
  17627. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17628. {
  17629. front: {
  17630. height: math.unit(5 + 2 / 12, "feet"),
  17631. weight: math.unit(190, "lb"),
  17632. name: "Front",
  17633. image: {
  17634. source: "./media/characters/bari/front.svg",
  17635. extra: 3156 / 2880,
  17636. bottom: 0.03
  17637. }
  17638. },
  17639. back: {
  17640. height: math.unit(5 + 2 / 12, "feet"),
  17641. weight: math.unit(190, "lb"),
  17642. name: "Back",
  17643. image: {
  17644. source: "./media/characters/bari/back.svg",
  17645. extra: 3260 / 2834,
  17646. bottom: 0.025
  17647. }
  17648. },
  17649. frontPlush: {
  17650. height: math.unit(5 + 2 / 12, "feet"),
  17651. weight: math.unit(190, "lb"),
  17652. name: "Front (Plush)",
  17653. image: {
  17654. source: "./media/characters/bari/front-plush.svg",
  17655. extra: 1112 / 1061,
  17656. bottom: 0.002
  17657. }
  17658. },
  17659. },
  17660. [
  17661. {
  17662. name: "Micro",
  17663. height: math.unit(3, "inches")
  17664. },
  17665. {
  17666. name: "Normal",
  17667. height: math.unit(5 + 2 / 12, "feet"),
  17668. default: true
  17669. },
  17670. {
  17671. name: "Macro",
  17672. height: math.unit(20, "feet")
  17673. },
  17674. ]
  17675. ))
  17676. characterMakers.push(() => makeCharacter(
  17677. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17678. {
  17679. front: {
  17680. height: math.unit(6 + 1 / 12, "feet"),
  17681. weight: math.unit(275, "lb"),
  17682. name: "Front",
  17683. image: {
  17684. source: "./media/characters/hunter-misha-raven/front.svg"
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Mortal",
  17691. height: math.unit(6 + 1 / 12, "feet")
  17692. },
  17693. {
  17694. name: "Divine",
  17695. height: math.unit(1.12134e34, "parsecs"),
  17696. default: true
  17697. },
  17698. ]
  17699. ))
  17700. characterMakers.push(() => makeCharacter(
  17701. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17702. {
  17703. front: {
  17704. height: math.unit(6 + 3 / 12, "feet"),
  17705. weight: math.unit(220, "lb"),
  17706. name: "Front",
  17707. image: {
  17708. source: "./media/characters/max-calore/front.svg",
  17709. extra: 1700 / 1648,
  17710. bottom: 0.01
  17711. }
  17712. },
  17713. back: {
  17714. height: math.unit(6 + 3 / 12, "feet"),
  17715. weight: math.unit(220, "lb"),
  17716. name: "Back",
  17717. image: {
  17718. source: "./media/characters/max-calore/back.svg",
  17719. extra: 1700 / 1648,
  17720. bottom: 0.01
  17721. }
  17722. },
  17723. },
  17724. [
  17725. {
  17726. name: "Normal",
  17727. height: math.unit(6 + 3 / 12, "feet"),
  17728. default: true
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17734. {
  17735. side: {
  17736. height: math.unit(2 + 8 / 12, "feet"),
  17737. weight: math.unit(99, "lb"),
  17738. name: "Side",
  17739. image: {
  17740. source: "./media/characters/aspen/side.svg",
  17741. extra: 152 / 138,
  17742. bottom: 0.032
  17743. }
  17744. },
  17745. },
  17746. [
  17747. {
  17748. name: "Normal",
  17749. height: math.unit(2 + 8 / 12, "feet"),
  17750. default: true
  17751. },
  17752. ]
  17753. ))
  17754. characterMakers.push(() => makeCharacter(
  17755. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17756. {
  17757. side: {
  17758. height: math.unit(3 + 2 / 12, "feet"),
  17759. weight: math.unit(224, "lb"),
  17760. name: "Side",
  17761. image: {
  17762. source: "./media/characters/sheila-feral-wolf/side.svg",
  17763. extra: 179 / 166,
  17764. bottom: 0.03
  17765. }
  17766. },
  17767. },
  17768. [
  17769. {
  17770. name: "Normal",
  17771. height: math.unit(3 + 2 / 12, "feet"),
  17772. default: true
  17773. },
  17774. ]
  17775. ))
  17776. characterMakers.push(() => makeCharacter(
  17777. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17778. {
  17779. side: {
  17780. height: math.unit(1 + 9 / 12, "feet"),
  17781. weight: math.unit(38, "lb"),
  17782. name: "Side",
  17783. image: {
  17784. source: "./media/characters/michelle/side.svg",
  17785. extra: 147 / 136.7,
  17786. bottom: 0.03
  17787. }
  17788. },
  17789. },
  17790. [
  17791. {
  17792. name: "Normal",
  17793. height: math.unit(1 + 9 / 12, "feet"),
  17794. default: true
  17795. },
  17796. ]
  17797. ))
  17798. characterMakers.push(() => makeCharacter(
  17799. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17800. {
  17801. front: {
  17802. height: math.unit(1.54, "feet"),
  17803. weight: math.unit(50, "lb"),
  17804. name: "Front",
  17805. image: {
  17806. source: "./media/characters/nino/front.svg"
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(1.54, "feet"),
  17814. default: true
  17815. },
  17816. ]
  17817. ))
  17818. characterMakers.push(() => makeCharacter(
  17819. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17820. {
  17821. front: {
  17822. height: math.unit(1.49, "feet"),
  17823. weight: math.unit(45, "lb"),
  17824. name: "Front",
  17825. image: {
  17826. source: "./media/characters/viola/front.svg"
  17827. }
  17828. },
  17829. },
  17830. [
  17831. {
  17832. name: "Normal",
  17833. height: math.unit(1.49, "feet"),
  17834. default: true
  17835. },
  17836. ]
  17837. ))
  17838. characterMakers.push(() => makeCharacter(
  17839. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17840. {
  17841. front: {
  17842. height: math.unit(6 + 5 / 12, "feet"),
  17843. weight: math.unit(580, "lb"),
  17844. name: "Front",
  17845. image: {
  17846. source: "./media/characters/atlas/front.svg",
  17847. extra: 298.5 / 290,
  17848. bottom: 0.015
  17849. }
  17850. },
  17851. },
  17852. [
  17853. {
  17854. name: "Normal",
  17855. height: math.unit(6 + 5 / 12, "feet"),
  17856. default: true
  17857. },
  17858. ]
  17859. ))
  17860. characterMakers.push(() => makeCharacter(
  17861. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17862. {
  17863. side: {
  17864. height: math.unit(15.6, "inches"),
  17865. weight: math.unit(10, "lb"),
  17866. name: "Side",
  17867. image: {
  17868. source: "./media/characters/davy/side.svg",
  17869. extra: 200 / 170,
  17870. bottom: 0.01
  17871. }
  17872. },
  17873. },
  17874. [
  17875. {
  17876. name: "Normal",
  17877. height: math.unit(15.6, "inches"),
  17878. default: true
  17879. },
  17880. ]
  17881. ))
  17882. characterMakers.push(() => makeCharacter(
  17883. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17884. {
  17885. side: {
  17886. height: math.unit(4 + 8 / 12, "feet"),
  17887. weight: math.unit(166, "lb"),
  17888. name: "Side",
  17889. image: {
  17890. source: "./media/characters/fiona/side.svg",
  17891. extra: 232 / 220,
  17892. bottom: 0.03
  17893. }
  17894. },
  17895. },
  17896. [
  17897. {
  17898. name: "Normal",
  17899. height: math.unit(4 + 8 / 12, "feet"),
  17900. default: true
  17901. },
  17902. ]
  17903. ))
  17904. characterMakers.push(() => makeCharacter(
  17905. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17906. {
  17907. front: {
  17908. height: math.unit(26, "inches"),
  17909. weight: math.unit(35, "lb"),
  17910. name: "Front",
  17911. image: {
  17912. source: "./media/characters/lyla/front.svg",
  17913. bottom: 0.1
  17914. }
  17915. },
  17916. },
  17917. [
  17918. {
  17919. name: "Normal",
  17920. height: math.unit(3, "feet"),
  17921. default: true
  17922. },
  17923. ]
  17924. ))
  17925. characterMakers.push(() => makeCharacter(
  17926. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17927. {
  17928. side: {
  17929. height: math.unit(1.8, "feet"),
  17930. weight: math.unit(44, "lb"),
  17931. name: "Side",
  17932. image: {
  17933. source: "./media/characters/perseus/side.svg",
  17934. bottom: 0.21
  17935. }
  17936. },
  17937. },
  17938. [
  17939. {
  17940. name: "Normal",
  17941. height: math.unit(1.8, "feet"),
  17942. default: true
  17943. },
  17944. ]
  17945. ))
  17946. characterMakers.push(() => makeCharacter(
  17947. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17948. {
  17949. side: {
  17950. height: math.unit(4 + 2 / 12, "feet"),
  17951. weight: math.unit(20, "lb"),
  17952. name: "Side",
  17953. image: {
  17954. source: "./media/characters/remus/side.svg"
  17955. }
  17956. },
  17957. },
  17958. [
  17959. {
  17960. name: "Normal",
  17961. height: math.unit(4 + 2 / 12, "feet"),
  17962. default: true
  17963. },
  17964. ]
  17965. ))
  17966. characterMakers.push(() => makeCharacter(
  17967. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17968. {
  17969. front: {
  17970. height: math.unit(4 + 11 / 12, "feet"),
  17971. weight: math.unit(114, "lb"),
  17972. name: "Front",
  17973. image: {
  17974. source: "./media/characters/raf/front.svg",
  17975. extra: 1504/1339,
  17976. bottom: 26/1530
  17977. }
  17978. },
  17979. side: {
  17980. height: math.unit(4 + 11 / 12, "feet"),
  17981. weight: math.unit(114, "lb"),
  17982. name: "Side",
  17983. image: {
  17984. source: "./media/characters/raf/side.svg",
  17985. extra: 1466/1316,
  17986. bottom: 29/1495
  17987. }
  17988. },
  17989. paw: {
  17990. height: math.unit(1.45, "feet"),
  17991. name: "Paw",
  17992. image: {
  17993. source: "./media/characters/raf/paw.svg"
  17994. },
  17995. extraAttributes: {
  17996. "toeSize": {
  17997. name: "Toe Size",
  17998. power: 2,
  17999. type: "area",
  18000. base: math.unit(0.004, "m^2")
  18001. },
  18002. "padSize": {
  18003. name: "Pad Size",
  18004. power: 2,
  18005. type: "area",
  18006. base: math.unit(0.04, "m^2")
  18007. },
  18008. "footSize": {
  18009. name: "Foot Size",
  18010. power: 2,
  18011. type: "area",
  18012. base: math.unit(0.08, "m^2")
  18013. },
  18014. }
  18015. },
  18016. },
  18017. [
  18018. {
  18019. name: "Micro",
  18020. height: math.unit(2, "inches")
  18021. },
  18022. {
  18023. name: "Normal",
  18024. height: math.unit(4 + 11 / 12, "feet"),
  18025. default: true
  18026. },
  18027. {
  18028. name: "Macro",
  18029. height: math.unit(70, "feet")
  18030. },
  18031. ]
  18032. ))
  18033. characterMakers.push(() => makeCharacter(
  18034. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18035. {
  18036. front: {
  18037. height: math.unit(1.5, "meters"),
  18038. weight: math.unit(68, "kg"),
  18039. name: "Front",
  18040. image: {
  18041. source: "./media/characters/liam-einarr/front.svg",
  18042. extra: 2822 / 2666
  18043. }
  18044. },
  18045. back: {
  18046. height: math.unit(1.5, "meters"),
  18047. weight: math.unit(68, "kg"),
  18048. name: "Back",
  18049. image: {
  18050. source: "./media/characters/liam-einarr/back.svg",
  18051. extra: 2822 / 2666,
  18052. bottom: 0.015
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Normal",
  18059. height: math.unit(1.5, "meters"),
  18060. default: true
  18061. },
  18062. {
  18063. name: "Macro",
  18064. height: math.unit(150, "meters")
  18065. },
  18066. {
  18067. name: "Megamacro",
  18068. height: math.unit(35, "km")
  18069. },
  18070. ]
  18071. ))
  18072. characterMakers.push(() => makeCharacter(
  18073. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18074. {
  18075. front: {
  18076. height: math.unit(6, "feet"),
  18077. weight: math.unit(75, "kg"),
  18078. name: "Front",
  18079. image: {
  18080. source: "./media/characters/linda/front.svg",
  18081. extra: 930 / 874,
  18082. bottom: 0.004
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Normal",
  18089. height: math.unit(6, "feet"),
  18090. default: true
  18091. },
  18092. ]
  18093. ))
  18094. characterMakers.push(() => makeCharacter(
  18095. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18096. {
  18097. front: {
  18098. height: math.unit(6 + 8 / 12, "feet"),
  18099. weight: math.unit(220, "lb"),
  18100. name: "Front",
  18101. image: {
  18102. source: "./media/characters/caylex/front.svg",
  18103. extra: 821 / 772,
  18104. bottom: 0.07
  18105. }
  18106. },
  18107. back: {
  18108. height: math.unit(6 + 8 / 12, "feet"),
  18109. weight: math.unit(220, "lb"),
  18110. name: "Back",
  18111. image: {
  18112. source: "./media/characters/caylex/back.svg",
  18113. extra: 821 / 772,
  18114. bottom: 0.022
  18115. }
  18116. },
  18117. hand: {
  18118. height: math.unit(1.25, "feet"),
  18119. name: "Hand",
  18120. image: {
  18121. source: "./media/characters/caylex/hand.svg"
  18122. }
  18123. },
  18124. foot: {
  18125. height: math.unit(1.6, "feet"),
  18126. name: "Foot",
  18127. image: {
  18128. source: "./media/characters/caylex/foot.svg"
  18129. }
  18130. },
  18131. armored: {
  18132. height: math.unit(6 + 8 / 12, "feet"),
  18133. weight: math.unit(250, "lb"),
  18134. name: "Armored",
  18135. image: {
  18136. source: "./media/characters/caylex/armored.svg",
  18137. extra: 1420 / 1310,
  18138. bottom: 0.045
  18139. }
  18140. },
  18141. },
  18142. [
  18143. {
  18144. name: "Normal",
  18145. height: math.unit(6 + 8 / 12, "feet"),
  18146. default: true
  18147. },
  18148. {
  18149. name: "Normal+",
  18150. height: math.unit(12, "feet")
  18151. },
  18152. ]
  18153. ))
  18154. characterMakers.push(() => makeCharacter(
  18155. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18156. {
  18157. front: {
  18158. height: math.unit(7 + 6 / 12, "feet"),
  18159. weight: math.unit(288, "lb"),
  18160. name: "Front",
  18161. image: {
  18162. source: "./media/characters/alana/front.svg",
  18163. extra: 679 / 653,
  18164. bottom: 22.5 / 701
  18165. }
  18166. },
  18167. },
  18168. [
  18169. {
  18170. name: "Normal",
  18171. height: math.unit(7 + 6 / 12, "feet")
  18172. },
  18173. {
  18174. name: "Large",
  18175. height: math.unit(50, "feet")
  18176. },
  18177. {
  18178. name: "Macro",
  18179. height: math.unit(100, "feet"),
  18180. default: true
  18181. },
  18182. {
  18183. name: "Macro+",
  18184. height: math.unit(200, "feet")
  18185. },
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18190. {
  18191. front: {
  18192. height: math.unit(6 + 1 / 12, "feet"),
  18193. weight: math.unit(210, "lb"),
  18194. name: "Front",
  18195. image: {
  18196. source: "./media/characters/hasani/front.svg",
  18197. extra: 244 / 232,
  18198. bottom: 0.01
  18199. }
  18200. },
  18201. back: {
  18202. height: math.unit(6 + 1 / 12, "feet"),
  18203. weight: math.unit(210, "lb"),
  18204. name: "Back",
  18205. image: {
  18206. source: "./media/characters/hasani/back.svg",
  18207. extra: 244 / 232,
  18208. bottom: 0.01
  18209. }
  18210. },
  18211. },
  18212. [
  18213. {
  18214. name: "Normal",
  18215. height: math.unit(6 + 1 / 12, "feet")
  18216. },
  18217. {
  18218. name: "Macro",
  18219. height: math.unit(175, "feet"),
  18220. default: true
  18221. },
  18222. ]
  18223. ))
  18224. characterMakers.push(() => makeCharacter(
  18225. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18226. {
  18227. front: {
  18228. height: math.unit(1.82, "meters"),
  18229. weight: math.unit(140, "lb"),
  18230. name: "Front",
  18231. image: {
  18232. source: "./media/characters/nita/front.svg",
  18233. extra: 2473 / 2363,
  18234. bottom: 0.01
  18235. }
  18236. },
  18237. },
  18238. [
  18239. {
  18240. name: "Normal",
  18241. height: math.unit(1.82, "m")
  18242. },
  18243. {
  18244. name: "Macro",
  18245. height: math.unit(300, "m")
  18246. },
  18247. {
  18248. name: "Mistake Canon",
  18249. height: math.unit(0.5, "miles"),
  18250. default: true
  18251. },
  18252. {
  18253. name: "Big Mistake",
  18254. height: math.unit(13, "miles")
  18255. },
  18256. {
  18257. name: "Playing God",
  18258. height: math.unit(2450, "miles")
  18259. },
  18260. ]
  18261. ))
  18262. characterMakers.push(() => makeCharacter(
  18263. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18264. {
  18265. front: {
  18266. height: math.unit(4, "feet"),
  18267. weight: math.unit(120, "lb"),
  18268. name: "Front",
  18269. image: {
  18270. source: "./media/characters/shiriko/front.svg",
  18271. extra: 970/934,
  18272. bottom: 5/975
  18273. }
  18274. },
  18275. },
  18276. [
  18277. {
  18278. name: "Normal",
  18279. height: math.unit(4, "feet"),
  18280. default: true
  18281. },
  18282. ]
  18283. ))
  18284. characterMakers.push(() => makeCharacter(
  18285. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18286. {
  18287. front: {
  18288. height: math.unit(6, "feet"),
  18289. name: "front",
  18290. image: {
  18291. source: "./media/characters/deja/front.svg",
  18292. extra: 926 / 840,
  18293. bottom: 0.07
  18294. }
  18295. },
  18296. },
  18297. [
  18298. {
  18299. name: "Planck Length",
  18300. height: math.unit(1.6e-35, "meters")
  18301. },
  18302. {
  18303. name: "Normal",
  18304. height: math.unit(30.48, "meters"),
  18305. default: true
  18306. },
  18307. {
  18308. name: "Universal",
  18309. height: math.unit(8.8e26, "meters")
  18310. },
  18311. ]
  18312. ))
  18313. characterMakers.push(() => makeCharacter(
  18314. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18315. {
  18316. side: {
  18317. height: math.unit(8, "feet"),
  18318. weight: math.unit(6300, "lb"),
  18319. name: "Side",
  18320. image: {
  18321. source: "./media/characters/anima/side.svg",
  18322. bottom: 0.035
  18323. }
  18324. },
  18325. },
  18326. [
  18327. {
  18328. name: "Normal",
  18329. height: math.unit(8, "feet"),
  18330. default: true
  18331. },
  18332. ]
  18333. ))
  18334. characterMakers.push(() => makeCharacter(
  18335. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18336. {
  18337. front: {
  18338. height: math.unit(8, "feet"),
  18339. weight: math.unit(350, "lb"),
  18340. name: "Front",
  18341. image: {
  18342. source: "./media/characters/bianca/front.svg",
  18343. extra: 234 / 225,
  18344. bottom: 0.03
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Normal",
  18351. height: math.unit(8, "feet"),
  18352. default: true
  18353. },
  18354. ]
  18355. ))
  18356. characterMakers.push(() => makeCharacter(
  18357. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18358. {
  18359. front: {
  18360. height: math.unit(11 + 5/12, "feet"),
  18361. weight: math.unit(1200, "lb"),
  18362. name: "Front",
  18363. image: {
  18364. source: "./media/characters/adinia/front.svg",
  18365. extra: 1767/1641,
  18366. bottom: 44/1811
  18367. },
  18368. extraAttributes: {
  18369. "energyIntake": {
  18370. name: "Energy Intake",
  18371. power: 3,
  18372. type: "energy",
  18373. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18374. },
  18375. }
  18376. },
  18377. back: {
  18378. height: math.unit(11 + 5/12, "feet"),
  18379. weight: math.unit(1200, "lb"),
  18380. name: "Back",
  18381. image: {
  18382. source: "./media/characters/adinia/back.svg",
  18383. extra: 1834/1684,
  18384. bottom: 14/1848
  18385. },
  18386. extraAttributes: {
  18387. "energyIntake": {
  18388. name: "Energy Intake",
  18389. power: 3,
  18390. type: "energy",
  18391. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18392. },
  18393. }
  18394. },
  18395. maw: {
  18396. height: math.unit(3.79, "feet"),
  18397. name: "Maw",
  18398. image: {
  18399. source: "./media/characters/adinia/maw.svg"
  18400. }
  18401. },
  18402. rump: {
  18403. height: math.unit(4.6, "feet"),
  18404. name: "Rump",
  18405. image: {
  18406. source: "./media/characters/adinia/rump.svg"
  18407. }
  18408. },
  18409. },
  18410. [
  18411. {
  18412. name: "Normal",
  18413. height: math.unit(11 + 5 / 12, "feet"),
  18414. default: true
  18415. },
  18416. ]
  18417. ))
  18418. characterMakers.push(() => makeCharacter(
  18419. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18420. {
  18421. front: {
  18422. height: math.unit(3, "meters"),
  18423. weight: math.unit(200, "kg"),
  18424. name: "Front",
  18425. image: {
  18426. source: "./media/characters/lykasa/front.svg",
  18427. extra: 1076 / 976,
  18428. bottom: 0.06
  18429. }
  18430. },
  18431. },
  18432. [
  18433. {
  18434. name: "Normal",
  18435. height: math.unit(3, "meters")
  18436. },
  18437. {
  18438. name: "Kaiju",
  18439. height: math.unit(120, "meters"),
  18440. default: true
  18441. },
  18442. {
  18443. name: "Mega Kaiju",
  18444. height: math.unit(240, "km")
  18445. },
  18446. {
  18447. name: "Giga Kaiju",
  18448. height: math.unit(400, "megameters")
  18449. },
  18450. {
  18451. name: "Tera Kaiju",
  18452. height: math.unit(800, "gigameters")
  18453. },
  18454. {
  18455. name: "Kaiju Dragon Goddess",
  18456. height: math.unit(26, "zettaparsecs")
  18457. },
  18458. ]
  18459. ))
  18460. characterMakers.push(() => makeCharacter(
  18461. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18462. {
  18463. side: {
  18464. height: math.unit(283 / 124 * 6, "feet"),
  18465. weight: math.unit(35000, "lb"),
  18466. name: "Side",
  18467. image: {
  18468. source: "./media/characters/malfaren/side.svg",
  18469. extra: 1310/529,
  18470. bottom: 24/1334
  18471. }
  18472. },
  18473. front: {
  18474. height: math.unit(22.36, "feet"),
  18475. weight: math.unit(35000, "lb"),
  18476. name: "Front",
  18477. image: {
  18478. source: "./media/characters/malfaren/front.svg",
  18479. extra: 1237/1115,
  18480. bottom: 32/1269
  18481. }
  18482. },
  18483. maw: {
  18484. height: math.unit(6.9, "feet"),
  18485. name: "Maw",
  18486. image: {
  18487. source: "./media/characters/malfaren/maw.svg"
  18488. }
  18489. },
  18490. dick: {
  18491. height: math.unit(6.19, "feet"),
  18492. name: "Dick",
  18493. image: {
  18494. source: "./media/characters/malfaren/dick.svg"
  18495. }
  18496. },
  18497. eye: {
  18498. height: math.unit(0.69, "feet"),
  18499. name: "Eye",
  18500. image: {
  18501. source: "./media/characters/malfaren/eye.svg"
  18502. }
  18503. },
  18504. },
  18505. [
  18506. {
  18507. name: "Big",
  18508. height: math.unit(283 / 162 * 6, "feet"),
  18509. },
  18510. {
  18511. name: "Bigger",
  18512. height: math.unit(283 / 124 * 6, "feet")
  18513. },
  18514. {
  18515. name: "Massive",
  18516. height: math.unit(283 / 92 * 6, "feet"),
  18517. default: true
  18518. },
  18519. {
  18520. name: "👀💦",
  18521. height: math.unit(283 / 73 * 6, "feet"),
  18522. },
  18523. ]
  18524. ))
  18525. characterMakers.push(() => makeCharacter(
  18526. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18527. {
  18528. front: {
  18529. height: math.unit(1.7, "m"),
  18530. weight: math.unit(70, "kg"),
  18531. name: "Front",
  18532. image: {
  18533. source: "./media/characters/kernel/front.svg",
  18534. extra: 222 / 210,
  18535. bottom: 0.007
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Nano",
  18542. height: math.unit(17, "micrometers")
  18543. },
  18544. {
  18545. name: "Micro",
  18546. height: math.unit(1.7, "mm")
  18547. },
  18548. {
  18549. name: "Small",
  18550. height: math.unit(1.7, "cm")
  18551. },
  18552. {
  18553. name: "Normal",
  18554. height: math.unit(1.7, "m"),
  18555. default: true
  18556. },
  18557. ]
  18558. ))
  18559. characterMakers.push(() => makeCharacter(
  18560. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18561. {
  18562. front: {
  18563. height: math.unit(1.75, "meters"),
  18564. weight: math.unit(65, "kg"),
  18565. name: "Front",
  18566. image: {
  18567. source: "./media/characters/jayne-folest/front.svg",
  18568. extra: 2115 / 2007,
  18569. bottom: 0.02
  18570. }
  18571. },
  18572. back: {
  18573. height: math.unit(1.75, "meters"),
  18574. weight: math.unit(65, "kg"),
  18575. name: "Back",
  18576. image: {
  18577. source: "./media/characters/jayne-folest/back.svg",
  18578. extra: 2115 / 2007,
  18579. bottom: 0.005
  18580. }
  18581. },
  18582. frontClothed: {
  18583. height: math.unit(1.75, "meters"),
  18584. weight: math.unit(65, "kg"),
  18585. name: "Front (Clothed)",
  18586. image: {
  18587. source: "./media/characters/jayne-folest/front-clothed.svg",
  18588. extra: 2115 / 2007,
  18589. bottom: 0.035
  18590. }
  18591. },
  18592. hand: {
  18593. height: math.unit(1 / 1.260, "feet"),
  18594. name: "Hand",
  18595. image: {
  18596. source: "./media/characters/jayne-folest/hand.svg"
  18597. }
  18598. },
  18599. foot: {
  18600. height: math.unit(1 / 0.918, "feet"),
  18601. name: "Foot",
  18602. image: {
  18603. source: "./media/characters/jayne-folest/foot.svg"
  18604. }
  18605. },
  18606. },
  18607. [
  18608. {
  18609. name: "Micro",
  18610. height: math.unit(4, "cm")
  18611. },
  18612. {
  18613. name: "Normal",
  18614. height: math.unit(1.75, "meters")
  18615. },
  18616. {
  18617. name: "Macro",
  18618. height: math.unit(47.5, "meters"),
  18619. default: true
  18620. },
  18621. ]
  18622. ))
  18623. characterMakers.push(() => makeCharacter(
  18624. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18625. {
  18626. front: {
  18627. height: math.unit(180, "cm"),
  18628. weight: math.unit(70, "kg"),
  18629. name: "Front",
  18630. image: {
  18631. source: "./media/characters/algier/front.svg",
  18632. extra: 596 / 572,
  18633. bottom: 0.04
  18634. }
  18635. },
  18636. back: {
  18637. height: math.unit(180, "cm"),
  18638. weight: math.unit(70, "kg"),
  18639. name: "Back",
  18640. image: {
  18641. source: "./media/characters/algier/back.svg",
  18642. extra: 596 / 572,
  18643. bottom: 0.025
  18644. }
  18645. },
  18646. frontdressed: {
  18647. height: math.unit(180, "cm"),
  18648. weight: math.unit(150, "kg"),
  18649. name: "Front-dressed",
  18650. image: {
  18651. source: "./media/characters/algier/front-dressed.svg",
  18652. extra: 596 / 572,
  18653. bottom: 0.038
  18654. }
  18655. },
  18656. },
  18657. [
  18658. {
  18659. name: "Micro",
  18660. height: math.unit(5, "cm")
  18661. },
  18662. {
  18663. name: "Normal",
  18664. height: math.unit(180, "cm"),
  18665. default: true
  18666. },
  18667. {
  18668. name: "Macro",
  18669. height: math.unit(64, "m")
  18670. },
  18671. ]
  18672. ))
  18673. characterMakers.push(() => makeCharacter(
  18674. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18675. {
  18676. upright: {
  18677. height: math.unit(7, "feet"),
  18678. weight: math.unit(300, "lb"),
  18679. name: "Upright",
  18680. image: {
  18681. source: "./media/characters/pretzel/upright.svg",
  18682. extra: 534 / 522,
  18683. bottom: 0.065
  18684. }
  18685. },
  18686. sprawling: {
  18687. height: math.unit(3.75, "feet"),
  18688. weight: math.unit(300, "lb"),
  18689. name: "Sprawling",
  18690. image: {
  18691. source: "./media/characters/pretzel/sprawling.svg",
  18692. extra: 314 / 281,
  18693. bottom: 0.1
  18694. }
  18695. },
  18696. tongue: {
  18697. height: math.unit(2, "feet"),
  18698. name: "Tongue",
  18699. image: {
  18700. source: "./media/characters/pretzel/tongue.svg"
  18701. }
  18702. },
  18703. },
  18704. [
  18705. {
  18706. name: "Normal",
  18707. height: math.unit(7, "feet"),
  18708. default: true
  18709. },
  18710. {
  18711. name: "Oversized",
  18712. height: math.unit(15, "feet")
  18713. },
  18714. {
  18715. name: "Huge",
  18716. height: math.unit(30, "feet")
  18717. },
  18718. {
  18719. name: "Macro",
  18720. height: math.unit(250, "feet")
  18721. },
  18722. ]
  18723. ))
  18724. characterMakers.push(() => makeCharacter(
  18725. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18726. {
  18727. sideFront: {
  18728. height: math.unit(5 + 2 / 12, "feet"),
  18729. weight: math.unit(120, "lb"),
  18730. name: "Front Side",
  18731. image: {
  18732. source: "./media/characters/roxi/side-front.svg",
  18733. extra: 2924 / 2717,
  18734. bottom: 0.08
  18735. }
  18736. },
  18737. sideBack: {
  18738. height: math.unit(5 + 2 / 12, "feet"),
  18739. weight: math.unit(120, "lb"),
  18740. name: "Back Side",
  18741. image: {
  18742. source: "./media/characters/roxi/side-back.svg",
  18743. extra: 2904 / 2693,
  18744. bottom: 0.06
  18745. }
  18746. },
  18747. front: {
  18748. height: math.unit(5 + 2 / 12, "feet"),
  18749. weight: math.unit(120, "lb"),
  18750. name: "Front",
  18751. image: {
  18752. source: "./media/characters/roxi/front.svg",
  18753. extra: 2028 / 1907,
  18754. bottom: 0.01
  18755. }
  18756. },
  18757. frontAlt: {
  18758. height: math.unit(5 + 2 / 12, "feet"),
  18759. weight: math.unit(120, "lb"),
  18760. name: "Front (Alt)",
  18761. image: {
  18762. source: "./media/characters/roxi/front-alt.svg",
  18763. extra: 1828 / 1798,
  18764. bottom: 0.01
  18765. }
  18766. },
  18767. sitting: {
  18768. height: math.unit(2.8, "feet"),
  18769. weight: math.unit(120, "lb"),
  18770. name: "Sitting",
  18771. image: {
  18772. source: "./media/characters/roxi/sitting.svg",
  18773. extra: 2660 / 2462,
  18774. bottom: 0.1
  18775. }
  18776. },
  18777. },
  18778. [
  18779. {
  18780. name: "Normal",
  18781. height: math.unit(5 + 2 / 12, "feet"),
  18782. default: true
  18783. },
  18784. ]
  18785. ))
  18786. characterMakers.push(() => makeCharacter(
  18787. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18788. {
  18789. side: {
  18790. height: math.unit(55, "feet"),
  18791. weight: math.unit(153, "tons"),
  18792. name: "Side",
  18793. image: {
  18794. source: "./media/characters/shadow/side.svg",
  18795. extra: 701 / 628,
  18796. bottom: 0.02
  18797. }
  18798. },
  18799. flying: {
  18800. height: math.unit(145, "feet"),
  18801. weight: math.unit(153, "tons"),
  18802. name: "Flying",
  18803. image: {
  18804. source: "./media/characters/shadow/flying.svg"
  18805. }
  18806. },
  18807. },
  18808. [
  18809. {
  18810. name: "Normal",
  18811. height: math.unit(55, "feet"),
  18812. default: true
  18813. },
  18814. ]
  18815. ))
  18816. characterMakers.push(() => makeCharacter(
  18817. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18818. {
  18819. front: {
  18820. height: math.unit(6, "feet"),
  18821. weight: math.unit(200, "lb"),
  18822. name: "Front",
  18823. image: {
  18824. source: "./media/characters/marcie/front.svg",
  18825. extra: 960 / 876,
  18826. bottom: 58 / 1017.87
  18827. }
  18828. },
  18829. },
  18830. [
  18831. {
  18832. name: "Macro",
  18833. height: math.unit(1, "mile"),
  18834. default: true
  18835. },
  18836. ]
  18837. ))
  18838. characterMakers.push(() => makeCharacter(
  18839. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18840. {
  18841. front: {
  18842. height: math.unit(7, "feet"),
  18843. weight: math.unit(200, "lb"),
  18844. name: "Front",
  18845. image: {
  18846. source: "./media/characters/kachina/front.svg",
  18847. extra: 1290.68 / 1119,
  18848. bottom: 36.5 / 1327.18
  18849. }
  18850. },
  18851. },
  18852. [
  18853. {
  18854. name: "Normal",
  18855. height: math.unit(7, "feet"),
  18856. default: true
  18857. },
  18858. ]
  18859. ))
  18860. characterMakers.push(() => makeCharacter(
  18861. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18862. {
  18863. looking: {
  18864. height: math.unit(2, "meters"),
  18865. weight: math.unit(300, "kg"),
  18866. name: "Looking",
  18867. image: {
  18868. source: "./media/characters/kash/looking.svg",
  18869. extra: 474 / 344,
  18870. bottom: 0.03
  18871. }
  18872. },
  18873. side: {
  18874. height: math.unit(2, "meters"),
  18875. weight: math.unit(300, "kg"),
  18876. name: "Side",
  18877. image: {
  18878. source: "./media/characters/kash/side.svg",
  18879. extra: 302 / 251,
  18880. bottom: 0.03
  18881. }
  18882. },
  18883. front: {
  18884. height: math.unit(2, "meters"),
  18885. weight: math.unit(300, "kg"),
  18886. name: "Front",
  18887. image: {
  18888. source: "./media/characters/kash/front.svg",
  18889. extra: 495 / 360,
  18890. bottom: 0.015
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Normal",
  18897. height: math.unit(2, "meters"),
  18898. default: true
  18899. },
  18900. {
  18901. name: "Big",
  18902. height: math.unit(3, "meters")
  18903. },
  18904. {
  18905. name: "Large",
  18906. height: math.unit(5, "meters")
  18907. },
  18908. ]
  18909. ))
  18910. characterMakers.push(() => makeCharacter(
  18911. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18912. {
  18913. feeding: {
  18914. height: math.unit(6.7, "feet"),
  18915. weight: math.unit(350, "lb"),
  18916. name: "Feeding",
  18917. image: {
  18918. source: "./media/characters/lalim/feeding.svg",
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Normal",
  18925. height: math.unit(6.7, "feet"),
  18926. default: true
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18932. {
  18933. front: {
  18934. height: math.unit(9.5, "feet"),
  18935. weight: math.unit(600, "lb"),
  18936. name: "Front",
  18937. image: {
  18938. source: "./media/characters/de'vout/front.svg",
  18939. extra: 1443 / 1328,
  18940. bottom: 0.025
  18941. }
  18942. },
  18943. back: {
  18944. height: math.unit(9.5, "feet"),
  18945. weight: math.unit(600, "lb"),
  18946. name: "Back",
  18947. image: {
  18948. source: "./media/characters/de'vout/back.svg",
  18949. extra: 1443 / 1328
  18950. }
  18951. },
  18952. frontDressed: {
  18953. height: math.unit(9.5, "feet"),
  18954. weight: math.unit(600, "lb"),
  18955. name: "Front (Dressed",
  18956. image: {
  18957. source: "./media/characters/de'vout/front-dressed.svg",
  18958. extra: 1443 / 1328,
  18959. bottom: 0.025
  18960. }
  18961. },
  18962. backDressed: {
  18963. height: math.unit(9.5, "feet"),
  18964. weight: math.unit(600, "lb"),
  18965. name: "Back (Dressed",
  18966. image: {
  18967. source: "./media/characters/de'vout/back-dressed.svg",
  18968. extra: 1443 / 1328
  18969. }
  18970. },
  18971. },
  18972. [
  18973. {
  18974. name: "Normal",
  18975. height: math.unit(9.5, "feet"),
  18976. default: true
  18977. },
  18978. ]
  18979. ))
  18980. characterMakers.push(() => makeCharacter(
  18981. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18982. {
  18983. front: {
  18984. height: math.unit(8, "feet"),
  18985. weight: math.unit(225, "lb"),
  18986. name: "Front",
  18987. image: {
  18988. source: "./media/characters/talana/front.svg",
  18989. extra: 1410 / 1300,
  18990. bottom: 0.015
  18991. }
  18992. },
  18993. frontDressed: {
  18994. height: math.unit(8, "feet"),
  18995. weight: math.unit(225, "lb"),
  18996. name: "Front (Dressed",
  18997. image: {
  18998. source: "./media/characters/talana/front-dressed.svg",
  18999. extra: 1410 / 1300,
  19000. bottom: 0.015
  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: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19014. {
  19015. side: {
  19016. height: math.unit(7.2, "feet"),
  19017. weight: math.unit(150, "lb"),
  19018. name: "Side",
  19019. image: {
  19020. source: "./media/characters/xeauvok/side.svg",
  19021. extra: 1975 / 1523,
  19022. bottom: 0.07
  19023. }
  19024. },
  19025. },
  19026. [
  19027. {
  19028. name: "Normal",
  19029. height: math.unit(7.2, "feet"),
  19030. default: true
  19031. },
  19032. ]
  19033. ))
  19034. characterMakers.push(() => makeCharacter(
  19035. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19036. {
  19037. side: {
  19038. height: math.unit(4, "meters"),
  19039. weight: math.unit(2200, "kg"),
  19040. name: "Side",
  19041. image: {
  19042. source: "./media/characters/zara/side.svg",
  19043. extra: 765/744,
  19044. bottom: 156/921
  19045. }
  19046. },
  19047. },
  19048. [
  19049. {
  19050. name: "Normal",
  19051. height: math.unit(4, "meters"),
  19052. default: true
  19053. },
  19054. ]
  19055. ))
  19056. characterMakers.push(() => makeCharacter(
  19057. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19058. {
  19059. side: {
  19060. height: math.unit(6, "feet"),
  19061. weight: math.unit(150, "lb"),
  19062. name: "Side",
  19063. image: {
  19064. source: "./media/characters/richard-dragon/side.svg",
  19065. extra: 845 / 340,
  19066. bottom: 0.017
  19067. }
  19068. },
  19069. maw: {
  19070. height: math.unit(2.97, "feet"),
  19071. name: "Maw",
  19072. image: {
  19073. source: "./media/characters/richard-dragon/maw.svg"
  19074. }
  19075. },
  19076. },
  19077. [
  19078. ]
  19079. ))
  19080. characterMakers.push(() => makeCharacter(
  19081. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19082. {
  19083. front: {
  19084. height: math.unit(4, "feet"),
  19085. weight: math.unit(100, "lb"),
  19086. name: "Front",
  19087. image: {
  19088. source: "./media/characters/richard-smeargle/front.svg",
  19089. extra: 2952 / 2820,
  19090. bottom: 0.028
  19091. }
  19092. },
  19093. },
  19094. [
  19095. {
  19096. name: "Normal",
  19097. height: math.unit(4, "feet"),
  19098. default: true
  19099. },
  19100. {
  19101. name: "Dynamax",
  19102. height: math.unit(20, "meters")
  19103. },
  19104. ]
  19105. ))
  19106. characterMakers.push(() => makeCharacter(
  19107. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19108. {
  19109. front: {
  19110. height: math.unit(6, "feet"),
  19111. weight: math.unit(110, "lb"),
  19112. name: "Front",
  19113. image: {
  19114. source: "./media/characters/klay/front.svg",
  19115. extra: 962 / 883,
  19116. bottom: 0.04
  19117. }
  19118. },
  19119. back: {
  19120. height: math.unit(6, "feet"),
  19121. weight: math.unit(110, "lb"),
  19122. name: "Back",
  19123. image: {
  19124. source: "./media/characters/klay/back.svg",
  19125. extra: 962 / 883
  19126. }
  19127. },
  19128. beans: {
  19129. height: math.unit(1.15, "feet"),
  19130. name: "Beans",
  19131. image: {
  19132. source: "./media/characters/klay/beans.svg"
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Micro",
  19139. height: math.unit(6, "inches")
  19140. },
  19141. {
  19142. name: "Mini",
  19143. height: math.unit(3, "feet")
  19144. },
  19145. {
  19146. name: "Normal",
  19147. height: math.unit(6, "feet"),
  19148. default: true
  19149. },
  19150. {
  19151. name: "Big",
  19152. height: math.unit(25, "feet")
  19153. },
  19154. {
  19155. name: "Macro",
  19156. height: math.unit(100, "feet")
  19157. },
  19158. {
  19159. name: "Megamacro",
  19160. height: math.unit(400, "feet")
  19161. },
  19162. ]
  19163. ))
  19164. characterMakers.push(() => makeCharacter(
  19165. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19166. {
  19167. front: {
  19168. height: math.unit(6, "feet"),
  19169. weight: math.unit(160, "lb"),
  19170. name: "Front",
  19171. image: {
  19172. source: "./media/characters/marcus/front.svg",
  19173. extra: 734 / 676,
  19174. bottom: 0.03
  19175. }
  19176. },
  19177. },
  19178. [
  19179. {
  19180. name: "Little",
  19181. height: math.unit(6, "feet")
  19182. },
  19183. {
  19184. name: "Normal",
  19185. height: math.unit(110, "feet"),
  19186. default: true
  19187. },
  19188. {
  19189. name: "Macro",
  19190. height: math.unit(250, "feet")
  19191. },
  19192. {
  19193. name: "Megamacro",
  19194. height: math.unit(1000, "feet")
  19195. },
  19196. ]
  19197. ))
  19198. characterMakers.push(() => makeCharacter(
  19199. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19200. {
  19201. front: {
  19202. height: math.unit(7, "feet"),
  19203. weight: math.unit(275, "lb"),
  19204. name: "Front",
  19205. image: {
  19206. source: "./media/characters/claude-delroute/front.svg",
  19207. extra: 902/827,
  19208. bottom: 26/928
  19209. }
  19210. },
  19211. side: {
  19212. height: math.unit(7, "feet"),
  19213. weight: math.unit(275, "lb"),
  19214. name: "Side",
  19215. image: {
  19216. source: "./media/characters/claude-delroute/side.svg",
  19217. extra: 908/853,
  19218. bottom: 16/924
  19219. }
  19220. },
  19221. back: {
  19222. height: math.unit(7, "feet"),
  19223. weight: math.unit(275, "lb"),
  19224. name: "Back",
  19225. image: {
  19226. source: "./media/characters/claude-delroute/back.svg",
  19227. extra: 911/829,
  19228. bottom: 18/929
  19229. }
  19230. },
  19231. maw: {
  19232. height: math.unit(0.6407, "meters"),
  19233. name: "Maw",
  19234. image: {
  19235. source: "./media/characters/claude-delroute/maw.svg"
  19236. }
  19237. },
  19238. },
  19239. [
  19240. {
  19241. name: "Normal",
  19242. height: math.unit(7, "feet"),
  19243. default: true
  19244. },
  19245. {
  19246. name: "Lorge",
  19247. height: math.unit(20, "feet")
  19248. },
  19249. ]
  19250. ))
  19251. characterMakers.push(() => makeCharacter(
  19252. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19253. {
  19254. front: {
  19255. height: math.unit(8 + 4 / 12, "feet"),
  19256. weight: math.unit(600, "lb"),
  19257. name: "Front",
  19258. image: {
  19259. source: "./media/characters/dragonien/front.svg",
  19260. extra: 100 / 94,
  19261. bottom: 3.3 / 103.3445
  19262. }
  19263. },
  19264. back: {
  19265. height: math.unit(8 + 4 / 12, "feet"),
  19266. weight: math.unit(600, "lb"),
  19267. name: "Back",
  19268. image: {
  19269. source: "./media/characters/dragonien/back.svg",
  19270. extra: 776 / 746,
  19271. bottom: 6.4 / 782.0616
  19272. }
  19273. },
  19274. foot: {
  19275. height: math.unit(1.54, "feet"),
  19276. name: "Foot",
  19277. image: {
  19278. source: "./media/characters/dragonien/foot.svg",
  19279. }
  19280. },
  19281. },
  19282. [
  19283. {
  19284. name: "Normal",
  19285. height: math.unit(8 + 4 / 12, "feet"),
  19286. default: true
  19287. },
  19288. {
  19289. name: "Macro",
  19290. height: math.unit(200, "feet")
  19291. },
  19292. {
  19293. name: "Megamacro",
  19294. height: math.unit(1, "mile")
  19295. },
  19296. {
  19297. name: "Gigamacro",
  19298. height: math.unit(1000, "miles")
  19299. },
  19300. ]
  19301. ))
  19302. characterMakers.push(() => makeCharacter(
  19303. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19304. {
  19305. front: {
  19306. height: math.unit(5 + 2 / 12, "feet"),
  19307. weight: math.unit(110, "lb"),
  19308. name: "Front",
  19309. image: {
  19310. source: "./media/characters/desta/front.svg",
  19311. extra: 767 / 726,
  19312. bottom: 11.7 / 779
  19313. }
  19314. },
  19315. back: {
  19316. height: math.unit(5 + 2 / 12, "feet"),
  19317. weight: math.unit(110, "lb"),
  19318. name: "Back",
  19319. image: {
  19320. source: "./media/characters/desta/back.svg",
  19321. extra: 777 / 728,
  19322. bottom: 6 / 784
  19323. }
  19324. },
  19325. frontAlt: {
  19326. height: math.unit(5 + 2 / 12, "feet"),
  19327. weight: math.unit(110, "lb"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/desta/front-alt.svg",
  19331. extra: 1482 / 1417
  19332. }
  19333. },
  19334. side: {
  19335. height: math.unit(5 + 2 / 12, "feet"),
  19336. weight: math.unit(110, "lb"),
  19337. name: "Side",
  19338. image: {
  19339. source: "./media/characters/desta/side.svg",
  19340. extra: 2579 / 2491,
  19341. bottom: 0.053
  19342. }
  19343. },
  19344. },
  19345. [
  19346. {
  19347. name: "Micro",
  19348. height: math.unit(6, "inches")
  19349. },
  19350. {
  19351. name: "Normal",
  19352. height: math.unit(5 + 2 / 12, "feet"),
  19353. default: true
  19354. },
  19355. {
  19356. name: "Macro",
  19357. height: math.unit(62, "feet")
  19358. },
  19359. {
  19360. name: "Megamacro",
  19361. height: math.unit(1800, "feet")
  19362. },
  19363. ]
  19364. ))
  19365. characterMakers.push(() => makeCharacter(
  19366. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19367. {
  19368. front: {
  19369. height: math.unit(10, "feet"),
  19370. weight: math.unit(700, "lb"),
  19371. name: "Front",
  19372. image: {
  19373. source: "./media/characters/storm-alystar/front.svg",
  19374. extra: 2112 / 1898,
  19375. bottom: 0.034
  19376. }
  19377. },
  19378. },
  19379. [
  19380. {
  19381. name: "Micro",
  19382. height: math.unit(3.5, "inches")
  19383. },
  19384. {
  19385. name: "Normal",
  19386. height: math.unit(10, "feet"),
  19387. default: true
  19388. },
  19389. {
  19390. name: "Macro",
  19391. height: math.unit(400, "feet")
  19392. },
  19393. {
  19394. name: "Deific",
  19395. height: math.unit(60, "miles")
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19401. {
  19402. front: {
  19403. height: math.unit(2.35, "meters"),
  19404. weight: math.unit(119, "kg"),
  19405. name: "Front",
  19406. image: {
  19407. source: "./media/characters/ilia/front.svg",
  19408. extra: 1285 / 1255,
  19409. bottom: 0.06
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(2.35, "meters")
  19417. },
  19418. {
  19419. name: "Macro",
  19420. height: math.unit(140, "meters"),
  19421. default: true
  19422. },
  19423. {
  19424. name: "Megamacro",
  19425. height: math.unit(100, "miles")
  19426. },
  19427. ]
  19428. ))
  19429. characterMakers.push(() => makeCharacter(
  19430. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19431. {
  19432. front: {
  19433. height: math.unit(6 + 5 / 12, "feet"),
  19434. weight: math.unit(190, "lb"),
  19435. name: "Front",
  19436. image: {
  19437. source: "./media/characters/kingdead/front.svg",
  19438. extra: 1228 / 1177
  19439. }
  19440. },
  19441. },
  19442. [
  19443. {
  19444. name: "Micro",
  19445. height: math.unit(7, "inches")
  19446. },
  19447. {
  19448. name: "Normal",
  19449. height: math.unit(6 + 5 / 12, "feet")
  19450. },
  19451. {
  19452. name: "Macro",
  19453. height: math.unit(150, "feet"),
  19454. default: true
  19455. },
  19456. {
  19457. name: "Megamacro",
  19458. height: math.unit(200, "miles")
  19459. },
  19460. ]
  19461. ))
  19462. characterMakers.push(() => makeCharacter(
  19463. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19464. {
  19465. front: {
  19466. height: math.unit(8, "feet"),
  19467. weight: math.unit(600, "lb"),
  19468. name: "Front",
  19469. image: {
  19470. source: "./media/characters/kyrehx/front.svg",
  19471. extra: 1195 / 1095,
  19472. bottom: 0.034
  19473. }
  19474. },
  19475. },
  19476. [
  19477. {
  19478. name: "Micro",
  19479. height: math.unit(2, "inches")
  19480. },
  19481. {
  19482. name: "Normal",
  19483. height: math.unit(8, "feet"),
  19484. default: true
  19485. },
  19486. {
  19487. name: "Macro",
  19488. height: math.unit(255, "feet")
  19489. },
  19490. ]
  19491. ))
  19492. characterMakers.push(() => makeCharacter(
  19493. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19494. {
  19495. front: {
  19496. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19497. weight: math.unit(184, "lb"),
  19498. name: "Front",
  19499. image: {
  19500. source: "./media/characters/xang/front.svg",
  19501. extra: 845 / 755
  19502. }
  19503. },
  19504. },
  19505. [
  19506. {
  19507. name: "Normal",
  19508. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19509. default: true
  19510. },
  19511. {
  19512. name: "Macro",
  19513. height: math.unit(0.935 * 146, "feet")
  19514. },
  19515. {
  19516. name: "Megamacro",
  19517. height: math.unit(0.935 * 3, "miles")
  19518. },
  19519. ]
  19520. ))
  19521. characterMakers.push(() => makeCharacter(
  19522. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19523. {
  19524. frontDressed: {
  19525. height: math.unit(5 + 7 / 12, "feet"),
  19526. weight: math.unit(140, "lb"),
  19527. name: "Front (Dressed)",
  19528. image: {
  19529. source: "./media/characters/doc-weardno/front-dressed.svg",
  19530. extra: 263 / 234
  19531. }
  19532. },
  19533. backDressed: {
  19534. height: math.unit(5 + 7 / 12, "feet"),
  19535. weight: math.unit(140, "lb"),
  19536. name: "Back (Dressed)",
  19537. image: {
  19538. source: "./media/characters/doc-weardno/back-dressed.svg",
  19539. extra: 266 / 238
  19540. }
  19541. },
  19542. front: {
  19543. height: math.unit(5 + 7 / 12, "feet"),
  19544. weight: math.unit(140, "lb"),
  19545. name: "Front",
  19546. image: {
  19547. source: "./media/characters/doc-weardno/front.svg",
  19548. extra: 254 / 233
  19549. }
  19550. },
  19551. },
  19552. [
  19553. {
  19554. name: "Micro",
  19555. height: math.unit(3, "inches")
  19556. },
  19557. {
  19558. name: "Normal",
  19559. height: math.unit(5 + 7 / 12, "feet"),
  19560. default: true
  19561. },
  19562. {
  19563. name: "Macro",
  19564. height: math.unit(25, "feet")
  19565. },
  19566. {
  19567. name: "Megamacro",
  19568. height: math.unit(2, "miles")
  19569. },
  19570. ]
  19571. ))
  19572. characterMakers.push(() => makeCharacter(
  19573. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19574. {
  19575. front: {
  19576. height: math.unit(6 + 2 / 12, "feet"),
  19577. weight: math.unit(153, "lb"),
  19578. name: "Front",
  19579. image: {
  19580. source: "./media/characters/seth-whilst/front.svg",
  19581. bottom: 0.07
  19582. }
  19583. },
  19584. },
  19585. [
  19586. {
  19587. name: "Micro",
  19588. height: math.unit(5, "inches")
  19589. },
  19590. {
  19591. name: "Normal",
  19592. height: math.unit(6 + 2 / 12, "feet"),
  19593. default: true
  19594. },
  19595. ]
  19596. ))
  19597. characterMakers.push(() => makeCharacter(
  19598. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19599. {
  19600. front: {
  19601. height: math.unit(3, "inches"),
  19602. weight: math.unit(8, "grams"),
  19603. name: "Front",
  19604. image: {
  19605. source: "./media/characters/pocket-jabari/front.svg",
  19606. extra: 1024 / 974,
  19607. bottom: 0.039
  19608. }
  19609. },
  19610. },
  19611. [
  19612. {
  19613. name: "Minimicro",
  19614. height: math.unit(8, "mm")
  19615. },
  19616. {
  19617. name: "Micro",
  19618. height: math.unit(3, "inches"),
  19619. default: true
  19620. },
  19621. {
  19622. name: "Normal",
  19623. height: math.unit(3, "feet")
  19624. },
  19625. ]
  19626. ))
  19627. characterMakers.push(() => makeCharacter(
  19628. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19629. {
  19630. frontDressed: {
  19631. height: math.unit(15, "feet"),
  19632. weight: math.unit(3280, "lb"),
  19633. name: "Front (Dressed)",
  19634. image: {
  19635. source: "./media/characters/sapphy/front-dressed.svg",
  19636. extra: 1951/1654,
  19637. bottom: 194/2145
  19638. },
  19639. form: "anthro",
  19640. default: true
  19641. },
  19642. backDressed: {
  19643. height: math.unit(15, "feet"),
  19644. weight: math.unit(3280, "lb"),
  19645. name: "Back (Dressed)",
  19646. image: {
  19647. source: "./media/characters/sapphy/back-dressed.svg",
  19648. extra: 2058/1918,
  19649. bottom: 125/2183
  19650. },
  19651. form: "anthro"
  19652. },
  19653. frontNude: {
  19654. height: math.unit(15, "feet"),
  19655. weight: math.unit(3280, "lb"),
  19656. name: "Front (Nude)",
  19657. image: {
  19658. source: "./media/characters/sapphy/front-nude.svg",
  19659. extra: 1951/1654,
  19660. bottom: 194/2145
  19661. },
  19662. form: "anthro"
  19663. },
  19664. backNude: {
  19665. height: math.unit(15, "feet"),
  19666. weight: math.unit(3280, "lb"),
  19667. name: "Back (Nude)",
  19668. image: {
  19669. source: "./media/characters/sapphy/back-nude.svg",
  19670. extra: 2058/1918,
  19671. bottom: 125/2183
  19672. },
  19673. form: "anthro"
  19674. },
  19675. full: {
  19676. height: math.unit(15, "feet"),
  19677. weight: math.unit(3280, "lb"),
  19678. name: "Full",
  19679. image: {
  19680. source: "./media/characters/sapphy/full.svg",
  19681. extra: 1396/1317,
  19682. bottom: 44/1440
  19683. },
  19684. form: "anthro"
  19685. },
  19686. dick: {
  19687. height: math.unit(3.8, "feet"),
  19688. name: "Dick",
  19689. image: {
  19690. source: "./media/characters/sapphy/dick.svg"
  19691. },
  19692. form: "anthro"
  19693. },
  19694. feral: {
  19695. height: math.unit(35, "feet"),
  19696. weight: math.unit(160, "tons"),
  19697. name: "Feral",
  19698. image: {
  19699. source: "./media/characters/sapphy/feral.svg",
  19700. extra: 1050/573,
  19701. bottom: 60/1110
  19702. },
  19703. form: "feral",
  19704. default: true
  19705. },
  19706. },
  19707. [
  19708. {
  19709. name: "Normal",
  19710. height: math.unit(15, "feet"),
  19711. form: "anthro"
  19712. },
  19713. {
  19714. name: "Casual Macro",
  19715. height: math.unit(120, "feet"),
  19716. form: "anthro"
  19717. },
  19718. {
  19719. name: "Macro",
  19720. height: math.unit(2150, "feet"),
  19721. default: true,
  19722. form: "anthro"
  19723. },
  19724. {
  19725. name: "Megamacro",
  19726. height: math.unit(8, "miles"),
  19727. form: "anthro"
  19728. },
  19729. {
  19730. name: "Galaxy Mom",
  19731. height: math.unit(6, "megalightyears"),
  19732. form: "anthro"
  19733. },
  19734. {
  19735. name: "Normal",
  19736. height: math.unit(35, "feet"),
  19737. form: "feral",
  19738. default: true
  19739. },
  19740. {
  19741. name: "Macro",
  19742. height: math.unit(300, "feet"),
  19743. form: "feral"
  19744. },
  19745. {
  19746. name: "Galaxy Mom",
  19747. height: math.unit(10, "megalightyears"),
  19748. form: "feral"
  19749. },
  19750. ],
  19751. {
  19752. "anthro": {
  19753. name: "Anthro",
  19754. default: true
  19755. },
  19756. "feral": {
  19757. name: "Feral"
  19758. }
  19759. }
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19763. {
  19764. front: {
  19765. height: math.unit(6, "feet"),
  19766. weight: math.unit(170, "lb"),
  19767. name: "Front",
  19768. image: {
  19769. source: "./media/characters/kiro/front.svg",
  19770. extra: 1064 / 1012,
  19771. bottom: 0.052
  19772. }
  19773. },
  19774. },
  19775. [
  19776. {
  19777. name: "Micro",
  19778. height: math.unit(6, "inches")
  19779. },
  19780. {
  19781. name: "Normal",
  19782. height: math.unit(6, "feet"),
  19783. default: true
  19784. },
  19785. {
  19786. name: "Macro",
  19787. height: math.unit(72, "feet")
  19788. },
  19789. ]
  19790. ))
  19791. characterMakers.push(() => makeCharacter(
  19792. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19793. {
  19794. front: {
  19795. height: math.unit(5 + 9 / 12, "feet"),
  19796. weight: math.unit(175, "lb"),
  19797. name: "Front",
  19798. image: {
  19799. source: "./media/characters/irishfox/front.svg",
  19800. extra: 1912 / 1680,
  19801. bottom: 0.02
  19802. }
  19803. },
  19804. },
  19805. [
  19806. {
  19807. name: "Nano",
  19808. height: math.unit(1, "mm")
  19809. },
  19810. {
  19811. name: "Micro",
  19812. height: math.unit(2, "inches")
  19813. },
  19814. {
  19815. name: "Normal",
  19816. height: math.unit(5 + 9 / 12, "feet"),
  19817. default: true
  19818. },
  19819. {
  19820. name: "Macro",
  19821. height: math.unit(45, "feet")
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19827. {
  19828. front: {
  19829. height: math.unit(6 + 1 / 12, "feet"),
  19830. weight: math.unit(75, "lb"),
  19831. name: "Front",
  19832. image: {
  19833. source: "./media/characters/aronai-sieyes/front.svg",
  19834. extra: 1532/1450,
  19835. bottom: 42/1574
  19836. }
  19837. },
  19838. side: {
  19839. height: math.unit(6 + 1 / 12, "feet"),
  19840. weight: math.unit(75, "lb"),
  19841. name: "Side",
  19842. image: {
  19843. source: "./media/characters/aronai-sieyes/side.svg",
  19844. extra: 1422/1365,
  19845. bottom: 148/1570
  19846. }
  19847. },
  19848. back: {
  19849. height: math.unit(6 + 1 / 12, "feet"),
  19850. weight: math.unit(75, "lb"),
  19851. name: "Back",
  19852. image: {
  19853. source: "./media/characters/aronai-sieyes/back.svg",
  19854. extra: 1526/1464,
  19855. bottom: 51/1577
  19856. }
  19857. },
  19858. dressed: {
  19859. height: math.unit(6 + 1 / 12, "feet"),
  19860. weight: math.unit(75, "lb"),
  19861. name: "Dressed",
  19862. image: {
  19863. source: "./media/characters/aronai-sieyes/dressed.svg",
  19864. extra: 1559/1483,
  19865. bottom: 39/1598
  19866. }
  19867. },
  19868. slit: {
  19869. height: math.unit(1.3, "feet"),
  19870. name: "Slit",
  19871. image: {
  19872. source: "./media/characters/aronai-sieyes/slit.svg"
  19873. }
  19874. },
  19875. slitSpread: {
  19876. height: math.unit(0.9, "feet"),
  19877. name: "Slit (Spread)",
  19878. image: {
  19879. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19880. }
  19881. },
  19882. rump: {
  19883. height: math.unit(1.3, "feet"),
  19884. name: "Rump",
  19885. image: {
  19886. source: "./media/characters/aronai-sieyes/rump.svg"
  19887. }
  19888. },
  19889. maw: {
  19890. height: math.unit(1.25, "feet"),
  19891. name: "Maw",
  19892. image: {
  19893. source: "./media/characters/aronai-sieyes/maw.svg"
  19894. }
  19895. },
  19896. feral: {
  19897. height: math.unit(18, "feet"),
  19898. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19899. name: "Feral",
  19900. image: {
  19901. source: "./media/characters/aronai-sieyes/feral.svg",
  19902. extra: 1530 / 1240,
  19903. bottom: 0.035
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Micro",
  19910. height: math.unit(2, "inches")
  19911. },
  19912. {
  19913. name: "Normal",
  19914. height: math.unit(6 + 1 / 12, "feet"),
  19915. default: true
  19916. }
  19917. ]
  19918. ))
  19919. characterMakers.push(() => makeCharacter(
  19920. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19921. {
  19922. front: {
  19923. height: math.unit(12, "feet"),
  19924. weight: math.unit(410, "kg"),
  19925. name: "Front",
  19926. image: {
  19927. source: "./media/characters/xuna/front.svg",
  19928. extra: 2184 / 1980
  19929. }
  19930. },
  19931. side: {
  19932. height: math.unit(12, "feet"),
  19933. weight: math.unit(410, "kg"),
  19934. name: "Side",
  19935. image: {
  19936. source: "./media/characters/xuna/side.svg",
  19937. extra: 2184 / 1980
  19938. }
  19939. },
  19940. back: {
  19941. height: math.unit(12, "feet"),
  19942. weight: math.unit(410, "kg"),
  19943. name: "Back",
  19944. image: {
  19945. source: "./media/characters/xuna/back.svg",
  19946. extra: 2184 / 1980
  19947. }
  19948. },
  19949. },
  19950. [
  19951. {
  19952. name: "Nano glow",
  19953. height: math.unit(10, "nm")
  19954. },
  19955. {
  19956. name: "Micro floof",
  19957. height: math.unit(0.3, "m")
  19958. },
  19959. {
  19960. name: "Huggable softy boi",
  19961. height: math.unit(3.6576, "m"),
  19962. default: true
  19963. },
  19964. {
  19965. name: "Admirable floof",
  19966. height: math.unit(80, "meters")
  19967. },
  19968. {
  19969. name: "Gentle macro",
  19970. height: math.unit(300, "meters")
  19971. },
  19972. {
  19973. name: "Very careful floof",
  19974. height: math.unit(3200, "meters")
  19975. },
  19976. {
  19977. name: "The mega floof",
  19978. height: math.unit(36000, "meters")
  19979. },
  19980. {
  19981. name: "Giga-fur-Wicker",
  19982. height: math.unit(4800000, "meters")
  19983. },
  19984. {
  19985. name: "Licky world",
  19986. height: math.unit(20000000, "meters")
  19987. },
  19988. {
  19989. name: "Floofy cyan sun",
  19990. height: math.unit(1500000000, "meters")
  19991. },
  19992. {
  19993. name: "Milky Wicker",
  19994. height: math.unit(1000000000000000000000, "meters")
  19995. },
  19996. {
  19997. name: "The observing Wicker",
  19998. height: math.unit(999999999999999999999999999, "meters")
  19999. },
  20000. ]
  20001. ))
  20002. characterMakers.push(() => makeCharacter(
  20003. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20004. {
  20005. front: {
  20006. height: math.unit(5 + 9 / 12, "feet"),
  20007. weight: math.unit(150, "lb"),
  20008. name: "Front",
  20009. image: {
  20010. source: "./media/characters/arokha-sieyes/front.svg",
  20011. extra: 1425 / 1284,
  20012. bottom: 0.05
  20013. }
  20014. },
  20015. },
  20016. [
  20017. {
  20018. name: "Normal",
  20019. height: math.unit(5 + 9 / 12, "feet")
  20020. },
  20021. {
  20022. name: "Macro",
  20023. height: math.unit(30, "meters"),
  20024. default: true
  20025. },
  20026. ]
  20027. ))
  20028. characterMakers.push(() => makeCharacter(
  20029. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20030. {
  20031. front: {
  20032. height: math.unit(6, "feet"),
  20033. weight: math.unit(180, "lb"),
  20034. name: "Front",
  20035. image: {
  20036. source: "./media/characters/arokh-sieyes/front.svg",
  20037. extra: 1830 / 1769,
  20038. bottom: 0.01
  20039. }
  20040. },
  20041. },
  20042. [
  20043. {
  20044. name: "Normal",
  20045. height: math.unit(6, "feet")
  20046. },
  20047. {
  20048. name: "Macro",
  20049. height: math.unit(30, "meters"),
  20050. default: true
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20056. {
  20057. side: {
  20058. height: math.unit(13 + 1 / 12, "feet"),
  20059. weight: math.unit(8.5, "tonnes"),
  20060. name: "Side",
  20061. image: {
  20062. source: "./media/characters/goldeneye/side.svg",
  20063. extra: 1182 / 778,
  20064. bottom: 0.067
  20065. }
  20066. },
  20067. paw: {
  20068. height: math.unit(3.4, "feet"),
  20069. name: "Paw",
  20070. image: {
  20071. source: "./media/characters/goldeneye/paw.svg"
  20072. }
  20073. },
  20074. },
  20075. [
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(13 + 1 / 12, "feet"),
  20079. default: true
  20080. },
  20081. ]
  20082. ))
  20083. characterMakers.push(() => makeCharacter(
  20084. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20085. {
  20086. front: {
  20087. height: math.unit(6 + 1 / 12, "feet"),
  20088. weight: math.unit(210, "lb"),
  20089. name: "Front",
  20090. image: {
  20091. source: "./media/characters/leonardo-lycheborne/front.svg",
  20092. extra: 776/723,
  20093. bottom: 34/810
  20094. }
  20095. },
  20096. side: {
  20097. height: math.unit(6 + 1 / 12, "feet"),
  20098. weight: math.unit(210, "lb"),
  20099. name: "Side",
  20100. image: {
  20101. source: "./media/characters/leonardo-lycheborne/side.svg",
  20102. extra: 780/728,
  20103. bottom: 12/792
  20104. }
  20105. },
  20106. back: {
  20107. height: math.unit(6 + 1 / 12, "feet"),
  20108. weight: math.unit(210, "lb"),
  20109. name: "Back",
  20110. image: {
  20111. source: "./media/characters/leonardo-lycheborne/back.svg",
  20112. extra: 775/721,
  20113. bottom: 17/792
  20114. }
  20115. },
  20116. hand: {
  20117. height: math.unit(1.08, "feet"),
  20118. name: "Hand",
  20119. image: {
  20120. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20121. }
  20122. },
  20123. foot: {
  20124. height: math.unit(1.32, "feet"),
  20125. name: "Foot",
  20126. image: {
  20127. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20128. }
  20129. },
  20130. maw: {
  20131. height: math.unit(1, "feet"),
  20132. name: "Maw",
  20133. image: {
  20134. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20135. }
  20136. },
  20137. were: {
  20138. height: math.unit(20, "feet"),
  20139. weight: math.unit(7800, "lb"),
  20140. name: "Were",
  20141. image: {
  20142. source: "./media/characters/leonardo-lycheborne/were.svg",
  20143. extra: 1224/1165,
  20144. bottom: 72/1296
  20145. }
  20146. },
  20147. feral: {
  20148. height: math.unit(7.5, "feet"),
  20149. weight: math.unit(600, "lb"),
  20150. name: "Feral",
  20151. image: {
  20152. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20153. extra: 797/702,
  20154. bottom: 139/936
  20155. }
  20156. },
  20157. taur: {
  20158. height: math.unit(11, "feet"),
  20159. weight: math.unit(3300, "lb"),
  20160. name: "Taur",
  20161. image: {
  20162. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20163. extra: 1271/1197,
  20164. bottom: 47/1318
  20165. }
  20166. },
  20167. barghest: {
  20168. height: math.unit(11, "feet"),
  20169. weight: math.unit(1300, "lb"),
  20170. name: "Barghest",
  20171. image: {
  20172. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20173. extra: 1291/1204,
  20174. bottom: 37/1328
  20175. }
  20176. },
  20177. dick: {
  20178. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20179. name: "Dick",
  20180. image: {
  20181. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20182. }
  20183. },
  20184. dickWere: {
  20185. height: math.unit((20) / 3.8, "feet"),
  20186. name: "Dick (Were)",
  20187. image: {
  20188. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20189. }
  20190. },
  20191. },
  20192. [
  20193. {
  20194. name: "Normal",
  20195. height: math.unit(6 + 1 / 12, "feet"),
  20196. default: true
  20197. },
  20198. ]
  20199. ))
  20200. characterMakers.push(() => makeCharacter(
  20201. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20202. {
  20203. front: {
  20204. height: math.unit(10, "feet"),
  20205. weight: math.unit(350, "lb"),
  20206. name: "Front",
  20207. image: {
  20208. source: "./media/characters/jet/front.svg",
  20209. extra: 2050 / 1980,
  20210. bottom: 0.013
  20211. }
  20212. },
  20213. back: {
  20214. height: math.unit(10, "feet"),
  20215. weight: math.unit(350, "lb"),
  20216. name: "Back",
  20217. image: {
  20218. source: "./media/characters/jet/back.svg",
  20219. extra: 2050 / 1980,
  20220. bottom: 0.013
  20221. }
  20222. },
  20223. },
  20224. [
  20225. {
  20226. name: "Micro",
  20227. height: math.unit(6, "inches")
  20228. },
  20229. {
  20230. name: "Normal",
  20231. height: math.unit(10, "feet"),
  20232. default: true
  20233. },
  20234. {
  20235. name: "Macro",
  20236. height: math.unit(100, "feet")
  20237. },
  20238. ]
  20239. ))
  20240. characterMakers.push(() => makeCharacter(
  20241. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20242. {
  20243. front: {
  20244. height: math.unit(15, "feet"),
  20245. weight: math.unit(2800, "lb"),
  20246. name: "Front",
  20247. image: {
  20248. source: "./media/characters/tanarath/front.svg",
  20249. extra: 2392 / 2220,
  20250. bottom: 0.03
  20251. }
  20252. },
  20253. back: {
  20254. height: math.unit(15, "feet"),
  20255. weight: math.unit(2800, "lb"),
  20256. name: "Back",
  20257. image: {
  20258. source: "./media/characters/tanarath/back.svg",
  20259. extra: 2392 / 2220,
  20260. bottom: 0.03
  20261. }
  20262. },
  20263. },
  20264. [
  20265. {
  20266. name: "Normal",
  20267. height: math.unit(15, "feet"),
  20268. default: true
  20269. },
  20270. ]
  20271. ))
  20272. characterMakers.push(() => makeCharacter(
  20273. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20274. {
  20275. front: {
  20276. height: math.unit(7 + 1 / 12, "feet"),
  20277. weight: math.unit(175, "lb"),
  20278. name: "Front",
  20279. image: {
  20280. source: "./media/characters/patty-cattybatty/front.svg",
  20281. extra: 908 / 874,
  20282. bottom: 0.025
  20283. }
  20284. },
  20285. },
  20286. [
  20287. {
  20288. name: "Micro",
  20289. height: math.unit(1, "inch")
  20290. },
  20291. {
  20292. name: "Normal",
  20293. height: math.unit(7 + 1 / 12, "feet")
  20294. },
  20295. {
  20296. name: "Mini Macro",
  20297. height: math.unit(155, "feet")
  20298. },
  20299. {
  20300. name: "Macro",
  20301. height: math.unit(1077, "feet")
  20302. },
  20303. {
  20304. name: "Mega Macro",
  20305. height: math.unit(47650, "feet"),
  20306. default: true
  20307. },
  20308. {
  20309. name: "Giga Macro",
  20310. height: math.unit(440, "miles")
  20311. },
  20312. {
  20313. name: "Tera Macro",
  20314. height: math.unit(8700, "miles")
  20315. },
  20316. {
  20317. name: "Planetary Macro",
  20318. height: math.unit(32700, "miles")
  20319. },
  20320. {
  20321. name: "Solar Macro",
  20322. height: math.unit(550000, "miles")
  20323. },
  20324. {
  20325. name: "Celestial Macro",
  20326. height: math.unit(2.5, "AU")
  20327. },
  20328. ]
  20329. ))
  20330. characterMakers.push(() => makeCharacter(
  20331. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20332. {
  20333. front: {
  20334. height: math.unit(4 + 5 / 12, "feet"),
  20335. weight: math.unit(90, "lb"),
  20336. name: "Front",
  20337. image: {
  20338. source: "./media/characters/cappu/front.svg",
  20339. extra: 1247 / 1152,
  20340. bottom: 0.012
  20341. }
  20342. },
  20343. },
  20344. [
  20345. {
  20346. name: "Normal",
  20347. height: math.unit(4 + 5 / 12, "feet"),
  20348. default: true
  20349. },
  20350. ]
  20351. ))
  20352. characterMakers.push(() => makeCharacter(
  20353. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20354. {
  20355. frontDressed: {
  20356. height: math.unit(70, "cm"),
  20357. weight: math.unit(6, "kg"),
  20358. name: "Front (Dressed)",
  20359. image: {
  20360. source: "./media/characters/sebi/front-dressed.svg",
  20361. extra: 713.5 / 686.5,
  20362. bottom: 0.003
  20363. }
  20364. },
  20365. front: {
  20366. height: math.unit(70, "cm"),
  20367. weight: math.unit(5, "kg"),
  20368. name: "Front",
  20369. image: {
  20370. source: "./media/characters/sebi/front.svg",
  20371. extra: 713.5 / 686.5,
  20372. bottom: 0.003
  20373. }
  20374. }
  20375. },
  20376. [
  20377. {
  20378. name: "Normal",
  20379. height: math.unit(70, "cm"),
  20380. default: true
  20381. },
  20382. {
  20383. name: "Macro",
  20384. height: math.unit(8, "meters")
  20385. },
  20386. ]
  20387. ))
  20388. characterMakers.push(() => makeCharacter(
  20389. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20390. {
  20391. front: {
  20392. height: math.unit(6, "feet"),
  20393. weight: math.unit(150, "lb"),
  20394. name: "Front",
  20395. image: {
  20396. source: "./media/characters/typhek/front.svg",
  20397. extra: 1948 / 1929,
  20398. bottom: 0.025
  20399. }
  20400. },
  20401. side: {
  20402. height: math.unit(6, "feet"),
  20403. weight: math.unit(150, "lb"),
  20404. name: "Side",
  20405. image: {
  20406. source: "./media/characters/typhek/side.svg",
  20407. extra: 2034 / 2010,
  20408. bottom: 0.003
  20409. }
  20410. },
  20411. back: {
  20412. height: math.unit(6, "feet"),
  20413. weight: math.unit(150, "lb"),
  20414. name: "Back",
  20415. image: {
  20416. source: "./media/characters/typhek/back.svg",
  20417. extra: 2005 / 1978,
  20418. bottom: 0.004
  20419. }
  20420. },
  20421. palm: {
  20422. height: math.unit(1.2, "feet"),
  20423. name: "Palm",
  20424. image: {
  20425. source: "./media/characters/typhek/palm.svg"
  20426. }
  20427. },
  20428. fist: {
  20429. height: math.unit(1.1, "feet"),
  20430. name: "Fist",
  20431. image: {
  20432. source: "./media/characters/typhek/fist.svg"
  20433. }
  20434. },
  20435. foot: {
  20436. height: math.unit(1.57, "feet"),
  20437. name: "Foot",
  20438. image: {
  20439. source: "./media/characters/typhek/foot.svg"
  20440. }
  20441. },
  20442. sole: {
  20443. height: math.unit(2.05, "feet"),
  20444. name: "Sole",
  20445. image: {
  20446. source: "./media/characters/typhek/sole.svg"
  20447. }
  20448. },
  20449. },
  20450. [
  20451. {
  20452. name: "Macro",
  20453. height: math.unit(40, "stories"),
  20454. default: true
  20455. },
  20456. {
  20457. name: "Megamacro",
  20458. height: math.unit(1, "mile")
  20459. },
  20460. {
  20461. name: "Gigamacro",
  20462. height: math.unit(4000, "solarradii")
  20463. },
  20464. {
  20465. name: "Universal",
  20466. height: math.unit(1.1, "universes")
  20467. }
  20468. ]
  20469. ))
  20470. characterMakers.push(() => makeCharacter(
  20471. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20472. {
  20473. side: {
  20474. height: math.unit(5 + 7 / 12, "feet"),
  20475. weight: math.unit(150, "lb"),
  20476. name: "Side",
  20477. image: {
  20478. source: "./media/characters/kassy/side.svg",
  20479. extra: 1280 / 1225,
  20480. bottom: 0.002
  20481. }
  20482. },
  20483. front: {
  20484. height: math.unit(5 + 7 / 12, "feet"),
  20485. weight: math.unit(150, "lb"),
  20486. name: "Front",
  20487. image: {
  20488. source: "./media/characters/kassy/front.svg",
  20489. extra: 1280 / 1225,
  20490. bottom: 0.025
  20491. }
  20492. },
  20493. back: {
  20494. height: math.unit(5 + 7 / 12, "feet"),
  20495. weight: math.unit(150, "lb"),
  20496. name: "Back",
  20497. image: {
  20498. source: "./media/characters/kassy/back.svg",
  20499. extra: 1280 / 1225,
  20500. bottom: 0.002
  20501. }
  20502. },
  20503. foot: {
  20504. height: math.unit(1.266, "feet"),
  20505. name: "Foot",
  20506. image: {
  20507. source: "./media/characters/kassy/foot.svg"
  20508. }
  20509. },
  20510. },
  20511. [
  20512. {
  20513. name: "Normal",
  20514. height: math.unit(5 + 7 / 12, "feet")
  20515. },
  20516. {
  20517. name: "Macro",
  20518. height: math.unit(137, "feet"),
  20519. default: true
  20520. },
  20521. {
  20522. name: "Megamacro",
  20523. height: math.unit(1, "mile")
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20529. {
  20530. front: {
  20531. height: math.unit(6 + 1 / 12, "feet"),
  20532. weight: math.unit(200, "lb"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/neil/front.svg",
  20536. extra: 1326 / 1250,
  20537. bottom: 0.023
  20538. }
  20539. },
  20540. },
  20541. [
  20542. {
  20543. name: "Normal",
  20544. height: math.unit(6 + 1 / 12, "feet"),
  20545. default: true
  20546. },
  20547. {
  20548. name: "Macro",
  20549. height: math.unit(200, "feet")
  20550. },
  20551. ]
  20552. ))
  20553. characterMakers.push(() => makeCharacter(
  20554. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20555. {
  20556. front: {
  20557. height: math.unit(5 + 9 / 12, "feet"),
  20558. weight: math.unit(190, "lb"),
  20559. name: "Front",
  20560. image: {
  20561. source: "./media/characters/atticus/front.svg",
  20562. extra: 2934 / 2785,
  20563. bottom: 0.025
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Normal",
  20570. height: math.unit(5 + 9 / 12, "feet"),
  20571. default: true
  20572. },
  20573. {
  20574. name: "Macro",
  20575. height: math.unit(180, "feet")
  20576. },
  20577. ]
  20578. ))
  20579. characterMakers.push(() => makeCharacter(
  20580. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20581. {
  20582. side: {
  20583. height: math.unit(9, "feet"),
  20584. weight: math.unit(650, "lb"),
  20585. name: "Side",
  20586. image: {
  20587. source: "./media/characters/milo/side.svg",
  20588. extra: 2644 / 2310,
  20589. bottom: 0.032
  20590. }
  20591. },
  20592. },
  20593. [
  20594. {
  20595. name: "Normal",
  20596. height: math.unit(9, "feet"),
  20597. default: true
  20598. },
  20599. {
  20600. name: "Macro",
  20601. height: math.unit(300, "feet")
  20602. },
  20603. ]
  20604. ))
  20605. characterMakers.push(() => makeCharacter(
  20606. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20607. {
  20608. side: {
  20609. height: math.unit(8, "meters"),
  20610. weight: math.unit(90000, "kg"),
  20611. name: "Side",
  20612. image: {
  20613. source: "./media/characters/ijzer/side.svg",
  20614. extra: 2756 / 1600,
  20615. bottom: 0.01
  20616. }
  20617. },
  20618. },
  20619. [
  20620. {
  20621. name: "Small",
  20622. height: math.unit(3, "meters")
  20623. },
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(8, "meters"),
  20627. default: true
  20628. },
  20629. {
  20630. name: "Normal+",
  20631. height: math.unit(10, "meters")
  20632. },
  20633. {
  20634. name: "Bigger",
  20635. height: math.unit(24, "meters")
  20636. },
  20637. {
  20638. name: "Huge",
  20639. height: math.unit(80, "meters")
  20640. },
  20641. ]
  20642. ))
  20643. characterMakers.push(() => makeCharacter(
  20644. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20645. {
  20646. front: {
  20647. height: math.unit(6 + 2 / 12, "feet"),
  20648. weight: math.unit(153, "lb"),
  20649. name: "Front",
  20650. image: {
  20651. source: "./media/characters/luca-cervicum/front.svg",
  20652. extra: 370 / 327,
  20653. bottom: 0.015
  20654. }
  20655. },
  20656. back: {
  20657. height: math.unit(6 + 2 / 12, "feet"),
  20658. weight: math.unit(153, "lb"),
  20659. name: "Back",
  20660. image: {
  20661. source: "./media/characters/luca-cervicum/back.svg",
  20662. extra: 367 / 333,
  20663. bottom: 0.005
  20664. }
  20665. },
  20666. frontGear: {
  20667. height: math.unit(6 + 2 / 12, "feet"),
  20668. weight: math.unit(173, "lb"),
  20669. name: "Front (Gear)",
  20670. image: {
  20671. source: "./media/characters/luca-cervicum/front-gear.svg",
  20672. extra: 377 / 333,
  20673. bottom: 0.006
  20674. }
  20675. },
  20676. },
  20677. [
  20678. {
  20679. name: "Normal",
  20680. height: math.unit(6 + 2 / 12, "feet"),
  20681. default: true
  20682. },
  20683. ]
  20684. ))
  20685. characterMakers.push(() => makeCharacter(
  20686. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20687. {
  20688. front: {
  20689. height: math.unit(6 + 1 / 12, "feet"),
  20690. weight: math.unit(304, "lb"),
  20691. name: "Front",
  20692. image: {
  20693. source: "./media/characters/oliver/front.svg",
  20694. extra: 157 / 143,
  20695. bottom: 0.08
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(6 + 1 / 12, "feet"),
  20703. default: true
  20704. },
  20705. ]
  20706. ))
  20707. characterMakers.push(() => makeCharacter(
  20708. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20709. {
  20710. front: {
  20711. height: math.unit(5 + 7 / 12, "feet"),
  20712. weight: math.unit(140, "lb"),
  20713. name: "Front",
  20714. image: {
  20715. source: "./media/characters/shane/front.svg",
  20716. extra: 304 / 289,
  20717. bottom: 0.005
  20718. }
  20719. },
  20720. },
  20721. [
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(5 + 7 / 12, "feet"),
  20725. default: true
  20726. },
  20727. ]
  20728. ))
  20729. characterMakers.push(() => makeCharacter(
  20730. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20731. {
  20732. front: {
  20733. height: math.unit(5 + 9 / 12, "feet"),
  20734. weight: math.unit(178, "lb"),
  20735. name: "Front",
  20736. image: {
  20737. source: "./media/characters/shin/front.svg",
  20738. extra: 159 / 151,
  20739. bottom: 0.015
  20740. }
  20741. },
  20742. },
  20743. [
  20744. {
  20745. name: "Normal",
  20746. height: math.unit(5 + 9 / 12, "feet"),
  20747. default: true
  20748. },
  20749. ]
  20750. ))
  20751. characterMakers.push(() => makeCharacter(
  20752. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20753. {
  20754. front: {
  20755. height: math.unit(5 + 10 / 12, "feet"),
  20756. weight: math.unit(168, "lb"),
  20757. name: "Front",
  20758. image: {
  20759. source: "./media/characters/xerxes/front.svg",
  20760. extra: 282 / 260,
  20761. bottom: 0.045
  20762. }
  20763. },
  20764. },
  20765. [
  20766. {
  20767. name: "Normal",
  20768. height: math.unit(5 + 10 / 12, "feet"),
  20769. default: true
  20770. },
  20771. ]
  20772. ))
  20773. characterMakers.push(() => makeCharacter(
  20774. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20775. {
  20776. front: {
  20777. height: math.unit(6 + 7 / 12, "feet"),
  20778. weight: math.unit(208, "lb"),
  20779. name: "Front",
  20780. image: {
  20781. source: "./media/characters/chaska/front.svg",
  20782. extra: 332 / 319,
  20783. bottom: 0.015
  20784. }
  20785. },
  20786. },
  20787. [
  20788. {
  20789. name: "Normal",
  20790. height: math.unit(6 + 7 / 12, "feet"),
  20791. default: true
  20792. },
  20793. ]
  20794. ))
  20795. characterMakers.push(() => makeCharacter(
  20796. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20797. {
  20798. front: {
  20799. height: math.unit(5 + 8 / 12, "feet"),
  20800. weight: math.unit(208, "lb"),
  20801. name: "Front",
  20802. image: {
  20803. source: "./media/characters/enuk/front.svg",
  20804. extra: 437 / 406,
  20805. bottom: 0.02
  20806. }
  20807. },
  20808. },
  20809. [
  20810. {
  20811. name: "Normal",
  20812. height: math.unit(5 + 8 / 12, "feet"),
  20813. default: true
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20819. {
  20820. front: {
  20821. height: math.unit(5 + 10 / 12, "feet"),
  20822. weight: math.unit(252, "lb"),
  20823. name: "Front",
  20824. image: {
  20825. source: "./media/characters/bruun/front.svg",
  20826. extra: 197 / 187,
  20827. bottom: 0.012
  20828. }
  20829. },
  20830. },
  20831. [
  20832. {
  20833. name: "Normal",
  20834. height: math.unit(5 + 10 / 12, "feet"),
  20835. default: true
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20841. {
  20842. front: {
  20843. height: math.unit(6 + 10 / 12, "feet"),
  20844. weight: math.unit(255, "lb"),
  20845. name: "Front",
  20846. image: {
  20847. source: "./media/characters/alexeev/front.svg",
  20848. extra: 213 / 200,
  20849. bottom: 0.05
  20850. }
  20851. },
  20852. },
  20853. [
  20854. {
  20855. name: "Normal",
  20856. height: math.unit(6 + 10 / 12, "feet"),
  20857. default: true
  20858. },
  20859. ]
  20860. ))
  20861. characterMakers.push(() => makeCharacter(
  20862. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20863. {
  20864. front: {
  20865. height: math.unit(2 + 8 / 12, "feet"),
  20866. weight: math.unit(22, "lb"),
  20867. name: "Front",
  20868. image: {
  20869. source: "./media/characters/evelyn/front.svg",
  20870. extra: 208 / 180
  20871. }
  20872. },
  20873. },
  20874. [
  20875. {
  20876. name: "Normal",
  20877. height: math.unit(2 + 8 / 12, "feet"),
  20878. default: true
  20879. },
  20880. ]
  20881. ))
  20882. characterMakers.push(() => makeCharacter(
  20883. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20884. {
  20885. front: {
  20886. height: math.unit(5 + 9 / 12, "feet"),
  20887. weight: math.unit(139, "lb"),
  20888. name: "Front",
  20889. image: {
  20890. source: "./media/characters/inca/front.svg",
  20891. extra: 294 / 291,
  20892. bottom: 0.03
  20893. }
  20894. },
  20895. },
  20896. [
  20897. {
  20898. name: "Normal",
  20899. height: math.unit(5 + 9 / 12, "feet"),
  20900. default: true
  20901. },
  20902. ]
  20903. ))
  20904. characterMakers.push(() => makeCharacter(
  20905. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20906. {
  20907. front: {
  20908. height: math.unit(6 + 3 / 12, "feet"),
  20909. weight: math.unit(185, "lb"),
  20910. name: "Front",
  20911. image: {
  20912. source: "./media/characters/mera/front.svg",
  20913. extra: 291 / 277,
  20914. bottom: 0.03
  20915. }
  20916. },
  20917. },
  20918. [
  20919. {
  20920. name: "Normal",
  20921. height: math.unit(6 + 3 / 12, "feet"),
  20922. default: true
  20923. },
  20924. ]
  20925. ))
  20926. characterMakers.push(() => makeCharacter(
  20927. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20928. {
  20929. front: {
  20930. height: math.unit(6 + 7 / 12, "feet"),
  20931. weight: math.unit(160, "lb"),
  20932. name: "Front",
  20933. image: {
  20934. source: "./media/characters/ceres/front.svg",
  20935. extra: 1023 / 950,
  20936. bottom: 0.027
  20937. }
  20938. },
  20939. back: {
  20940. height: math.unit(6 + 7 / 12, "feet"),
  20941. weight: math.unit(160, "lb"),
  20942. name: "Back",
  20943. image: {
  20944. source: "./media/characters/ceres/back.svg",
  20945. extra: 1023 / 950
  20946. }
  20947. },
  20948. },
  20949. [
  20950. {
  20951. name: "Normal",
  20952. height: math.unit(6 + 7 / 12, "feet"),
  20953. default: true
  20954. },
  20955. ]
  20956. ))
  20957. characterMakers.push(() => makeCharacter(
  20958. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20959. {
  20960. front: {
  20961. height: math.unit(5 + 10 / 12, "feet"),
  20962. weight: math.unit(150, "lb"),
  20963. name: "Front",
  20964. image: {
  20965. source: "./media/characters/kris/front.svg",
  20966. extra: 885 / 803,
  20967. bottom: 0.03
  20968. }
  20969. },
  20970. },
  20971. [
  20972. {
  20973. name: "Normal",
  20974. height: math.unit(5 + 10 / 12, "feet"),
  20975. default: true
  20976. },
  20977. ]
  20978. ))
  20979. characterMakers.push(() => makeCharacter(
  20980. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20981. {
  20982. front: {
  20983. height: math.unit(7, "feet"),
  20984. weight: math.unit(120, "kg"),
  20985. name: "Front",
  20986. image: {
  20987. source: "./media/characters/taluthus/front.svg",
  20988. extra: 903 / 833,
  20989. bottom: 0.015
  20990. }
  20991. },
  20992. },
  20993. [
  20994. {
  20995. name: "Normal",
  20996. height: math.unit(7, "feet"),
  20997. default: true
  20998. },
  20999. {
  21000. name: "Macro",
  21001. height: math.unit(300, "feet")
  21002. },
  21003. ]
  21004. ))
  21005. characterMakers.push(() => makeCharacter(
  21006. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21007. {
  21008. front: {
  21009. height: math.unit(5 + 9 / 12, "feet"),
  21010. weight: math.unit(145, "lb"),
  21011. name: "Front",
  21012. image: {
  21013. source: "./media/characters/dawn/front.svg",
  21014. extra: 2094 / 2016,
  21015. bottom: 0.025
  21016. }
  21017. },
  21018. back: {
  21019. height: math.unit(5 + 9 / 12, "feet"),
  21020. weight: math.unit(160, "lb"),
  21021. name: "Back",
  21022. image: {
  21023. source: "./media/characters/dawn/back.svg",
  21024. extra: 2112 / 2080,
  21025. bottom: 0.005
  21026. }
  21027. },
  21028. },
  21029. [
  21030. {
  21031. name: "Normal",
  21032. height: math.unit(6 + 7 / 12, "feet"),
  21033. default: true
  21034. },
  21035. ]
  21036. ))
  21037. characterMakers.push(() => makeCharacter(
  21038. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21039. {
  21040. anthro: {
  21041. height: math.unit(8 + 3 / 12, "feet"),
  21042. weight: math.unit(450, "lb"),
  21043. name: "Anthro",
  21044. image: {
  21045. source: "./media/characters/arador/anthro.svg",
  21046. extra: 1835 / 1718,
  21047. bottom: 0.025
  21048. }
  21049. },
  21050. feral: {
  21051. height: math.unit(4, "feet"),
  21052. weight: math.unit(200, "lb"),
  21053. name: "Feral",
  21054. image: {
  21055. source: "./media/characters/arador/feral.svg",
  21056. extra: 1683 / 1514,
  21057. bottom: 0.07
  21058. }
  21059. },
  21060. },
  21061. [
  21062. {
  21063. name: "Normal",
  21064. height: math.unit(8 + 3 / 12, "feet")
  21065. },
  21066. {
  21067. name: "Macro",
  21068. height: math.unit(82.5, "feet"),
  21069. default: true
  21070. },
  21071. ]
  21072. ))
  21073. characterMakers.push(() => makeCharacter(
  21074. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21075. {
  21076. front: {
  21077. height: math.unit(5 + 10 / 12, "feet"),
  21078. weight: math.unit(125, "lb"),
  21079. name: "Front",
  21080. image: {
  21081. source: "./media/characters/dharsi/front.svg",
  21082. extra: 716 / 630,
  21083. bottom: 0.035
  21084. }
  21085. },
  21086. },
  21087. [
  21088. {
  21089. name: "Nano",
  21090. height: math.unit(100, "nm")
  21091. },
  21092. {
  21093. name: "Micro",
  21094. height: math.unit(2, "inches")
  21095. },
  21096. {
  21097. name: "Normal",
  21098. height: math.unit(5 + 10 / 12, "feet"),
  21099. default: true
  21100. },
  21101. {
  21102. name: "Macro",
  21103. height: math.unit(1000, "feet")
  21104. },
  21105. {
  21106. name: "Megamacro",
  21107. height: math.unit(10, "miles")
  21108. },
  21109. {
  21110. name: "Gigamacro",
  21111. height: math.unit(3000, "miles")
  21112. },
  21113. {
  21114. name: "Teramacro",
  21115. height: math.unit(500000, "miles")
  21116. },
  21117. {
  21118. name: "Teramacro+",
  21119. height: math.unit(30, "galaxies")
  21120. },
  21121. ]
  21122. ))
  21123. characterMakers.push(() => makeCharacter(
  21124. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21125. {
  21126. front: {
  21127. height: math.unit(6, "feet"),
  21128. weight: math.unit(150, "lb"),
  21129. name: "Front",
  21130. image: {
  21131. source: "./media/characters/deathy/front.svg",
  21132. extra: 1552 / 1463,
  21133. bottom: 0.025
  21134. }
  21135. },
  21136. side: {
  21137. height: math.unit(6, "feet"),
  21138. weight: math.unit(150, "lb"),
  21139. name: "Side",
  21140. image: {
  21141. source: "./media/characters/deathy/side.svg",
  21142. extra: 1604 / 1455,
  21143. bottom: 0.025
  21144. }
  21145. },
  21146. back: {
  21147. height: math.unit(6, "feet"),
  21148. weight: math.unit(150, "lb"),
  21149. name: "Back",
  21150. image: {
  21151. source: "./media/characters/deathy/back.svg",
  21152. extra: 1580 / 1463,
  21153. bottom: 0.005
  21154. }
  21155. },
  21156. },
  21157. [
  21158. {
  21159. name: "Micro",
  21160. height: math.unit(5, "millimeters")
  21161. },
  21162. {
  21163. name: "Normal",
  21164. height: math.unit(6 + 5 / 12, "feet"),
  21165. default: true
  21166. },
  21167. ]
  21168. ))
  21169. characterMakers.push(() => makeCharacter(
  21170. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21171. {
  21172. front: {
  21173. height: math.unit(16, "feet"),
  21174. weight: math.unit(4000, "lb"),
  21175. name: "Front",
  21176. image: {
  21177. source: "./media/characters/juniper/front.svg",
  21178. bottom: 0.04
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Normal",
  21185. height: math.unit(16, "feet"),
  21186. default: true
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21192. {
  21193. front: {
  21194. height: math.unit(6, "feet"),
  21195. weight: math.unit(150, "lb"),
  21196. name: "Front",
  21197. image: {
  21198. source: "./media/characters/hipster/front.svg",
  21199. extra: 1312 / 1209,
  21200. bottom: 0.025
  21201. }
  21202. },
  21203. back: {
  21204. height: math.unit(6, "feet"),
  21205. weight: math.unit(150, "lb"),
  21206. name: "Back",
  21207. image: {
  21208. source: "./media/characters/hipster/back.svg",
  21209. extra: 1281 / 1196,
  21210. bottom: 0.01
  21211. }
  21212. },
  21213. },
  21214. [
  21215. {
  21216. name: "Micro",
  21217. height: math.unit(1, "mm")
  21218. },
  21219. {
  21220. name: "Normal",
  21221. height: math.unit(4, "inches"),
  21222. default: true
  21223. },
  21224. {
  21225. name: "Macro",
  21226. height: math.unit(500, "feet")
  21227. },
  21228. {
  21229. name: "Megamacro",
  21230. height: math.unit(1000, "miles")
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21236. {
  21237. front: {
  21238. height: math.unit(6, "feet"),
  21239. weight: math.unit(150, "lb"),
  21240. name: "Front",
  21241. image: {
  21242. source: "./media/characters/tendirmuldr/front.svg",
  21243. extra: 1878 / 1772,
  21244. bottom: 0.015
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Megamacro",
  21251. height: math.unit(1500, "miles"),
  21252. default: true
  21253. },
  21254. ]
  21255. ))
  21256. characterMakers.push(() => makeCharacter(
  21257. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21258. {
  21259. front: {
  21260. height: math.unit(14, "feet"),
  21261. weight: math.unit(12000, "lb"),
  21262. name: "Front",
  21263. image: {
  21264. source: "./media/characters/mort/front.svg",
  21265. extra: 365 / 318,
  21266. bottom: 0.01
  21267. }
  21268. },
  21269. side: {
  21270. height: math.unit(14, "feet"),
  21271. weight: math.unit(12000, "lb"),
  21272. name: "Side",
  21273. image: {
  21274. source: "./media/characters/mort/side.svg",
  21275. extra: 365 / 318,
  21276. bottom: 0.052
  21277. },
  21278. default: true
  21279. },
  21280. back: {
  21281. height: math.unit(14, "feet"),
  21282. weight: math.unit(12000, "lb"),
  21283. name: "Back",
  21284. image: {
  21285. source: "./media/characters/mort/back.svg",
  21286. extra: 371 / 332,
  21287. bottom: 0.18
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Normal",
  21294. height: math.unit(14, "feet"),
  21295. default: true
  21296. },
  21297. ]
  21298. ))
  21299. characterMakers.push(() => makeCharacter(
  21300. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21301. {
  21302. front: {
  21303. height: math.unit(8, "feet"),
  21304. weight: math.unit(1, "ton"),
  21305. name: "Front",
  21306. image: {
  21307. source: "./media/characters/lycoa/front.svg",
  21308. extra: 1836/1728,
  21309. bottom: 81/1917
  21310. }
  21311. },
  21312. back: {
  21313. height: math.unit(8, "feet"),
  21314. weight: math.unit(1, "ton"),
  21315. name: "Back",
  21316. image: {
  21317. source: "./media/characters/lycoa/back.svg",
  21318. extra: 1785/1720,
  21319. bottom: 91/1876
  21320. }
  21321. },
  21322. head: {
  21323. height: math.unit(1.6243, "feet"),
  21324. name: "Head",
  21325. image: {
  21326. source: "./media/characters/lycoa/head.svg",
  21327. extra: 1011/782,
  21328. bottom: 0/1011
  21329. }
  21330. },
  21331. tailmaw: {
  21332. height: math.unit(1.9, "feet"),
  21333. name: "Tailmaw",
  21334. image: {
  21335. source: "./media/characters/lycoa/tailmaw.svg"
  21336. }
  21337. },
  21338. tentacles: {
  21339. height: math.unit(2.1, "feet"),
  21340. name: "Tentacles",
  21341. image: {
  21342. source: "./media/characters/lycoa/tentacles.svg"
  21343. }
  21344. },
  21345. dick: {
  21346. height: math.unit(1.73, "feet"),
  21347. name: "Dick",
  21348. image: {
  21349. source: "./media/characters/lycoa/dick.svg"
  21350. }
  21351. },
  21352. },
  21353. [
  21354. {
  21355. name: "Normal",
  21356. height: math.unit(8, "feet"),
  21357. default: true
  21358. },
  21359. {
  21360. name: "Macro",
  21361. height: math.unit(30, "feet")
  21362. },
  21363. ]
  21364. ))
  21365. characterMakers.push(() => makeCharacter(
  21366. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21367. {
  21368. front: {
  21369. height: math.unit(4 + 2 / 12, "feet"),
  21370. weight: math.unit(70, "lb"),
  21371. name: "Front",
  21372. image: {
  21373. source: "./media/characters/naldara/front.svg",
  21374. extra: 1664/1387,
  21375. bottom: 81/1745
  21376. },
  21377. form: "anthro",
  21378. default: true
  21379. },
  21380. naga: {
  21381. height: math.unit(20, "feet"),
  21382. weight: math.unit(15000, "kg"),
  21383. name: "Front",
  21384. image: {
  21385. source: "./media/characters/naldara/naga.svg",
  21386. extra: 1590/1396,
  21387. bottom: 285/1875
  21388. },
  21389. form: "naga",
  21390. default: true
  21391. },
  21392. },
  21393. [
  21394. {
  21395. name: "Normal",
  21396. height: math.unit(4 + 2 / 12, "feet"),
  21397. form: "anthro",
  21398. default: true
  21399. },
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(20, "feet"),
  21403. form: "naga",
  21404. default: true
  21405. },
  21406. ],
  21407. {
  21408. "anthro": {
  21409. name: "Anthro",
  21410. default: true
  21411. },
  21412. "naga": {
  21413. name: "Naga"
  21414. }
  21415. }
  21416. ))
  21417. characterMakers.push(() => makeCharacter(
  21418. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21419. {
  21420. front: {
  21421. height: math.unit(13 + 7 / 12, "feet"),
  21422. weight: math.unit(1500, "lb"),
  21423. name: "Front",
  21424. image: {
  21425. source: "./media/characters/briar/front.svg",
  21426. extra: 1223/1157,
  21427. bottom: 123/1346
  21428. }
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(13 + 7 / 12, "feet"),
  21435. default: true
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21441. {
  21442. side: {
  21443. height: math.unit(16, "feet"),
  21444. weight: math.unit(500, "lb"),
  21445. name: "Side",
  21446. image: {
  21447. source: "./media/characters/vanguard/side.svg",
  21448. extra: 1022/914,
  21449. bottom: 30/1052
  21450. }
  21451. },
  21452. sideAlt: {
  21453. height: math.unit(10, "feet"),
  21454. weight: math.unit(500, "lb"),
  21455. name: "Side (Alt)",
  21456. image: {
  21457. source: "./media/characters/vanguard/side-alt.svg",
  21458. extra: 502 / 425,
  21459. bottom: 0.087
  21460. }
  21461. },
  21462. },
  21463. [
  21464. {
  21465. name: "Normal",
  21466. height: math.unit(17.71, "feet"),
  21467. default: true
  21468. },
  21469. ]
  21470. ))
  21471. characterMakers.push(() => makeCharacter(
  21472. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21473. {
  21474. front: {
  21475. height: math.unit(7.5, "feet"),
  21476. weight: math.unit(2, "lb"),
  21477. name: "Front",
  21478. image: {
  21479. source: "./media/characters/artemis/work-safe-front.svg",
  21480. extra: 1192 / 1075,
  21481. bottom: 0.07
  21482. },
  21483. form: "work-safe",
  21484. default: true
  21485. },
  21486. frontNsfw: {
  21487. height: math.unit(7.5, "feet"),
  21488. weight: math.unit(2, "lb"),
  21489. name: "Front",
  21490. image: {
  21491. source: "./media/characters/artemis/calibrating-front.svg",
  21492. extra: 1192 / 1075,
  21493. bottom: 0.07
  21494. },
  21495. form: "calibrating",
  21496. default: true
  21497. },
  21498. frontNsfwer: {
  21499. height: math.unit(7.5, "feet"),
  21500. weight: math.unit(2, "lb"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/artemis/oversize-load-front.svg",
  21504. extra: 1192 / 1075,
  21505. bottom: 0.07
  21506. },
  21507. form: "oversize-load",
  21508. default: true
  21509. },
  21510. side: {
  21511. height: math.unit(7.5, "feet"),
  21512. weight: math.unit(2, "lb"),
  21513. name: "Side",
  21514. image: {
  21515. source: "./media/characters/artemis/work-safe-side.svg",
  21516. extra: 1192 / 1075,
  21517. bottom: 0.07
  21518. },
  21519. form: "work-safe"
  21520. },
  21521. sideNsfw: {
  21522. height: math.unit(7.5, "feet"),
  21523. weight: math.unit(2, "lb"),
  21524. name: "Side",
  21525. image: {
  21526. source: "./media/characters/artemis/calibrating-side.svg",
  21527. extra: 1192 / 1075,
  21528. bottom: 0.07
  21529. },
  21530. form: "calibrating"
  21531. },
  21532. sideNsfwer: {
  21533. height: math.unit(7.5, "feet"),
  21534. weight: math.unit(2, "lb"),
  21535. name: "Side",
  21536. image: {
  21537. source: "./media/characters/artemis/oversize-load-side.svg",
  21538. extra: 1192 / 1075,
  21539. bottom: 0.07
  21540. },
  21541. form: "oversize-load"
  21542. },
  21543. maw: {
  21544. height: math.unit(1.1, "feet"),
  21545. name: "Maw",
  21546. image: {
  21547. source: "./media/characters/artemis/maw.svg"
  21548. },
  21549. form: "work-safe"
  21550. },
  21551. stomach: {
  21552. height: math.unit(0.95, "feet"),
  21553. name: "Stomach",
  21554. image: {
  21555. source: "./media/characters/artemis/stomach.svg"
  21556. },
  21557. form: "work-safe"
  21558. },
  21559. dickCanine: {
  21560. height: math.unit(1, "feet"),
  21561. name: "Dick (Canine)",
  21562. image: {
  21563. source: "./media/characters/artemis/dick-canine.svg"
  21564. },
  21565. form: "calibrating"
  21566. },
  21567. dickEquine: {
  21568. height: math.unit(0.85, "feet"),
  21569. name: "Dick (Equine)",
  21570. image: {
  21571. source: "./media/characters/artemis/dick-equine.svg"
  21572. },
  21573. form: "calibrating"
  21574. },
  21575. dickExotic: {
  21576. height: math.unit(0.85, "feet"),
  21577. name: "Dick (Exotic)",
  21578. image: {
  21579. source: "./media/characters/artemis/dick-exotic.svg"
  21580. },
  21581. form: "calibrating"
  21582. },
  21583. dickCanineBigger: {
  21584. height: math.unit(1 * 1.33, "feet"),
  21585. name: "Dick (Canine)",
  21586. image: {
  21587. source: "./media/characters/artemis/dick-canine.svg"
  21588. },
  21589. form: "oversize-load"
  21590. },
  21591. dickEquineBigger: {
  21592. height: math.unit(0.85 * 1.33, "feet"),
  21593. name: "Dick (Equine)",
  21594. image: {
  21595. source: "./media/characters/artemis/dick-equine.svg"
  21596. },
  21597. form: "oversize-load"
  21598. },
  21599. dickExoticBigger: {
  21600. height: math.unit(0.85 * 1.33, "feet"),
  21601. name: "Dick (Exotic)",
  21602. image: {
  21603. source: "./media/characters/artemis/dick-exotic.svg"
  21604. },
  21605. form: "oversize-load"
  21606. },
  21607. },
  21608. [
  21609. {
  21610. name: "Normal",
  21611. height: math.unit(7.5, "feet"),
  21612. form: "work-safe",
  21613. default: true
  21614. },
  21615. {
  21616. name: "Normal",
  21617. height: math.unit(7.5, "feet"),
  21618. form: "calibrating",
  21619. default: true
  21620. },
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(7.5, "feet"),
  21624. form: "oversize-load",
  21625. default: true
  21626. },
  21627. {
  21628. name: "Enlarged",
  21629. height: math.unit(12, "feet"),
  21630. form: "work-safe",
  21631. },
  21632. {
  21633. name: "Enlarged",
  21634. height: math.unit(12, "feet"),
  21635. form: "calibrating",
  21636. },
  21637. {
  21638. name: "Enlarged",
  21639. height: math.unit(12, "feet"),
  21640. form: "oversize-load",
  21641. },
  21642. ],
  21643. {
  21644. "work-safe": {
  21645. name: "Work-Safe",
  21646. default: true
  21647. },
  21648. "calibrating": {
  21649. name: "Calibrating"
  21650. },
  21651. "oversize-load": {
  21652. name: "Oversize Load"
  21653. }
  21654. }
  21655. ))
  21656. characterMakers.push(() => makeCharacter(
  21657. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21658. {
  21659. front: {
  21660. height: math.unit(5 + 3 / 12, "feet"),
  21661. weight: math.unit(160, "lb"),
  21662. name: "Front",
  21663. image: {
  21664. source: "./media/characters/kira/front.svg",
  21665. extra: 906 / 786,
  21666. bottom: 0.01
  21667. }
  21668. },
  21669. back: {
  21670. height: math.unit(5 + 3 / 12, "feet"),
  21671. weight: math.unit(160, "lb"),
  21672. name: "Back",
  21673. image: {
  21674. source: "./media/characters/kira/back.svg",
  21675. extra: 882 / 757,
  21676. bottom: 0.005
  21677. }
  21678. },
  21679. frontDressed: {
  21680. height: math.unit(5 + 3 / 12, "feet"),
  21681. weight: math.unit(160, "lb"),
  21682. name: "Front (Dressed)",
  21683. image: {
  21684. source: "./media/characters/kira/front-dressed.svg",
  21685. extra: 906 / 786,
  21686. bottom: 0.01
  21687. }
  21688. },
  21689. beans: {
  21690. height: math.unit(0.92, "feet"),
  21691. name: "Beans",
  21692. image: {
  21693. source: "./media/characters/kira/beans.svg"
  21694. }
  21695. },
  21696. },
  21697. [
  21698. {
  21699. name: "Normal",
  21700. height: math.unit(5 + 3 / 12, "feet"),
  21701. default: true
  21702. },
  21703. ]
  21704. ))
  21705. characterMakers.push(() => makeCharacter(
  21706. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21707. {
  21708. front: {
  21709. height: math.unit(5 + 4 / 12, "feet"),
  21710. weight: math.unit(145, "lb"),
  21711. name: "Front",
  21712. image: {
  21713. source: "./media/characters/scramble/front.svg",
  21714. extra: 763 / 727,
  21715. bottom: 0.05
  21716. }
  21717. },
  21718. back: {
  21719. height: math.unit(5 + 4 / 12, "feet"),
  21720. weight: math.unit(145, "lb"),
  21721. name: "Back",
  21722. image: {
  21723. source: "./media/characters/scramble/back.svg",
  21724. extra: 826 / 737,
  21725. bottom: 0.002
  21726. }
  21727. },
  21728. },
  21729. [
  21730. {
  21731. name: "Normal",
  21732. height: math.unit(5 + 4 / 12, "feet"),
  21733. default: true
  21734. },
  21735. ]
  21736. ))
  21737. characterMakers.push(() => makeCharacter(
  21738. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21739. {
  21740. side: {
  21741. height: math.unit(6 + 2 / 12, "feet"),
  21742. weight: math.unit(190, "lb"),
  21743. name: "Side",
  21744. image: {
  21745. source: "./media/characters/biscuit/side.svg",
  21746. extra: 858 / 791,
  21747. bottom: 0.044
  21748. }
  21749. },
  21750. },
  21751. [
  21752. {
  21753. name: "Normal",
  21754. height: math.unit(6 + 2 / 12, "feet"),
  21755. default: true
  21756. },
  21757. ]
  21758. ))
  21759. characterMakers.push(() => makeCharacter(
  21760. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21761. {
  21762. front: {
  21763. height: math.unit(5 + 2 / 12, "feet"),
  21764. weight: math.unit(120, "lb"),
  21765. name: "Front",
  21766. image: {
  21767. source: "./media/characters/poffin/front.svg",
  21768. extra: 786 / 680,
  21769. bottom: 0.005
  21770. }
  21771. },
  21772. },
  21773. [
  21774. {
  21775. name: "Normal",
  21776. height: math.unit(5 + 2 / 12, "feet"),
  21777. default: true
  21778. },
  21779. ]
  21780. ))
  21781. characterMakers.push(() => makeCharacter(
  21782. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21783. {
  21784. front: {
  21785. height: math.unit(6 + 3 / 12, "feet"),
  21786. weight: math.unit(519, "lb"),
  21787. name: "Front",
  21788. image: {
  21789. source: "./media/characters/dhari/front.svg",
  21790. extra: 1048 / 946,
  21791. bottom: 0.015
  21792. }
  21793. },
  21794. back: {
  21795. height: math.unit(6 + 3 / 12, "feet"),
  21796. weight: math.unit(519, "lb"),
  21797. name: "Back",
  21798. image: {
  21799. source: "./media/characters/dhari/back.svg",
  21800. extra: 1048 / 931,
  21801. bottom: 0.005
  21802. }
  21803. },
  21804. frontDressed: {
  21805. height: math.unit(6 + 3 / 12, "feet"),
  21806. weight: math.unit(519, "lb"),
  21807. name: "Front (Dressed)",
  21808. image: {
  21809. source: "./media/characters/dhari/front-dressed.svg",
  21810. extra: 1713 / 1546,
  21811. bottom: 0.02
  21812. }
  21813. },
  21814. backDressed: {
  21815. height: math.unit(6 + 3 / 12, "feet"),
  21816. weight: math.unit(519, "lb"),
  21817. name: "Back (Dressed)",
  21818. image: {
  21819. source: "./media/characters/dhari/back-dressed.svg",
  21820. extra: 1699 / 1537,
  21821. bottom: 0.01
  21822. }
  21823. },
  21824. maw: {
  21825. height: math.unit(0.95, "feet"),
  21826. name: "Maw",
  21827. image: {
  21828. source: "./media/characters/dhari/maw.svg"
  21829. }
  21830. },
  21831. wereFront: {
  21832. height: math.unit(12 + 8 / 12, "feet"),
  21833. weight: math.unit(4000, "lb"),
  21834. name: "Front (Were)",
  21835. image: {
  21836. source: "./media/characters/dhari/were-front.svg",
  21837. extra: 1065 / 969,
  21838. bottom: 0.015
  21839. }
  21840. },
  21841. wereBack: {
  21842. height: math.unit(12 + 8 / 12, "feet"),
  21843. weight: math.unit(4000, "lb"),
  21844. name: "Back (Were)",
  21845. image: {
  21846. source: "./media/characters/dhari/were-back.svg",
  21847. extra: 1065 / 969,
  21848. bottom: 0.012
  21849. }
  21850. },
  21851. wereMaw: {
  21852. height: math.unit(0.625, "meters"),
  21853. name: "Maw (Were)",
  21854. image: {
  21855. source: "./media/characters/dhari/were-maw.svg"
  21856. }
  21857. },
  21858. },
  21859. [
  21860. {
  21861. name: "Normal",
  21862. height: math.unit(6 + 3 / 12, "feet"),
  21863. default: true
  21864. },
  21865. ]
  21866. ))
  21867. characterMakers.push(() => makeCharacter(
  21868. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21869. {
  21870. anthro: {
  21871. height: math.unit(5 + 7 / 12, "feet"),
  21872. weight: math.unit(175, "lb"),
  21873. name: "Anthro",
  21874. image: {
  21875. source: "./media/characters/rena-dyne/anthro.svg",
  21876. extra: 1849 / 1785,
  21877. bottom: 0.005
  21878. }
  21879. },
  21880. taur: {
  21881. height: math.unit(15 + 6 / 12, "feet"),
  21882. weight: math.unit(8000, "lb"),
  21883. name: "Taur",
  21884. image: {
  21885. source: "./media/characters/rena-dyne/taur.svg",
  21886. extra: 2315 / 2234,
  21887. bottom: 0.033
  21888. }
  21889. },
  21890. },
  21891. [
  21892. {
  21893. name: "Normal",
  21894. height: math.unit(5 + 7 / 12, "feet"),
  21895. default: true
  21896. },
  21897. ]
  21898. ))
  21899. characterMakers.push(() => makeCharacter(
  21900. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21901. {
  21902. front: {
  21903. height: math.unit(8, "feet"),
  21904. weight: math.unit(600, "lb"),
  21905. name: "Front",
  21906. image: {
  21907. source: "./media/characters/weremeep/front.svg",
  21908. extra: 967 / 862,
  21909. bottom: 0.01
  21910. }
  21911. },
  21912. },
  21913. [
  21914. {
  21915. name: "Normal",
  21916. height: math.unit(8, "feet"),
  21917. default: true
  21918. },
  21919. {
  21920. name: "Lorg",
  21921. height: math.unit(12, "feet")
  21922. },
  21923. {
  21924. name: "Oh Lawd She Comin'",
  21925. height: math.unit(20, "feet")
  21926. },
  21927. ]
  21928. ))
  21929. characterMakers.push(() => makeCharacter(
  21930. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21931. {
  21932. front: {
  21933. height: math.unit(4, "feet"),
  21934. weight: math.unit(90, "lb"),
  21935. name: "Front",
  21936. image: {
  21937. source: "./media/characters/reza/front.svg",
  21938. extra: 1183 / 1111,
  21939. bottom: 0.017
  21940. }
  21941. },
  21942. back: {
  21943. height: math.unit(4, "feet"),
  21944. weight: math.unit(90, "lb"),
  21945. name: "Back",
  21946. image: {
  21947. source: "./media/characters/reza/back.svg",
  21948. extra: 1183 / 1111,
  21949. bottom: 0.01
  21950. }
  21951. },
  21952. drake: {
  21953. height: math.unit(30, "feet"),
  21954. weight: math.unit(246960, "lb"),
  21955. name: "Drake",
  21956. image: {
  21957. source: "./media/characters/reza/drake.svg",
  21958. extra: 2350 / 2024,
  21959. bottom: 60.7 / 2403
  21960. }
  21961. },
  21962. },
  21963. [
  21964. {
  21965. name: "Normal",
  21966. height: math.unit(4, "feet"),
  21967. default: true
  21968. },
  21969. ]
  21970. ))
  21971. characterMakers.push(() => makeCharacter(
  21972. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21973. {
  21974. side: {
  21975. height: math.unit(15, "feet"),
  21976. weight: math.unit(14, "tons"),
  21977. name: "Side",
  21978. image: {
  21979. source: "./media/characters/athea/side.svg",
  21980. extra: 960 / 540,
  21981. bottom: 0.003
  21982. }
  21983. },
  21984. sitting: {
  21985. height: math.unit(6 * 2.85, "feet"),
  21986. weight: math.unit(14, "tons"),
  21987. name: "Sitting",
  21988. image: {
  21989. source: "./media/characters/athea/sitting.svg",
  21990. extra: 621 / 581,
  21991. bottom: 0.075
  21992. }
  21993. },
  21994. maw: {
  21995. height: math.unit(7.59498031496063, "feet"),
  21996. name: "Maw",
  21997. image: {
  21998. source: "./media/characters/athea/maw.svg"
  21999. }
  22000. },
  22001. },
  22002. [
  22003. {
  22004. name: "Lap Cat",
  22005. height: math.unit(2.5, "feet")
  22006. },
  22007. {
  22008. name: "Minimacro",
  22009. height: math.unit(15, "feet"),
  22010. default: true
  22011. },
  22012. {
  22013. name: "Macro",
  22014. height: math.unit(120, "feet")
  22015. },
  22016. {
  22017. name: "Macro+",
  22018. height: math.unit(640, "feet")
  22019. },
  22020. {
  22021. name: "Colossus",
  22022. height: math.unit(2.2, "miles")
  22023. },
  22024. ]
  22025. ))
  22026. characterMakers.push(() => makeCharacter(
  22027. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22028. {
  22029. front: {
  22030. height: math.unit(8 + 8 / 12, "feet"),
  22031. weight: math.unit(130, "kg"),
  22032. name: "Front",
  22033. image: {
  22034. source: "./media/characters/seroko/front.svg",
  22035. extra: 1385 / 1280,
  22036. bottom: 0.025
  22037. }
  22038. },
  22039. back: {
  22040. height: math.unit(8 + 8 / 12, "feet"),
  22041. weight: math.unit(130, "kg"),
  22042. name: "Back",
  22043. image: {
  22044. source: "./media/characters/seroko/back.svg",
  22045. extra: 1369 / 1238,
  22046. bottom: 0.018
  22047. }
  22048. },
  22049. frontDressed: {
  22050. height: math.unit(8 + 8 / 12, "feet"),
  22051. weight: math.unit(130, "kg"),
  22052. name: "Front (Dressed)",
  22053. image: {
  22054. source: "./media/characters/seroko/front-dressed.svg",
  22055. extra: 1366 / 1275,
  22056. bottom: 0.03
  22057. }
  22058. },
  22059. },
  22060. [
  22061. {
  22062. name: "Normal",
  22063. height: math.unit(8 + 8 / 12, "feet"),
  22064. default: true
  22065. },
  22066. ]
  22067. ))
  22068. characterMakers.push(() => makeCharacter(
  22069. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22070. {
  22071. front: {
  22072. height: math.unit(5.5, "feet"),
  22073. weight: math.unit(160, "lb"),
  22074. name: "Front",
  22075. image: {
  22076. source: "./media/characters/quatzi/front.svg",
  22077. extra: 2346 / 2242,
  22078. bottom: 0.015
  22079. }
  22080. },
  22081. },
  22082. [
  22083. {
  22084. name: "Normal",
  22085. height: math.unit(5.5, "feet"),
  22086. default: true
  22087. },
  22088. {
  22089. name: "Big",
  22090. height: math.unit(7.7, "feet")
  22091. },
  22092. ]
  22093. ))
  22094. characterMakers.push(() => makeCharacter(
  22095. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22096. {
  22097. front: {
  22098. height: math.unit(5 + 11 / 12, "feet"),
  22099. weight: math.unit(180, "lb"),
  22100. name: "Front",
  22101. image: {
  22102. source: "./media/characters/sen/front.svg",
  22103. extra: 1321 / 1254,
  22104. bottom: 0.015
  22105. }
  22106. },
  22107. side: {
  22108. height: math.unit(5 + 11 / 12, "feet"),
  22109. weight: math.unit(180, "lb"),
  22110. name: "Side",
  22111. image: {
  22112. source: "./media/characters/sen/side.svg",
  22113. extra: 1321 / 1254,
  22114. bottom: 0.007
  22115. }
  22116. },
  22117. back: {
  22118. height: math.unit(5 + 11 / 12, "feet"),
  22119. weight: math.unit(180, "lb"),
  22120. name: "Back",
  22121. image: {
  22122. source: "./media/characters/sen/back.svg",
  22123. extra: 1321 / 1254
  22124. }
  22125. },
  22126. },
  22127. [
  22128. {
  22129. name: "Normal",
  22130. height: math.unit(5 + 11 / 12, "feet"),
  22131. default: true
  22132. },
  22133. ]
  22134. ))
  22135. characterMakers.push(() => makeCharacter(
  22136. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22137. {
  22138. front: {
  22139. height: math.unit(166.6, "cm"),
  22140. weight: math.unit(66.6, "kg"),
  22141. name: "Front",
  22142. image: {
  22143. source: "./media/characters/fruity/front.svg",
  22144. extra: 1510 / 1386,
  22145. bottom: 0.04
  22146. }
  22147. },
  22148. back: {
  22149. height: math.unit(166.6, "cm"),
  22150. weight: math.unit(66.6, "lb"),
  22151. name: "Back",
  22152. image: {
  22153. source: "./media/characters/fruity/back.svg",
  22154. extra: 1563 / 1435,
  22155. bottom: 0.005
  22156. }
  22157. },
  22158. },
  22159. [
  22160. {
  22161. name: "Normal",
  22162. height: math.unit(166.6, "cm"),
  22163. default: true
  22164. },
  22165. {
  22166. name: "Demonic",
  22167. height: math.unit(166.6, "feet")
  22168. },
  22169. ]
  22170. ))
  22171. characterMakers.push(() => makeCharacter(
  22172. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22173. {
  22174. side: {
  22175. height: math.unit(10, "feet"),
  22176. weight: math.unit(500, "lb"),
  22177. name: "Side",
  22178. image: {
  22179. source: "./media/characters/zost/side.svg",
  22180. extra: 2870/2533,
  22181. bottom: 252/3122
  22182. }
  22183. },
  22184. mawFront: {
  22185. height: math.unit(1.08, "meters"),
  22186. name: "Maw (Front)",
  22187. image: {
  22188. source: "./media/characters/zost/maw-front.svg"
  22189. }
  22190. },
  22191. mawSide: {
  22192. height: math.unit(2.66, "feet"),
  22193. name: "Maw (Side)",
  22194. image: {
  22195. source: "./media/characters/zost/maw-side.svg"
  22196. }
  22197. },
  22198. wingspan: {
  22199. height: math.unit(7.4, "feet"),
  22200. name: "Wingspan",
  22201. image: {
  22202. source: "./media/characters/zost/wingspan.svg"
  22203. }
  22204. },
  22205. },
  22206. [
  22207. {
  22208. name: "Normal",
  22209. height: math.unit(10, "feet"),
  22210. default: true
  22211. },
  22212. ]
  22213. ))
  22214. characterMakers.push(() => makeCharacter(
  22215. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22216. {
  22217. front: {
  22218. height: math.unit(5 + 4 / 12, "feet"),
  22219. weight: math.unit(120, "lb"),
  22220. name: "Front",
  22221. image: {
  22222. source: "./media/characters/luci/front.svg",
  22223. extra: 1985 / 1884,
  22224. bottom: 0.04
  22225. }
  22226. },
  22227. back: {
  22228. height: math.unit(5 + 4 / 12, "feet"),
  22229. weight: math.unit(120, "lb"),
  22230. name: "Back",
  22231. image: {
  22232. source: "./media/characters/luci/back.svg",
  22233. extra: 1892 / 1791,
  22234. bottom: 0.002
  22235. }
  22236. },
  22237. },
  22238. [
  22239. {
  22240. name: "Normal",
  22241. height: math.unit(5 + 4 / 12, "feet"),
  22242. default: true
  22243. },
  22244. ]
  22245. ))
  22246. characterMakers.push(() => makeCharacter(
  22247. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22248. {
  22249. front: {
  22250. height: math.unit(1500, "feet"),
  22251. weight: math.unit(3.8e6, "tons"),
  22252. name: "Front",
  22253. image: {
  22254. source: "./media/characters/2th/front.svg",
  22255. extra: 3489 / 3350,
  22256. bottom: 0.1
  22257. }
  22258. },
  22259. foot: {
  22260. height: math.unit(461, "feet"),
  22261. name: "Foot",
  22262. image: {
  22263. source: "./media/characters/2th/foot.svg"
  22264. }
  22265. },
  22266. },
  22267. [
  22268. {
  22269. name: "\"Micro\"",
  22270. height: math.unit(15 + 7 / 12, "feet")
  22271. },
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(1500, "feet"),
  22275. default: true
  22276. },
  22277. {
  22278. name: "Macro",
  22279. height: math.unit(5000, "feet")
  22280. },
  22281. {
  22282. name: "Megamacro",
  22283. height: math.unit(15, "miles")
  22284. },
  22285. {
  22286. name: "Gigamacro",
  22287. height: math.unit(4000, "miles")
  22288. },
  22289. {
  22290. name: "Galactic",
  22291. height: math.unit(50, "AU")
  22292. },
  22293. ]
  22294. ))
  22295. characterMakers.push(() => makeCharacter(
  22296. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22297. {
  22298. front: {
  22299. height: math.unit(5 + 6 / 12, "feet"),
  22300. weight: math.unit(220, "lb"),
  22301. name: "Front",
  22302. image: {
  22303. source: "./media/characters/amethyst/front.svg",
  22304. extra: 2078 / 2040,
  22305. bottom: 0.045
  22306. }
  22307. },
  22308. back: {
  22309. height: math.unit(5 + 6 / 12, "feet"),
  22310. weight: math.unit(220, "lb"),
  22311. name: "Back",
  22312. image: {
  22313. source: "./media/characters/amethyst/back.svg",
  22314. extra: 2021 / 1989,
  22315. bottom: 0.02
  22316. }
  22317. },
  22318. },
  22319. [
  22320. {
  22321. name: "Normal",
  22322. height: math.unit(5 + 6 / 12, "feet"),
  22323. default: true
  22324. },
  22325. ]
  22326. ))
  22327. characterMakers.push(() => makeCharacter(
  22328. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22329. {
  22330. front: {
  22331. height: math.unit(4 + 11 / 12, "feet"),
  22332. weight: math.unit(120, "lb"),
  22333. name: "Front",
  22334. image: {
  22335. source: "./media/characters/yumi-akiyama/front.svg",
  22336. extra: 1327 / 1235,
  22337. bottom: 0.02
  22338. }
  22339. },
  22340. back: {
  22341. height: math.unit(4 + 11 / 12, "feet"),
  22342. weight: math.unit(120, "lb"),
  22343. name: "Back",
  22344. image: {
  22345. source: "./media/characters/yumi-akiyama/back.svg",
  22346. extra: 1287 / 1245,
  22347. bottom: 0.002
  22348. }
  22349. },
  22350. },
  22351. [
  22352. {
  22353. name: "Galactic",
  22354. height: math.unit(50, "galaxies"),
  22355. default: true
  22356. },
  22357. {
  22358. name: "Universal",
  22359. height: math.unit(100, "universes")
  22360. },
  22361. ]
  22362. ))
  22363. characterMakers.push(() => makeCharacter(
  22364. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22365. {
  22366. front: {
  22367. height: math.unit(8, "feet"),
  22368. weight: math.unit(500, "lb"),
  22369. name: "Front",
  22370. image: {
  22371. source: "./media/characters/rifter-yrmori/front.svg",
  22372. extra: 1180 / 1125,
  22373. bottom: 0.02
  22374. }
  22375. },
  22376. back: {
  22377. height: math.unit(8, "feet"),
  22378. weight: math.unit(500, "lb"),
  22379. name: "Back",
  22380. image: {
  22381. source: "./media/characters/rifter-yrmori/back.svg",
  22382. extra: 1190 / 1145,
  22383. bottom: 0.001
  22384. }
  22385. },
  22386. wings: {
  22387. height: math.unit(7.75, "feet"),
  22388. weight: math.unit(500, "lb"),
  22389. name: "Wings",
  22390. image: {
  22391. source: "./media/characters/rifter-yrmori/wings.svg",
  22392. extra: 1357 / 1285
  22393. }
  22394. },
  22395. maw: {
  22396. height: math.unit(0.8, "feet"),
  22397. name: "Maw",
  22398. image: {
  22399. source: "./media/characters/rifter-yrmori/maw.svg"
  22400. }
  22401. },
  22402. mawfront: {
  22403. height: math.unit(1.45, "feet"),
  22404. name: "Maw (Front)",
  22405. image: {
  22406. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22407. }
  22408. },
  22409. },
  22410. [
  22411. {
  22412. name: "Normal",
  22413. height: math.unit(8, "feet"),
  22414. default: true
  22415. },
  22416. {
  22417. name: "Macro",
  22418. height: math.unit(42, "meters")
  22419. },
  22420. ]
  22421. ))
  22422. characterMakers.push(() => makeCharacter(
  22423. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22424. {
  22425. were: {
  22426. height: math.unit(25 + 6 / 12, "feet"),
  22427. weight: math.unit(10000, "lb"),
  22428. name: "Were",
  22429. image: {
  22430. source: "./media/characters/tahajin/were.svg",
  22431. extra: 801 / 770,
  22432. bottom: 0.042
  22433. }
  22434. },
  22435. aquatic: {
  22436. height: math.unit(6 + 4 / 12, "feet"),
  22437. weight: math.unit(160, "lb"),
  22438. name: "Aquatic",
  22439. image: {
  22440. source: "./media/characters/tahajin/aquatic.svg",
  22441. extra: 572 / 542,
  22442. bottom: 0.04
  22443. }
  22444. },
  22445. chow: {
  22446. height: math.unit(8 + 11 / 12, "feet"),
  22447. weight: math.unit(450, "lb"),
  22448. name: "Chow",
  22449. image: {
  22450. source: "./media/characters/tahajin/chow.svg",
  22451. extra: 660 / 640,
  22452. bottom: 0.015
  22453. }
  22454. },
  22455. demiNaga: {
  22456. height: math.unit(6 + 8 / 12, "feet"),
  22457. weight: math.unit(300, "lb"),
  22458. name: "Demi Naga",
  22459. image: {
  22460. source: "./media/characters/tahajin/demi-naga.svg",
  22461. extra: 643 / 615,
  22462. bottom: 0.1
  22463. }
  22464. },
  22465. data: {
  22466. height: math.unit(5, "inches"),
  22467. weight: math.unit(0.1, "lb"),
  22468. name: "Data",
  22469. image: {
  22470. source: "./media/characters/tahajin/data.svg"
  22471. }
  22472. },
  22473. fluu: {
  22474. height: math.unit(5 + 7 / 12, "feet"),
  22475. weight: math.unit(140, "lb"),
  22476. name: "Fluu",
  22477. image: {
  22478. source: "./media/characters/tahajin/fluu.svg",
  22479. extra: 628 / 592,
  22480. bottom: 0.02
  22481. }
  22482. },
  22483. starWarrior: {
  22484. height: math.unit(4 + 5 / 12, "feet"),
  22485. weight: math.unit(50, "lb"),
  22486. name: "Star Warrior",
  22487. image: {
  22488. source: "./media/characters/tahajin/star-warrior.svg"
  22489. }
  22490. },
  22491. },
  22492. [
  22493. {
  22494. name: "Normal",
  22495. height: math.unit(25 + 6 / 12, "feet"),
  22496. default: true
  22497. },
  22498. ]
  22499. ))
  22500. characterMakers.push(() => makeCharacter(
  22501. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22502. {
  22503. front: {
  22504. height: math.unit(8, "feet"),
  22505. weight: math.unit(350, "lb"),
  22506. name: "Front",
  22507. image: {
  22508. source: "./media/characters/gabira/front.svg",
  22509. extra: 608 / 580,
  22510. bottom: 0.03
  22511. }
  22512. },
  22513. back: {
  22514. height: math.unit(8, "feet"),
  22515. weight: math.unit(350, "lb"),
  22516. name: "Back",
  22517. image: {
  22518. source: "./media/characters/gabira/back.svg",
  22519. extra: 608 / 580,
  22520. bottom: 0.03
  22521. }
  22522. },
  22523. },
  22524. [
  22525. {
  22526. name: "Normal",
  22527. height: math.unit(8, "feet"),
  22528. default: true
  22529. },
  22530. ]
  22531. ))
  22532. characterMakers.push(() => makeCharacter(
  22533. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22534. {
  22535. front: {
  22536. height: math.unit(5 + 3 / 12, "feet"),
  22537. weight: math.unit(137, "lb"),
  22538. name: "Front",
  22539. image: {
  22540. source: "./media/characters/sasha-katraine/front.svg",
  22541. extra: 1745/1694,
  22542. bottom: 37/1782
  22543. }
  22544. },
  22545. back: {
  22546. height: math.unit(5 + 3 / 12, "feet"),
  22547. weight: math.unit(137, "lb"),
  22548. name: "Back",
  22549. image: {
  22550. source: "./media/characters/sasha-katraine/back.svg",
  22551. extra: 1776/1699,
  22552. bottom: 26/1802
  22553. }
  22554. },
  22555. },
  22556. [
  22557. {
  22558. name: "Micro",
  22559. height: math.unit(5, "inches")
  22560. },
  22561. {
  22562. name: "Normal",
  22563. height: math.unit(5 + 3 / 12, "feet"),
  22564. default: true
  22565. },
  22566. ]
  22567. ))
  22568. characterMakers.push(() => makeCharacter(
  22569. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22570. {
  22571. side: {
  22572. height: math.unit(4, "inches"),
  22573. weight: math.unit(200, "grams"),
  22574. name: "Side",
  22575. image: {
  22576. source: "./media/characters/der/side.svg",
  22577. extra: 719 / 400,
  22578. bottom: 30.6 / 749.9187
  22579. }
  22580. },
  22581. },
  22582. [
  22583. {
  22584. name: "Micro",
  22585. height: math.unit(4, "inches"),
  22586. default: true
  22587. },
  22588. ]
  22589. ))
  22590. characterMakers.push(() => makeCharacter(
  22591. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22592. {
  22593. side: {
  22594. height: math.unit(30, "meters"),
  22595. weight: math.unit(700, "tonnes"),
  22596. name: "Side",
  22597. image: {
  22598. source: "./media/characters/fixerdragon/side.svg",
  22599. extra: (1293.0514 - 116.03) / 1106.86,
  22600. bottom: 116.03 / 1293.0514
  22601. }
  22602. },
  22603. },
  22604. [
  22605. {
  22606. name: "Planck",
  22607. height: math.unit(1.6e-35, "meters")
  22608. },
  22609. {
  22610. name: "Micro",
  22611. height: math.unit(0.4, "meters")
  22612. },
  22613. {
  22614. name: "Normal",
  22615. height: math.unit(30, "meters"),
  22616. default: true
  22617. },
  22618. {
  22619. name: "Megamacro",
  22620. height: math.unit(1.2, "megameters")
  22621. },
  22622. {
  22623. name: "Teramacro",
  22624. height: math.unit(130, "terameters")
  22625. },
  22626. {
  22627. name: "Yottamacro",
  22628. height: math.unit(6200, "yottameters")
  22629. },
  22630. ]
  22631. ));
  22632. characterMakers.push(() => makeCharacter(
  22633. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22634. {
  22635. front: {
  22636. height: math.unit(8, "feet"),
  22637. weight: math.unit(250, "lb"),
  22638. name: "Front",
  22639. image: {
  22640. source: "./media/characters/kite/front.svg",
  22641. extra: 2796 / 2659,
  22642. bottom: 0.002
  22643. }
  22644. },
  22645. },
  22646. [
  22647. {
  22648. name: "Normal",
  22649. height: math.unit(8, "feet"),
  22650. default: true
  22651. },
  22652. {
  22653. name: "Macro",
  22654. height: math.unit(360, "feet")
  22655. },
  22656. {
  22657. name: "Megamacro",
  22658. height: math.unit(1500, "feet")
  22659. },
  22660. ]
  22661. ))
  22662. characterMakers.push(() => makeCharacter(
  22663. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22664. {
  22665. front: {
  22666. height: math.unit(5 + 11/12, "feet"),
  22667. weight: math.unit(170, "lb"),
  22668. name: "Front",
  22669. image: {
  22670. source: "./media/characters/poojawa-vynar/front.svg",
  22671. extra: 1735/1585,
  22672. bottom: 96/1831
  22673. }
  22674. },
  22675. back: {
  22676. height: math.unit(5 + 11/12, "feet"),
  22677. weight: math.unit(170, "lb"),
  22678. name: "Back",
  22679. image: {
  22680. source: "./media/characters/poojawa-vynar/back.svg",
  22681. extra: 1749/1607,
  22682. bottom: 28/1777
  22683. }
  22684. },
  22685. male: {
  22686. height: math.unit(5 + 11/12, "feet"),
  22687. weight: math.unit(170, "lb"),
  22688. name: "Male",
  22689. image: {
  22690. source: "./media/characters/poojawa-vynar/male.svg",
  22691. extra: 1855/1713,
  22692. bottom: 63/1918
  22693. }
  22694. },
  22695. taur: {
  22696. height: math.unit(5 + 11/12, "feet"),
  22697. weight: math.unit(170, "lb"),
  22698. name: "Taur",
  22699. image: {
  22700. source: "./media/characters/poojawa-vynar/taur.svg",
  22701. extra: 1151/1059,
  22702. bottom: 356/1507
  22703. }
  22704. },
  22705. frontDressed: {
  22706. height: math.unit(5 + 11/12, "feet"),
  22707. weight: math.unit(170, "lb"),
  22708. name: "Front (Dressed)",
  22709. image: {
  22710. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22711. extra: 1735/1585,
  22712. bottom: 96/1831
  22713. }
  22714. },
  22715. backDressed: {
  22716. height: math.unit(5 + 11/12, "feet"),
  22717. weight: math.unit(170, "lb"),
  22718. name: "Back (Dressed)",
  22719. image: {
  22720. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22721. extra: 1749/1607,
  22722. bottom: 28/1777
  22723. }
  22724. },
  22725. maleDressed: {
  22726. height: math.unit(5 + 11/12, "feet"),
  22727. weight: math.unit(170, "lb"),
  22728. name: "Male (Dressed)",
  22729. image: {
  22730. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22731. extra: 1855/1713,
  22732. bottom: 63/1918
  22733. }
  22734. },
  22735. taurDressed: {
  22736. height: math.unit(5 + 11/12, "feet"),
  22737. weight: math.unit(170, "lb"),
  22738. name: "Taur (Dressed)",
  22739. image: {
  22740. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22741. extra: 1151/1059,
  22742. bottom: 356/1507
  22743. }
  22744. },
  22745. maw: {
  22746. height: math.unit(1.46, "feet"),
  22747. name: "Maw",
  22748. image: {
  22749. source: "./media/characters/poojawa-vynar/maw.svg"
  22750. }
  22751. },
  22752. head: {
  22753. height: math.unit(2.34, "feet"),
  22754. name: "Head",
  22755. image: {
  22756. source: "./media/characters/poojawa-vynar/head.svg"
  22757. }
  22758. },
  22759. paw: {
  22760. height: math.unit(1.61, "feet"),
  22761. name: "Paw",
  22762. image: {
  22763. source: "./media/characters/poojawa-vynar/paw.svg"
  22764. }
  22765. },
  22766. pawToering: {
  22767. height: math.unit(1.72, "feet"),
  22768. name: "Paw (Toering)",
  22769. image: {
  22770. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22771. }
  22772. },
  22773. toering: {
  22774. height: math.unit(2.9, "inches"),
  22775. name: "Toering",
  22776. image: {
  22777. source: "./media/characters/poojawa-vynar/toering.svg"
  22778. }
  22779. },
  22780. shaft: {
  22781. height: math.unit(0.625, "feet"),
  22782. name: "Shaft",
  22783. image: {
  22784. source: "./media/characters/poojawa-vynar/shaft.svg"
  22785. }
  22786. },
  22787. spade: {
  22788. height: math.unit(0.42, "feet"),
  22789. name: "Spade",
  22790. image: {
  22791. source: "./media/characters/poojawa-vynar/spade.svg"
  22792. }
  22793. },
  22794. },
  22795. [
  22796. {
  22797. name: "Shortstack",
  22798. height: math.unit(4, "feet")
  22799. },
  22800. {
  22801. name: "Normal",
  22802. height: math.unit(5 + 11 / 12, "feet"),
  22803. default: true
  22804. },
  22805. {
  22806. name: "Tauric",
  22807. height: math.unit(4, "meters")
  22808. },
  22809. ]
  22810. ))
  22811. characterMakers.push(() => makeCharacter(
  22812. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22813. {
  22814. front: {
  22815. height: math.unit(293, "meters"),
  22816. weight: math.unit(70400, "tons"),
  22817. name: "Front",
  22818. image: {
  22819. source: "./media/characters/violette/front.svg",
  22820. extra: 1227 / 1180,
  22821. bottom: 0.005
  22822. }
  22823. },
  22824. back: {
  22825. height: math.unit(293, "meters"),
  22826. weight: math.unit(70400, "tons"),
  22827. name: "Back",
  22828. image: {
  22829. source: "./media/characters/violette/back.svg",
  22830. extra: 1227 / 1180,
  22831. bottom: 0.005
  22832. }
  22833. },
  22834. },
  22835. [
  22836. {
  22837. name: "Macro",
  22838. height: math.unit(293, "meters"),
  22839. default: true
  22840. },
  22841. ]
  22842. ))
  22843. characterMakers.push(() => makeCharacter(
  22844. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22845. {
  22846. front: {
  22847. height: math.unit(1050, "feet"),
  22848. weight: math.unit(200000, "tons"),
  22849. name: "Front",
  22850. image: {
  22851. source: "./media/characters/alessandra/front.svg",
  22852. extra: 960 / 912,
  22853. bottom: 0.06
  22854. }
  22855. },
  22856. },
  22857. [
  22858. {
  22859. name: "Macro",
  22860. height: math.unit(1050, "feet")
  22861. },
  22862. {
  22863. name: "Macro+",
  22864. height: math.unit(900, "meters"),
  22865. default: true
  22866. },
  22867. ]
  22868. ))
  22869. characterMakers.push(() => makeCharacter(
  22870. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22871. {
  22872. front: {
  22873. height: math.unit(5, "feet"),
  22874. weight: math.unit(187, "lb"),
  22875. name: "Front",
  22876. image: {
  22877. source: "./media/characters/person/front.svg",
  22878. extra: 3087 / 2945,
  22879. bottom: 91 / 3181
  22880. }
  22881. },
  22882. },
  22883. [
  22884. {
  22885. name: "Micro",
  22886. height: math.unit(3, "inches")
  22887. },
  22888. {
  22889. name: "Normal",
  22890. height: math.unit(5, "feet"),
  22891. default: true
  22892. },
  22893. {
  22894. name: "Macro",
  22895. height: math.unit(90, "feet")
  22896. },
  22897. {
  22898. name: "Max Size",
  22899. height: math.unit(280, "feet")
  22900. },
  22901. ]
  22902. ))
  22903. characterMakers.push(() => makeCharacter(
  22904. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22905. {
  22906. front: {
  22907. height: math.unit(4.5, "meters"),
  22908. weight: math.unit(3200, "lb"),
  22909. name: "Front",
  22910. image: {
  22911. source: "./media/characters/ty/front.svg",
  22912. extra: 1038 / 960,
  22913. bottom: 31.156 / 1068
  22914. }
  22915. },
  22916. back: {
  22917. height: math.unit(4.5, "meters"),
  22918. weight: math.unit(3200, "lb"),
  22919. name: "Back",
  22920. image: {
  22921. source: "./media/characters/ty/back.svg",
  22922. extra: 1044 / 966,
  22923. bottom: 7.48 / 1049
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Normal",
  22930. height: math.unit(4.5, "meters"),
  22931. default: true
  22932. },
  22933. ]
  22934. ))
  22935. characterMakers.push(() => makeCharacter(
  22936. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22937. {
  22938. front: {
  22939. height: math.unit(5 + 4 / 12, "feet"),
  22940. weight: math.unit(115, "lb"),
  22941. name: "Front",
  22942. image: {
  22943. source: "./media/characters/rocky/front.svg",
  22944. extra: 1012 / 975,
  22945. bottom: 54 / 1066
  22946. }
  22947. },
  22948. },
  22949. [
  22950. {
  22951. name: "Normal",
  22952. height: math.unit(5 + 4 / 12, "feet"),
  22953. default: true
  22954. },
  22955. ]
  22956. ))
  22957. characterMakers.push(() => makeCharacter(
  22958. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22959. {
  22960. upright: {
  22961. height: math.unit(6, "meters"),
  22962. weight: math.unit(4000, "kg"),
  22963. name: "Upright",
  22964. image: {
  22965. source: "./media/characters/ruin/upright.svg",
  22966. extra: 668 / 661,
  22967. bottom: 42 / 799.8396
  22968. }
  22969. },
  22970. },
  22971. [
  22972. {
  22973. name: "Normal",
  22974. height: math.unit(6, "meters"),
  22975. default: true
  22976. },
  22977. ]
  22978. ))
  22979. characterMakers.push(() => makeCharacter(
  22980. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22981. {
  22982. front: {
  22983. height: math.unit(5, "feet"),
  22984. weight: math.unit(106, "lb"),
  22985. name: "Front",
  22986. image: {
  22987. source: "./media/characters/robin/front.svg",
  22988. extra: 862 / 799,
  22989. bottom: 42.4 / 914.8856
  22990. }
  22991. },
  22992. },
  22993. [
  22994. {
  22995. name: "Normal",
  22996. height: math.unit(5, "feet"),
  22997. default: true
  22998. },
  22999. ]
  23000. ))
  23001. characterMakers.push(() => makeCharacter(
  23002. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23003. {
  23004. side: {
  23005. height: math.unit(3, "feet"),
  23006. weight: math.unit(225, "lb"),
  23007. name: "Side",
  23008. image: {
  23009. source: "./media/characters/saian/side.svg",
  23010. extra: 566 / 356,
  23011. bottom: 79.7 / 643
  23012. }
  23013. },
  23014. maw: {
  23015. height: math.unit(2.85, "feet"),
  23016. name: "Maw",
  23017. image: {
  23018. source: "./media/characters/saian/maw.svg"
  23019. }
  23020. },
  23021. },
  23022. [
  23023. {
  23024. name: "Normal",
  23025. height: math.unit(3, "feet"),
  23026. default: true
  23027. },
  23028. ]
  23029. ))
  23030. characterMakers.push(() => makeCharacter(
  23031. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23032. {
  23033. side: {
  23034. height: math.unit(8, "feet"),
  23035. weight: math.unit(300, "lb"),
  23036. name: "Side",
  23037. image: {
  23038. source: "./media/characters/equus-silvermane/side.svg",
  23039. extra: 2176 / 2050,
  23040. bottom: 65.7 / 2245
  23041. }
  23042. },
  23043. front: {
  23044. height: math.unit(8, "feet"),
  23045. weight: math.unit(300, "lb"),
  23046. name: "Front",
  23047. image: {
  23048. source: "./media/characters/equus-silvermane/front.svg",
  23049. extra: 4633 / 4400,
  23050. bottom: 71.3 / 4706.915
  23051. }
  23052. },
  23053. sideStepping: {
  23054. height: math.unit(8, "feet"),
  23055. weight: math.unit(300, "lb"),
  23056. name: "Side (Stepping)",
  23057. image: {
  23058. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23059. extra: 1968 / 1860,
  23060. bottom: 16.4 / 1989
  23061. }
  23062. },
  23063. },
  23064. [
  23065. {
  23066. name: "Normal",
  23067. height: math.unit(8, "feet")
  23068. },
  23069. {
  23070. name: "Minimacro",
  23071. height: math.unit(75, "feet"),
  23072. default: true
  23073. },
  23074. {
  23075. name: "Macro",
  23076. height: math.unit(150, "feet")
  23077. },
  23078. {
  23079. name: "Macro+",
  23080. height: math.unit(1000, "feet")
  23081. },
  23082. {
  23083. name: "Megamacro",
  23084. height: math.unit(1, "mile")
  23085. },
  23086. ]
  23087. ))
  23088. characterMakers.push(() => makeCharacter(
  23089. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23090. {
  23091. side: {
  23092. height: math.unit(20, "feet"),
  23093. weight: math.unit(30000, "kg"),
  23094. name: "Side",
  23095. image: {
  23096. source: "./media/characters/windar/side.svg",
  23097. extra: 1491 / 1248,
  23098. bottom: 82.56 / 1568
  23099. }
  23100. },
  23101. },
  23102. [
  23103. {
  23104. name: "Normal",
  23105. height: math.unit(20, "feet"),
  23106. default: true
  23107. },
  23108. ]
  23109. ))
  23110. characterMakers.push(() => makeCharacter(
  23111. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23112. {
  23113. side: {
  23114. height: math.unit(15.66, "feet"),
  23115. weight: math.unit(150, "lb"),
  23116. name: "Side",
  23117. image: {
  23118. source: "./media/characters/melody/side.svg",
  23119. extra: 1097 / 944,
  23120. bottom: 11.8 / 1109
  23121. }
  23122. },
  23123. sideOutfit: {
  23124. height: math.unit(15.66, "feet"),
  23125. weight: math.unit(150, "lb"),
  23126. name: "Side (Outfit)",
  23127. image: {
  23128. source: "./media/characters/melody/side-outfit.svg",
  23129. extra: 1097 / 944,
  23130. bottom: 11.8 / 1109
  23131. }
  23132. },
  23133. },
  23134. [
  23135. {
  23136. name: "Normal",
  23137. height: math.unit(15.66, "feet"),
  23138. default: true
  23139. },
  23140. ]
  23141. ))
  23142. characterMakers.push(() => makeCharacter(
  23143. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23144. {
  23145. armoredFront: {
  23146. height: math.unit(8, "feet"),
  23147. weight: math.unit(325, "lb"),
  23148. name: "Front",
  23149. image: {
  23150. source: "./media/characters/windera/armored-front.svg",
  23151. extra: 1830/1598,
  23152. bottom: 151/1981
  23153. },
  23154. form: "armored",
  23155. default: true
  23156. },
  23157. macroFront: {
  23158. height: math.unit(70, "feet"),
  23159. weight: math.unit(315453, "lb"),
  23160. name: "Front",
  23161. image: {
  23162. source: "./media/characters/windera/macro-front.svg",
  23163. extra: 963/883,
  23164. bottom: 23/986
  23165. },
  23166. form: "macro",
  23167. default: true
  23168. },
  23169. },
  23170. [
  23171. {
  23172. name: "Normal",
  23173. height: math.unit(8, "feet"),
  23174. default: true,
  23175. form: "armored"
  23176. },
  23177. {
  23178. name: "Normal",
  23179. height: math.unit(70, "feet"),
  23180. default: true,
  23181. form: "macro"
  23182. },
  23183. ],
  23184. {
  23185. "armored": {
  23186. name: "Armored",
  23187. default: true
  23188. },
  23189. "macro": {
  23190. name: "Macro",
  23191. },
  23192. }
  23193. ))
  23194. characterMakers.push(() => makeCharacter(
  23195. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23196. {
  23197. front: {
  23198. height: math.unit(28.75, "feet"),
  23199. weight: math.unit(2000, "kg"),
  23200. name: "Front",
  23201. image: {
  23202. source: "./media/characters/sonear/front.svg",
  23203. extra: 1041.1 / 964.9,
  23204. bottom: 53.7 / 1096.6
  23205. }
  23206. },
  23207. },
  23208. [
  23209. {
  23210. name: "Normal",
  23211. height: math.unit(28.75, "feet"),
  23212. default: true
  23213. },
  23214. ]
  23215. ))
  23216. characterMakers.push(() => makeCharacter(
  23217. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23218. {
  23219. side: {
  23220. height: math.unit(25.5, "feet"),
  23221. weight: math.unit(23000, "kg"),
  23222. name: "Side",
  23223. image: {
  23224. source: "./media/characters/kanara/side.svg"
  23225. }
  23226. },
  23227. },
  23228. [
  23229. {
  23230. name: "Normal",
  23231. height: math.unit(25.5, "feet"),
  23232. default: true
  23233. },
  23234. ]
  23235. ))
  23236. characterMakers.push(() => makeCharacter(
  23237. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23238. {
  23239. side: {
  23240. height: math.unit(10, "feet"),
  23241. weight: math.unit(1000, "kg"),
  23242. name: "Side",
  23243. image: {
  23244. source: "./media/characters/ereus/side.svg",
  23245. extra: 1157 / 959,
  23246. bottom: 153 / 1312.5
  23247. }
  23248. },
  23249. },
  23250. [
  23251. {
  23252. name: "Normal",
  23253. height: math.unit(10, "feet"),
  23254. default: true
  23255. },
  23256. ]
  23257. ))
  23258. characterMakers.push(() => makeCharacter(
  23259. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23260. {
  23261. side: {
  23262. height: math.unit(4.5, "feet"),
  23263. weight: math.unit(500, "lb"),
  23264. name: "Side",
  23265. image: {
  23266. source: "./media/characters/e-ter/side.svg",
  23267. extra: 1550 / 1248,
  23268. bottom: 146 / 1694
  23269. }
  23270. },
  23271. },
  23272. [
  23273. {
  23274. name: "Normal",
  23275. height: math.unit(4.5, "feet"),
  23276. default: true
  23277. },
  23278. ]
  23279. ))
  23280. characterMakers.push(() => makeCharacter(
  23281. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23282. {
  23283. side: {
  23284. height: math.unit(9.7, "feet"),
  23285. weight: math.unit(4000, "kg"),
  23286. name: "Side",
  23287. image: {
  23288. source: "./media/characters/yamie/side.svg"
  23289. }
  23290. },
  23291. },
  23292. [
  23293. {
  23294. name: "Normal",
  23295. height: math.unit(9.7, "feet"),
  23296. default: true
  23297. },
  23298. ]
  23299. ))
  23300. characterMakers.push(() => makeCharacter(
  23301. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23302. {
  23303. front: {
  23304. height: math.unit(50, "feet"),
  23305. weight: math.unit(50000, "kg"),
  23306. name: "Front",
  23307. image: {
  23308. source: "./media/characters/anders/front.svg",
  23309. extra: 570 / 539,
  23310. bottom: 14.7 / 586.7
  23311. }
  23312. },
  23313. },
  23314. [
  23315. {
  23316. name: "Large",
  23317. height: math.unit(50, "feet")
  23318. },
  23319. {
  23320. name: "Macro",
  23321. height: math.unit(2000, "feet"),
  23322. default: true
  23323. },
  23324. {
  23325. name: "Megamacro",
  23326. height: math.unit(12, "miles")
  23327. },
  23328. ]
  23329. ))
  23330. characterMakers.push(() => makeCharacter(
  23331. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23332. {
  23333. front: {
  23334. height: math.unit(7 + 2 / 12, "feet"),
  23335. weight: math.unit(300, "lb"),
  23336. name: "Front",
  23337. image: {
  23338. source: "./media/characters/reban/front.svg",
  23339. extra: 1287/1212,
  23340. bottom: 148/1435
  23341. }
  23342. },
  23343. head: {
  23344. height: math.unit(1.95, "feet"),
  23345. name: "Head",
  23346. image: {
  23347. source: "./media/characters/reban/head.svg"
  23348. }
  23349. },
  23350. maw: {
  23351. height: math.unit(0.95, "feet"),
  23352. name: "Maw",
  23353. image: {
  23354. source: "./media/characters/reban/maw.svg"
  23355. }
  23356. },
  23357. foot: {
  23358. height: math.unit(1.65, "feet"),
  23359. name: "Foot",
  23360. image: {
  23361. source: "./media/characters/reban/foot.svg"
  23362. }
  23363. },
  23364. dick: {
  23365. height: math.unit(7 / 5, "feet"),
  23366. name: "Dick",
  23367. image: {
  23368. source: "./media/characters/reban/dick.svg"
  23369. }
  23370. },
  23371. },
  23372. [
  23373. {
  23374. name: "Natural Height",
  23375. height: math.unit(7 + 2 / 12, "feet")
  23376. },
  23377. {
  23378. name: "Macro",
  23379. height: math.unit(500, "feet"),
  23380. default: true
  23381. },
  23382. {
  23383. name: "Canon Height",
  23384. height: math.unit(50, "AU")
  23385. },
  23386. ]
  23387. ))
  23388. characterMakers.push(() => makeCharacter(
  23389. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23390. {
  23391. front: {
  23392. height: math.unit(6, "feet"),
  23393. weight: math.unit(150, "lb"),
  23394. name: "Front",
  23395. image: {
  23396. source: "./media/characters/terrance-keayes/front.svg",
  23397. extra: 1.005,
  23398. bottom: 151 / 1615
  23399. }
  23400. },
  23401. side: {
  23402. height: math.unit(6, "feet"),
  23403. weight: math.unit(150, "lb"),
  23404. name: "Side",
  23405. image: {
  23406. source: "./media/characters/terrance-keayes/side.svg",
  23407. extra: 1.005,
  23408. bottom: 129.4 / 1544
  23409. }
  23410. },
  23411. back: {
  23412. height: math.unit(6, "feet"),
  23413. weight: math.unit(150, "lb"),
  23414. name: "Back",
  23415. image: {
  23416. source: "./media/characters/terrance-keayes/back.svg",
  23417. extra: 1.005,
  23418. bottom: 58.4 / 1557.3
  23419. }
  23420. },
  23421. dick: {
  23422. height: math.unit(6 * 0.208, "feet"),
  23423. name: "Dick",
  23424. image: {
  23425. source: "./media/characters/terrance-keayes/dick.svg"
  23426. }
  23427. },
  23428. },
  23429. [
  23430. {
  23431. name: "Canon Height",
  23432. height: math.unit(35, "miles"),
  23433. default: true
  23434. },
  23435. ]
  23436. ))
  23437. characterMakers.push(() => makeCharacter(
  23438. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23439. {
  23440. front: {
  23441. height: math.unit(6, "feet"),
  23442. weight: math.unit(150, "lb"),
  23443. name: "Front",
  23444. image: {
  23445. source: "./media/characters/ofelia/front.svg",
  23446. extra: 1130/1117,
  23447. bottom: 91/1221
  23448. }
  23449. },
  23450. back: {
  23451. height: math.unit(6, "feet"),
  23452. weight: math.unit(150, "lb"),
  23453. name: "Back",
  23454. image: {
  23455. source: "./media/characters/ofelia/back.svg",
  23456. extra: 1172/1159,
  23457. bottom: 28/1200
  23458. }
  23459. },
  23460. maw: {
  23461. height: math.unit(1, "feet"),
  23462. name: "Maw",
  23463. image: {
  23464. source: "./media/characters/ofelia/maw.svg"
  23465. }
  23466. },
  23467. foot: {
  23468. height: math.unit(1.949, "feet"),
  23469. name: "Foot",
  23470. image: {
  23471. source: "./media/characters/ofelia/foot.svg"
  23472. }
  23473. },
  23474. },
  23475. [
  23476. {
  23477. name: "Canon Height",
  23478. height: math.unit(2000, "miles"),
  23479. default: true
  23480. },
  23481. ]
  23482. ))
  23483. characterMakers.push(() => makeCharacter(
  23484. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23485. {
  23486. front: {
  23487. height: math.unit(6, "feet"),
  23488. weight: math.unit(150, "lb"),
  23489. name: "Front",
  23490. image: {
  23491. source: "./media/characters/samuel/front.svg",
  23492. extra: 265 / 258,
  23493. bottom: 2 / 266.1566
  23494. }
  23495. },
  23496. },
  23497. [
  23498. {
  23499. name: "Macro",
  23500. height: math.unit(100, "feet"),
  23501. default: true
  23502. },
  23503. {
  23504. name: "Full Size",
  23505. height: math.unit(1000, "miles")
  23506. },
  23507. ]
  23508. ))
  23509. characterMakers.push(() => makeCharacter(
  23510. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23511. {
  23512. front: {
  23513. height: math.unit(6, "feet"),
  23514. weight: math.unit(300, "lb"),
  23515. name: "Front",
  23516. image: {
  23517. source: "./media/characters/beishir-kiel/front.svg",
  23518. extra: 569 / 547,
  23519. bottom: 41.9 / 609
  23520. }
  23521. },
  23522. maw: {
  23523. height: math.unit(6 * 0.202, "feet"),
  23524. name: "Maw",
  23525. image: {
  23526. source: "./media/characters/beishir-kiel/maw.svg"
  23527. }
  23528. },
  23529. },
  23530. [
  23531. {
  23532. name: "Macro",
  23533. height: math.unit(300, "feet"),
  23534. default: true
  23535. },
  23536. ]
  23537. ))
  23538. characterMakers.push(() => makeCharacter(
  23539. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23540. {
  23541. front: {
  23542. height: math.unit(5 + 7/12, "feet"),
  23543. weight: math.unit(120, "lb"),
  23544. name: "Front",
  23545. image: {
  23546. source: "./media/characters/logan-grey/front.svg",
  23547. extra: 1836/1738,
  23548. bottom: 108/1944
  23549. }
  23550. },
  23551. back: {
  23552. height: math.unit(5 + 7/12, "feet"),
  23553. weight: math.unit(120, "lb"),
  23554. name: "Back",
  23555. image: {
  23556. source: "./media/characters/logan-grey/back.svg",
  23557. extra: 1880/1794,
  23558. bottom: 24/1904
  23559. }
  23560. },
  23561. frontSfw: {
  23562. height: math.unit(5 + 7/12, "feet"),
  23563. weight: math.unit(120, "lb"),
  23564. name: "Front (SFW)",
  23565. image: {
  23566. source: "./media/characters/logan-grey/front-sfw.svg",
  23567. extra: 1836/1738,
  23568. bottom: 108/1944
  23569. }
  23570. },
  23571. backSfw: {
  23572. height: math.unit(5 + 7/12, "feet"),
  23573. weight: math.unit(120, "lb"),
  23574. name: "Back (SFW)",
  23575. image: {
  23576. source: "./media/characters/logan-grey/back-sfw.svg",
  23577. extra: 1880/1794,
  23578. bottom: 24/1904
  23579. }
  23580. },
  23581. hands: {
  23582. height: math.unit(0.84, "feet"),
  23583. name: "Hands",
  23584. image: {
  23585. source: "./media/characters/logan-grey/hands.svg"
  23586. }
  23587. },
  23588. paws: {
  23589. height: math.unit(0.72, "feet"),
  23590. name: "Paws",
  23591. image: {
  23592. source: "./media/characters/logan-grey/paws.svg"
  23593. }
  23594. },
  23595. cock: {
  23596. height: math.unit(1.45, "feet"),
  23597. name: "Cock",
  23598. image: {
  23599. source: "./media/characters/logan-grey/cock.svg"
  23600. }
  23601. },
  23602. cockAlt: {
  23603. height: math.unit(1.437, "feet"),
  23604. name: "Cock (alt)",
  23605. image: {
  23606. source: "./media/characters/logan-grey/cock-alt.svg"
  23607. }
  23608. },
  23609. },
  23610. [
  23611. {
  23612. name: "Normal",
  23613. height: math.unit(5 + 8 / 12, "feet")
  23614. },
  23615. {
  23616. name: "The 500 Foot Femboy",
  23617. height: math.unit(500, "feet"),
  23618. default: true
  23619. },
  23620. {
  23621. name: "Megmacro",
  23622. height: math.unit(20, "miles")
  23623. },
  23624. ]
  23625. ))
  23626. characterMakers.push(() => makeCharacter(
  23627. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23628. {
  23629. front: {
  23630. height: math.unit(8 + 2 / 12, "feet"),
  23631. weight: math.unit(275, "lb"),
  23632. name: "Front",
  23633. image: {
  23634. source: "./media/characters/draganta/front.svg",
  23635. extra: 1177 / 1135,
  23636. bottom: 33.46 / 1212.1
  23637. }
  23638. },
  23639. },
  23640. [
  23641. {
  23642. name: "Normal",
  23643. height: math.unit(8 + 6 / 12, "feet"),
  23644. default: true
  23645. },
  23646. {
  23647. name: "Macro",
  23648. height: math.unit(150, "feet")
  23649. },
  23650. {
  23651. name: "Megamacro",
  23652. height: math.unit(1000, "miles")
  23653. },
  23654. ]
  23655. ))
  23656. characterMakers.push(() => makeCharacter(
  23657. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23658. {
  23659. front: {
  23660. height: math.unit(1.72, "m"),
  23661. weight: math.unit(80, "lb"),
  23662. name: "Front",
  23663. image: {
  23664. source: "./media/characters/voski/front.svg",
  23665. extra: 2076.22 / 2022.4,
  23666. bottom: 102.7 / 2177.3866
  23667. }
  23668. },
  23669. frontFlaccid: {
  23670. height: math.unit(1.72, "m"),
  23671. weight: math.unit(80, "lb"),
  23672. name: "Front (Flaccid)",
  23673. image: {
  23674. source: "./media/characters/voski/front-flaccid.svg",
  23675. extra: 2076.22 / 2022.4,
  23676. bottom: 102.7 / 2177.3866
  23677. }
  23678. },
  23679. frontErect: {
  23680. height: math.unit(1.72, "m"),
  23681. weight: math.unit(80, "lb"),
  23682. name: "Front (Erect)",
  23683. image: {
  23684. source: "./media/characters/voski/front-erect.svg",
  23685. extra: 2076.22 / 2022.4,
  23686. bottom: 102.7 / 2177.3866
  23687. }
  23688. },
  23689. back: {
  23690. height: math.unit(1.72, "m"),
  23691. weight: math.unit(80, "lb"),
  23692. name: "Back",
  23693. image: {
  23694. source: "./media/characters/voski/back.svg",
  23695. extra: 2104 / 2051,
  23696. bottom: 10.45 / 2113.63
  23697. }
  23698. },
  23699. },
  23700. [
  23701. {
  23702. name: "Normal",
  23703. height: math.unit(1.72, "m")
  23704. },
  23705. {
  23706. name: "Macro",
  23707. height: math.unit(55, "m"),
  23708. default: true
  23709. },
  23710. {
  23711. name: "Macro+",
  23712. height: math.unit(300, "m")
  23713. },
  23714. {
  23715. name: "Macro++",
  23716. height: math.unit(700, "m")
  23717. },
  23718. {
  23719. name: "Macro+++",
  23720. height: math.unit(4500, "m")
  23721. },
  23722. {
  23723. name: "Macro++++",
  23724. height: math.unit(45, "km")
  23725. },
  23726. {
  23727. name: "Macro+++++",
  23728. height: math.unit(1220, "km")
  23729. },
  23730. ]
  23731. ))
  23732. characterMakers.push(() => makeCharacter(
  23733. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23734. {
  23735. front: {
  23736. height: math.unit(2.3, "m"),
  23737. weight: math.unit(304, "kg"),
  23738. name: "Front",
  23739. image: {
  23740. source: "./media/characters/icowom-lee/front.svg",
  23741. extra: 985 / 955,
  23742. bottom: 25.4 / 1012
  23743. }
  23744. },
  23745. fronttentacles: {
  23746. height: math.unit(2.3, "m"),
  23747. weight: math.unit(304, "kg"),
  23748. name: "Front-tentacles",
  23749. image: {
  23750. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23751. extra: 985 / 955,
  23752. bottom: 25.4 / 1012
  23753. }
  23754. },
  23755. back: {
  23756. height: math.unit(2.3, "m"),
  23757. weight: math.unit(304, "kg"),
  23758. name: "Back",
  23759. image: {
  23760. source: "./media/characters/icowom-lee/back.svg",
  23761. extra: 975 / 954,
  23762. bottom: 9.5 / 985
  23763. }
  23764. },
  23765. backtentacles: {
  23766. height: math.unit(2.3, "m"),
  23767. weight: math.unit(304, "kg"),
  23768. name: "Back-tentacles",
  23769. image: {
  23770. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23771. extra: 975 / 954,
  23772. bottom: 9.5 / 985
  23773. }
  23774. },
  23775. frontDressed: {
  23776. height: math.unit(2.3, "m"),
  23777. weight: math.unit(304, "kg"),
  23778. name: "Front (Dressed)",
  23779. image: {
  23780. source: "./media/characters/icowom-lee/front-dressed.svg",
  23781. extra: 3076 / 2933,
  23782. bottom: 51.4 / 3125.1889
  23783. }
  23784. },
  23785. rump: {
  23786. height: math.unit(0.776, "meters"),
  23787. name: "Rump",
  23788. image: {
  23789. source: "./media/characters/icowom-lee/rump.svg"
  23790. }
  23791. },
  23792. genitals: {
  23793. height: math.unit(0.78, "meters"),
  23794. name: "Genitals",
  23795. image: {
  23796. source: "./media/characters/icowom-lee/genitals.svg"
  23797. }
  23798. },
  23799. },
  23800. [
  23801. {
  23802. name: "Normal",
  23803. height: math.unit(2.3, "meters"),
  23804. default: true
  23805. },
  23806. {
  23807. name: "Macro",
  23808. height: math.unit(94, "meters"),
  23809. default: true
  23810. },
  23811. ]
  23812. ))
  23813. characterMakers.push(() => makeCharacter(
  23814. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23815. {
  23816. front: {
  23817. height: math.unit(22, "meters"),
  23818. weight: math.unit(21000, "kg"),
  23819. name: "Front",
  23820. image: {
  23821. source: "./media/characters/shock-diamond/front.svg",
  23822. extra: 2204 / 2053,
  23823. bottom: 65 / 2239.47
  23824. }
  23825. },
  23826. frontNude: {
  23827. height: math.unit(22, "meters"),
  23828. weight: math.unit(21000, "kg"),
  23829. name: "Front (Nude)",
  23830. image: {
  23831. source: "./media/characters/shock-diamond/front-nude.svg",
  23832. extra: 2514 / 2285,
  23833. bottom: 13 / 2527.56
  23834. }
  23835. },
  23836. },
  23837. [
  23838. {
  23839. name: "Normal",
  23840. height: math.unit(3, "meters")
  23841. },
  23842. {
  23843. name: "Macro",
  23844. height: math.unit(22, "meters"),
  23845. default: true
  23846. },
  23847. ]
  23848. ))
  23849. characterMakers.push(() => makeCharacter(
  23850. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23851. {
  23852. front: {
  23853. height: math.unit(5 + 4 / 12, "feet"),
  23854. weight: math.unit(120, "lb"),
  23855. name: "Front",
  23856. image: {
  23857. source: "./media/characters/rory/front.svg",
  23858. extra: 1318/1241,
  23859. bottom: 42/1360
  23860. }
  23861. },
  23862. back: {
  23863. height: math.unit(5 + 4 / 12, "feet"),
  23864. weight: math.unit(120, "lb"),
  23865. name: "Back",
  23866. image: {
  23867. source: "./media/characters/rory/back.svg",
  23868. extra: 1318/1241,
  23869. bottom: 42/1360
  23870. }
  23871. },
  23872. butt: {
  23873. height: math.unit(1.74, "feet"),
  23874. name: "Butt",
  23875. image: {
  23876. source: "./media/characters/rory/butt.svg"
  23877. }
  23878. },
  23879. dick: {
  23880. height: math.unit(1.02, "feet"),
  23881. name: "Dick",
  23882. image: {
  23883. source: "./media/characters/rory/dick.svg"
  23884. }
  23885. },
  23886. paws: {
  23887. height: math.unit(1, "feet"),
  23888. name: "Paws",
  23889. image: {
  23890. source: "./media/characters/rory/paws.svg"
  23891. }
  23892. },
  23893. frontAlt: {
  23894. height: math.unit(5 + 4 / 12, "feet"),
  23895. weight: math.unit(120, "lb"),
  23896. name: "Front (Alt)",
  23897. image: {
  23898. source: "./media/characters/rory/front-alt.svg",
  23899. extra: 589 / 556,
  23900. bottom: 45.7 / 635.76
  23901. }
  23902. },
  23903. frontAltNude: {
  23904. height: math.unit(5 + 4 / 12, "feet"),
  23905. weight: math.unit(120, "lb"),
  23906. name: "Front (Alt, Nude)",
  23907. image: {
  23908. source: "./media/characters/rory/front-alt-nude.svg",
  23909. extra: 589 / 556,
  23910. bottom: 45.7 / 635.76
  23911. }
  23912. },
  23913. side: {
  23914. height: math.unit(5 + 4 / 12, "feet"),
  23915. weight: math.unit(120, "lb"),
  23916. name: "Side",
  23917. image: {
  23918. source: "./media/characters/rory/side.svg",
  23919. extra: 597 / 564,
  23920. bottom: 55 / 653
  23921. }
  23922. },
  23923. backAlt: {
  23924. height: math.unit(5 + 4 / 12, "feet"),
  23925. weight: math.unit(120, "lb"),
  23926. name: "Back (Alt)",
  23927. image: {
  23928. source: "./media/characters/rory/back-alt.svg",
  23929. extra: 620 / 585,
  23930. bottom: 8.86 / 630.43
  23931. }
  23932. },
  23933. dickAlt: {
  23934. height: math.unit(0.86, "feet"),
  23935. name: "Dick (Alt)",
  23936. image: {
  23937. source: "./media/characters/rory/dick-alt.svg"
  23938. }
  23939. },
  23940. },
  23941. [
  23942. {
  23943. name: "Normal",
  23944. height: math.unit(5 + 4 / 12, "feet"),
  23945. default: true
  23946. },
  23947. {
  23948. name: "Macro",
  23949. height: math.unit(100, "feet")
  23950. },
  23951. {
  23952. name: "Macro+",
  23953. height: math.unit(140, "feet")
  23954. },
  23955. {
  23956. name: "Macro++",
  23957. height: math.unit(300, "feet")
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23963. {
  23964. front: {
  23965. height: math.unit(5 + 9 / 12, "feet"),
  23966. weight: math.unit(190, "lb"),
  23967. name: "Front",
  23968. image: {
  23969. source: "./media/characters/sprisk/front.svg",
  23970. extra: 1225 / 1180,
  23971. bottom: 42.7 / 1266.4
  23972. }
  23973. },
  23974. frontNsfw: {
  23975. height: math.unit(5 + 9 / 12, "feet"),
  23976. weight: math.unit(190, "lb"),
  23977. name: "Front (NSFW)",
  23978. image: {
  23979. source: "./media/characters/sprisk/front-nsfw.svg",
  23980. extra: 1225 / 1180,
  23981. bottom: 42.7 / 1266.4
  23982. }
  23983. },
  23984. back: {
  23985. height: math.unit(5 + 9 / 12, "feet"),
  23986. weight: math.unit(190, "lb"),
  23987. name: "Back",
  23988. image: {
  23989. source: "./media/characters/sprisk/back.svg",
  23990. extra: 1247 / 1200,
  23991. bottom: 5.6 / 1253.04
  23992. }
  23993. },
  23994. },
  23995. [
  23996. {
  23997. name: "Tiny",
  23998. height: math.unit(2, "inches")
  23999. },
  24000. {
  24001. name: "Normal",
  24002. height: math.unit(5 + 9 / 12, "feet"),
  24003. default: true
  24004. },
  24005. {
  24006. name: "Mini Macro",
  24007. height: math.unit(18, "feet")
  24008. },
  24009. {
  24010. name: "Macro",
  24011. height: math.unit(100, "feet")
  24012. },
  24013. {
  24014. name: "MACRO",
  24015. height: math.unit(50, "miles")
  24016. },
  24017. {
  24018. name: "M A C R O",
  24019. height: math.unit(300, "miles")
  24020. },
  24021. ]
  24022. ))
  24023. characterMakers.push(() => makeCharacter(
  24024. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24025. {
  24026. side: {
  24027. height: math.unit(15.6, "meters"),
  24028. weight: math.unit(700000, "kg"),
  24029. name: "Side",
  24030. image: {
  24031. source: "./media/characters/bunsen/side.svg",
  24032. extra: 1644 / 358
  24033. }
  24034. },
  24035. foot: {
  24036. height: math.unit(1.611 * 1644 / 358, "meter"),
  24037. name: "Foot",
  24038. image: {
  24039. source: "./media/characters/bunsen/foot.svg"
  24040. }
  24041. },
  24042. },
  24043. [
  24044. {
  24045. name: "Small",
  24046. height: math.unit(10, "feet")
  24047. },
  24048. {
  24049. name: "Normal",
  24050. height: math.unit(15.6, "meters"),
  24051. default: true
  24052. },
  24053. ]
  24054. ))
  24055. characterMakers.push(() => makeCharacter(
  24056. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24057. {
  24058. front: {
  24059. height: math.unit(4 + 11 / 12, "feet"),
  24060. weight: math.unit(140, "lb"),
  24061. name: "Front",
  24062. image: {
  24063. source: "./media/characters/sesh/front.svg",
  24064. extra: 3420 / 3231,
  24065. bottom: 72 / 3949.5
  24066. }
  24067. },
  24068. },
  24069. [
  24070. {
  24071. name: "Normal",
  24072. height: math.unit(4 + 11 / 12, "feet")
  24073. },
  24074. {
  24075. name: "Grown",
  24076. height: math.unit(15, "feet"),
  24077. default: true
  24078. },
  24079. {
  24080. name: "Macro",
  24081. height: math.unit(1500, "feet")
  24082. },
  24083. {
  24084. name: "Megamacro",
  24085. height: math.unit(30, "miles")
  24086. },
  24087. {
  24088. name: "Continental",
  24089. height: math.unit(3000, "miles")
  24090. },
  24091. {
  24092. name: "Gravity Mass",
  24093. height: math.unit(300000, "miles")
  24094. },
  24095. {
  24096. name: "Planet Buster",
  24097. height: math.unit(30000000, "miles")
  24098. },
  24099. {
  24100. name: "Big",
  24101. height: math.unit(3000000000, "miles")
  24102. },
  24103. ]
  24104. ))
  24105. characterMakers.push(() => makeCharacter(
  24106. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24107. {
  24108. front: {
  24109. height: math.unit(9, "feet"),
  24110. weight: math.unit(350, "lb"),
  24111. name: "Front",
  24112. image: {
  24113. source: "./media/characters/pepper/front.svg",
  24114. extra: 1448 / 1312,
  24115. bottom: 9.4 / 1457.88
  24116. }
  24117. },
  24118. back: {
  24119. height: math.unit(9, "feet"),
  24120. weight: math.unit(350, "lb"),
  24121. name: "Back",
  24122. image: {
  24123. source: "./media/characters/pepper/back.svg",
  24124. extra: 1423 / 1300,
  24125. bottom: 4.6 / 1429
  24126. }
  24127. },
  24128. maw: {
  24129. height: math.unit(0.932, "feet"),
  24130. name: "Maw",
  24131. image: {
  24132. source: "./media/characters/pepper/maw.svg"
  24133. }
  24134. },
  24135. },
  24136. [
  24137. {
  24138. name: "Normal",
  24139. height: math.unit(9, "feet"),
  24140. default: true
  24141. },
  24142. ]
  24143. ))
  24144. characterMakers.push(() => makeCharacter(
  24145. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24146. {
  24147. front: {
  24148. height: math.unit(6, "feet"),
  24149. weight: math.unit(150, "lb"),
  24150. name: "Front",
  24151. image: {
  24152. source: "./media/characters/maelstrom/front.svg",
  24153. extra: 2100 / 1883,
  24154. bottom: 94 / 2196.7
  24155. }
  24156. },
  24157. },
  24158. [
  24159. {
  24160. name: "Less Kaiju",
  24161. height: math.unit(200, "feet")
  24162. },
  24163. {
  24164. name: "Kaiju",
  24165. height: math.unit(400, "feet"),
  24166. default: true
  24167. },
  24168. {
  24169. name: "Kaiju-er",
  24170. height: math.unit(600, "feet")
  24171. },
  24172. ]
  24173. ))
  24174. characterMakers.push(() => makeCharacter(
  24175. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24176. {
  24177. front: {
  24178. height: math.unit(6 + 5 / 12, "feet"),
  24179. weight: math.unit(180, "lb"),
  24180. name: "Front",
  24181. image: {
  24182. source: "./media/characters/lexir/front.svg",
  24183. extra: 180 / 172,
  24184. bottom: 12 / 192
  24185. }
  24186. },
  24187. back: {
  24188. height: math.unit(6 + 5 / 12, "feet"),
  24189. weight: math.unit(180, "lb"),
  24190. name: "Back",
  24191. image: {
  24192. source: "./media/characters/lexir/back.svg",
  24193. extra: 1273/1201,
  24194. bottom: 39/1312
  24195. }
  24196. },
  24197. },
  24198. [
  24199. {
  24200. name: "Very Smal",
  24201. height: math.unit(1, "nm")
  24202. },
  24203. {
  24204. name: "Normal",
  24205. height: math.unit(6 + 5 / 12, "feet"),
  24206. default: true
  24207. },
  24208. {
  24209. name: "Macro",
  24210. height: math.unit(1, "mile")
  24211. },
  24212. {
  24213. name: "Megamacro",
  24214. height: math.unit(50, "miles")
  24215. },
  24216. ]
  24217. ))
  24218. characterMakers.push(() => makeCharacter(
  24219. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24220. {
  24221. front: {
  24222. height: math.unit(1.5, "meters"),
  24223. weight: math.unit(100, "lb"),
  24224. name: "Front",
  24225. image: {
  24226. source: "./media/characters/maksio/front.svg",
  24227. extra: 1549 / 1531,
  24228. bottom: 123.7 / 1674.5429
  24229. }
  24230. },
  24231. back: {
  24232. height: math.unit(1.5, "meters"),
  24233. weight: math.unit(100, "lb"),
  24234. name: "Back",
  24235. image: {
  24236. source: "./media/characters/maksio/back.svg",
  24237. extra: 1541 / 1509,
  24238. bottom: 97 / 1639
  24239. }
  24240. },
  24241. hand: {
  24242. height: math.unit(0.621, "feet"),
  24243. name: "Hand",
  24244. image: {
  24245. source: "./media/characters/maksio/hand.svg"
  24246. }
  24247. },
  24248. foot: {
  24249. height: math.unit(1.611, "feet"),
  24250. name: "Foot",
  24251. image: {
  24252. source: "./media/characters/maksio/foot.svg"
  24253. }
  24254. },
  24255. },
  24256. [
  24257. {
  24258. name: "Shrunken",
  24259. height: math.unit(10, "cm")
  24260. },
  24261. {
  24262. name: "Normal",
  24263. height: math.unit(150, "cm"),
  24264. default: true
  24265. },
  24266. ]
  24267. ))
  24268. characterMakers.push(() => makeCharacter(
  24269. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24270. {
  24271. front: {
  24272. height: math.unit(100, "feet"),
  24273. name: "Front",
  24274. image: {
  24275. source: "./media/characters/erza-bear/front.svg",
  24276. extra: 2449 / 2390,
  24277. bottom: 46 / 2494
  24278. }
  24279. },
  24280. back: {
  24281. height: math.unit(100, "feet"),
  24282. name: "Back",
  24283. image: {
  24284. source: "./media/characters/erza-bear/back.svg",
  24285. extra: 2489 / 2430,
  24286. bottom: 85.4 / 2480
  24287. }
  24288. },
  24289. tail: {
  24290. height: math.unit(42, "feet"),
  24291. name: "Tail",
  24292. image: {
  24293. source: "./media/characters/erza-bear/tail.svg"
  24294. }
  24295. },
  24296. tongue: {
  24297. height: math.unit(8, "feet"),
  24298. name: "Tongue",
  24299. image: {
  24300. source: "./media/characters/erza-bear/tongue.svg"
  24301. }
  24302. },
  24303. dick: {
  24304. height: math.unit(10.5, "feet"),
  24305. name: "Dick",
  24306. image: {
  24307. source: "./media/characters/erza-bear/dick.svg"
  24308. }
  24309. },
  24310. dickVertical: {
  24311. height: math.unit(16.9, "feet"),
  24312. name: "Dick (Vertical)",
  24313. image: {
  24314. source: "./media/characters/erza-bear/dick-vertical.svg"
  24315. }
  24316. },
  24317. },
  24318. [
  24319. {
  24320. name: "Macro",
  24321. height: math.unit(100, "feet"),
  24322. default: true
  24323. },
  24324. ]
  24325. ))
  24326. characterMakers.push(() => makeCharacter(
  24327. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24328. {
  24329. front: {
  24330. height: math.unit(172, "cm"),
  24331. weight: math.unit(73, "kg"),
  24332. name: "Front",
  24333. image: {
  24334. source: "./media/characters/violet-flor/front.svg",
  24335. extra: 1530 / 1442,
  24336. bottom: 61.9 / 1588.8
  24337. }
  24338. },
  24339. back: {
  24340. height: math.unit(180, "cm"),
  24341. weight: math.unit(73, "kg"),
  24342. name: "Back",
  24343. image: {
  24344. source: "./media/characters/violet-flor/back.svg",
  24345. extra: 1692 / 1630,
  24346. bottom: 20 / 1712
  24347. }
  24348. },
  24349. },
  24350. [
  24351. {
  24352. name: "Normal",
  24353. height: math.unit(172, "cm"),
  24354. default: true
  24355. },
  24356. ]
  24357. ))
  24358. characterMakers.push(() => makeCharacter(
  24359. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24360. {
  24361. front: {
  24362. height: math.unit(6, "feet"),
  24363. weight: math.unit(220, "lb"),
  24364. name: "Front",
  24365. image: {
  24366. source: "./media/characters/lynn-rhea/front.svg",
  24367. extra: 310 / 273
  24368. }
  24369. },
  24370. back: {
  24371. height: math.unit(6, "feet"),
  24372. weight: math.unit(220, "lb"),
  24373. name: "Back",
  24374. image: {
  24375. source: "./media/characters/lynn-rhea/back.svg",
  24376. extra: 310 / 273
  24377. }
  24378. },
  24379. dicks: {
  24380. height: math.unit(0.9, "feet"),
  24381. name: "Dicks",
  24382. image: {
  24383. source: "./media/characters/lynn-rhea/dicks.svg"
  24384. }
  24385. },
  24386. slit: {
  24387. height: math.unit(0.4, "feet"),
  24388. name: "Slit",
  24389. image: {
  24390. source: "./media/characters/lynn-rhea/slit.svg"
  24391. }
  24392. },
  24393. },
  24394. [
  24395. {
  24396. name: "Micro",
  24397. height: math.unit(1, "inch")
  24398. },
  24399. {
  24400. name: "Macro",
  24401. height: math.unit(60, "feet"),
  24402. default: true
  24403. },
  24404. {
  24405. name: "Megamacro",
  24406. height: math.unit(2, "miles")
  24407. },
  24408. {
  24409. name: "Gigamacro",
  24410. height: math.unit(3, "earths")
  24411. },
  24412. {
  24413. name: "Galactic",
  24414. height: math.unit(0.8, "galaxies")
  24415. },
  24416. ]
  24417. ))
  24418. characterMakers.push(() => makeCharacter(
  24419. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24420. {
  24421. front: {
  24422. height: math.unit(1600, "feet"),
  24423. weight: math.unit(85758785169, "kg"),
  24424. name: "Front",
  24425. image: {
  24426. source: "./media/characters/valathos/front.svg",
  24427. extra: 1451 / 1339
  24428. }
  24429. },
  24430. },
  24431. [
  24432. {
  24433. name: "Macro",
  24434. height: math.unit(1600, "feet"),
  24435. default: true
  24436. },
  24437. ]
  24438. ))
  24439. characterMakers.push(() => makeCharacter(
  24440. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24441. {
  24442. front: {
  24443. height: math.unit(7 + 5 / 12, "feet"),
  24444. weight: math.unit(300, "lb"),
  24445. name: "Front",
  24446. image: {
  24447. source: "./media/characters/azula/front.svg",
  24448. extra: 3208 / 2880,
  24449. bottom: 80.2 / 3277
  24450. }
  24451. },
  24452. back: {
  24453. height: math.unit(7 + 5 / 12, "feet"),
  24454. weight: math.unit(300, "lb"),
  24455. name: "Back",
  24456. image: {
  24457. source: "./media/characters/azula/back.svg",
  24458. extra: 3169 / 2822,
  24459. bottom: 150.6 / 3321
  24460. }
  24461. },
  24462. },
  24463. [
  24464. {
  24465. name: "Normal",
  24466. height: math.unit(7 + 5 / 12, "feet"),
  24467. default: true
  24468. },
  24469. {
  24470. name: "Big",
  24471. height: math.unit(20, "feet")
  24472. },
  24473. ]
  24474. ))
  24475. characterMakers.push(() => makeCharacter(
  24476. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24477. {
  24478. front: {
  24479. height: math.unit(5 + 1 / 12, "feet"),
  24480. weight: math.unit(110, "lb"),
  24481. name: "Front",
  24482. image: {
  24483. source: "./media/characters/rupert/front.svg",
  24484. extra: 1549 / 1495,
  24485. bottom: 54.2 / 1604.4
  24486. }
  24487. },
  24488. },
  24489. [
  24490. {
  24491. name: "Normal",
  24492. height: math.unit(5 + 1 / 12, "feet"),
  24493. default: true
  24494. },
  24495. ]
  24496. ))
  24497. characterMakers.push(() => makeCharacter(
  24498. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24499. {
  24500. front: {
  24501. height: math.unit(8 + 4 / 12, "feet"),
  24502. weight: math.unit(350, "lb"),
  24503. name: "Front",
  24504. image: {
  24505. source: "./media/characters/sheera-castellar/front.svg",
  24506. extra: 1957 / 1894,
  24507. bottom: 26.97 / 1975.017
  24508. }
  24509. },
  24510. side: {
  24511. height: math.unit(8 + 4 / 12, "feet"),
  24512. weight: math.unit(350, "lb"),
  24513. name: "Side",
  24514. image: {
  24515. source: "./media/characters/sheera-castellar/side.svg",
  24516. extra: 1957 / 1894
  24517. }
  24518. },
  24519. back: {
  24520. height: math.unit(8 + 4 / 12, "feet"),
  24521. weight: math.unit(350, "lb"),
  24522. name: "Back",
  24523. image: {
  24524. source: "./media/characters/sheera-castellar/back.svg",
  24525. extra: 1957 / 1894
  24526. }
  24527. },
  24528. angled: {
  24529. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24530. weight: math.unit(350, "lb"),
  24531. name: "Angled",
  24532. image: {
  24533. source: "./media/characters/sheera-castellar/angled.svg",
  24534. extra: 1807 / 1707,
  24535. bottom: 68 / 1875
  24536. }
  24537. },
  24538. genitals: {
  24539. height: math.unit(2.2, "feet"),
  24540. name: "Genitals",
  24541. image: {
  24542. source: "./media/characters/sheera-castellar/genitals.svg"
  24543. }
  24544. },
  24545. taur: {
  24546. height: math.unit(10 + 6/12, "feet"),
  24547. name: "Taur",
  24548. image: {
  24549. source: "./media/characters/sheera-castellar/taur.svg",
  24550. extra: 2017/1909,
  24551. bottom: 185/2202
  24552. }
  24553. },
  24554. },
  24555. [
  24556. {
  24557. name: "Normal",
  24558. height: math.unit(8 + 4 / 12, "feet")
  24559. },
  24560. {
  24561. name: "Macro",
  24562. height: math.unit(150, "feet"),
  24563. default: true
  24564. },
  24565. {
  24566. name: "Macro+",
  24567. height: math.unit(800, "feet")
  24568. },
  24569. ]
  24570. ))
  24571. characterMakers.push(() => makeCharacter(
  24572. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24573. {
  24574. front: {
  24575. height: math.unit(6, "feet"),
  24576. weight: math.unit(150, "lb"),
  24577. name: "Front",
  24578. image: {
  24579. source: "./media/characters/jaipur/front.svg",
  24580. extra: 3860 / 3731,
  24581. bottom: 287 / 4140
  24582. }
  24583. },
  24584. back: {
  24585. height: math.unit(6, "feet"),
  24586. weight: math.unit(150, "lb"),
  24587. name: "Back",
  24588. image: {
  24589. source: "./media/characters/jaipur/back.svg",
  24590. extra: 1637/1561,
  24591. bottom: 154/1791
  24592. }
  24593. },
  24594. },
  24595. [
  24596. {
  24597. name: "Normal",
  24598. height: math.unit(1.85, "meters"),
  24599. default: true
  24600. },
  24601. {
  24602. name: "Macro",
  24603. height: math.unit(150, "meters")
  24604. },
  24605. {
  24606. name: "Macro+",
  24607. height: math.unit(0.5, "miles")
  24608. },
  24609. {
  24610. name: "Macro++",
  24611. height: math.unit(2.5, "miles")
  24612. },
  24613. {
  24614. name: "Macro+++",
  24615. height: math.unit(12, "miles")
  24616. },
  24617. {
  24618. name: "Macro++++",
  24619. height: math.unit(120, "miles")
  24620. },
  24621. {
  24622. name: "Macro+++++",
  24623. height: math.unit(1200, "miles")
  24624. },
  24625. ]
  24626. ))
  24627. characterMakers.push(() => makeCharacter(
  24628. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24629. {
  24630. front: {
  24631. height: math.unit(6, "feet"),
  24632. weight: math.unit(150, "lb"),
  24633. name: "Front",
  24634. image: {
  24635. source: "./media/characters/sheila-wolf/front.svg",
  24636. extra: 1931 / 1808,
  24637. bottom: 29.5 / 1960
  24638. }
  24639. },
  24640. dick: {
  24641. height: math.unit(1.464, "feet"),
  24642. name: "Dick",
  24643. image: {
  24644. source: "./media/characters/sheila-wolf/dick.svg"
  24645. }
  24646. },
  24647. muzzle: {
  24648. height: math.unit(0.513, "feet"),
  24649. name: "Muzzle",
  24650. image: {
  24651. source: "./media/characters/sheila-wolf/muzzle.svg"
  24652. }
  24653. },
  24654. },
  24655. [
  24656. {
  24657. name: "Macro",
  24658. height: math.unit(70, "feet"),
  24659. default: true
  24660. },
  24661. ]
  24662. ))
  24663. characterMakers.push(() => makeCharacter(
  24664. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24665. {
  24666. front: {
  24667. height: math.unit(32, "meters"),
  24668. weight: math.unit(300000, "kg"),
  24669. name: "Front",
  24670. image: {
  24671. source: "./media/characters/almor/front.svg",
  24672. extra: 1408 / 1322,
  24673. bottom: 94.6 / 1506.5
  24674. }
  24675. },
  24676. },
  24677. [
  24678. {
  24679. name: "Macro",
  24680. height: math.unit(32, "meters"),
  24681. default: true
  24682. },
  24683. ]
  24684. ))
  24685. characterMakers.push(() => makeCharacter(
  24686. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24687. {
  24688. front: {
  24689. height: math.unit(7, "feet"),
  24690. weight: math.unit(200, "lb"),
  24691. name: "Front",
  24692. image: {
  24693. source: "./media/characters/silver/front.svg",
  24694. extra: 472.1 / 450.5,
  24695. bottom: 26.5 / 499.424
  24696. }
  24697. },
  24698. },
  24699. [
  24700. {
  24701. name: "Normal",
  24702. height: math.unit(7, "feet"),
  24703. default: true
  24704. },
  24705. {
  24706. name: "Macro",
  24707. height: math.unit(800, "feet")
  24708. },
  24709. {
  24710. name: "Megamacro",
  24711. height: math.unit(250, "miles")
  24712. },
  24713. ]
  24714. ))
  24715. characterMakers.push(() => makeCharacter(
  24716. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24717. {
  24718. front: {
  24719. height: math.unit(6, "feet"),
  24720. weight: math.unit(150, "lb"),
  24721. name: "Front",
  24722. image: {
  24723. source: "./media/characters/pliskin/front.svg",
  24724. extra: 1469 / 1359,
  24725. bottom: 70 / 1540
  24726. }
  24727. },
  24728. },
  24729. [
  24730. {
  24731. name: "Micro",
  24732. height: math.unit(3, "inches")
  24733. },
  24734. {
  24735. name: "Normal",
  24736. height: math.unit(5 + 11 / 12, "feet"),
  24737. default: true
  24738. },
  24739. {
  24740. name: "Macro",
  24741. height: math.unit(120, "feet")
  24742. },
  24743. ]
  24744. ))
  24745. characterMakers.push(() => makeCharacter(
  24746. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24747. {
  24748. front: {
  24749. height: math.unit(6, "feet"),
  24750. weight: math.unit(150, "lb"),
  24751. name: "Front",
  24752. image: {
  24753. source: "./media/characters/sammy/front.svg",
  24754. extra: 1193 / 1089,
  24755. bottom: 30.5 / 1226
  24756. }
  24757. },
  24758. },
  24759. [
  24760. {
  24761. name: "Macro",
  24762. height: math.unit(1700, "feet"),
  24763. default: true
  24764. },
  24765. {
  24766. name: "Examacro",
  24767. height: math.unit(2.5e9, "lightyears")
  24768. },
  24769. ]
  24770. ))
  24771. characterMakers.push(() => makeCharacter(
  24772. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24773. {
  24774. front: {
  24775. height: math.unit(21, "meters"),
  24776. weight: math.unit(12, "tonnes"),
  24777. name: "Front",
  24778. image: {
  24779. source: "./media/characters/kuru/front.svg",
  24780. extra: 4301 / 3785,
  24781. bottom: 371.3 / 4691
  24782. }
  24783. },
  24784. },
  24785. [
  24786. {
  24787. name: "Macro",
  24788. height: math.unit(21, "meters"),
  24789. default: true
  24790. },
  24791. ]
  24792. ))
  24793. characterMakers.push(() => makeCharacter(
  24794. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24795. {
  24796. front: {
  24797. height: math.unit(23, "meters"),
  24798. weight: math.unit(12.2, "tonnes"),
  24799. name: "Front",
  24800. image: {
  24801. source: "./media/characters/rakka/front.svg",
  24802. extra: 4670 / 4169,
  24803. bottom: 301 / 4968.7
  24804. }
  24805. },
  24806. },
  24807. [
  24808. {
  24809. name: "Macro",
  24810. height: math.unit(23, "meters"),
  24811. default: true
  24812. },
  24813. ]
  24814. ))
  24815. characterMakers.push(() => makeCharacter(
  24816. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24817. {
  24818. front: {
  24819. height: math.unit(6, "feet"),
  24820. weight: math.unit(150, "lb"),
  24821. name: "Front",
  24822. image: {
  24823. source: "./media/characters/rhys-feline/front.svg",
  24824. extra: 2488 / 2308,
  24825. bottom: 35.67 / 2519.19
  24826. }
  24827. },
  24828. },
  24829. [
  24830. {
  24831. name: "Really Small",
  24832. height: math.unit(1, "nm")
  24833. },
  24834. {
  24835. name: "Micro",
  24836. height: math.unit(4, "inches")
  24837. },
  24838. {
  24839. name: "Normal",
  24840. height: math.unit(4 + 10 / 12, "feet"),
  24841. default: true
  24842. },
  24843. {
  24844. name: "Macro",
  24845. height: math.unit(100, "feet")
  24846. },
  24847. {
  24848. name: "Megamacto",
  24849. height: math.unit(50, "miles")
  24850. },
  24851. ]
  24852. ))
  24853. characterMakers.push(() => makeCharacter(
  24854. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24855. {
  24856. side: {
  24857. height: math.unit(30, "feet"),
  24858. weight: math.unit(35000, "kg"),
  24859. name: "Side",
  24860. image: {
  24861. source: "./media/characters/alydar/side.svg",
  24862. extra: 234 / 222,
  24863. bottom: 6.5 / 241
  24864. }
  24865. },
  24866. front: {
  24867. height: math.unit(30, "feet"),
  24868. weight: math.unit(35000, "kg"),
  24869. name: "Front",
  24870. image: {
  24871. source: "./media/characters/alydar/front.svg",
  24872. extra: 223.37 / 210.2,
  24873. bottom: 22.3 / 246.76
  24874. }
  24875. },
  24876. top: {
  24877. height: math.unit(64.54, "feet"),
  24878. weight: math.unit(35000, "kg"),
  24879. name: "Top",
  24880. image: {
  24881. source: "./media/characters/alydar/top.svg"
  24882. }
  24883. },
  24884. anthro: {
  24885. height: math.unit(30, "feet"),
  24886. weight: math.unit(9000, "kg"),
  24887. name: "Anthro",
  24888. image: {
  24889. source: "./media/characters/alydar/anthro.svg",
  24890. extra: 432 / 421,
  24891. bottom: 7.18 / 440
  24892. }
  24893. },
  24894. maw: {
  24895. height: math.unit(11.693, "feet"),
  24896. name: "Maw",
  24897. image: {
  24898. source: "./media/characters/alydar/maw.svg"
  24899. }
  24900. },
  24901. head: {
  24902. height: math.unit(11.693, "feet"),
  24903. name: "Head",
  24904. image: {
  24905. source: "./media/characters/alydar/head.svg"
  24906. }
  24907. },
  24908. headAlt: {
  24909. height: math.unit(12.861, "feet"),
  24910. name: "Head (Alt)",
  24911. image: {
  24912. source: "./media/characters/alydar/head-alt.svg"
  24913. }
  24914. },
  24915. wing: {
  24916. height: math.unit(20.712, "feet"),
  24917. name: "Wing",
  24918. image: {
  24919. source: "./media/characters/alydar/wing.svg"
  24920. }
  24921. },
  24922. wingFeather: {
  24923. height: math.unit(9.662, "feet"),
  24924. name: "Wing Feather",
  24925. image: {
  24926. source: "./media/characters/alydar/wing-feather.svg"
  24927. }
  24928. },
  24929. countourFeather: {
  24930. height: math.unit(4.154, "feet"),
  24931. name: "Contour Feather",
  24932. image: {
  24933. source: "./media/characters/alydar/contour-feather.svg"
  24934. }
  24935. },
  24936. },
  24937. [
  24938. {
  24939. name: "Diplomatic",
  24940. height: math.unit(13, "feet"),
  24941. default: true
  24942. },
  24943. {
  24944. name: "Small",
  24945. height: math.unit(30, "feet")
  24946. },
  24947. {
  24948. name: "Normal",
  24949. height: math.unit(95, "feet"),
  24950. default: true
  24951. },
  24952. {
  24953. name: "Large",
  24954. height: math.unit(285, "feet")
  24955. },
  24956. {
  24957. name: "Incomprehensible",
  24958. height: math.unit(450, "megameters")
  24959. },
  24960. ]
  24961. ))
  24962. characterMakers.push(() => makeCharacter(
  24963. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24964. {
  24965. side: {
  24966. height: math.unit(11, "feet"),
  24967. weight: math.unit(1750, "kg"),
  24968. name: "Side",
  24969. image: {
  24970. source: "./media/characters/selicia/side.svg",
  24971. extra: 440 / 396,
  24972. bottom: 24.8 / 465.979
  24973. }
  24974. },
  24975. maw: {
  24976. height: math.unit(4.665, "feet"),
  24977. name: "Maw",
  24978. image: {
  24979. source: "./media/characters/selicia/maw.svg"
  24980. }
  24981. },
  24982. },
  24983. [
  24984. {
  24985. name: "Normal",
  24986. height: math.unit(11, "feet"),
  24987. default: true
  24988. },
  24989. ]
  24990. ))
  24991. characterMakers.push(() => makeCharacter(
  24992. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24993. {
  24994. side: {
  24995. height: math.unit(2 + 6 / 12, "feet"),
  24996. weight: math.unit(30, "lb"),
  24997. name: "Side",
  24998. image: {
  24999. source: "./media/characters/layla/side.svg",
  25000. extra: 244 / 188,
  25001. bottom: 18.2 / 262.1
  25002. }
  25003. },
  25004. back: {
  25005. height: math.unit(2 + 6 / 12, "feet"),
  25006. weight: math.unit(30, "lb"),
  25007. name: "Back",
  25008. image: {
  25009. source: "./media/characters/layla/back.svg",
  25010. extra: 308 / 241.5,
  25011. bottom: 8.9 / 316.8
  25012. }
  25013. },
  25014. cumming: {
  25015. height: math.unit(2 + 6 / 12, "feet"),
  25016. weight: math.unit(30, "lb"),
  25017. name: "Cumming",
  25018. image: {
  25019. source: "./media/characters/layla/cumming.svg",
  25020. extra: 342 / 279,
  25021. bottom: 595 / 938
  25022. }
  25023. },
  25024. dickFlaccid: {
  25025. height: math.unit(2.595, "feet"),
  25026. name: "Flaccid Genitals",
  25027. image: {
  25028. source: "./media/characters/layla/dick-flaccid.svg"
  25029. }
  25030. },
  25031. dickErect: {
  25032. height: math.unit(2.359, "feet"),
  25033. name: "Erect Genitals",
  25034. image: {
  25035. source: "./media/characters/layla/dick-erect.svg"
  25036. }
  25037. },
  25038. dragon: {
  25039. height: math.unit(40, "feet"),
  25040. name: "Dragon",
  25041. image: {
  25042. source: "./media/characters/layla/dragon.svg",
  25043. extra: 610/535,
  25044. bottom: 367/977
  25045. }
  25046. },
  25047. taur: {
  25048. height: math.unit(30, "feet"),
  25049. name: "Taur",
  25050. image: {
  25051. source: "./media/characters/layla/taur.svg",
  25052. extra: 1268/1199,
  25053. bottom: 112/1380
  25054. }
  25055. },
  25056. },
  25057. [
  25058. {
  25059. name: "Micro",
  25060. height: math.unit(1, "inch")
  25061. },
  25062. {
  25063. name: "Small",
  25064. height: math.unit(1, "foot")
  25065. },
  25066. {
  25067. name: "Normal",
  25068. height: math.unit(2 + 6 / 12, "feet"),
  25069. default: true
  25070. },
  25071. {
  25072. name: "Macro",
  25073. height: math.unit(200, "feet")
  25074. },
  25075. {
  25076. name: "Megamacro",
  25077. height: math.unit(1000, "miles")
  25078. },
  25079. {
  25080. name: "Planetary",
  25081. height: math.unit(8000, "miles")
  25082. },
  25083. {
  25084. name: "True Layla",
  25085. height: math.unit(200000 * 7, "multiverses")
  25086. },
  25087. ]
  25088. ))
  25089. characterMakers.push(() => makeCharacter(
  25090. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25091. {
  25092. back: {
  25093. height: math.unit(10.5, "feet"),
  25094. weight: math.unit(800, "lb"),
  25095. name: "Back",
  25096. image: {
  25097. source: "./media/characters/knox/back.svg",
  25098. extra: 1486 / 1089,
  25099. bottom: 107 / 1601.4
  25100. }
  25101. },
  25102. side: {
  25103. height: math.unit(10.5, "feet"),
  25104. weight: math.unit(800, "lb"),
  25105. name: "Side",
  25106. image: {
  25107. source: "./media/characters/knox/side.svg",
  25108. extra: 244 / 218,
  25109. bottom: 14 / 260
  25110. }
  25111. },
  25112. },
  25113. [
  25114. {
  25115. name: "Compact",
  25116. height: math.unit(10.5, "feet"),
  25117. default: true
  25118. },
  25119. {
  25120. name: "Dynamax",
  25121. height: math.unit(210, "feet")
  25122. },
  25123. {
  25124. name: "Full Macro",
  25125. height: math.unit(850, "feet")
  25126. },
  25127. ]
  25128. ))
  25129. characterMakers.push(() => makeCharacter(
  25130. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25131. {
  25132. front: {
  25133. height: math.unit(28, "feet"),
  25134. weight: math.unit(10500, "lb"),
  25135. name: "Front",
  25136. image: {
  25137. source: "./media/characters/kayda/front.svg",
  25138. extra: 1536 / 1428,
  25139. bottom: 68.7 / 1603
  25140. }
  25141. },
  25142. back: {
  25143. height: math.unit(28, "feet"),
  25144. weight: math.unit(10500, "lb"),
  25145. name: "Back",
  25146. image: {
  25147. source: "./media/characters/kayda/back.svg",
  25148. extra: 1557 / 1464,
  25149. bottom: 39.5 / 1597.49
  25150. }
  25151. },
  25152. dick: {
  25153. height: math.unit(3.858, "feet"),
  25154. name: "Dick",
  25155. image: {
  25156. source: "./media/characters/kayda/dick.svg"
  25157. }
  25158. },
  25159. },
  25160. [
  25161. {
  25162. name: "Macro",
  25163. height: math.unit(28, "feet"),
  25164. default: true
  25165. },
  25166. ]
  25167. ))
  25168. characterMakers.push(() => makeCharacter(
  25169. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25170. {
  25171. front: {
  25172. height: math.unit(10 + 11 / 12, "feet"),
  25173. weight: math.unit(1400, "lb"),
  25174. name: "Front",
  25175. image: {
  25176. source: "./media/characters/brian/front.svg",
  25177. extra: 737 / 692,
  25178. bottom: 55.4 / 785
  25179. }
  25180. },
  25181. },
  25182. [
  25183. {
  25184. name: "Normal",
  25185. height: math.unit(10 + 11 / 12, "feet"),
  25186. default: true
  25187. },
  25188. ]
  25189. ))
  25190. characterMakers.push(() => makeCharacter(
  25191. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25192. {
  25193. front: {
  25194. height: math.unit(5 + 8 / 12, "feet"),
  25195. weight: math.unit(140, "lb"),
  25196. name: "Front",
  25197. image: {
  25198. source: "./media/characters/khemri/front.svg",
  25199. extra: 4780 / 4059,
  25200. bottom: 80.1 / 4859.25
  25201. }
  25202. },
  25203. },
  25204. [
  25205. {
  25206. name: "Micro",
  25207. height: math.unit(6, "inches")
  25208. },
  25209. {
  25210. name: "Normal",
  25211. height: math.unit(5 + 8 / 12, "feet"),
  25212. default: true
  25213. },
  25214. ]
  25215. ))
  25216. characterMakers.push(() => makeCharacter(
  25217. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25218. {
  25219. front: {
  25220. height: math.unit(13, "feet"),
  25221. weight: math.unit(1700, "lb"),
  25222. name: "Front",
  25223. image: {
  25224. source: "./media/characters/felix-braveheart/front.svg",
  25225. extra: 1222 / 1157,
  25226. bottom: 53.2 / 1280
  25227. }
  25228. },
  25229. back: {
  25230. height: math.unit(13, "feet"),
  25231. weight: math.unit(1700, "lb"),
  25232. name: "Back",
  25233. image: {
  25234. source: "./media/characters/felix-braveheart/back.svg",
  25235. extra: 1277 / 1203,
  25236. bottom: 50.2 / 1327
  25237. }
  25238. },
  25239. feral: {
  25240. height: math.unit(6, "feet"),
  25241. weight: math.unit(400, "lb"),
  25242. name: "Feral",
  25243. image: {
  25244. source: "./media/characters/felix-braveheart/feral.svg",
  25245. extra: 682 / 625,
  25246. bottom: 6.9 / 688
  25247. }
  25248. },
  25249. },
  25250. [
  25251. {
  25252. name: "Normal",
  25253. height: math.unit(13, "feet"),
  25254. default: true
  25255. },
  25256. ]
  25257. ))
  25258. characterMakers.push(() => makeCharacter(
  25259. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25260. {
  25261. side: {
  25262. height: math.unit(5 + 11 / 12, "feet"),
  25263. weight: math.unit(1400, "lb"),
  25264. name: "Side",
  25265. image: {
  25266. source: "./media/characters/shadow-blade/side.svg",
  25267. extra: 1726 / 1267,
  25268. bottom: 58.4 / 1785
  25269. }
  25270. },
  25271. },
  25272. [
  25273. {
  25274. name: "Normal",
  25275. height: math.unit(5 + 11 / 12, "feet"),
  25276. default: true
  25277. },
  25278. ]
  25279. ))
  25280. characterMakers.push(() => makeCharacter(
  25281. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25282. {
  25283. front: {
  25284. height: math.unit(1 + 6 / 12, "feet"),
  25285. weight: math.unit(25, "lb"),
  25286. name: "Front",
  25287. image: {
  25288. source: "./media/characters/karla-halldor/front.svg",
  25289. extra: 1459 / 1383,
  25290. bottom: 12 / 1472
  25291. }
  25292. },
  25293. },
  25294. [
  25295. {
  25296. name: "Normal",
  25297. height: math.unit(1 + 6 / 12, "feet"),
  25298. default: true
  25299. },
  25300. ]
  25301. ))
  25302. characterMakers.push(() => makeCharacter(
  25303. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25304. {
  25305. front: {
  25306. height: math.unit(6 + 2 / 12, "feet"),
  25307. weight: math.unit(160, "lb"),
  25308. name: "Front",
  25309. image: {
  25310. source: "./media/characters/ariam/front.svg",
  25311. extra: 1073/976,
  25312. bottom: 52/1125
  25313. }
  25314. },
  25315. back: {
  25316. height: math.unit(6 + 2/12, "feet"),
  25317. weight: math.unit(160, "lb"),
  25318. name: "Back",
  25319. image: {
  25320. source: "./media/characters/ariam/back.svg",
  25321. extra: 1103/1023,
  25322. bottom: 9/1112
  25323. }
  25324. },
  25325. dressed: {
  25326. height: math.unit(6 + 2/12, "feet"),
  25327. weight: math.unit(160, "lb"),
  25328. name: "Dressed",
  25329. image: {
  25330. source: "./media/characters/ariam/dressed.svg",
  25331. extra: 1099/1009,
  25332. bottom: 25/1124
  25333. }
  25334. },
  25335. squatting: {
  25336. height: math.unit(4.1, "feet"),
  25337. weight: math.unit(160, "lb"),
  25338. name: "Squatting",
  25339. image: {
  25340. source: "./media/characters/ariam/squatting.svg",
  25341. extra: 2617 / 2112,
  25342. bottom: 61.2 / 2681,
  25343. }
  25344. },
  25345. },
  25346. [
  25347. {
  25348. name: "Normal",
  25349. height: math.unit(6 + 2 / 12, "feet"),
  25350. default: true
  25351. },
  25352. {
  25353. name: "Normal+",
  25354. height: math.unit(4, "meters")
  25355. },
  25356. {
  25357. name: "Macro",
  25358. height: math.unit(50, "meters")
  25359. },
  25360. {
  25361. name: "Macro+",
  25362. height: math.unit(100, "meters")
  25363. },
  25364. {
  25365. name: "Megamacro",
  25366. height: math.unit(20, "km")
  25367. },
  25368. {
  25369. name: "Caretaker",
  25370. height: math.unit(444, "megameters")
  25371. },
  25372. ]
  25373. ))
  25374. characterMakers.push(() => makeCharacter(
  25375. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25376. {
  25377. front: {
  25378. height: math.unit(1.67, "meters"),
  25379. weight: math.unit(140, "lb"),
  25380. name: "Front",
  25381. image: {
  25382. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25383. extra: 438 / 410,
  25384. bottom: 0.75 / 439
  25385. }
  25386. },
  25387. },
  25388. [
  25389. {
  25390. name: "Shrunken",
  25391. height: math.unit(7.6, "cm")
  25392. },
  25393. {
  25394. name: "Human Scale",
  25395. height: math.unit(1.67, "meters")
  25396. },
  25397. {
  25398. name: "Wolxi Scale",
  25399. height: math.unit(36.7, "meters"),
  25400. default: true
  25401. },
  25402. ]
  25403. ))
  25404. characterMakers.push(() => makeCharacter(
  25405. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25406. {
  25407. front: {
  25408. height: math.unit(1.73, "meters"),
  25409. weight: math.unit(240, "lb"),
  25410. name: "Front",
  25411. image: {
  25412. source: "./media/characters/izue-two-mothers/front.svg",
  25413. extra: 469 / 437,
  25414. bottom: 1.24 / 470.6
  25415. }
  25416. },
  25417. },
  25418. [
  25419. {
  25420. name: "Shrunken",
  25421. height: math.unit(7.86, "cm")
  25422. },
  25423. {
  25424. name: "Human Scale",
  25425. height: math.unit(1.73, "meters")
  25426. },
  25427. {
  25428. name: "Wolxi Scale",
  25429. height: math.unit(38, "meters"),
  25430. default: true
  25431. },
  25432. ]
  25433. ))
  25434. characterMakers.push(() => makeCharacter(
  25435. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25436. {
  25437. front: {
  25438. height: math.unit(1.55, "meters"),
  25439. weight: math.unit(120, "lb"),
  25440. name: "Front",
  25441. image: {
  25442. source: "./media/characters/teeku-love-shack/front.svg",
  25443. extra: 387 / 362,
  25444. bottom: 1.51 / 388
  25445. }
  25446. },
  25447. },
  25448. [
  25449. {
  25450. name: "Shrunken",
  25451. height: math.unit(7, "cm")
  25452. },
  25453. {
  25454. name: "Human Scale",
  25455. height: math.unit(1.55, "meters")
  25456. },
  25457. {
  25458. name: "Wolxi Scale",
  25459. height: math.unit(34.1, "meters"),
  25460. default: true
  25461. },
  25462. ]
  25463. ))
  25464. characterMakers.push(() => makeCharacter(
  25465. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25466. {
  25467. front: {
  25468. height: math.unit(1.83, "meters"),
  25469. weight: math.unit(135, "lb"),
  25470. name: "Front",
  25471. image: {
  25472. source: "./media/characters/dejma-the-red/front.svg",
  25473. extra: 480 / 458,
  25474. bottom: 1.8 / 482
  25475. }
  25476. },
  25477. },
  25478. [
  25479. {
  25480. name: "Shrunken",
  25481. height: math.unit(8.3, "cm")
  25482. },
  25483. {
  25484. name: "Human Scale",
  25485. height: math.unit(1.83, "meters")
  25486. },
  25487. {
  25488. name: "Wolxi Scale",
  25489. height: math.unit(40, "meters"),
  25490. default: true
  25491. },
  25492. ]
  25493. ))
  25494. characterMakers.push(() => makeCharacter(
  25495. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25496. {
  25497. front: {
  25498. height: math.unit(1.78, "meters"),
  25499. weight: math.unit(65, "kg"),
  25500. name: "Front",
  25501. image: {
  25502. source: "./media/characters/aki/front.svg",
  25503. extra: 452 / 415
  25504. }
  25505. },
  25506. frontNsfw: {
  25507. height: math.unit(1.78, "meters"),
  25508. weight: math.unit(65, "kg"),
  25509. name: "Front (NSFW)",
  25510. image: {
  25511. source: "./media/characters/aki/front-nsfw.svg",
  25512. extra: 452 / 415
  25513. }
  25514. },
  25515. back: {
  25516. height: math.unit(1.78, "meters"),
  25517. weight: math.unit(65, "kg"),
  25518. name: "Back",
  25519. image: {
  25520. source: "./media/characters/aki/back.svg",
  25521. extra: 452 / 415
  25522. }
  25523. },
  25524. rump: {
  25525. height: math.unit(2.05, "feet"),
  25526. name: "Rump",
  25527. image: {
  25528. source: "./media/characters/aki/rump.svg"
  25529. }
  25530. },
  25531. dick: {
  25532. height: math.unit(0.95, "feet"),
  25533. name: "Dick",
  25534. image: {
  25535. source: "./media/characters/aki/dick.svg"
  25536. }
  25537. },
  25538. },
  25539. [
  25540. {
  25541. name: "Micro",
  25542. height: math.unit(15, "cm")
  25543. },
  25544. {
  25545. name: "Normal",
  25546. height: math.unit(178, "cm"),
  25547. default: true
  25548. },
  25549. {
  25550. name: "Macro",
  25551. height: math.unit(214, "m")
  25552. },
  25553. {
  25554. name: "Macro+",
  25555. height: math.unit(534, "m")
  25556. },
  25557. ]
  25558. ))
  25559. characterMakers.push(() => makeCharacter(
  25560. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25561. {
  25562. front: {
  25563. height: math.unit(5 + 5 / 12, "feet"),
  25564. weight: math.unit(120, "lb"),
  25565. name: "Front",
  25566. image: {
  25567. source: "./media/characters/ari/front.svg",
  25568. extra: 1550/1471,
  25569. bottom: 39/1589
  25570. }
  25571. },
  25572. },
  25573. [
  25574. {
  25575. name: "Normal",
  25576. height: math.unit(5 + 5 / 12, "feet")
  25577. },
  25578. {
  25579. name: "Macro",
  25580. height: math.unit(100, "feet"),
  25581. default: true
  25582. },
  25583. {
  25584. name: "Megamacro",
  25585. height: math.unit(100, "miles")
  25586. },
  25587. {
  25588. name: "Gigamacro",
  25589. height: math.unit(80000, "miles")
  25590. },
  25591. ]
  25592. ))
  25593. characterMakers.push(() => makeCharacter(
  25594. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25595. {
  25596. side: {
  25597. height: math.unit(9, "feet"),
  25598. weight: math.unit(400, "kg"),
  25599. name: "Side",
  25600. image: {
  25601. source: "./media/characters/bolt/side.svg",
  25602. extra: 1126 / 896,
  25603. bottom: 60 / 1187.3,
  25604. }
  25605. },
  25606. },
  25607. [
  25608. {
  25609. name: "Micro",
  25610. height: math.unit(5, "inches")
  25611. },
  25612. {
  25613. name: "Normal",
  25614. height: math.unit(9, "feet"),
  25615. default: true
  25616. },
  25617. {
  25618. name: "Macro",
  25619. height: math.unit(700, "feet")
  25620. },
  25621. {
  25622. name: "Max Size",
  25623. height: math.unit(1.52e22, "yottameters")
  25624. },
  25625. ]
  25626. ))
  25627. characterMakers.push(() => makeCharacter(
  25628. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25629. {
  25630. front: {
  25631. height: math.unit(4.3, "meters"),
  25632. weight: math.unit(3, "tons"),
  25633. name: "Front",
  25634. image: {
  25635. source: "./media/characters/draekon-sylviar/front.svg",
  25636. extra: 2072/1512,
  25637. bottom: 74/2146
  25638. }
  25639. },
  25640. back: {
  25641. height: math.unit(4.3, "meters"),
  25642. weight: math.unit(3, "tons"),
  25643. name: "Back",
  25644. image: {
  25645. source: "./media/characters/draekon-sylviar/back.svg",
  25646. extra: 1639/1483,
  25647. bottom: 41/1680
  25648. }
  25649. },
  25650. feral: {
  25651. height: math.unit(1.15, "meters"),
  25652. weight: math.unit(3, "tons"),
  25653. name: "Feral",
  25654. image: {
  25655. source: "./media/characters/draekon-sylviar/feral.svg",
  25656. extra: 1033/395,
  25657. bottom: 130/1163
  25658. }
  25659. },
  25660. maw: {
  25661. height: math.unit(1.3, "meters"),
  25662. name: "Maw",
  25663. image: {
  25664. source: "./media/characters/draekon-sylviar/maw.svg"
  25665. }
  25666. },
  25667. mawSeparated: {
  25668. height: math.unit(1.53, "meters"),
  25669. name: "Separated Maw",
  25670. image: {
  25671. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25672. }
  25673. },
  25674. tail: {
  25675. height: math.unit(1.15, "meters"),
  25676. name: "Tail",
  25677. image: {
  25678. source: "./media/characters/draekon-sylviar/tail.svg"
  25679. }
  25680. },
  25681. tailDick: {
  25682. height: math.unit(1.15, "meters"),
  25683. name: "Tail (Dick)",
  25684. image: {
  25685. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25686. }
  25687. },
  25688. tailDickSeparated: {
  25689. height: math.unit(1.19, "meters"),
  25690. name: "Tail (Separated Dick)",
  25691. image: {
  25692. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25693. }
  25694. },
  25695. slit: {
  25696. height: math.unit(1, "meters"),
  25697. name: "Slit",
  25698. image: {
  25699. source: "./media/characters/draekon-sylviar/slit.svg"
  25700. }
  25701. },
  25702. dick: {
  25703. height: math.unit(1.15, "meters"),
  25704. name: "Dick",
  25705. image: {
  25706. source: "./media/characters/draekon-sylviar/dick.svg"
  25707. }
  25708. },
  25709. dickSeparated: {
  25710. height: math.unit(1.1, "meters"),
  25711. name: "Separated Dick",
  25712. image: {
  25713. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25714. }
  25715. },
  25716. sheath: {
  25717. height: math.unit(1.15, "meters"),
  25718. name: "Sheath",
  25719. image: {
  25720. source: "./media/characters/draekon-sylviar/sheath.svg"
  25721. }
  25722. },
  25723. },
  25724. [
  25725. {
  25726. name: "Small",
  25727. height: math.unit(4.53 / 2, "meters"),
  25728. default: true
  25729. },
  25730. {
  25731. name: "Normal",
  25732. height: math.unit(4.53, "meters"),
  25733. default: true
  25734. },
  25735. {
  25736. name: "Large",
  25737. height: math.unit(4.53 * 2, "meters"),
  25738. },
  25739. ]
  25740. ))
  25741. characterMakers.push(() => makeCharacter(
  25742. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25743. {
  25744. front: {
  25745. height: math.unit(6 + 2 / 12, "feet"),
  25746. weight: math.unit(180, "lb"),
  25747. name: "Front",
  25748. image: {
  25749. source: "./media/characters/brawler/front.svg",
  25750. extra: 3301 / 3027,
  25751. bottom: 138 / 3439
  25752. }
  25753. },
  25754. },
  25755. [
  25756. {
  25757. name: "Normal",
  25758. height: math.unit(6 + 2 / 12, "feet"),
  25759. default: true
  25760. },
  25761. ]
  25762. ))
  25763. characterMakers.push(() => makeCharacter(
  25764. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25765. {
  25766. front: {
  25767. height: math.unit(11, "feet"),
  25768. weight: math.unit(1000, "lb"),
  25769. name: "Front",
  25770. image: {
  25771. source: "./media/characters/alex/front.svg",
  25772. bottom: 44.5 / 620
  25773. }
  25774. },
  25775. },
  25776. [
  25777. {
  25778. name: "Micro",
  25779. height: math.unit(5, "inches")
  25780. },
  25781. {
  25782. name: "Normal",
  25783. height: math.unit(11, "feet"),
  25784. default: true
  25785. },
  25786. {
  25787. name: "Macro",
  25788. height: math.unit(9.5e9, "feet")
  25789. },
  25790. {
  25791. name: "Max Size",
  25792. height: math.unit(1.4e283, "yottameters")
  25793. },
  25794. ]
  25795. ))
  25796. characterMakers.push(() => makeCharacter(
  25797. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25798. {
  25799. female: {
  25800. height: math.unit(29.9, "m"),
  25801. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25802. name: "Female",
  25803. image: {
  25804. source: "./media/characters/zenari/female.svg",
  25805. extra: 3281.6 / 3217,
  25806. bottom: 72.2 / 3353
  25807. }
  25808. },
  25809. male: {
  25810. height: math.unit(27.7, "m"),
  25811. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25812. name: "Male",
  25813. image: {
  25814. source: "./media/characters/zenari/male.svg",
  25815. extra: 3008 / 2991,
  25816. bottom: 54.6 / 3069
  25817. }
  25818. },
  25819. },
  25820. [
  25821. {
  25822. name: "Macro",
  25823. height: math.unit(29.7, "meters"),
  25824. default: true
  25825. },
  25826. ]
  25827. ))
  25828. characterMakers.push(() => makeCharacter(
  25829. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25830. {
  25831. female: {
  25832. height: math.unit(23.8, "m"),
  25833. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25834. name: "Female",
  25835. image: {
  25836. source: "./media/characters/mactarian/female.svg",
  25837. extra: 2662 / 2569,
  25838. bottom: 73 / 2736
  25839. }
  25840. },
  25841. male: {
  25842. height: math.unit(23.8, "m"),
  25843. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25844. name: "Male",
  25845. image: {
  25846. source: "./media/characters/mactarian/male.svg",
  25847. extra: 2673 / 2600,
  25848. bottom: 76 / 2750
  25849. }
  25850. },
  25851. },
  25852. [
  25853. {
  25854. name: "Macro",
  25855. height: math.unit(23.8, "meters"),
  25856. default: true
  25857. },
  25858. ]
  25859. ))
  25860. characterMakers.push(() => makeCharacter(
  25861. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25862. {
  25863. female: {
  25864. height: math.unit(19.3, "m"),
  25865. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25866. name: "Female",
  25867. image: {
  25868. source: "./media/characters/umok/female.svg",
  25869. extra: 2186 / 2078,
  25870. bottom: 87 / 2277
  25871. }
  25872. },
  25873. male: {
  25874. height: math.unit(19.5, "m"),
  25875. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25876. name: "Male",
  25877. image: {
  25878. source: "./media/characters/umok/male.svg",
  25879. extra: 2233 / 2140,
  25880. bottom: 24.4 / 2258
  25881. }
  25882. },
  25883. },
  25884. [
  25885. {
  25886. name: "Macro",
  25887. height: math.unit(19.3, "meters"),
  25888. default: true
  25889. },
  25890. ]
  25891. ))
  25892. characterMakers.push(() => makeCharacter(
  25893. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25894. {
  25895. female: {
  25896. height: math.unit(26.15, "m"),
  25897. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25898. name: "Female",
  25899. image: {
  25900. source: "./media/characters/joraxian/female.svg",
  25901. extra: 2912 / 2824,
  25902. bottom: 36 / 2956
  25903. }
  25904. },
  25905. male: {
  25906. height: math.unit(25.4, "m"),
  25907. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25908. name: "Male",
  25909. image: {
  25910. source: "./media/characters/joraxian/male.svg",
  25911. extra: 2877 / 2721,
  25912. bottom: 82 / 2967
  25913. }
  25914. },
  25915. },
  25916. [
  25917. {
  25918. name: "Macro",
  25919. height: math.unit(26.15, "meters"),
  25920. default: true
  25921. },
  25922. ]
  25923. ))
  25924. characterMakers.push(() => makeCharacter(
  25925. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25926. {
  25927. female: {
  25928. height: math.unit(21.6, "m"),
  25929. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25930. name: "Female",
  25931. image: {
  25932. source: "./media/characters/sthara/female.svg",
  25933. extra: 2516 / 2347,
  25934. bottom: 21.5 / 2537
  25935. }
  25936. },
  25937. male: {
  25938. height: math.unit(24, "m"),
  25939. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25940. name: "Male",
  25941. image: {
  25942. source: "./media/characters/sthara/male.svg",
  25943. extra: 2732 / 2607,
  25944. bottom: 23 / 2732
  25945. }
  25946. },
  25947. },
  25948. [
  25949. {
  25950. name: "Macro",
  25951. height: math.unit(21.6, "meters"),
  25952. default: true
  25953. },
  25954. ]
  25955. ))
  25956. characterMakers.push(() => makeCharacter(
  25957. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25958. {
  25959. front: {
  25960. height: math.unit(6 + 4 / 12, "feet"),
  25961. weight: math.unit(175, "lb"),
  25962. name: "Front",
  25963. image: {
  25964. source: "./media/characters/luka-bryzant/front.svg",
  25965. extra: 311 / 289,
  25966. bottom: 4 / 315
  25967. }
  25968. },
  25969. back: {
  25970. height: math.unit(6 + 4 / 12, "feet"),
  25971. weight: math.unit(175, "lb"),
  25972. name: "Back",
  25973. image: {
  25974. source: "./media/characters/luka-bryzant/back.svg",
  25975. extra: 311 / 289,
  25976. bottom: 3.8 / 313.7
  25977. }
  25978. },
  25979. },
  25980. [
  25981. {
  25982. name: "Micro",
  25983. height: math.unit(10, "inches")
  25984. },
  25985. {
  25986. name: "Normal",
  25987. height: math.unit(6 + 4 / 12, "feet"),
  25988. default: true
  25989. },
  25990. {
  25991. name: "Large",
  25992. height: math.unit(12, "feet")
  25993. },
  25994. ]
  25995. ))
  25996. characterMakers.push(() => makeCharacter(
  25997. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25998. {
  25999. front: {
  26000. height: math.unit(5 + 7 / 12, "feet"),
  26001. weight: math.unit(185, "lb"),
  26002. name: "Front",
  26003. image: {
  26004. source: "./media/characters/aman-aquila/front.svg",
  26005. extra: 1013 / 976,
  26006. bottom: 45.6 / 1057
  26007. }
  26008. },
  26009. side: {
  26010. height: math.unit(5 + 7 / 12, "feet"),
  26011. weight: math.unit(185, "lb"),
  26012. name: "Side",
  26013. image: {
  26014. source: "./media/characters/aman-aquila/side.svg",
  26015. extra: 1054 / 1011,
  26016. bottom: 15 / 1070
  26017. }
  26018. },
  26019. back: {
  26020. height: math.unit(5 + 7 / 12, "feet"),
  26021. weight: math.unit(185, "lb"),
  26022. name: "Back",
  26023. image: {
  26024. source: "./media/characters/aman-aquila/back.svg",
  26025. extra: 1026 / 970,
  26026. bottom: 12 / 1039
  26027. }
  26028. },
  26029. head: {
  26030. height: math.unit(1.211, "feet"),
  26031. name: "Head",
  26032. image: {
  26033. source: "./media/characters/aman-aquila/head.svg",
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Minimicro",
  26040. height: math.unit(0.057, "inches")
  26041. },
  26042. {
  26043. name: "Micro",
  26044. height: math.unit(7, "inches")
  26045. },
  26046. {
  26047. name: "Mini",
  26048. height: math.unit(3 + 7 / 12, "feet")
  26049. },
  26050. {
  26051. name: "Normal",
  26052. height: math.unit(5 + 7 / 12, "feet"),
  26053. default: true
  26054. },
  26055. {
  26056. name: "Macro",
  26057. height: math.unit(157 + 7 / 12, "feet")
  26058. },
  26059. {
  26060. name: "Megamacro",
  26061. height: math.unit(1557 + 7 / 12, "feet")
  26062. },
  26063. {
  26064. name: "Gigamacro",
  26065. height: math.unit(15557 + 7 / 12, "feet")
  26066. },
  26067. ]
  26068. ))
  26069. characterMakers.push(() => makeCharacter(
  26070. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26071. {
  26072. front: {
  26073. height: math.unit(3 + 2 / 12, "inches"),
  26074. weight: math.unit(0.3, "ounces"),
  26075. name: "Front",
  26076. image: {
  26077. source: "./media/characters/hiphae/front.svg",
  26078. extra: 1931 / 1683,
  26079. bottom: 24 / 1955
  26080. }
  26081. },
  26082. },
  26083. [
  26084. {
  26085. name: "Normal",
  26086. height: math.unit(3 + 1 / 2, "inches"),
  26087. default: true
  26088. },
  26089. ]
  26090. ))
  26091. characterMakers.push(() => makeCharacter(
  26092. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26093. {
  26094. front: {
  26095. height: math.unit(5 + 10 / 12, "feet"),
  26096. weight: math.unit(165, "lb"),
  26097. name: "Front",
  26098. image: {
  26099. source: "./media/characters/nicky/front.svg",
  26100. extra: 3144 / 2886,
  26101. bottom: 45.6 / 3192
  26102. }
  26103. },
  26104. back: {
  26105. height: math.unit(5 + 10 / 12, "feet"),
  26106. weight: math.unit(165, "lb"),
  26107. name: "Back",
  26108. image: {
  26109. source: "./media/characters/nicky/back.svg",
  26110. extra: 3055 / 2804,
  26111. bottom: 28.4 / 3087
  26112. }
  26113. },
  26114. frontclothed: {
  26115. height: math.unit(5 + 10 / 12, "feet"),
  26116. weight: math.unit(165, "lb"),
  26117. name: "Front-clothed",
  26118. image: {
  26119. source: "./media/characters/nicky/front-clothed.svg",
  26120. extra: 3184.9 / 2926.9,
  26121. bottom: 86.5 / 3239.9
  26122. }
  26123. },
  26124. foot: {
  26125. height: math.unit(1.16, "feet"),
  26126. name: "Foot",
  26127. image: {
  26128. source: "./media/characters/nicky/foot.svg"
  26129. }
  26130. },
  26131. feet: {
  26132. height: math.unit(1.34, "feet"),
  26133. name: "Feet",
  26134. image: {
  26135. source: "./media/characters/nicky/feet.svg"
  26136. }
  26137. },
  26138. maw: {
  26139. height: math.unit(0.9, "feet"),
  26140. name: "Maw",
  26141. image: {
  26142. source: "./media/characters/nicky/maw.svg"
  26143. }
  26144. },
  26145. },
  26146. [
  26147. {
  26148. name: "Normal",
  26149. height: math.unit(5 + 10 / 12, "feet"),
  26150. default: true
  26151. },
  26152. {
  26153. name: "Macro",
  26154. height: math.unit(60, "feet")
  26155. },
  26156. {
  26157. name: "Megamacro",
  26158. height: math.unit(1, "mile")
  26159. },
  26160. ]
  26161. ))
  26162. characterMakers.push(() => makeCharacter(
  26163. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26164. {
  26165. side: {
  26166. height: math.unit(10, "feet"),
  26167. weight: math.unit(600, "lb"),
  26168. name: "Side",
  26169. image: {
  26170. source: "./media/characters/blair/side.svg",
  26171. bottom: 16.6 / 475,
  26172. extra: 458 / 431
  26173. }
  26174. },
  26175. },
  26176. [
  26177. {
  26178. name: "Micro",
  26179. height: math.unit(8, "inches")
  26180. },
  26181. {
  26182. name: "Normal",
  26183. height: math.unit(10, "feet"),
  26184. default: true
  26185. },
  26186. {
  26187. name: "Macro",
  26188. height: math.unit(180, "feet")
  26189. },
  26190. ]
  26191. ))
  26192. characterMakers.push(() => makeCharacter(
  26193. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26194. {
  26195. front: {
  26196. height: math.unit(5 + 4 / 12, "feet"),
  26197. weight: math.unit(125, "lb"),
  26198. name: "Front",
  26199. image: {
  26200. source: "./media/characters/fisher/front.svg",
  26201. extra: 444 / 390,
  26202. bottom: 2 / 444.8
  26203. }
  26204. },
  26205. },
  26206. [
  26207. {
  26208. name: "Micro",
  26209. height: math.unit(4, "inches")
  26210. },
  26211. {
  26212. name: "Normal",
  26213. height: math.unit(5 + 4 / 12, "feet"),
  26214. default: true
  26215. },
  26216. {
  26217. name: "Macro",
  26218. height: math.unit(100, "feet")
  26219. },
  26220. ]
  26221. ))
  26222. characterMakers.push(() => makeCharacter(
  26223. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26224. {
  26225. front: {
  26226. height: math.unit(6.71, "feet"),
  26227. weight: math.unit(200, "lb"),
  26228. preyCapacity: math.unit(1000000, "people"),
  26229. name: "Front",
  26230. image: {
  26231. source: "./media/characters/gliss/front.svg",
  26232. extra: 2347 / 2231,
  26233. bottom: 113 / 2462
  26234. }
  26235. },
  26236. hammerspaceSize: {
  26237. height: math.unit(6.71 * 717, "feet"),
  26238. weight: math.unit(200, "lb"),
  26239. preyCapacity: math.unit(1000000, "people"),
  26240. name: "Hammerspace Size",
  26241. image: {
  26242. source: "./media/characters/gliss/front.svg",
  26243. extra: 2347 / 2231,
  26244. bottom: 113 / 2462
  26245. }
  26246. },
  26247. },
  26248. [
  26249. {
  26250. name: "Normal",
  26251. height: math.unit(6.71, "feet"),
  26252. default: true
  26253. },
  26254. ]
  26255. ))
  26256. characterMakers.push(() => makeCharacter(
  26257. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26258. {
  26259. side: {
  26260. height: math.unit(1.44, "m"),
  26261. weight: math.unit(80, "kg"),
  26262. name: "Side",
  26263. image: {
  26264. source: "./media/characters/dune-anderson/side.svg",
  26265. bottom: 49 / 1426
  26266. }
  26267. },
  26268. },
  26269. [
  26270. {
  26271. name: "Wolf-sized",
  26272. height: math.unit(1.44, "meters")
  26273. },
  26274. {
  26275. name: "Normal",
  26276. height: math.unit(5.05, "meters"),
  26277. default: true
  26278. },
  26279. {
  26280. name: "Big",
  26281. height: math.unit(14.4, "meters")
  26282. },
  26283. {
  26284. name: "Huge",
  26285. height: math.unit(144, "meters")
  26286. },
  26287. ]
  26288. ))
  26289. characterMakers.push(() => makeCharacter(
  26290. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26291. {
  26292. front: {
  26293. height: math.unit(7, "feet"),
  26294. weight: math.unit(425, "lb"),
  26295. name: "Front",
  26296. image: {
  26297. source: "./media/characters/hind/front.svg",
  26298. extra: 2091 / 1860,
  26299. bottom: 129 / 2220
  26300. }
  26301. },
  26302. back: {
  26303. height: math.unit(7, "feet"),
  26304. weight: math.unit(425, "lb"),
  26305. name: "Back",
  26306. image: {
  26307. source: "./media/characters/hind/back.svg",
  26308. extra: 2091 / 1860,
  26309. bottom: 24.6 / 2309
  26310. }
  26311. },
  26312. tail: {
  26313. height: math.unit(2.8, "feet"),
  26314. name: "Tail",
  26315. image: {
  26316. source: "./media/characters/hind/tail.svg"
  26317. }
  26318. },
  26319. head: {
  26320. height: math.unit(2.55, "feet"),
  26321. name: "Head",
  26322. image: {
  26323. source: "./media/characters/hind/head.svg"
  26324. }
  26325. },
  26326. },
  26327. [
  26328. {
  26329. name: "XS",
  26330. height: math.unit(0.7, "feet")
  26331. },
  26332. {
  26333. name: "Normal",
  26334. height: math.unit(7, "feet"),
  26335. default: true
  26336. },
  26337. {
  26338. name: "XL",
  26339. height: math.unit(70, "feet")
  26340. },
  26341. ]
  26342. ))
  26343. characterMakers.push(() => makeCharacter(
  26344. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26345. {
  26346. front: {
  26347. height: math.unit(2.1, "meters"),
  26348. weight: math.unit(150, "lb"),
  26349. name: "Front",
  26350. image: {
  26351. source: "./media/characters/tharquench-sizestealer/front.svg",
  26352. extra: 1605/1470,
  26353. bottom: 36/1641
  26354. }
  26355. },
  26356. frontAlt: {
  26357. height: math.unit(2.1, "meters"),
  26358. weight: math.unit(150, "lb"),
  26359. name: "Front (Alt)",
  26360. image: {
  26361. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26362. extra: 2318 / 2063,
  26363. bottom: 93.4 / 2410
  26364. }
  26365. },
  26366. },
  26367. [
  26368. {
  26369. name: "Nano",
  26370. height: math.unit(1, "mm")
  26371. },
  26372. {
  26373. name: "Micro",
  26374. height: math.unit(1, "cm")
  26375. },
  26376. {
  26377. name: "Normal",
  26378. height: math.unit(2.1, "meters"),
  26379. default: true
  26380. },
  26381. ]
  26382. ))
  26383. characterMakers.push(() => makeCharacter(
  26384. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26385. {
  26386. front: {
  26387. height: math.unit(7 + 5 / 12, "feet"),
  26388. weight: math.unit(357, "lb"),
  26389. name: "Front",
  26390. image: {
  26391. source: "./media/characters/solex-draconov/front.svg",
  26392. extra: 1993 / 1865,
  26393. bottom: 117 / 2111
  26394. }
  26395. },
  26396. },
  26397. [
  26398. {
  26399. name: "Natural Height",
  26400. height: math.unit(7 + 5 / 12, "feet"),
  26401. default: true
  26402. },
  26403. {
  26404. name: "Macro",
  26405. height: math.unit(350, "feet")
  26406. },
  26407. {
  26408. name: "Macro+",
  26409. height: math.unit(1000, "feet")
  26410. },
  26411. {
  26412. name: "Megamacro",
  26413. height: math.unit(20, "km")
  26414. },
  26415. {
  26416. name: "Megamacro+",
  26417. height: math.unit(1000, "km")
  26418. },
  26419. {
  26420. name: "Gigamacro",
  26421. height: math.unit(2.5, "Gm")
  26422. },
  26423. {
  26424. name: "Teramacro",
  26425. height: math.unit(15, "Tm")
  26426. },
  26427. {
  26428. name: "Galactic",
  26429. height: math.unit(30, "Zm")
  26430. },
  26431. {
  26432. name: "Universal",
  26433. height: math.unit(21000, "Ym")
  26434. },
  26435. {
  26436. name: "Omniversal",
  26437. height: math.unit(9.861e50, "Ym")
  26438. },
  26439. {
  26440. name: "Existential",
  26441. height: math.unit(1e300, "meters")
  26442. },
  26443. ]
  26444. ))
  26445. characterMakers.push(() => makeCharacter(
  26446. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26447. {
  26448. side: {
  26449. height: math.unit(25, "feet"),
  26450. weight: math.unit(90000, "lb"),
  26451. name: "Side",
  26452. image: {
  26453. source: "./media/characters/mandarax/side.svg",
  26454. extra: 614 / 332,
  26455. bottom: 55 / 630
  26456. }
  26457. },
  26458. lounging: {
  26459. height: math.unit(15.4, "feet"),
  26460. weight: math.unit(90000, "lb"),
  26461. name: "Lounging",
  26462. image: {
  26463. source: "./media/characters/mandarax/lounging.svg",
  26464. extra: 817/609,
  26465. bottom: 685/1502
  26466. }
  26467. },
  26468. head: {
  26469. height: math.unit(11.4, "feet"),
  26470. name: "Head",
  26471. image: {
  26472. source: "./media/characters/mandarax/head.svg"
  26473. }
  26474. },
  26475. belly: {
  26476. height: math.unit(33, "feet"),
  26477. name: "Belly",
  26478. preyCapacity: math.unit(500, "people"),
  26479. image: {
  26480. source: "./media/characters/mandarax/belly.svg"
  26481. }
  26482. },
  26483. dick: {
  26484. height: math.unit(8.46, "feet"),
  26485. name: "Dick",
  26486. image: {
  26487. source: "./media/characters/mandarax/dick.svg"
  26488. }
  26489. },
  26490. top: {
  26491. height: math.unit(28, "meters"),
  26492. name: "Top",
  26493. image: {
  26494. source: "./media/characters/mandarax/top.svg"
  26495. }
  26496. },
  26497. },
  26498. [
  26499. {
  26500. name: "Normal",
  26501. height: math.unit(25, "feet"),
  26502. default: true
  26503. },
  26504. ]
  26505. ))
  26506. characterMakers.push(() => makeCharacter(
  26507. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26508. {
  26509. front: {
  26510. height: math.unit(5, "feet"),
  26511. weight: math.unit(90, "lb"),
  26512. name: "Front",
  26513. image: {
  26514. source: "./media/characters/pixil/front.svg",
  26515. extra: 2000 / 1618,
  26516. bottom: 12.3 / 2011
  26517. }
  26518. },
  26519. },
  26520. [
  26521. {
  26522. name: "Normal",
  26523. height: math.unit(5, "feet"),
  26524. default: true
  26525. },
  26526. {
  26527. name: "Megamacro",
  26528. height: math.unit(10, "miles"),
  26529. },
  26530. ]
  26531. ))
  26532. characterMakers.push(() => makeCharacter(
  26533. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26534. {
  26535. front: {
  26536. height: math.unit(7 + 2 / 12, "feet"),
  26537. weight: math.unit(200, "lb"),
  26538. name: "Front",
  26539. image: {
  26540. source: "./media/characters/angel/front.svg",
  26541. extra: 1830 / 1737,
  26542. bottom: 22.6 / 1854,
  26543. }
  26544. },
  26545. },
  26546. [
  26547. {
  26548. name: "Normal",
  26549. height: math.unit(7 + 2 / 12, "feet"),
  26550. default: true
  26551. },
  26552. {
  26553. name: "Macro",
  26554. height: math.unit(1000, "feet")
  26555. },
  26556. {
  26557. name: "Megamacro",
  26558. height: math.unit(2, "miles")
  26559. },
  26560. {
  26561. name: "Gigamacro",
  26562. height: math.unit(20, "earths")
  26563. },
  26564. ]
  26565. ))
  26566. characterMakers.push(() => makeCharacter(
  26567. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26568. {
  26569. front: {
  26570. height: math.unit(5, "feet"),
  26571. weight: math.unit(180, "lb"),
  26572. name: "Front",
  26573. image: {
  26574. source: "./media/characters/mekana/front.svg",
  26575. extra: 1671 / 1605,
  26576. bottom: 3.5 / 1691
  26577. }
  26578. },
  26579. side: {
  26580. height: math.unit(5, "feet"),
  26581. weight: math.unit(180, "lb"),
  26582. name: "Side",
  26583. image: {
  26584. source: "./media/characters/mekana/side.svg",
  26585. extra: 1671 / 1605,
  26586. bottom: 3.5 / 1691
  26587. }
  26588. },
  26589. back: {
  26590. height: math.unit(5, "feet"),
  26591. weight: math.unit(180, "lb"),
  26592. name: "Back",
  26593. image: {
  26594. source: "./media/characters/mekana/back.svg",
  26595. extra: 1671 / 1605,
  26596. bottom: 3.5 / 1691
  26597. }
  26598. },
  26599. },
  26600. [
  26601. {
  26602. name: "Normal",
  26603. height: math.unit(5, "feet"),
  26604. default: true
  26605. },
  26606. ]
  26607. ))
  26608. characterMakers.push(() => makeCharacter(
  26609. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26610. {
  26611. front: {
  26612. height: math.unit(4 + 6 / 12, "feet"),
  26613. weight: math.unit(80, "lb"),
  26614. name: "Front",
  26615. image: {
  26616. source: "./media/characters/pixie/front.svg",
  26617. extra: 1924 / 1825,
  26618. bottom: 22.4 / 1946
  26619. }
  26620. },
  26621. },
  26622. [
  26623. {
  26624. name: "Normal",
  26625. height: math.unit(4 + 6 / 12, "feet"),
  26626. default: true
  26627. },
  26628. {
  26629. name: "Macro",
  26630. height: math.unit(40, "feet")
  26631. },
  26632. ]
  26633. ))
  26634. characterMakers.push(() => makeCharacter(
  26635. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26636. {
  26637. front: {
  26638. height: math.unit(2.1, "meters"),
  26639. weight: math.unit(200, "lb"),
  26640. name: "Front",
  26641. image: {
  26642. source: "./media/characters/the-lascivious/front.svg",
  26643. extra: 1 / 0.893,
  26644. bottom: 3.5 / 573.7
  26645. }
  26646. },
  26647. },
  26648. [
  26649. {
  26650. name: "Human Scale",
  26651. height: math.unit(2.1, "meters")
  26652. },
  26653. {
  26654. name: "Wolxi Scale",
  26655. height: math.unit(46.2, "m"),
  26656. default: true
  26657. },
  26658. {
  26659. name: "Boinker of Buildings",
  26660. height: math.unit(10, "km")
  26661. },
  26662. {
  26663. name: "Shagger of Skyscrapers",
  26664. height: math.unit(40, "km")
  26665. },
  26666. {
  26667. name: "Banger of Boroughs",
  26668. height: math.unit(4000, "km")
  26669. },
  26670. {
  26671. name: "Screwer of States",
  26672. height: math.unit(100000, "km")
  26673. },
  26674. {
  26675. name: "Pounder of Planets",
  26676. height: math.unit(2000000, "km")
  26677. },
  26678. ]
  26679. ))
  26680. characterMakers.push(() => makeCharacter(
  26681. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26682. {
  26683. front: {
  26684. height: math.unit(6, "feet"),
  26685. weight: math.unit(150, "lb"),
  26686. name: "Front",
  26687. image: {
  26688. source: "./media/characters/aj/front.svg",
  26689. extra: 2039 / 1562,
  26690. bottom: 40 / 2079
  26691. }
  26692. },
  26693. },
  26694. [
  26695. {
  26696. name: "Normal",
  26697. height: math.unit(11 + 6 / 12, "feet"),
  26698. default: true
  26699. },
  26700. {
  26701. name: "Megamacro",
  26702. height: math.unit(60, "megameters")
  26703. },
  26704. ]
  26705. ))
  26706. characterMakers.push(() => makeCharacter(
  26707. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26708. {
  26709. side: {
  26710. height: math.unit(31 + 8 / 12, "feet"),
  26711. weight: math.unit(75000, "kg"),
  26712. name: "Side",
  26713. image: {
  26714. source: "./media/characters/koros/side.svg",
  26715. extra: 1442 / 1297,
  26716. bottom: 122.7 / 1562
  26717. }
  26718. },
  26719. dicksKingsCrown: {
  26720. height: math.unit(6, "feet"),
  26721. name: "Dicks (King's Crown)",
  26722. image: {
  26723. source: "./media/characters/koros/dicks-kings-crown.svg"
  26724. }
  26725. },
  26726. dicksTailSet: {
  26727. height: math.unit(3, "feet"),
  26728. name: "Dicks (Tail Set)",
  26729. image: {
  26730. source: "./media/characters/koros/dicks-tail-set.svg"
  26731. }
  26732. },
  26733. dickCumming: {
  26734. height: math.unit(7.98, "feet"),
  26735. name: "Dick (Cumming)",
  26736. image: {
  26737. source: "./media/characters/koros/dick-cumming.svg"
  26738. }
  26739. },
  26740. dicksBack: {
  26741. height: math.unit(5.9, "feet"),
  26742. name: "Dicks (Back)",
  26743. image: {
  26744. source: "./media/characters/koros/dicks-back.svg"
  26745. }
  26746. },
  26747. dicksFront: {
  26748. height: math.unit(3.72, "feet"),
  26749. name: "Dicks (Front)",
  26750. image: {
  26751. source: "./media/characters/koros/dicks-front.svg"
  26752. }
  26753. },
  26754. dicksPeeking: {
  26755. height: math.unit(3.0, "feet"),
  26756. name: "Dicks (Peeking)",
  26757. image: {
  26758. source: "./media/characters/koros/dicks-peeking.svg"
  26759. }
  26760. },
  26761. eye: {
  26762. height: math.unit(1.7, "feet"),
  26763. name: "Eye",
  26764. image: {
  26765. source: "./media/characters/koros/eye.svg"
  26766. }
  26767. },
  26768. headFront: {
  26769. height: math.unit(11.69, "feet"),
  26770. name: "Head (Front)",
  26771. image: {
  26772. source: "./media/characters/koros/head-front.svg"
  26773. }
  26774. },
  26775. headSide: {
  26776. height: math.unit(14, "feet"),
  26777. name: "Head (Side)",
  26778. image: {
  26779. source: "./media/characters/koros/head-side.svg"
  26780. }
  26781. },
  26782. leg: {
  26783. height: math.unit(17, "feet"),
  26784. name: "Leg",
  26785. image: {
  26786. source: "./media/characters/koros/leg.svg"
  26787. }
  26788. },
  26789. mawSide: {
  26790. height: math.unit(12.8, "feet"),
  26791. name: "Maw (Side)",
  26792. image: {
  26793. source: "./media/characters/koros/maw-side.svg"
  26794. }
  26795. },
  26796. mawSpitting: {
  26797. height: math.unit(17, "feet"),
  26798. name: "Maw (Spitting)",
  26799. image: {
  26800. source: "./media/characters/koros/maw-spitting.svg"
  26801. }
  26802. },
  26803. slit: {
  26804. height: math.unit(2.8, "feet"),
  26805. name: "Slit",
  26806. image: {
  26807. source: "./media/characters/koros/slit.svg"
  26808. }
  26809. },
  26810. stomach: {
  26811. height: math.unit(6.8, "feet"),
  26812. preyCapacity: math.unit(20, "people"),
  26813. name: "Stomach",
  26814. image: {
  26815. source: "./media/characters/koros/stomach.svg"
  26816. }
  26817. },
  26818. wingspanBottom: {
  26819. height: math.unit(114, "feet"),
  26820. name: "Wingspan (Bottom)",
  26821. image: {
  26822. source: "./media/characters/koros/wingspan-bottom.svg"
  26823. }
  26824. },
  26825. wingspanTop: {
  26826. height: math.unit(104, "feet"),
  26827. name: "Wingspan (Top)",
  26828. image: {
  26829. source: "./media/characters/koros/wingspan-top.svg"
  26830. }
  26831. },
  26832. },
  26833. [
  26834. {
  26835. name: "Normal",
  26836. height: math.unit(31 + 8 / 12, "feet"),
  26837. default: true
  26838. },
  26839. ]
  26840. ))
  26841. characterMakers.push(() => makeCharacter(
  26842. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26843. {
  26844. front: {
  26845. height: math.unit(18 + 5 / 12, "feet"),
  26846. weight: math.unit(3750, "kg"),
  26847. name: "Front",
  26848. image: {
  26849. source: "./media/characters/vexx/front.svg",
  26850. extra: 426 / 396,
  26851. bottom: 31.5 / 458
  26852. }
  26853. },
  26854. maw: {
  26855. height: math.unit(6, "feet"),
  26856. name: "Maw",
  26857. image: {
  26858. source: "./media/characters/vexx/maw.svg"
  26859. }
  26860. },
  26861. },
  26862. [
  26863. {
  26864. name: "Normal",
  26865. height: math.unit(18 + 5 / 12, "feet"),
  26866. default: true
  26867. },
  26868. ]
  26869. ))
  26870. characterMakers.push(() => makeCharacter(
  26871. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26872. {
  26873. front: {
  26874. height: math.unit(17 + 6 / 12, "feet"),
  26875. weight: math.unit(150, "lb"),
  26876. name: "Front",
  26877. image: {
  26878. source: "./media/characters/baadra/front.svg",
  26879. extra: 1694/1553,
  26880. bottom: 179/1873
  26881. }
  26882. },
  26883. frontAlt: {
  26884. height: math.unit(17 + 6 / 12, "feet"),
  26885. weight: math.unit(150, "lb"),
  26886. name: "Front (Alt)",
  26887. image: {
  26888. source: "./media/characters/baadra/front-alt.svg",
  26889. extra: 3137 / 2890,
  26890. bottom: 168.4 / 3305
  26891. }
  26892. },
  26893. back: {
  26894. height: math.unit(17 + 6 / 12, "feet"),
  26895. weight: math.unit(150, "lb"),
  26896. name: "Back",
  26897. image: {
  26898. source: "./media/characters/baadra/back.svg",
  26899. extra: 3142 / 2890,
  26900. bottom: 220 / 3371
  26901. }
  26902. },
  26903. head: {
  26904. height: math.unit(5.45, "feet"),
  26905. name: "Head",
  26906. image: {
  26907. source: "./media/characters/baadra/head.svg"
  26908. }
  26909. },
  26910. headAngry: {
  26911. height: math.unit(4.95, "feet"),
  26912. name: "Head (Angry)",
  26913. image: {
  26914. source: "./media/characters/baadra/head-angry.svg"
  26915. }
  26916. },
  26917. headOpen: {
  26918. height: math.unit(6, "feet"),
  26919. name: "Head (Open)",
  26920. image: {
  26921. source: "./media/characters/baadra/head-open.svg"
  26922. }
  26923. },
  26924. },
  26925. [
  26926. {
  26927. name: "Normal",
  26928. height: math.unit(17 + 6 / 12, "feet"),
  26929. default: true
  26930. },
  26931. ]
  26932. ))
  26933. characterMakers.push(() => makeCharacter(
  26934. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26935. {
  26936. front: {
  26937. height: math.unit(7 + 3 / 12, "feet"),
  26938. weight: math.unit(180, "lb"),
  26939. name: "Front",
  26940. image: {
  26941. source: "./media/characters/juri/front.svg",
  26942. extra: 1401 / 1237,
  26943. bottom: 18.5 / 1418
  26944. }
  26945. },
  26946. side: {
  26947. height: math.unit(7 + 3 / 12, "feet"),
  26948. weight: math.unit(180, "lb"),
  26949. name: "Side",
  26950. image: {
  26951. source: "./media/characters/juri/side.svg",
  26952. extra: 1424 / 1242,
  26953. bottom: 18.5 / 1447
  26954. }
  26955. },
  26956. sitting: {
  26957. height: math.unit(6, "feet"),
  26958. weight: math.unit(180, "lb"),
  26959. name: "Sitting",
  26960. image: {
  26961. source: "./media/characters/juri/sitting.svg",
  26962. extra: 1270 / 1143,
  26963. bottom: 100 / 1343
  26964. }
  26965. },
  26966. back: {
  26967. height: math.unit(7 + 3 / 12, "feet"),
  26968. weight: math.unit(180, "lb"),
  26969. name: "Back",
  26970. image: {
  26971. source: "./media/characters/juri/back.svg",
  26972. extra: 1377 / 1240,
  26973. bottom: 23.7 / 1405
  26974. }
  26975. },
  26976. maw: {
  26977. height: math.unit(2.8, "feet"),
  26978. name: "Maw",
  26979. image: {
  26980. source: "./media/characters/juri/maw.svg"
  26981. }
  26982. },
  26983. stomach: {
  26984. height: math.unit(0.89, "feet"),
  26985. preyCapacity: math.unit(4, "liters"),
  26986. name: "Stomach",
  26987. image: {
  26988. source: "./media/characters/juri/stomach.svg"
  26989. }
  26990. },
  26991. },
  26992. [
  26993. {
  26994. name: "Normal",
  26995. height: math.unit(7 + 3 / 12, "feet"),
  26996. default: true
  26997. },
  26998. ]
  26999. ))
  27000. characterMakers.push(() => makeCharacter(
  27001. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27002. {
  27003. fox: {
  27004. height: math.unit(5 + 6 / 12, "feet"),
  27005. weight: math.unit(140, "lb"),
  27006. name: "Fox",
  27007. image: {
  27008. source: "./media/characters/maxene-sita/fox.svg",
  27009. extra: 146 / 138,
  27010. bottom: 2.1 / 148.19
  27011. }
  27012. },
  27013. foxLaying: {
  27014. height: math.unit(1.70, "feet"),
  27015. weight: math.unit(140, "lb"),
  27016. name: "Fox (Laying)",
  27017. image: {
  27018. source: "./media/characters/maxene-sita/fox-laying.svg",
  27019. extra: 910 / 572,
  27020. bottom: 71 / 981
  27021. }
  27022. },
  27023. kitsune: {
  27024. height: math.unit(10, "feet"),
  27025. weight: math.unit(800, "lb"),
  27026. name: "Kitsune",
  27027. image: {
  27028. source: "./media/characters/maxene-sita/kitsune.svg",
  27029. extra: 185 / 176,
  27030. bottom: 4.7 / 189.9
  27031. }
  27032. },
  27033. hellhound: {
  27034. height: math.unit(10, "feet"),
  27035. weight: math.unit(700, "lb"),
  27036. name: "Hellhound",
  27037. image: {
  27038. source: "./media/characters/maxene-sita/hellhound.svg",
  27039. extra: 1600 / 1545,
  27040. bottom: 81 / 1681
  27041. }
  27042. },
  27043. },
  27044. [
  27045. {
  27046. name: "Normal",
  27047. height: math.unit(5 + 6 / 12, "feet"),
  27048. default: true
  27049. },
  27050. ]
  27051. ))
  27052. characterMakers.push(() => makeCharacter(
  27053. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27054. {
  27055. front: {
  27056. height: math.unit(3 + 4 / 12, "feet"),
  27057. weight: math.unit(70, "lb"),
  27058. name: "Front",
  27059. image: {
  27060. source: "./media/characters/maia/front.svg",
  27061. extra: 227 / 219.5,
  27062. bottom: 40 / 267
  27063. }
  27064. },
  27065. back: {
  27066. height: math.unit(3 + 4 / 12, "feet"),
  27067. weight: math.unit(70, "lb"),
  27068. name: "Back",
  27069. image: {
  27070. source: "./media/characters/maia/back.svg",
  27071. extra: 237 / 225
  27072. }
  27073. },
  27074. },
  27075. [
  27076. {
  27077. name: "Normal",
  27078. height: math.unit(3 + 4 / 12, "feet"),
  27079. default: true
  27080. },
  27081. ]
  27082. ))
  27083. characterMakers.push(() => makeCharacter(
  27084. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27085. {
  27086. front: {
  27087. height: math.unit(5 + 10 / 12, "feet"),
  27088. weight: math.unit(197, "lb"),
  27089. name: "Front",
  27090. image: {
  27091. source: "./media/characters/jabaro/front.svg",
  27092. extra: 225 / 216,
  27093. bottom: 5.06 / 230
  27094. }
  27095. },
  27096. back: {
  27097. height: math.unit(5 + 10 / 12, "feet"),
  27098. weight: math.unit(197, "lb"),
  27099. name: "Back",
  27100. image: {
  27101. source: "./media/characters/jabaro/back.svg",
  27102. extra: 225 / 219,
  27103. bottom: 1.9 / 227
  27104. }
  27105. },
  27106. },
  27107. [
  27108. {
  27109. name: "Normal",
  27110. height: math.unit(5 + 10 / 12, "feet"),
  27111. default: true
  27112. },
  27113. ]
  27114. ))
  27115. characterMakers.push(() => makeCharacter(
  27116. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27117. {
  27118. front: {
  27119. height: math.unit(5 + 8 / 12, "feet"),
  27120. weight: math.unit(139, "lb"),
  27121. name: "Front",
  27122. image: {
  27123. source: "./media/characters/risa/front.svg",
  27124. extra: 270 / 260,
  27125. bottom: 11.2 / 282
  27126. }
  27127. },
  27128. back: {
  27129. height: math.unit(5 + 8 / 12, "feet"),
  27130. weight: math.unit(139, "lb"),
  27131. name: "Back",
  27132. image: {
  27133. source: "./media/characters/risa/back.svg",
  27134. extra: 264 / 255,
  27135. bottom: 4 / 268
  27136. }
  27137. },
  27138. },
  27139. [
  27140. {
  27141. name: "Normal",
  27142. height: math.unit(5 + 8 / 12, "feet"),
  27143. default: true
  27144. },
  27145. ]
  27146. ))
  27147. characterMakers.push(() => makeCharacter(
  27148. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27149. {
  27150. front: {
  27151. height: math.unit(2 + 11 / 12, "feet"),
  27152. weight: math.unit(30, "lb"),
  27153. name: "Front",
  27154. image: {
  27155. source: "./media/characters/weatley/front.svg",
  27156. bottom: 10.7 / 414,
  27157. extra: 403.5 / 362
  27158. }
  27159. },
  27160. back: {
  27161. height: math.unit(2 + 11 / 12, "feet"),
  27162. weight: math.unit(30, "lb"),
  27163. name: "Back",
  27164. image: {
  27165. source: "./media/characters/weatley/back.svg",
  27166. bottom: 10.7 / 414,
  27167. extra: 403.5 / 362
  27168. }
  27169. },
  27170. },
  27171. [
  27172. {
  27173. name: "Normal",
  27174. height: math.unit(2 + 11 / 12, "feet"),
  27175. default: true
  27176. },
  27177. ]
  27178. ))
  27179. characterMakers.push(() => makeCharacter(
  27180. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27181. {
  27182. front: {
  27183. height: math.unit(5 + 2 / 12, "feet"),
  27184. weight: math.unit(50, "kg"),
  27185. name: "Front",
  27186. image: {
  27187. source: "./media/characters/mercury-crescent/front.svg",
  27188. extra: 1088 / 1033,
  27189. bottom: 18.9 / 1109
  27190. }
  27191. },
  27192. },
  27193. [
  27194. {
  27195. name: "Normal",
  27196. height: math.unit(5 + 2 / 12, "feet"),
  27197. default: true
  27198. },
  27199. ]
  27200. ))
  27201. characterMakers.push(() => makeCharacter(
  27202. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27203. {
  27204. front: {
  27205. height: math.unit(2, "feet"),
  27206. weight: math.unit(15, "kg"),
  27207. name: "Front",
  27208. image: {
  27209. source: "./media/characters/diamond-jones/front.svg",
  27210. extra: 727/723,
  27211. bottom: 46/773
  27212. }
  27213. },
  27214. },
  27215. [
  27216. {
  27217. name: "Normal",
  27218. height: math.unit(2, "feet"),
  27219. default: true
  27220. },
  27221. ]
  27222. ))
  27223. characterMakers.push(() => makeCharacter(
  27224. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27225. {
  27226. front: {
  27227. height: math.unit(3, "feet"),
  27228. weight: math.unit(30, "kg"),
  27229. name: "Front",
  27230. image: {
  27231. source: "./media/characters/sweet-bit/front.svg",
  27232. extra: 675 / 567,
  27233. bottom: 27.7 / 703
  27234. }
  27235. },
  27236. },
  27237. [
  27238. {
  27239. name: "Normal",
  27240. height: math.unit(3, "feet"),
  27241. default: true
  27242. },
  27243. ]
  27244. ))
  27245. characterMakers.push(() => makeCharacter(
  27246. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27247. {
  27248. side: {
  27249. height: math.unit(9.178, "feet"),
  27250. weight: math.unit(500, "lb"),
  27251. name: "Side",
  27252. image: {
  27253. source: "./media/characters/umbrazen/side.svg",
  27254. extra: 1730 / 1473,
  27255. bottom: 34.6 / 1765
  27256. }
  27257. },
  27258. },
  27259. [
  27260. {
  27261. name: "Normal",
  27262. height: math.unit(9.178, "feet"),
  27263. default: true
  27264. },
  27265. ]
  27266. ))
  27267. characterMakers.push(() => makeCharacter(
  27268. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27269. {
  27270. front: {
  27271. height: math.unit(10, "feet"),
  27272. weight: math.unit(750, "lb"),
  27273. name: "Front",
  27274. image: {
  27275. source: "./media/characters/arlist/front.svg",
  27276. extra: 961 / 778,
  27277. bottom: 6.2 / 986
  27278. }
  27279. },
  27280. },
  27281. [
  27282. {
  27283. name: "Normal",
  27284. height: math.unit(10, "feet"),
  27285. default: true
  27286. },
  27287. ]
  27288. ))
  27289. characterMakers.push(() => makeCharacter(
  27290. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27291. {
  27292. front: {
  27293. height: math.unit(5 + 1 / 12, "feet"),
  27294. weight: math.unit(110, "lb"),
  27295. name: "Front",
  27296. image: {
  27297. source: "./media/characters/aradel/front.svg",
  27298. extra: 324 / 303,
  27299. bottom: 3.6 / 329.4
  27300. }
  27301. },
  27302. },
  27303. [
  27304. {
  27305. name: "Normal",
  27306. height: math.unit(5 + 1 / 12, "feet"),
  27307. default: true
  27308. },
  27309. ]
  27310. ))
  27311. characterMakers.push(() => makeCharacter(
  27312. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27313. {
  27314. dressed: {
  27315. height: math.unit(3 + 8 / 12, "feet"),
  27316. weight: math.unit(50, "lb"),
  27317. name: "Dressed",
  27318. image: {
  27319. source: "./media/characters/serryn/dressed.svg",
  27320. extra: 1792 / 1656,
  27321. bottom: 43.5 / 1840
  27322. }
  27323. },
  27324. nude: {
  27325. height: math.unit(3 + 8 / 12, "feet"),
  27326. weight: math.unit(50, "lb"),
  27327. name: "Nude",
  27328. image: {
  27329. source: "./media/characters/serryn/nude.svg",
  27330. extra: 1792 / 1656,
  27331. bottom: 43.5 / 1840
  27332. }
  27333. },
  27334. },
  27335. [
  27336. {
  27337. name: "Normal",
  27338. height: math.unit(3 + 8 / 12, "feet"),
  27339. default: true
  27340. },
  27341. ]
  27342. ))
  27343. characterMakers.push(() => makeCharacter(
  27344. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27345. {
  27346. front: {
  27347. height: math.unit(7 + 10 / 12, "feet"),
  27348. weight: math.unit(255, "lb"),
  27349. name: "Front",
  27350. image: {
  27351. source: "./media/characters/xavier-thyme/front.svg",
  27352. extra: 3733 / 3642,
  27353. bottom: 131 / 3869
  27354. }
  27355. },
  27356. frontRaven: {
  27357. height: math.unit(7 + 10 / 12, "feet"),
  27358. weight: math.unit(255, "lb"),
  27359. name: "Front (Raven)",
  27360. image: {
  27361. source: "./media/characters/xavier-thyme/front-raven.svg",
  27362. extra: 4385 / 3642,
  27363. bottom: 131 / 4517
  27364. }
  27365. },
  27366. },
  27367. [
  27368. {
  27369. name: "Normal",
  27370. height: math.unit(7 + 10 / 12, "feet"),
  27371. default: true
  27372. },
  27373. ]
  27374. ))
  27375. characterMakers.push(() => makeCharacter(
  27376. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27377. {
  27378. front: {
  27379. height: math.unit(1.6, "m"),
  27380. weight: math.unit(50, "kg"),
  27381. name: "Front",
  27382. image: {
  27383. source: "./media/characters/kiki/front.svg",
  27384. extra: 4682 / 3610,
  27385. bottom: 115 / 4777
  27386. }
  27387. },
  27388. },
  27389. [
  27390. {
  27391. name: "Normal",
  27392. height: math.unit(1.6, "meters"),
  27393. default: true
  27394. },
  27395. ]
  27396. ))
  27397. characterMakers.push(() => makeCharacter(
  27398. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27399. {
  27400. front: {
  27401. height: math.unit(50, "m"),
  27402. weight: math.unit(500, "tonnes"),
  27403. name: "Front",
  27404. image: {
  27405. source: "./media/characters/ryoko/front.svg",
  27406. extra: 4632 / 3926,
  27407. bottom: 193 / 4823
  27408. }
  27409. },
  27410. },
  27411. [
  27412. {
  27413. name: "Normal",
  27414. height: math.unit(50, "meters"),
  27415. default: true
  27416. },
  27417. ]
  27418. ))
  27419. characterMakers.push(() => makeCharacter(
  27420. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27421. {
  27422. front: {
  27423. height: math.unit(30, "m"),
  27424. weight: math.unit(22, "tonnes"),
  27425. name: "Front",
  27426. image: {
  27427. source: "./media/characters/elio/front.svg",
  27428. extra: 4582 / 3720,
  27429. bottom: 236 / 4828
  27430. }
  27431. },
  27432. },
  27433. [
  27434. {
  27435. name: "Normal",
  27436. height: math.unit(30, "meters"),
  27437. default: true
  27438. },
  27439. ]
  27440. ))
  27441. characterMakers.push(() => makeCharacter(
  27442. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27443. {
  27444. front: {
  27445. height: math.unit(6 + 3 / 12, "feet"),
  27446. weight: math.unit(120, "lb"),
  27447. name: "Front",
  27448. image: {
  27449. source: "./media/characters/azura/front.svg",
  27450. extra: 1149 / 1135,
  27451. bottom: 45 / 1194
  27452. }
  27453. },
  27454. frontClothed: {
  27455. height: math.unit(6 + 3 / 12, "feet"),
  27456. weight: math.unit(120, "lb"),
  27457. name: "Front (Clothed)",
  27458. image: {
  27459. source: "./media/characters/azura/front-clothed.svg",
  27460. extra: 1149 / 1135,
  27461. bottom: 45 / 1194
  27462. }
  27463. },
  27464. },
  27465. [
  27466. {
  27467. name: "Normal",
  27468. height: math.unit(6 + 3 / 12, "feet"),
  27469. default: true
  27470. },
  27471. {
  27472. name: "Macro",
  27473. height: math.unit(20 + 6 / 12, "feet")
  27474. },
  27475. {
  27476. name: "Megamacro",
  27477. height: math.unit(12, "miles")
  27478. },
  27479. {
  27480. name: "Gigamacro",
  27481. height: math.unit(10000, "miles")
  27482. },
  27483. {
  27484. name: "Teramacro",
  27485. height: math.unit(900000, "miles")
  27486. },
  27487. ]
  27488. ))
  27489. characterMakers.push(() => makeCharacter(
  27490. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27491. {
  27492. front: {
  27493. height: math.unit(12, "feet"),
  27494. weight: math.unit(1, "ton"),
  27495. capacity: math.unit(660000, "gallons"),
  27496. name: "Front",
  27497. image: {
  27498. source: "./media/characters/zeus/front.svg",
  27499. extra: 5005 / 4717,
  27500. bottom: 363 / 5388
  27501. }
  27502. },
  27503. },
  27504. [
  27505. {
  27506. name: "Normal",
  27507. height: math.unit(12, "feet")
  27508. },
  27509. {
  27510. name: "Preferred Size",
  27511. height: math.unit(0.5, "miles"),
  27512. default: true
  27513. },
  27514. {
  27515. name: "Giga Horse",
  27516. height: math.unit(300, "miles")
  27517. },
  27518. {
  27519. name: "Riding Planets",
  27520. height: math.unit(30, "megameters")
  27521. },
  27522. {
  27523. name: "Cosmic Giant",
  27524. height: math.unit(3, "zettameters")
  27525. },
  27526. {
  27527. name: "Breeding God",
  27528. height: math.unit(9.92e22, "yottameters")
  27529. },
  27530. ]
  27531. ))
  27532. characterMakers.push(() => makeCharacter(
  27533. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27534. {
  27535. side: {
  27536. height: math.unit(9, "feet"),
  27537. weight: math.unit(1500, "kg"),
  27538. name: "Side",
  27539. image: {
  27540. source: "./media/characters/fang/side.svg",
  27541. extra: 924 / 866,
  27542. bottom: 47.5 / 972.3
  27543. }
  27544. },
  27545. },
  27546. [
  27547. {
  27548. name: "Normal",
  27549. height: math.unit(9, "feet"),
  27550. default: true
  27551. },
  27552. {
  27553. name: "Macro",
  27554. height: math.unit(75 + 6 / 12, "feet")
  27555. },
  27556. {
  27557. name: "Teramacro",
  27558. height: math.unit(50000, "miles")
  27559. },
  27560. ]
  27561. ))
  27562. characterMakers.push(() => makeCharacter(
  27563. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27564. {
  27565. front: {
  27566. height: math.unit(10, "feet"),
  27567. weight: math.unit(2, "tons"),
  27568. name: "Front",
  27569. image: {
  27570. source: "./media/characters/rekhit/front.svg",
  27571. extra: 2796 / 2590,
  27572. bottom: 225 / 3022
  27573. }
  27574. },
  27575. },
  27576. [
  27577. {
  27578. name: "Normal",
  27579. height: math.unit(10, "feet"),
  27580. default: true
  27581. },
  27582. {
  27583. name: "Macro",
  27584. height: math.unit(500, "feet")
  27585. },
  27586. ]
  27587. ))
  27588. characterMakers.push(() => makeCharacter(
  27589. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27590. {
  27591. front: {
  27592. height: math.unit(7 + 6.451 / 12, "feet"),
  27593. weight: math.unit(310, "lb"),
  27594. name: "Front",
  27595. image: {
  27596. source: "./media/characters/dahlia-verrick/front.svg",
  27597. extra: 1488 / 1365,
  27598. bottom: 6.2 / 1495
  27599. }
  27600. },
  27601. back: {
  27602. height: math.unit(7 + 6.451 / 12, "feet"),
  27603. weight: math.unit(310, "lb"),
  27604. name: "Back",
  27605. image: {
  27606. source: "./media/characters/dahlia-verrick/back.svg",
  27607. extra: 1472 / 1351,
  27608. bottom: 5.28 / 1477
  27609. }
  27610. },
  27611. frontBusiness: {
  27612. height: math.unit(7 + 6.451 / 12, "feet"),
  27613. weight: math.unit(200, "lb"),
  27614. name: "Front (Business)",
  27615. image: {
  27616. source: "./media/characters/dahlia-verrick/front-business.svg",
  27617. extra: 1478 / 1381,
  27618. bottom: 5.5 / 1484
  27619. }
  27620. },
  27621. frontCasual: {
  27622. height: math.unit(7 + 6.451 / 12, "feet"),
  27623. weight: math.unit(200, "lb"),
  27624. name: "Front (Casual)",
  27625. image: {
  27626. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27627. extra: 1478 / 1381,
  27628. bottom: 5.5 / 1484
  27629. }
  27630. },
  27631. },
  27632. [
  27633. {
  27634. name: "Travel-Sized",
  27635. height: math.unit(7.45, "inches")
  27636. },
  27637. {
  27638. name: "Normal",
  27639. height: math.unit(7 + 6.451 / 12, "feet"),
  27640. default: true
  27641. },
  27642. {
  27643. name: "Hitting the Town",
  27644. height: math.unit(37 + 8 / 12, "feet")
  27645. },
  27646. {
  27647. name: "Stomp in the Suburbs",
  27648. height: math.unit(964 + 9.728 / 12, "feet")
  27649. },
  27650. {
  27651. name: "Sit on the City",
  27652. height: math.unit(61747 + 10.592 / 12, "feet")
  27653. },
  27654. {
  27655. name: "Glomp the Globe",
  27656. height: math.unit(252919327 + 4.832 / 12, "feet")
  27657. },
  27658. ]
  27659. ))
  27660. characterMakers.push(() => makeCharacter(
  27661. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27662. {
  27663. front: {
  27664. height: math.unit(6 + 4 / 12, "feet"),
  27665. weight: math.unit(320, "lb"),
  27666. name: "Front",
  27667. image: {
  27668. source: "./media/characters/balina-mahigan/front.svg",
  27669. extra: 447 / 428,
  27670. bottom: 18 / 466
  27671. }
  27672. },
  27673. back: {
  27674. height: math.unit(6 + 4 / 12, "feet"),
  27675. weight: math.unit(320, "lb"),
  27676. name: "Back",
  27677. image: {
  27678. source: "./media/characters/balina-mahigan/back.svg",
  27679. extra: 445 / 428,
  27680. bottom: 4.07 / 448
  27681. }
  27682. },
  27683. arm: {
  27684. height: math.unit(1.88, "feet"),
  27685. name: "Arm",
  27686. image: {
  27687. source: "./media/characters/balina-mahigan/arm.svg"
  27688. }
  27689. },
  27690. backPort: {
  27691. height: math.unit(0.685, "feet"),
  27692. name: "Back Port",
  27693. image: {
  27694. source: "./media/characters/balina-mahigan/back-port.svg"
  27695. }
  27696. },
  27697. hoofpaw: {
  27698. height: math.unit(1.41, "feet"),
  27699. name: "Hoofpaw",
  27700. image: {
  27701. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27702. }
  27703. },
  27704. leftHandBack: {
  27705. height: math.unit(0.938, "feet"),
  27706. name: "Left Hand (Back)",
  27707. image: {
  27708. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27709. }
  27710. },
  27711. leftHandFront: {
  27712. height: math.unit(0.938, "feet"),
  27713. name: "Left Hand (Front)",
  27714. image: {
  27715. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27716. }
  27717. },
  27718. rightHandBack: {
  27719. height: math.unit(0.95, "feet"),
  27720. name: "Right Hand (Back)",
  27721. image: {
  27722. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27723. }
  27724. },
  27725. rightHandFront: {
  27726. height: math.unit(0.95, "feet"),
  27727. name: "Right Hand (Front)",
  27728. image: {
  27729. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27730. }
  27731. },
  27732. },
  27733. [
  27734. {
  27735. name: "Normal",
  27736. height: math.unit(6 + 4 / 12, "feet"),
  27737. default: true
  27738. },
  27739. ]
  27740. ))
  27741. characterMakers.push(() => makeCharacter(
  27742. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27743. {
  27744. front: {
  27745. height: math.unit(6, "feet"),
  27746. weight: math.unit(320, "lb"),
  27747. name: "Front",
  27748. image: {
  27749. source: "./media/characters/balina-mejeri/front.svg",
  27750. extra: 517 / 488,
  27751. bottom: 44.2 / 561
  27752. }
  27753. },
  27754. },
  27755. [
  27756. {
  27757. name: "Normal",
  27758. height: math.unit(6 + 4 / 12, "feet")
  27759. },
  27760. {
  27761. name: "Business",
  27762. height: math.unit(155, "feet"),
  27763. default: true
  27764. },
  27765. ]
  27766. ))
  27767. characterMakers.push(() => makeCharacter(
  27768. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27769. {
  27770. kneeling: {
  27771. height: math.unit(6 + 4 / 12, "feet"),
  27772. weight: math.unit(300 * 20, "lb"),
  27773. name: "Kneeling",
  27774. image: {
  27775. source: "./media/characters/balbarian/kneeling.svg",
  27776. extra: 922 / 862,
  27777. bottom: 42.4 / 965
  27778. }
  27779. },
  27780. },
  27781. [
  27782. {
  27783. name: "Normal",
  27784. height: math.unit(6 + 4 / 12, "feet")
  27785. },
  27786. {
  27787. name: "Treasured",
  27788. height: math.unit(18 + 9 / 12, "feet"),
  27789. default: true
  27790. },
  27791. {
  27792. name: "Macro",
  27793. height: math.unit(900, "feet")
  27794. },
  27795. ]
  27796. ))
  27797. characterMakers.push(() => makeCharacter(
  27798. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27799. {
  27800. front: {
  27801. height: math.unit(6 + 4 / 12, "feet"),
  27802. weight: math.unit(325, "lb"),
  27803. name: "Front",
  27804. image: {
  27805. source: "./media/characters/balina-amarini/front.svg",
  27806. extra: 415 / 403,
  27807. bottom: 19 / 433.4
  27808. }
  27809. },
  27810. back: {
  27811. height: math.unit(6 + 4 / 12, "feet"),
  27812. weight: math.unit(325, "lb"),
  27813. name: "Back",
  27814. image: {
  27815. source: "./media/characters/balina-amarini/back.svg",
  27816. extra: 415 / 403,
  27817. bottom: 13.5 / 432
  27818. }
  27819. },
  27820. overdrive: {
  27821. height: math.unit(6 + 4 / 12, "feet"),
  27822. weight: math.unit(400, "lb"),
  27823. name: "Overdrive",
  27824. image: {
  27825. source: "./media/characters/balina-amarini/overdrive.svg",
  27826. extra: 269 / 259,
  27827. bottom: 12 / 282
  27828. }
  27829. },
  27830. },
  27831. [
  27832. {
  27833. name: "Boom",
  27834. height: math.unit(9 + 10 / 12, "feet"),
  27835. default: true
  27836. },
  27837. {
  27838. name: "Macro",
  27839. height: math.unit(280, "feet")
  27840. },
  27841. ]
  27842. ))
  27843. characterMakers.push(() => makeCharacter(
  27844. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27845. {
  27846. goddess: {
  27847. height: math.unit(600, "feet"),
  27848. weight: math.unit(2000000, "tons"),
  27849. name: "Goddess",
  27850. image: {
  27851. source: "./media/characters/lady-kubwa/goddess.svg",
  27852. extra: 1240.5 / 1223,
  27853. bottom: 22 / 1263
  27854. }
  27855. },
  27856. goddesser: {
  27857. height: math.unit(900, "feet"),
  27858. weight: math.unit(20000000, "lb"),
  27859. name: "Goddess-er",
  27860. image: {
  27861. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27862. extra: 899 / 888,
  27863. bottom: 12.6 / 912
  27864. }
  27865. },
  27866. },
  27867. [
  27868. {
  27869. name: "Macro",
  27870. height: math.unit(600, "feet"),
  27871. default: true
  27872. },
  27873. {
  27874. name: "Megamacro",
  27875. height: math.unit(250, "miles")
  27876. },
  27877. ]
  27878. ))
  27879. characterMakers.push(() => makeCharacter(
  27880. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27881. {
  27882. front: {
  27883. height: math.unit(7 + 7 / 12, "feet"),
  27884. weight: math.unit(250, "lb"),
  27885. name: "Front",
  27886. image: {
  27887. source: "./media/characters/tala-grovehorn/front.svg",
  27888. extra: 2636 / 2525,
  27889. bottom: 147 / 2781
  27890. }
  27891. },
  27892. back: {
  27893. height: math.unit(7 + 7 / 12, "feet"),
  27894. weight: math.unit(250, "lb"),
  27895. name: "Back",
  27896. image: {
  27897. source: "./media/characters/tala-grovehorn/back.svg",
  27898. extra: 2635 / 2539,
  27899. bottom: 100 / 2732.8
  27900. }
  27901. },
  27902. mouth: {
  27903. height: math.unit(1.15, "feet"),
  27904. name: "Mouth",
  27905. image: {
  27906. source: "./media/characters/tala-grovehorn/mouth.svg"
  27907. }
  27908. },
  27909. dick: {
  27910. height: math.unit(2.36, "feet"),
  27911. name: "Dick",
  27912. image: {
  27913. source: "./media/characters/tala-grovehorn/dick.svg"
  27914. }
  27915. },
  27916. slit: {
  27917. height: math.unit(0.61, "feet"),
  27918. name: "Slit",
  27919. image: {
  27920. source: "./media/characters/tala-grovehorn/slit.svg"
  27921. }
  27922. },
  27923. },
  27924. [
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27929. {
  27930. front: {
  27931. height: math.unit(7 + 7 / 12, "feet"),
  27932. weight: math.unit(225, "lb"),
  27933. name: "Front",
  27934. image: {
  27935. source: "./media/characters/epona/front.svg",
  27936. extra: 2445 / 2290,
  27937. bottom: 251 / 2696
  27938. }
  27939. },
  27940. back: {
  27941. height: math.unit(7 + 7 / 12, "feet"),
  27942. weight: math.unit(225, "lb"),
  27943. name: "Back",
  27944. image: {
  27945. source: "./media/characters/epona/back.svg",
  27946. extra: 2546 / 2408,
  27947. bottom: 44 / 2589
  27948. }
  27949. },
  27950. genitals: {
  27951. height: math.unit(1.5, "feet"),
  27952. name: "Genitals",
  27953. image: {
  27954. source: "./media/characters/epona/genitals.svg"
  27955. }
  27956. },
  27957. },
  27958. [
  27959. {
  27960. name: "Normal",
  27961. height: math.unit(7 + 7 / 12, "feet"),
  27962. default: true
  27963. },
  27964. ]
  27965. ))
  27966. characterMakers.push(() => makeCharacter(
  27967. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27968. {
  27969. front: {
  27970. height: math.unit(7, "feet"),
  27971. weight: math.unit(518, "lb"),
  27972. name: "Front",
  27973. image: {
  27974. source: "./media/characters/avia-bloodbourn/front.svg",
  27975. extra: 1466 / 1350,
  27976. bottom: 65 / 1527
  27977. }
  27978. },
  27979. },
  27980. [
  27981. ]
  27982. ))
  27983. characterMakers.push(() => makeCharacter(
  27984. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27985. {
  27986. front: {
  27987. height: math.unit(9.35, "feet"),
  27988. weight: math.unit(600, "lb"),
  27989. name: "Front",
  27990. image: {
  27991. source: "./media/characters/amera/front.svg",
  27992. extra: 891 / 818,
  27993. bottom: 30 / 922.7
  27994. }
  27995. },
  27996. back: {
  27997. height: math.unit(9.35, "feet"),
  27998. weight: math.unit(600, "lb"),
  27999. name: "Back",
  28000. image: {
  28001. source: "./media/characters/amera/back.svg",
  28002. extra: 876 / 824,
  28003. bottom: 6.8 / 884
  28004. }
  28005. },
  28006. dick: {
  28007. height: math.unit(2.14, "feet"),
  28008. name: "Dick",
  28009. image: {
  28010. source: "./media/characters/amera/dick.svg"
  28011. }
  28012. },
  28013. },
  28014. [
  28015. {
  28016. name: "Normal",
  28017. height: math.unit(9.35, "feet"),
  28018. default: true
  28019. },
  28020. ]
  28021. ))
  28022. characterMakers.push(() => makeCharacter(
  28023. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28024. {
  28025. kneeling: {
  28026. height: math.unit(3 + 4 / 12, "feet"),
  28027. weight: math.unit(90, "lb"),
  28028. name: "Kneeling",
  28029. image: {
  28030. source: "./media/characters/rosewen/kneeling.svg",
  28031. extra: 1835 / 1571,
  28032. bottom: 27.7 / 1862
  28033. }
  28034. },
  28035. },
  28036. [
  28037. {
  28038. name: "Normal",
  28039. height: math.unit(3 + 4 / 12, "feet"),
  28040. default: true
  28041. },
  28042. ]
  28043. ))
  28044. characterMakers.push(() => makeCharacter(
  28045. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28046. {
  28047. front: {
  28048. height: math.unit(5 + 10 / 12, "feet"),
  28049. weight: math.unit(200, "lb"),
  28050. name: "Front",
  28051. image: {
  28052. source: "./media/characters/sabah/front.svg",
  28053. extra: 849 / 763,
  28054. bottom: 33.9 / 881
  28055. }
  28056. },
  28057. },
  28058. [
  28059. {
  28060. name: "Normal",
  28061. height: math.unit(5 + 10 / 12, "feet"),
  28062. default: true
  28063. },
  28064. ]
  28065. ))
  28066. characterMakers.push(() => makeCharacter(
  28067. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28068. {
  28069. front: {
  28070. height: math.unit(3 + 5 / 12, "feet"),
  28071. weight: math.unit(40, "kg"),
  28072. name: "Front",
  28073. image: {
  28074. source: "./media/characters/purple-flame/front.svg",
  28075. extra: 1577 / 1412,
  28076. bottom: 97 / 1694
  28077. }
  28078. },
  28079. frontDressed: {
  28080. height: math.unit(3 + 5 / 12, "feet"),
  28081. weight: math.unit(40, "kg"),
  28082. name: "Front (Dressed)",
  28083. image: {
  28084. source: "./media/characters/purple-flame/front-dressed.svg",
  28085. extra: 1577 / 1412,
  28086. bottom: 97 / 1694
  28087. }
  28088. },
  28089. headphones: {
  28090. height: math.unit(0.85, "feet"),
  28091. name: "Headphones",
  28092. image: {
  28093. source: "./media/characters/purple-flame/headphones.svg"
  28094. }
  28095. },
  28096. },
  28097. [
  28098. {
  28099. name: "Really Small",
  28100. height: math.unit(5, "cm")
  28101. },
  28102. {
  28103. name: "Micro",
  28104. height: math.unit(1 + 5 / 12, "feet")
  28105. },
  28106. {
  28107. name: "Normal",
  28108. height: math.unit(3 + 5 / 12, "feet"),
  28109. default: true
  28110. },
  28111. {
  28112. name: "Minimacro",
  28113. height: math.unit(125, "feet")
  28114. },
  28115. {
  28116. name: "Macro",
  28117. height: math.unit(0.5, "miles")
  28118. },
  28119. {
  28120. name: "Megamacro",
  28121. height: math.unit(50, "miles")
  28122. },
  28123. {
  28124. name: "Gigantic",
  28125. height: math.unit(750, "miles")
  28126. },
  28127. {
  28128. name: "Planetary",
  28129. height: math.unit(15000, "miles")
  28130. },
  28131. ]
  28132. ))
  28133. characterMakers.push(() => makeCharacter(
  28134. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28135. {
  28136. front: {
  28137. height: math.unit(14, "feet"),
  28138. weight: math.unit(959, "lb"),
  28139. name: "Front",
  28140. image: {
  28141. source: "./media/characters/arsenal/front.svg",
  28142. extra: 2357 / 2157,
  28143. bottom: 93 / 2458
  28144. }
  28145. },
  28146. },
  28147. [
  28148. {
  28149. name: "Normal",
  28150. height: math.unit(14, "feet"),
  28151. default: true
  28152. },
  28153. ]
  28154. ))
  28155. characterMakers.push(() => makeCharacter(
  28156. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28157. {
  28158. front: {
  28159. height: math.unit(6, "feet"),
  28160. weight: math.unit(150, "lb"),
  28161. name: "Front",
  28162. image: {
  28163. source: "./media/characters/adira/front.svg",
  28164. extra: 1078 / 1029,
  28165. bottom: 87 / 1166
  28166. }
  28167. },
  28168. },
  28169. [
  28170. {
  28171. name: "Micro",
  28172. height: math.unit(4, "inches"),
  28173. default: true
  28174. },
  28175. {
  28176. name: "Macro",
  28177. height: math.unit(50, "feet")
  28178. },
  28179. ]
  28180. ))
  28181. characterMakers.push(() => makeCharacter(
  28182. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28183. {
  28184. front: {
  28185. height: math.unit(16, "feet"),
  28186. weight: math.unit(1000, "lb"),
  28187. name: "Front",
  28188. image: {
  28189. source: "./media/characters/grim/front.svg",
  28190. extra: 622 / 614,
  28191. bottom: 18.1 / 642
  28192. }
  28193. },
  28194. back: {
  28195. height: math.unit(16, "feet"),
  28196. weight: math.unit(1000, "lb"),
  28197. name: "Back",
  28198. image: {
  28199. source: "./media/characters/grim/back.svg",
  28200. extra: 610.6 / 602,
  28201. bottom: 40.8 / 652
  28202. }
  28203. },
  28204. hunched: {
  28205. height: math.unit(9.75, "feet"),
  28206. weight: math.unit(1000, "lb"),
  28207. name: "Hunched",
  28208. image: {
  28209. source: "./media/characters/grim/hunched.svg",
  28210. extra: 304 / 297,
  28211. bottom: 35.4 / 394
  28212. }
  28213. },
  28214. },
  28215. [
  28216. {
  28217. name: "Normal",
  28218. height: math.unit(16, "feet"),
  28219. default: true
  28220. },
  28221. ]
  28222. ))
  28223. characterMakers.push(() => makeCharacter(
  28224. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28225. {
  28226. front: {
  28227. height: math.unit(2.3, "meters"),
  28228. weight: math.unit(300, "lb"),
  28229. name: "Front",
  28230. image: {
  28231. source: "./media/characters/sinja/front-sfw.svg",
  28232. extra: 1393 / 1294,
  28233. bottom: 70 / 1463
  28234. }
  28235. },
  28236. frontNsfw: {
  28237. height: math.unit(2.3, "meters"),
  28238. weight: math.unit(300, "lb"),
  28239. name: "Front (NSFW)",
  28240. image: {
  28241. source: "./media/characters/sinja/front-nsfw.svg",
  28242. extra: 1393 / 1294,
  28243. bottom: 70 / 1463
  28244. }
  28245. },
  28246. back: {
  28247. height: math.unit(2.3, "meters"),
  28248. weight: math.unit(300, "lb"),
  28249. name: "Back",
  28250. image: {
  28251. source: "./media/characters/sinja/back.svg",
  28252. extra: 1393 / 1294,
  28253. bottom: 70 / 1463
  28254. }
  28255. },
  28256. head: {
  28257. height: math.unit(1.771, "feet"),
  28258. name: "Head",
  28259. image: {
  28260. source: "./media/characters/sinja/head.svg"
  28261. }
  28262. },
  28263. slit: {
  28264. height: math.unit(0.8, "feet"),
  28265. name: "Slit",
  28266. image: {
  28267. source: "./media/characters/sinja/slit.svg"
  28268. }
  28269. },
  28270. },
  28271. [
  28272. {
  28273. name: "Normal",
  28274. height: math.unit(2.3, "meters")
  28275. },
  28276. {
  28277. name: "Macro",
  28278. height: math.unit(91, "meters"),
  28279. default: true
  28280. },
  28281. {
  28282. name: "Megamacro",
  28283. height: math.unit(91440, "meters")
  28284. },
  28285. {
  28286. name: "Gigamacro",
  28287. height: math.unit(60960000, "meters")
  28288. },
  28289. {
  28290. name: "Teramacro",
  28291. height: math.unit(9144000000, "meters")
  28292. },
  28293. ]
  28294. ))
  28295. characterMakers.push(() => makeCharacter(
  28296. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28297. {
  28298. front: {
  28299. height: math.unit(1.7, "meters"),
  28300. weight: math.unit(130, "lb"),
  28301. name: "Front",
  28302. image: {
  28303. source: "./media/characters/kyu/front.svg",
  28304. extra: 415 / 395,
  28305. bottom: 5 / 420
  28306. }
  28307. },
  28308. head: {
  28309. height: math.unit(1.75, "feet"),
  28310. name: "Head",
  28311. image: {
  28312. source: "./media/characters/kyu/head.svg"
  28313. }
  28314. },
  28315. foot: {
  28316. height: math.unit(0.81, "feet"),
  28317. name: "Foot",
  28318. image: {
  28319. source: "./media/characters/kyu/foot.svg"
  28320. }
  28321. },
  28322. },
  28323. [
  28324. {
  28325. name: "Normal",
  28326. height: math.unit(1.7, "meters")
  28327. },
  28328. {
  28329. name: "Macro",
  28330. height: math.unit(131, "feet"),
  28331. default: true
  28332. },
  28333. {
  28334. name: "Megamacro",
  28335. height: math.unit(91440, "meters")
  28336. },
  28337. {
  28338. name: "Gigamacro",
  28339. height: math.unit(60960000, "meters")
  28340. },
  28341. {
  28342. name: "Teramacro",
  28343. height: math.unit(9144000000, "meters")
  28344. },
  28345. ]
  28346. ))
  28347. characterMakers.push(() => makeCharacter(
  28348. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28349. {
  28350. front: {
  28351. height: math.unit(7 + 1 / 12, "feet"),
  28352. weight: math.unit(250, "lb"),
  28353. name: "Front",
  28354. image: {
  28355. source: "./media/characters/joey/front.svg",
  28356. extra: 1791 / 1537,
  28357. bottom: 28 / 1816
  28358. }
  28359. },
  28360. },
  28361. [
  28362. {
  28363. name: "Micro",
  28364. height: math.unit(3, "inches")
  28365. },
  28366. {
  28367. name: "Normal",
  28368. height: math.unit(7 + 1 / 12, "feet"),
  28369. default: true
  28370. },
  28371. ]
  28372. ))
  28373. characterMakers.push(() => makeCharacter(
  28374. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28375. {
  28376. front: {
  28377. height: math.unit(165, "cm"),
  28378. weight: math.unit(140, "lb"),
  28379. name: "Front",
  28380. image: {
  28381. source: "./media/characters/sam-evans/front.svg",
  28382. extra: 3417 / 3230,
  28383. bottom: 41.3 / 3417
  28384. }
  28385. },
  28386. frontSixTails: {
  28387. height: math.unit(165, "cm"),
  28388. weight: math.unit(140, "lb"),
  28389. name: "Front-six-tails",
  28390. image: {
  28391. source: "./media/characters/sam-evans/front-six-tails.svg",
  28392. extra: 3417 / 3230,
  28393. bottom: 41.3 / 3417
  28394. }
  28395. },
  28396. back: {
  28397. height: math.unit(165, "cm"),
  28398. weight: math.unit(140, "lb"),
  28399. name: "Back",
  28400. image: {
  28401. source: "./media/characters/sam-evans/back.svg",
  28402. extra: 3227 / 3032,
  28403. bottom: 6.8 / 3234
  28404. }
  28405. },
  28406. face: {
  28407. height: math.unit(0.68, "feet"),
  28408. name: "Face",
  28409. image: {
  28410. source: "./media/characters/sam-evans/face.svg"
  28411. }
  28412. },
  28413. },
  28414. [
  28415. {
  28416. name: "Normal",
  28417. height: math.unit(165, "cm"),
  28418. default: true
  28419. },
  28420. {
  28421. name: "Macro",
  28422. height: math.unit(100, "meters")
  28423. },
  28424. {
  28425. name: "Macro+",
  28426. height: math.unit(800, "meters")
  28427. },
  28428. {
  28429. name: "Macro++",
  28430. height: math.unit(3, "km")
  28431. },
  28432. {
  28433. name: "Macro+++",
  28434. height: math.unit(30, "km")
  28435. },
  28436. ]
  28437. ))
  28438. characterMakers.push(() => makeCharacter(
  28439. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28440. {
  28441. front: {
  28442. height: math.unit(10, "feet"),
  28443. weight: math.unit(750, "lb"),
  28444. name: "Front",
  28445. image: {
  28446. source: "./media/characters/juliet-a/front.svg",
  28447. extra: 1766 / 1720,
  28448. bottom: 43 / 1809
  28449. }
  28450. },
  28451. back: {
  28452. height: math.unit(10, "feet"),
  28453. weight: math.unit(750, "lb"),
  28454. name: "Back",
  28455. image: {
  28456. source: "./media/characters/juliet-a/back.svg",
  28457. extra: 1781 / 1734,
  28458. bottom: 35 / 1810,
  28459. }
  28460. },
  28461. },
  28462. [
  28463. {
  28464. name: "Normal",
  28465. height: math.unit(10, "feet"),
  28466. default: true
  28467. },
  28468. {
  28469. name: "Dragon Form",
  28470. height: math.unit(250, "feet")
  28471. },
  28472. {
  28473. name: "Macro",
  28474. height: math.unit(1000, "feet")
  28475. },
  28476. {
  28477. name: "Megamacro",
  28478. height: math.unit(10000, "feet")
  28479. }
  28480. ]
  28481. ))
  28482. characterMakers.push(() => makeCharacter(
  28483. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28484. {
  28485. regular: {
  28486. height: math.unit(7 + 3 / 12, "feet"),
  28487. weight: math.unit(260, "lb"),
  28488. name: "Regular",
  28489. image: {
  28490. source: "./media/characters/wild/regular.svg",
  28491. extra: 97.45 / 92,
  28492. bottom: 6.8 / 104.3
  28493. }
  28494. },
  28495. biggums: {
  28496. height: math.unit(8 + 6 / 12, "feet"),
  28497. weight: math.unit(425, "lb"),
  28498. name: "Biggums",
  28499. image: {
  28500. source: "./media/characters/wild/biggums.svg",
  28501. extra: 97.45 / 92,
  28502. bottom: 7.5 / 132.34
  28503. }
  28504. },
  28505. mawRegular: {
  28506. height: math.unit(1.24, "feet"),
  28507. name: "Maw (Regular)",
  28508. image: {
  28509. source: "./media/characters/wild/maw.svg"
  28510. }
  28511. },
  28512. mawBiggums: {
  28513. height: math.unit(1.47, "feet"),
  28514. name: "Maw (Biggums)",
  28515. image: {
  28516. source: "./media/characters/wild/maw.svg"
  28517. }
  28518. },
  28519. },
  28520. [
  28521. {
  28522. name: "Normal",
  28523. height: math.unit(7 + 3 / 12, "feet"),
  28524. default: true
  28525. },
  28526. ]
  28527. ))
  28528. characterMakers.push(() => makeCharacter(
  28529. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28530. {
  28531. front: {
  28532. height: math.unit(2.5, "meters"),
  28533. weight: math.unit(200, "kg"),
  28534. name: "Front",
  28535. image: {
  28536. source: "./media/characters/vidar/front.svg",
  28537. extra: 2994 / 2795,
  28538. bottom: 56 / 3061
  28539. }
  28540. },
  28541. back: {
  28542. height: math.unit(2.5, "meters"),
  28543. weight: math.unit(200, "kg"),
  28544. name: "Back",
  28545. image: {
  28546. source: "./media/characters/vidar/back.svg",
  28547. extra: 3131 / 2928,
  28548. bottom: 13.5 / 3141.5
  28549. }
  28550. },
  28551. feral: {
  28552. height: math.unit(2.5, "meters"),
  28553. weight: math.unit(2000, "kg"),
  28554. name: "Feral",
  28555. image: {
  28556. source: "./media/characters/vidar/feral.svg",
  28557. extra: 2790 / 1765,
  28558. bottom: 6 / 2796
  28559. }
  28560. },
  28561. },
  28562. [
  28563. {
  28564. name: "Normal",
  28565. height: math.unit(2.5, "meters"),
  28566. default: true
  28567. },
  28568. {
  28569. name: "Macro",
  28570. height: math.unit(100, "meters")
  28571. },
  28572. ]
  28573. ))
  28574. characterMakers.push(() => makeCharacter(
  28575. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28576. {
  28577. front: {
  28578. height: math.unit(5 + 9 / 12, "feet"),
  28579. weight: math.unit(120, "lb"),
  28580. name: "Front",
  28581. image: {
  28582. source: "./media/characters/ash/front.svg",
  28583. extra: 2189 / 1961,
  28584. bottom: 5.2 / 2194
  28585. }
  28586. },
  28587. },
  28588. [
  28589. {
  28590. name: "Normal",
  28591. height: math.unit(5 + 9 / 12, "feet"),
  28592. default: true
  28593. },
  28594. ]
  28595. ))
  28596. characterMakers.push(() => makeCharacter(
  28597. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28598. {
  28599. front: {
  28600. height: math.unit(9, "feet"),
  28601. weight: math.unit(10000, "lb"),
  28602. name: "Front",
  28603. image: {
  28604. source: "./media/characters/gygabite/front.svg",
  28605. bottom: 31.7 / 537.8,
  28606. extra: 505 / 370
  28607. }
  28608. },
  28609. },
  28610. [
  28611. {
  28612. name: "Normal",
  28613. height: math.unit(9, "feet"),
  28614. default: true
  28615. },
  28616. ]
  28617. ))
  28618. characterMakers.push(() => makeCharacter(
  28619. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28620. {
  28621. front: {
  28622. height: math.unit(12, "feet"),
  28623. weight: math.unit(4000, "lb"),
  28624. name: "Front",
  28625. image: {
  28626. source: "./media/characters/p0tat0/front.svg",
  28627. extra: 1065 / 921,
  28628. bottom: 55.7 / 1121.25
  28629. }
  28630. },
  28631. },
  28632. [
  28633. {
  28634. name: "Normal",
  28635. height: math.unit(12, "feet"),
  28636. default: true
  28637. },
  28638. ]
  28639. ))
  28640. characterMakers.push(() => makeCharacter(
  28641. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28642. {
  28643. side: {
  28644. height: math.unit(6.5, "feet"),
  28645. weight: math.unit(800, "lb"),
  28646. name: "Side",
  28647. image: {
  28648. source: "./media/characters/dusk/side.svg",
  28649. extra: 615 / 373,
  28650. bottom: 53 / 664
  28651. }
  28652. },
  28653. sitting: {
  28654. height: math.unit(7, "feet"),
  28655. weight: math.unit(800, "lb"),
  28656. name: "Sitting",
  28657. image: {
  28658. source: "./media/characters/dusk/sitting.svg",
  28659. extra: 753 / 425,
  28660. bottom: 33 / 774
  28661. }
  28662. },
  28663. head: {
  28664. height: math.unit(6.1, "feet"),
  28665. name: "Head",
  28666. image: {
  28667. source: "./media/characters/dusk/head.svg"
  28668. }
  28669. },
  28670. },
  28671. [
  28672. {
  28673. name: "Normal",
  28674. height: math.unit(7, "feet"),
  28675. default: true
  28676. },
  28677. ]
  28678. ))
  28679. characterMakers.push(() => makeCharacter(
  28680. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28681. {
  28682. front: {
  28683. height: math.unit(15, "feet"),
  28684. weight: math.unit(7000, "lb"),
  28685. name: "Front",
  28686. image: {
  28687. source: "./media/characters/jay-direwolf/front.svg",
  28688. extra: 1810 / 1732,
  28689. bottom: 66 / 1892
  28690. }
  28691. },
  28692. },
  28693. [
  28694. {
  28695. name: "Normal",
  28696. height: math.unit(15, "feet"),
  28697. default: true
  28698. },
  28699. ]
  28700. ))
  28701. characterMakers.push(() => makeCharacter(
  28702. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28703. {
  28704. front: {
  28705. height: math.unit(4 + 9 / 12, "feet"),
  28706. weight: math.unit(130, "lb"),
  28707. name: "Front",
  28708. image: {
  28709. source: "./media/characters/anchovie/front.svg",
  28710. extra: 382 / 350,
  28711. bottom: 25 / 409
  28712. }
  28713. },
  28714. back: {
  28715. height: math.unit(4 + 9 / 12, "feet"),
  28716. weight: math.unit(130, "lb"),
  28717. name: "Back",
  28718. image: {
  28719. source: "./media/characters/anchovie/back.svg",
  28720. extra: 385 / 352,
  28721. bottom: 16.6 / 402
  28722. }
  28723. },
  28724. frontDressed: {
  28725. height: math.unit(4 + 9 / 12, "feet"),
  28726. weight: math.unit(130, "lb"),
  28727. name: "Front (Dressed)",
  28728. image: {
  28729. source: "./media/characters/anchovie/front-dressed.svg",
  28730. extra: 382 / 350,
  28731. bottom: 25 / 409
  28732. }
  28733. },
  28734. backDressed: {
  28735. height: math.unit(4 + 9 / 12, "feet"),
  28736. weight: math.unit(130, "lb"),
  28737. name: "Back (Dressed)",
  28738. image: {
  28739. source: "./media/characters/anchovie/back-dressed.svg",
  28740. extra: 385 / 352,
  28741. bottom: 16.6 / 402
  28742. }
  28743. },
  28744. },
  28745. [
  28746. {
  28747. name: "Micro",
  28748. height: math.unit(6.4, "inches")
  28749. },
  28750. {
  28751. name: "Normal",
  28752. height: math.unit(4 + 9 / 12, "feet"),
  28753. default: true
  28754. },
  28755. ]
  28756. ))
  28757. characterMakers.push(() => makeCharacter(
  28758. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28759. {
  28760. front: {
  28761. height: math.unit(2, "meters"),
  28762. weight: math.unit(180, "lb"),
  28763. name: "Front",
  28764. image: {
  28765. source: "./media/characters/acidrenamon/front.svg",
  28766. extra: 987 / 890,
  28767. bottom: 22.8 / 1009
  28768. }
  28769. },
  28770. back: {
  28771. height: math.unit(2, "meters"),
  28772. weight: math.unit(180, "lb"),
  28773. name: "Back",
  28774. image: {
  28775. source: "./media/characters/acidrenamon/back.svg",
  28776. extra: 983 / 891,
  28777. bottom: 8.4 / 992
  28778. }
  28779. },
  28780. head: {
  28781. height: math.unit(1.92, "feet"),
  28782. name: "Head",
  28783. image: {
  28784. source: "./media/characters/acidrenamon/head.svg"
  28785. }
  28786. },
  28787. rump: {
  28788. height: math.unit(1.72, "feet"),
  28789. name: "Rump",
  28790. image: {
  28791. source: "./media/characters/acidrenamon/rump.svg"
  28792. }
  28793. },
  28794. tail: {
  28795. height: math.unit(4.2, "feet"),
  28796. name: "Tail",
  28797. image: {
  28798. source: "./media/characters/acidrenamon/tail.svg"
  28799. }
  28800. },
  28801. },
  28802. [
  28803. {
  28804. name: "Normal",
  28805. height: math.unit(2, "meters"),
  28806. default: true
  28807. },
  28808. {
  28809. name: "Minimacro",
  28810. height: math.unit(7, "meters")
  28811. },
  28812. {
  28813. name: "Macro",
  28814. height: math.unit(200, "meters")
  28815. },
  28816. {
  28817. name: "Gigamacro",
  28818. height: math.unit(0.2, "earths")
  28819. },
  28820. ]
  28821. ))
  28822. characterMakers.push(() => makeCharacter(
  28823. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28824. {
  28825. front: {
  28826. height: math.unit(152, "feet"),
  28827. name: "Front",
  28828. image: {
  28829. source: "./media/characters/kenzie-lee/front.svg",
  28830. extra: 1869/1774,
  28831. bottom: 128/1997
  28832. }
  28833. },
  28834. side: {
  28835. height: math.unit(86, "feet"),
  28836. name: "Side",
  28837. image: {
  28838. source: "./media/characters/kenzie-lee/side.svg",
  28839. extra: 930/815,
  28840. bottom: 177/1107
  28841. }
  28842. },
  28843. paw: {
  28844. height: math.unit(15, "feet"),
  28845. name: "Paw",
  28846. image: {
  28847. source: "./media/characters/kenzie-lee/paw.svg"
  28848. }
  28849. },
  28850. },
  28851. [
  28852. {
  28853. name: "Kenzie Flea",
  28854. height: math.unit(2, "mm"),
  28855. default: true
  28856. },
  28857. {
  28858. name: "Micro",
  28859. height: math.unit(2, "inches")
  28860. },
  28861. {
  28862. name: "Normal",
  28863. height: math.unit(152, "feet")
  28864. },
  28865. {
  28866. name: "Megamacro",
  28867. height: math.unit(7, "miles")
  28868. },
  28869. {
  28870. name: "Gigamacro",
  28871. height: math.unit(8000, "miles")
  28872. },
  28873. ]
  28874. ))
  28875. characterMakers.push(() => makeCharacter(
  28876. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28877. {
  28878. front: {
  28879. height: math.unit(6, "feet"),
  28880. name: "Front",
  28881. image: {
  28882. source: "./media/characters/withers/front.svg",
  28883. extra: 1935/1760,
  28884. bottom: 72/2007
  28885. }
  28886. },
  28887. back: {
  28888. height: math.unit(6, "feet"),
  28889. name: "Back",
  28890. image: {
  28891. source: "./media/characters/withers/back.svg",
  28892. extra: 1944/1792,
  28893. bottom: 12/1956
  28894. }
  28895. },
  28896. dressed: {
  28897. height: math.unit(6, "feet"),
  28898. name: "Dressed",
  28899. image: {
  28900. source: "./media/characters/withers/dressed.svg",
  28901. extra: 1937/1765,
  28902. bottom: 73/2010
  28903. }
  28904. },
  28905. phase1: {
  28906. height: math.unit(1.1, "feet"),
  28907. name: "Phase 1",
  28908. image: {
  28909. source: "./media/characters/withers/phase-1.svg",
  28910. extra: 1885/1232,
  28911. bottom: 0/1885
  28912. }
  28913. },
  28914. phase2: {
  28915. height: math.unit(1.05, "feet"),
  28916. name: "Phase 2",
  28917. image: {
  28918. source: "./media/characters/withers/phase-2.svg",
  28919. extra: 1792/1090,
  28920. bottom: 0/1792
  28921. }
  28922. },
  28923. partyWipe: {
  28924. height: math.unit(1.1, "feet"),
  28925. name: "Party Wipe",
  28926. image: {
  28927. source: "./media/characters/withers/party-wipe.svg",
  28928. extra: 1864/1207,
  28929. bottom: 0/1864
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Macro",
  28936. height: math.unit(167, "feet"),
  28937. default: true
  28938. },
  28939. {
  28940. name: "Megamacro",
  28941. height: math.unit(15, "miles")
  28942. }
  28943. ]
  28944. ))
  28945. characterMakers.push(() => makeCharacter(
  28946. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28947. {
  28948. front: {
  28949. height: math.unit(6 + 7 / 12, "feet"),
  28950. weight: math.unit(250, "lb"),
  28951. name: "Front",
  28952. image: {
  28953. source: "./media/characters/nemoskii/front.svg",
  28954. extra: 2270 / 1734,
  28955. bottom: 86 / 2354
  28956. }
  28957. },
  28958. back: {
  28959. height: math.unit(6 + 7 / 12, "feet"),
  28960. weight: math.unit(250, "lb"),
  28961. name: "Back",
  28962. image: {
  28963. source: "./media/characters/nemoskii/back.svg",
  28964. extra: 1845 / 1788,
  28965. bottom: 10.5 / 1852
  28966. }
  28967. },
  28968. head: {
  28969. height: math.unit(1.31, "feet"),
  28970. name: "Head",
  28971. image: {
  28972. source: "./media/characters/nemoskii/head.svg"
  28973. }
  28974. },
  28975. },
  28976. [
  28977. {
  28978. name: "Micro",
  28979. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28980. },
  28981. {
  28982. name: "Normal",
  28983. height: math.unit(6 + 7 / 12, "feet"),
  28984. default: true
  28985. },
  28986. {
  28987. name: "Macro",
  28988. height: math.unit((6 + 7 / 12) * 150, "feet")
  28989. },
  28990. {
  28991. name: "Macro+",
  28992. height: math.unit((6 + 7 / 12) * 500, "feet")
  28993. },
  28994. {
  28995. name: "Megamacro",
  28996. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28997. },
  28998. ]
  28999. ))
  29000. characterMakers.push(() => makeCharacter(
  29001. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29002. {
  29003. front: {
  29004. height: math.unit(1, "mile"),
  29005. weight: math.unit(265261.9, "lb"),
  29006. name: "Front",
  29007. image: {
  29008. source: "./media/characters/shui/front.svg",
  29009. extra: 1633 / 1564,
  29010. bottom: 91.5 / 1726
  29011. }
  29012. },
  29013. },
  29014. [
  29015. {
  29016. name: "Macro",
  29017. height: math.unit(1, "mile"),
  29018. default: true
  29019. },
  29020. ]
  29021. ))
  29022. characterMakers.push(() => makeCharacter(
  29023. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29024. {
  29025. front: {
  29026. height: math.unit(12 + 6 / 12, "feet"),
  29027. weight: math.unit(1342, "lb"),
  29028. name: "Front",
  29029. image: {
  29030. source: "./media/characters/arokh-takakura/front.svg",
  29031. extra: 1089 / 1043,
  29032. bottom: 77.4 / 1176.7
  29033. }
  29034. },
  29035. back: {
  29036. height: math.unit(12 + 6 / 12, "feet"),
  29037. weight: math.unit(1342, "lb"),
  29038. name: "Back",
  29039. image: {
  29040. source: "./media/characters/arokh-takakura/back.svg",
  29041. extra: 1046 / 1019,
  29042. bottom: 102 / 1150
  29043. }
  29044. },
  29045. },
  29046. [
  29047. {
  29048. name: "Big",
  29049. height: math.unit(12 + 6 / 12, "feet"),
  29050. default: true
  29051. },
  29052. ]
  29053. ))
  29054. characterMakers.push(() => makeCharacter(
  29055. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29056. {
  29057. front: {
  29058. height: math.unit(5 + 6 / 12, "feet"),
  29059. weight: math.unit(150, "lb"),
  29060. name: "Front",
  29061. image: {
  29062. source: "./media/characters/theo/front.svg",
  29063. extra: 1184 / 1131,
  29064. bottom: 7.4 / 1191
  29065. }
  29066. },
  29067. },
  29068. [
  29069. {
  29070. name: "Micro",
  29071. height: math.unit(5, "inches")
  29072. },
  29073. {
  29074. name: "Normal",
  29075. height: math.unit(5 + 6 / 12, "feet"),
  29076. default: true
  29077. },
  29078. ]
  29079. ))
  29080. characterMakers.push(() => makeCharacter(
  29081. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29082. {
  29083. front: {
  29084. height: math.unit(5 + 9 / 12, "feet"),
  29085. weight: math.unit(130, "lb"),
  29086. name: "Front",
  29087. image: {
  29088. source: "./media/characters/cecelia-swift/front.svg",
  29089. extra: 502 / 484,
  29090. bottom: 23 / 523
  29091. }
  29092. },
  29093. back: {
  29094. height: math.unit(5 + 9 / 12, "feet"),
  29095. weight: math.unit(130, "lb"),
  29096. name: "Back",
  29097. image: {
  29098. source: "./media/characters/cecelia-swift/back.svg",
  29099. extra: 499 / 485,
  29100. bottom: 12 / 511
  29101. }
  29102. },
  29103. head: {
  29104. height: math.unit(0.90, "feet"),
  29105. name: "Head",
  29106. image: {
  29107. source: "./media/characters/cecelia-swift/head.svg"
  29108. }
  29109. },
  29110. rump: {
  29111. height: math.unit(1.75, "feet"),
  29112. name: "Rump",
  29113. image: {
  29114. source: "./media/characters/cecelia-swift/rump.svg"
  29115. }
  29116. },
  29117. },
  29118. [
  29119. {
  29120. name: "Normal",
  29121. height: math.unit(5 + 9 / 12, "feet"),
  29122. default: true
  29123. },
  29124. {
  29125. name: "Big",
  29126. height: math.unit(50, "feet")
  29127. },
  29128. {
  29129. name: "Macro",
  29130. height: math.unit(100, "feet")
  29131. },
  29132. {
  29133. name: "Macro+",
  29134. height: math.unit(500, "feet")
  29135. },
  29136. {
  29137. name: "Macro++",
  29138. height: math.unit(1000, "feet")
  29139. },
  29140. ]
  29141. ))
  29142. characterMakers.push(() => makeCharacter(
  29143. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29144. {
  29145. front: {
  29146. height: math.unit(6, "feet"),
  29147. weight: math.unit(150, "lb"),
  29148. name: "Front",
  29149. image: {
  29150. source: "./media/characters/kaunan/front.svg",
  29151. extra: 2890 / 2523,
  29152. bottom: 49 / 2939
  29153. }
  29154. },
  29155. },
  29156. [
  29157. {
  29158. name: "Macro",
  29159. height: math.unit(150, "feet"),
  29160. default: true
  29161. },
  29162. ]
  29163. ))
  29164. characterMakers.push(() => makeCharacter(
  29165. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29166. {
  29167. dressed: {
  29168. height: math.unit(175, "cm"),
  29169. weight: math.unit(60, "kg"),
  29170. name: "Dressed",
  29171. image: {
  29172. source: "./media/characters/fei/dressed.svg",
  29173. extra: 1402/1278,
  29174. bottom: 27/1429
  29175. }
  29176. },
  29177. nude: {
  29178. height: math.unit(175, "cm"),
  29179. weight: math.unit(60, "kg"),
  29180. name: "Nude",
  29181. image: {
  29182. source: "./media/characters/fei/nude.svg",
  29183. extra: 1402/1278,
  29184. bottom: 27/1429
  29185. }
  29186. },
  29187. heels: {
  29188. height: math.unit(0.466, "feet"),
  29189. name: "Heels",
  29190. image: {
  29191. source: "./media/characters/fei/heels.svg",
  29192. extra: 156/152,
  29193. bottom: 28/184
  29194. }
  29195. },
  29196. },
  29197. [
  29198. {
  29199. name: "Mortal",
  29200. height: math.unit(175, "cm")
  29201. },
  29202. {
  29203. name: "Normal",
  29204. height: math.unit(3500, "m")
  29205. },
  29206. {
  29207. name: "Stroll",
  29208. height: math.unit(18.4, "km"),
  29209. default: true
  29210. },
  29211. {
  29212. name: "Showoff",
  29213. height: math.unit(175, "km")
  29214. },
  29215. ]
  29216. ))
  29217. characterMakers.push(() => makeCharacter(
  29218. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29219. {
  29220. front: {
  29221. height: math.unit(7, "feet"),
  29222. weight: math.unit(1000, "kg"),
  29223. name: "Front",
  29224. image: {
  29225. source: "./media/characters/edrax/front.svg",
  29226. extra: 2838 / 2550,
  29227. bottom: 130 / 2968
  29228. }
  29229. },
  29230. },
  29231. [
  29232. {
  29233. name: "Small",
  29234. height: math.unit(7, "feet")
  29235. },
  29236. {
  29237. name: "Normal",
  29238. height: math.unit(1500, "meters")
  29239. },
  29240. {
  29241. name: "Mega",
  29242. height: math.unit(12000000, "km"),
  29243. default: true
  29244. },
  29245. {
  29246. name: "Megamacro",
  29247. height: math.unit(10600000, "lightyears")
  29248. },
  29249. {
  29250. name: "Hypermacro",
  29251. height: math.unit(256, "yottameters")
  29252. },
  29253. ]
  29254. ))
  29255. characterMakers.push(() => makeCharacter(
  29256. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29257. {
  29258. front: {
  29259. height: math.unit(10, "feet"),
  29260. weight: math.unit(750, "lb"),
  29261. name: "Front",
  29262. image: {
  29263. source: "./media/characters/clove/front.svg",
  29264. extra: 1918/1751,
  29265. bottom: 52/1970
  29266. }
  29267. },
  29268. back: {
  29269. height: math.unit(10, "feet"),
  29270. weight: math.unit(750, "lb"),
  29271. name: "Back",
  29272. image: {
  29273. source: "./media/characters/clove/back.svg",
  29274. extra: 1912/1747,
  29275. bottom: 50/1962
  29276. }
  29277. },
  29278. },
  29279. [
  29280. {
  29281. name: "Normal",
  29282. height: math.unit(10, "feet"),
  29283. default: true
  29284. },
  29285. ]
  29286. ))
  29287. characterMakers.push(() => makeCharacter(
  29288. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29289. {
  29290. front: {
  29291. height: math.unit(4, "feet"),
  29292. weight: math.unit(50, "lb"),
  29293. name: "Front",
  29294. image: {
  29295. source: "./media/characters/alex-rabbit/front.svg",
  29296. extra: 507 / 458,
  29297. bottom: 18.5 / 527
  29298. }
  29299. },
  29300. back: {
  29301. height: math.unit(4, "feet"),
  29302. weight: math.unit(50, "lb"),
  29303. name: "Back",
  29304. image: {
  29305. source: "./media/characters/alex-rabbit/back.svg",
  29306. extra: 502 / 460,
  29307. bottom: 18.9 / 521
  29308. }
  29309. },
  29310. },
  29311. [
  29312. {
  29313. name: "Normal",
  29314. height: math.unit(4, "feet"),
  29315. default: true
  29316. },
  29317. ]
  29318. ))
  29319. characterMakers.push(() => makeCharacter(
  29320. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29321. {
  29322. front: {
  29323. height: math.unit(1 + 3 / 12, "feet"),
  29324. weight: math.unit(80, "lb"),
  29325. name: "Front",
  29326. image: {
  29327. source: "./media/characters/zander-rose/front.svg",
  29328. extra: 916 / 797,
  29329. bottom: 17 / 933
  29330. }
  29331. },
  29332. back: {
  29333. height: math.unit(1 + 3 / 12, "feet"),
  29334. weight: math.unit(80, "lb"),
  29335. name: "Back",
  29336. image: {
  29337. source: "./media/characters/zander-rose/back.svg",
  29338. extra: 903 / 779,
  29339. bottom: 31 / 934
  29340. }
  29341. },
  29342. },
  29343. [
  29344. {
  29345. name: "Normal",
  29346. height: math.unit(1 + 3 / 12, "feet"),
  29347. default: true
  29348. },
  29349. ]
  29350. ))
  29351. characterMakers.push(() => makeCharacter(
  29352. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29353. {
  29354. anthro: {
  29355. height: math.unit(6, "feet"),
  29356. weight: math.unit(150, "lb"),
  29357. name: "Anthro",
  29358. image: {
  29359. source: "./media/characters/razz/anthro.svg",
  29360. extra: 1437 / 1343,
  29361. bottom: 48 / 1485
  29362. }
  29363. },
  29364. feral: {
  29365. height: math.unit(6, "feet"),
  29366. weight: math.unit(150, "lb"),
  29367. name: "Feral",
  29368. image: {
  29369. source: "./media/characters/razz/feral.svg",
  29370. extra: 2569 / 1385,
  29371. bottom: 95 / 2664
  29372. }
  29373. },
  29374. },
  29375. [
  29376. {
  29377. name: "Normal",
  29378. height: math.unit(6, "feet"),
  29379. default: true
  29380. },
  29381. ]
  29382. ))
  29383. characterMakers.push(() => makeCharacter(
  29384. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29385. {
  29386. front: {
  29387. height: math.unit(9 + 4 / 12, "feet"),
  29388. weight: math.unit(500, "lb"),
  29389. name: "Front",
  29390. image: {
  29391. source: "./media/characters/morrigan/front.svg",
  29392. extra: 2707 / 2579,
  29393. bottom: 156 / 2863
  29394. }
  29395. },
  29396. },
  29397. [
  29398. {
  29399. name: "Normal",
  29400. height: math.unit(9 + 4 / 12, "feet"),
  29401. default: true
  29402. },
  29403. ]
  29404. ))
  29405. characterMakers.push(() => makeCharacter(
  29406. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29407. {
  29408. front: {
  29409. height: math.unit(5, "stories"),
  29410. weight: math.unit(4000, "lb"),
  29411. name: "Front",
  29412. image: {
  29413. source: "./media/characters/jenene/front.svg",
  29414. extra: 1780 / 1710,
  29415. bottom: 57 / 1837
  29416. }
  29417. },
  29418. },
  29419. [
  29420. {
  29421. name: "Normal",
  29422. height: math.unit(5, "stories"),
  29423. default: true
  29424. },
  29425. ]
  29426. ))
  29427. characterMakers.push(() => makeCharacter(
  29428. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29429. {
  29430. taurSfw: {
  29431. height: math.unit(10, "meters"),
  29432. weight: math.unit(17500, "kg"),
  29433. name: "Taur",
  29434. image: {
  29435. source: "./media/characters/faey/taur-sfw.svg",
  29436. extra: 1200 / 968,
  29437. bottom: 41 / 1241
  29438. }
  29439. },
  29440. chestmaw: {
  29441. height: math.unit(2.01, "meters"),
  29442. name: "Chestmaw",
  29443. image: {
  29444. source: "./media/characters/faey/chestmaw.svg"
  29445. }
  29446. },
  29447. foot: {
  29448. height: math.unit(2.43, "meters"),
  29449. name: "Foot",
  29450. image: {
  29451. source: "./media/characters/faey/foot.svg"
  29452. }
  29453. },
  29454. jaws: {
  29455. height: math.unit(1.66, "meters"),
  29456. name: "Jaws",
  29457. image: {
  29458. source: "./media/characters/faey/jaws.svg"
  29459. }
  29460. },
  29461. tongues: {
  29462. height: math.unit(2.01, "meters"),
  29463. name: "Tongues",
  29464. image: {
  29465. source: "./media/characters/faey/tongues.svg"
  29466. }
  29467. },
  29468. },
  29469. [
  29470. {
  29471. name: "Small",
  29472. height: math.unit(10, "meters"),
  29473. default: true
  29474. },
  29475. {
  29476. name: "Big",
  29477. height: math.unit(500000, "km")
  29478. },
  29479. ]
  29480. ))
  29481. characterMakers.push(() => makeCharacter(
  29482. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29483. {
  29484. front: {
  29485. height: math.unit(7, "feet"),
  29486. weight: math.unit(275, "lb"),
  29487. name: "Front",
  29488. image: {
  29489. source: "./media/characters/roku/front.svg",
  29490. extra: 903 / 878,
  29491. bottom: 37 / 940
  29492. }
  29493. },
  29494. },
  29495. [
  29496. {
  29497. name: "Normal",
  29498. height: math.unit(7, "feet"),
  29499. default: true
  29500. },
  29501. {
  29502. name: "Macro",
  29503. height: math.unit(500, "feet")
  29504. },
  29505. {
  29506. name: "Megamacro",
  29507. height: math.unit(200, "miles")
  29508. },
  29509. ]
  29510. ))
  29511. characterMakers.push(() => makeCharacter(
  29512. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29513. {
  29514. front: {
  29515. height: math.unit(6 + 2 / 12, "feet"),
  29516. weight: math.unit(150, "lb"),
  29517. name: "Front",
  29518. image: {
  29519. source: "./media/characters/lira/front.svg",
  29520. extra: 1727 / 1605,
  29521. bottom: 26 / 1753
  29522. }
  29523. },
  29524. back: {
  29525. height: math.unit(6 + 2 / 12, "feet"),
  29526. weight: math.unit(150, "lb"),
  29527. name: "Back",
  29528. image: {
  29529. source: "./media/characters/lira/back.svg",
  29530. extra: 1713/1621,
  29531. bottom: 20/1733
  29532. }
  29533. },
  29534. hand: {
  29535. height: math.unit(0.75, "feet"),
  29536. name: "Hand",
  29537. image: {
  29538. source: "./media/characters/lira/hand.svg"
  29539. }
  29540. },
  29541. maw: {
  29542. height: math.unit(0.65, "feet"),
  29543. name: "Maw",
  29544. image: {
  29545. source: "./media/characters/lira/maw.svg"
  29546. }
  29547. },
  29548. pawDigi: {
  29549. height: math.unit(1.6, "feet"),
  29550. name: "Paw Digi",
  29551. image: {
  29552. source: "./media/characters/lira/paw-digi.svg"
  29553. }
  29554. },
  29555. pawPlanti: {
  29556. height: math.unit(1.4, "feet"),
  29557. name: "Paw Planti",
  29558. image: {
  29559. source: "./media/characters/lira/paw-planti.svg"
  29560. }
  29561. },
  29562. },
  29563. [
  29564. {
  29565. name: "Normal",
  29566. height: math.unit(6 + 2 / 12, "feet"),
  29567. default: true
  29568. },
  29569. {
  29570. name: "Macro",
  29571. height: math.unit(100, "feet")
  29572. },
  29573. {
  29574. name: "Macro²",
  29575. height: math.unit(1600, "feet")
  29576. },
  29577. {
  29578. name: "Planetary",
  29579. height: math.unit(20, "earths")
  29580. },
  29581. ]
  29582. ))
  29583. characterMakers.push(() => makeCharacter(
  29584. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29585. {
  29586. front: {
  29587. height: math.unit(6, "feet"),
  29588. weight: math.unit(150, "lb"),
  29589. name: "Front",
  29590. image: {
  29591. source: "./media/characters/hadjet/front.svg",
  29592. extra: 1480 / 1346,
  29593. bottom: 26 / 1506
  29594. }
  29595. },
  29596. frontNsfw: {
  29597. height: math.unit(6, "feet"),
  29598. weight: math.unit(150, "lb"),
  29599. name: "Front (NSFW)",
  29600. image: {
  29601. source: "./media/characters/hadjet/front-nsfw.svg",
  29602. extra: 1440 / 1358,
  29603. bottom: 52 / 1492
  29604. }
  29605. },
  29606. },
  29607. [
  29608. {
  29609. name: "Macro",
  29610. height: math.unit(10, "stories"),
  29611. default: true
  29612. },
  29613. {
  29614. name: "Megamacro",
  29615. height: math.unit(1.5, "miles")
  29616. },
  29617. {
  29618. name: "Megamacro+",
  29619. height: math.unit(5, "miles")
  29620. },
  29621. ]
  29622. ))
  29623. characterMakers.push(() => makeCharacter(
  29624. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29625. {
  29626. side: {
  29627. height: math.unit(106, "feet"),
  29628. weight: math.unit(500, "tonnes"),
  29629. name: "Side",
  29630. image: {
  29631. source: "./media/characters/kodran/side.svg",
  29632. extra: 553 / 480,
  29633. bottom: 33 / 586
  29634. }
  29635. },
  29636. front: {
  29637. height: math.unit(132, "feet"),
  29638. weight: math.unit(500, "tonnes"),
  29639. name: "Front",
  29640. image: {
  29641. source: "./media/characters/kodran/front.svg",
  29642. extra: 667 / 643,
  29643. bottom: 42 / 709
  29644. }
  29645. },
  29646. flying: {
  29647. height: math.unit(350, "feet"),
  29648. weight: math.unit(500, "tonnes"),
  29649. name: "Flying",
  29650. image: {
  29651. source: "./media/characters/kodran/flying.svg"
  29652. }
  29653. },
  29654. foot: {
  29655. height: math.unit(33, "feet"),
  29656. name: "Foot",
  29657. image: {
  29658. source: "./media/characters/kodran/foot.svg"
  29659. }
  29660. },
  29661. footFront: {
  29662. height: math.unit(19, "feet"),
  29663. name: "Foot (Front)",
  29664. image: {
  29665. source: "./media/characters/kodran/foot-front.svg",
  29666. extra: 261 / 261,
  29667. bottom: 91 / 352
  29668. }
  29669. },
  29670. headFront: {
  29671. height: math.unit(53, "feet"),
  29672. name: "Head (Front)",
  29673. image: {
  29674. source: "./media/characters/kodran/head-front.svg"
  29675. }
  29676. },
  29677. headSide: {
  29678. height: math.unit(65, "feet"),
  29679. name: "Head (Side)",
  29680. image: {
  29681. source: "./media/characters/kodran/head-side.svg"
  29682. }
  29683. },
  29684. throat: {
  29685. height: math.unit(79, "feet"),
  29686. name: "Throat",
  29687. image: {
  29688. source: "./media/characters/kodran/throat.svg"
  29689. }
  29690. },
  29691. },
  29692. [
  29693. {
  29694. name: "Large",
  29695. height: math.unit(106, "feet"),
  29696. default: true
  29697. },
  29698. ]
  29699. ))
  29700. characterMakers.push(() => makeCharacter(
  29701. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29702. {
  29703. side: {
  29704. height: math.unit(11, "feet"),
  29705. weight: math.unit(150, "lb"),
  29706. name: "Side",
  29707. image: {
  29708. source: "./media/characters/pyxaron/side.svg",
  29709. extra: 305 / 195,
  29710. bottom: 17 / 322
  29711. }
  29712. },
  29713. },
  29714. [
  29715. {
  29716. name: "Normal",
  29717. height: math.unit(11, "feet"),
  29718. default: true
  29719. },
  29720. ]
  29721. ))
  29722. characterMakers.push(() => makeCharacter(
  29723. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29724. {
  29725. front: {
  29726. height: math.unit(6, "feet"),
  29727. weight: math.unit(150, "lb"),
  29728. name: "Front",
  29729. image: {
  29730. source: "./media/characters/meep/front.svg",
  29731. extra: 88 / 80,
  29732. bottom: 6 / 94
  29733. }
  29734. },
  29735. },
  29736. [
  29737. {
  29738. name: "Fun Sized",
  29739. height: math.unit(2, "inches"),
  29740. default: true
  29741. },
  29742. {
  29743. name: "Friend Sized",
  29744. height: math.unit(8, "inches")
  29745. },
  29746. ]
  29747. ))
  29748. characterMakers.push(() => makeCharacter(
  29749. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29750. {
  29751. front: {
  29752. height: math.unit(15, "feet"),
  29753. weight: math.unit(2500, "lb"),
  29754. name: "Front",
  29755. image: {
  29756. source: "./media/characters/holly-rabbit/front.svg",
  29757. extra: 1433 / 1233,
  29758. bottom: 125 / 1558
  29759. }
  29760. },
  29761. dick: {
  29762. height: math.unit(4.6, "feet"),
  29763. name: "Dick",
  29764. image: {
  29765. source: "./media/characters/holly-rabbit/dick.svg"
  29766. }
  29767. },
  29768. },
  29769. [
  29770. {
  29771. name: "Normal",
  29772. height: math.unit(15, "feet"),
  29773. default: true
  29774. },
  29775. {
  29776. name: "Macro",
  29777. height: math.unit(250, "feet")
  29778. },
  29779. {
  29780. name: "Macro+",
  29781. height: math.unit(2500, "feet")
  29782. },
  29783. ]
  29784. ))
  29785. characterMakers.push(() => makeCharacter(
  29786. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29787. {
  29788. front: {
  29789. height: math.unit(3.02, "meters"),
  29790. weight: math.unit(500, "kg"),
  29791. name: "Front",
  29792. image: {
  29793. source: "./media/characters/drena/front.svg",
  29794. extra: 282 / 243,
  29795. bottom: 8 / 290
  29796. }
  29797. },
  29798. side: {
  29799. height: math.unit(3.02, "meters"),
  29800. weight: math.unit(500, "kg"),
  29801. name: "Side",
  29802. image: {
  29803. source: "./media/characters/drena/side.svg",
  29804. extra: 280 / 245,
  29805. bottom: 10 / 290
  29806. }
  29807. },
  29808. back: {
  29809. height: math.unit(3.02, "meters"),
  29810. weight: math.unit(500, "kg"),
  29811. name: "Back",
  29812. image: {
  29813. source: "./media/characters/drena/back.svg",
  29814. extra: 278 / 243,
  29815. bottom: 2 / 280
  29816. }
  29817. },
  29818. foot: {
  29819. height: math.unit(0.75, "meters"),
  29820. name: "Foot",
  29821. image: {
  29822. source: "./media/characters/drena/foot.svg"
  29823. }
  29824. },
  29825. maw: {
  29826. height: math.unit(0.82, "meters"),
  29827. name: "Maw",
  29828. image: {
  29829. source: "./media/characters/drena/maw.svg"
  29830. }
  29831. },
  29832. eating: {
  29833. height: math.unit(0.75, "meters"),
  29834. name: "Eating",
  29835. image: {
  29836. source: "./media/characters/drena/eating.svg"
  29837. }
  29838. },
  29839. rump: {
  29840. height: math.unit(0.93, "meters"),
  29841. name: "Rump",
  29842. image: {
  29843. source: "./media/characters/drena/rump.svg"
  29844. }
  29845. },
  29846. },
  29847. [
  29848. {
  29849. name: "Normal",
  29850. height: math.unit(3.02, "meters"),
  29851. default: true
  29852. },
  29853. ]
  29854. ))
  29855. characterMakers.push(() => makeCharacter(
  29856. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29857. {
  29858. front: {
  29859. height: math.unit(6 + 4 / 12, "feet"),
  29860. weight: math.unit(250, "lb"),
  29861. name: "Front",
  29862. image: {
  29863. source: "./media/characters/remmyzilla/front.svg",
  29864. extra: 4033 / 3588,
  29865. bottom: 123 / 4156
  29866. }
  29867. },
  29868. back: {
  29869. height: math.unit(6 + 4 / 12, "feet"),
  29870. weight: math.unit(250, "lb"),
  29871. name: "Back",
  29872. image: {
  29873. source: "./media/characters/remmyzilla/back.svg",
  29874. extra: 2687 / 2555,
  29875. bottom: 48 / 2735
  29876. }
  29877. },
  29878. paw: {
  29879. height: math.unit(1.73, "feet"),
  29880. name: "Paw",
  29881. image: {
  29882. source: "./media/characters/remmyzilla/paw.svg"
  29883. },
  29884. extraAttributes: {
  29885. "toeSize": {
  29886. name: "Toe Size",
  29887. power: 2,
  29888. type: "area",
  29889. base: math.unit(0.0035, "m^2")
  29890. },
  29891. "padSize": {
  29892. name: "Pad Size",
  29893. power: 2,
  29894. type: "area",
  29895. base: math.unit(0.015, "m^2")
  29896. },
  29897. "pawsize": {
  29898. name: "Paw Size",
  29899. power: 2,
  29900. type: "area",
  29901. base: math.unit(0.072, "m^2")
  29902. },
  29903. }
  29904. },
  29905. maw: {
  29906. height: math.unit(1.73, "feet"),
  29907. name: "Maw",
  29908. image: {
  29909. source: "./media/characters/remmyzilla/maw.svg"
  29910. }
  29911. },
  29912. },
  29913. [
  29914. {
  29915. name: "Normal",
  29916. height: math.unit(6 + 4 / 12, "feet")
  29917. },
  29918. {
  29919. name: "Minimacro",
  29920. height: math.unit(12 + 8 / 12, "feet")
  29921. },
  29922. {
  29923. name: "Normal",
  29924. height: math.unit(640, "feet"),
  29925. default: true
  29926. },
  29927. {
  29928. name: "Megamacro",
  29929. height: math.unit(6400, "feet")
  29930. },
  29931. {
  29932. name: "Gigamacro",
  29933. height: math.unit(64000, "miles")
  29934. },
  29935. ]
  29936. ))
  29937. characterMakers.push(() => makeCharacter(
  29938. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29939. {
  29940. front: {
  29941. height: math.unit(2.5, "meters"),
  29942. weight: math.unit(300, "lb"),
  29943. name: "Front",
  29944. image: {
  29945. source: "./media/characters/lawrence/front.svg",
  29946. extra: 357 / 335,
  29947. bottom: 30 / 387
  29948. }
  29949. },
  29950. back: {
  29951. height: math.unit(2.5, "meters"),
  29952. weight: math.unit(300, "lb"),
  29953. name: "Back",
  29954. image: {
  29955. source: "./media/characters/lawrence/back.svg",
  29956. extra: 357 / 338,
  29957. bottom: 16 / 373
  29958. }
  29959. },
  29960. head: {
  29961. height: math.unit(0.9, "meter"),
  29962. name: "Head",
  29963. image: {
  29964. source: "./media/characters/lawrence/head.svg"
  29965. }
  29966. },
  29967. maw: {
  29968. height: math.unit(0.7, "meter"),
  29969. name: "Maw",
  29970. image: {
  29971. source: "./media/characters/lawrence/maw.svg"
  29972. }
  29973. },
  29974. footBottom: {
  29975. height: math.unit(0.5, "meter"),
  29976. name: "Foot (Bottom)",
  29977. image: {
  29978. source: "./media/characters/lawrence/foot-bottom.svg"
  29979. }
  29980. },
  29981. footTop: {
  29982. height: math.unit(0.5, "meter"),
  29983. name: "Foot (Top)",
  29984. image: {
  29985. source: "./media/characters/lawrence/foot-top.svg"
  29986. }
  29987. },
  29988. },
  29989. [
  29990. {
  29991. name: "Normal",
  29992. height: math.unit(2.5, "meters"),
  29993. default: true
  29994. },
  29995. {
  29996. name: "Macro",
  29997. height: math.unit(95, "meters")
  29998. },
  29999. {
  30000. name: "Megamacro",
  30001. height: math.unit(150, "km")
  30002. },
  30003. ]
  30004. ))
  30005. characterMakers.push(() => makeCharacter(
  30006. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30007. {
  30008. front: {
  30009. height: math.unit(4.2, "meters"),
  30010. name: "Front",
  30011. image: {
  30012. source: "./media/characters/sydney/front.svg",
  30013. extra: 1323 / 1277,
  30014. bottom: 111 / 1434
  30015. }
  30016. },
  30017. },
  30018. [
  30019. {
  30020. name: "Normal",
  30021. height: math.unit(4.2, "meters"),
  30022. default: true
  30023. },
  30024. ]
  30025. ))
  30026. characterMakers.push(() => makeCharacter(
  30027. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30028. {
  30029. back: {
  30030. height: math.unit(201, "feet"),
  30031. name: "Back",
  30032. image: {
  30033. source: "./media/characters/jessica/back.svg",
  30034. extra: 273 / 259,
  30035. bottom: 7 / 280
  30036. }
  30037. },
  30038. },
  30039. [
  30040. {
  30041. name: "Normal",
  30042. height: math.unit(201, "feet"),
  30043. default: true
  30044. },
  30045. {
  30046. name: "Megamacro",
  30047. height: math.unit(8, "miles")
  30048. },
  30049. ]
  30050. ))
  30051. characterMakers.push(() => makeCharacter(
  30052. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30053. {
  30054. side: {
  30055. height: math.unit(5.6, "m"),
  30056. weight: math.unit(8000, "kg"),
  30057. name: "Side",
  30058. image: {
  30059. source: "./media/characters/victoria/side.svg",
  30060. extra: 1542/1229,
  30061. bottom: 124/1666
  30062. }
  30063. },
  30064. maw: {
  30065. height: math.unit(7.14, "feet"),
  30066. name: "Maw",
  30067. image: {
  30068. source: "./media/characters/victoria/maw.svg"
  30069. }
  30070. },
  30071. },
  30072. [
  30073. {
  30074. name: "Normal",
  30075. height: math.unit(5.6, "m"),
  30076. default: true
  30077. },
  30078. ]
  30079. ))
  30080. characterMakers.push(() => makeCharacter(
  30081. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30082. {
  30083. front: {
  30084. height: math.unit(5 + 6 / 12, "feet"),
  30085. name: "Front",
  30086. image: {
  30087. source: "./media/characters/cat/front.svg",
  30088. extra: 1449/1295,
  30089. bottom: 34/1483
  30090. },
  30091. form: "cat",
  30092. default: true
  30093. },
  30094. back: {
  30095. height: math.unit(5 + 6 / 12, "feet"),
  30096. name: "Back",
  30097. image: {
  30098. source: "./media/characters/cat/back.svg",
  30099. extra: 1466/1301,
  30100. bottom: 19/1485
  30101. },
  30102. form: "cat"
  30103. },
  30104. taur: {
  30105. height: math.unit(7, "feet"),
  30106. name: "Taur",
  30107. image: {
  30108. source: "./media/characters/cat/taur.svg",
  30109. extra: 1389/1233,
  30110. bottom: 83/1472
  30111. },
  30112. form: "taur",
  30113. default: true
  30114. },
  30115. lucarioFront: {
  30116. height: math.unit(4, "feet"),
  30117. name: "Lucario (Front)",
  30118. image: {
  30119. source: "./media/characters/cat/lucario-front.svg",
  30120. extra: 1149/1019,
  30121. bottom: 84/1233
  30122. },
  30123. form: "lucario",
  30124. default: true
  30125. },
  30126. lucarioBack: {
  30127. height: math.unit(4, "feet"),
  30128. name: "Lucario (Back)",
  30129. image: {
  30130. source: "./media/characters/cat/lucario-back.svg",
  30131. extra: 1190/1059,
  30132. bottom: 33/1223
  30133. },
  30134. form: "lucario"
  30135. },
  30136. megaLucario: {
  30137. height: math.unit(4, "feet"),
  30138. name: "Mega Lucario",
  30139. image: {
  30140. source: "./media/characters/cat/mega-lucario.svg",
  30141. extra: 1515 / 1319,
  30142. bottom: 63 / 1578
  30143. },
  30144. form: "lucario"
  30145. },
  30146. nickit: {
  30147. height: math.unit(2, "feet"),
  30148. name: "Nickit",
  30149. image: {
  30150. source: "./media/characters/cat/nickit.svg",
  30151. extra: 1980 / 1585,
  30152. bottom: 102 / 2082
  30153. },
  30154. form: "nickit",
  30155. default: true
  30156. },
  30157. lopunnyFront: {
  30158. height: math.unit(5, "feet"),
  30159. name: "Lopunny (Front)",
  30160. image: {
  30161. source: "./media/characters/cat/lopunny-front.svg",
  30162. extra: 1782 / 1469,
  30163. bottom: 38 / 1820
  30164. },
  30165. form: "lopunny",
  30166. default: true
  30167. },
  30168. lopunnyBack: {
  30169. height: math.unit(5, "feet"),
  30170. name: "Lopunny (Back)",
  30171. image: {
  30172. source: "./media/characters/cat/lopunny-back.svg",
  30173. extra: 1660 / 1490,
  30174. bottom: 25 / 1685
  30175. },
  30176. form: "lopunny"
  30177. },
  30178. },
  30179. [
  30180. {
  30181. name: "Really small",
  30182. height: math.unit(1, "nm")
  30183. },
  30184. {
  30185. name: "Micro",
  30186. height: math.unit(5, "inches")
  30187. },
  30188. {
  30189. name: "Normal",
  30190. height: math.unit(5 + 6 / 12, "feet"),
  30191. default: true
  30192. },
  30193. {
  30194. name: "Macro",
  30195. height: math.unit(50, "feet")
  30196. },
  30197. {
  30198. name: "Macro+",
  30199. height: math.unit(150, "feet")
  30200. },
  30201. {
  30202. name: "Megamacro",
  30203. height: math.unit(100, "miles")
  30204. },
  30205. ]
  30206. ))
  30207. characterMakers.push(() => makeCharacter(
  30208. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30209. {
  30210. front: {
  30211. height: math.unit(63.4, "meters"),
  30212. weight: math.unit(3.28349e+6, "kilograms"),
  30213. name: "Front",
  30214. image: {
  30215. source: "./media/characters/kirina-violet/front.svg",
  30216. extra: 2812 / 2725,
  30217. bottom: 0 / 2812
  30218. }
  30219. },
  30220. back: {
  30221. height: math.unit(63.4, "meters"),
  30222. weight: math.unit(3.28349e+6, "kilograms"),
  30223. name: "Back",
  30224. image: {
  30225. source: "./media/characters/kirina-violet/back.svg",
  30226. extra: 2812 / 2725,
  30227. bottom: 0 / 2812
  30228. }
  30229. },
  30230. mouth: {
  30231. height: math.unit(4.35, "meters"),
  30232. name: "Mouth",
  30233. image: {
  30234. source: "./media/characters/kirina-violet/mouth.svg"
  30235. }
  30236. },
  30237. paw: {
  30238. height: math.unit(5.6, "meters"),
  30239. name: "Paw",
  30240. image: {
  30241. source: "./media/characters/kirina-violet/paw.svg"
  30242. }
  30243. },
  30244. tail: {
  30245. height: math.unit(18, "meters"),
  30246. name: "Tail",
  30247. image: {
  30248. source: "./media/characters/kirina-violet/tail.svg"
  30249. }
  30250. },
  30251. },
  30252. [
  30253. {
  30254. name: "Macro",
  30255. height: math.unit(63.4, "meters"),
  30256. default: true
  30257. },
  30258. ]
  30259. ))
  30260. characterMakers.push(() => makeCharacter(
  30261. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30262. {
  30263. front: {
  30264. height: math.unit(75, "feet"),
  30265. name: "Front",
  30266. image: {
  30267. source: "./media/characters/cat-gigachu/front.svg",
  30268. extra: 1239/1027,
  30269. bottom: 32/1271
  30270. }
  30271. },
  30272. back: {
  30273. height: math.unit(75, "feet"),
  30274. name: "Back",
  30275. image: {
  30276. source: "./media/characters/cat-gigachu/back.svg",
  30277. extra: 1229/1030,
  30278. bottom: 9/1238
  30279. }
  30280. },
  30281. },
  30282. [
  30283. {
  30284. name: "Dynamax",
  30285. height: math.unit(75, "feet"),
  30286. default: true
  30287. },
  30288. ]
  30289. ))
  30290. characterMakers.push(() => makeCharacter(
  30291. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30292. {
  30293. front: {
  30294. height: math.unit(6, "feet"),
  30295. weight: math.unit(150, "lb"),
  30296. name: "Front",
  30297. image: {
  30298. source: "./media/characters/sfaiyan/front.svg",
  30299. extra: 999 / 978,
  30300. bottom: 5 / 1004
  30301. }
  30302. },
  30303. },
  30304. [
  30305. {
  30306. name: "Normal",
  30307. height: math.unit(1.82, "meters")
  30308. },
  30309. {
  30310. name: "Giant",
  30311. height: math.unit(2.27, "km"),
  30312. default: true
  30313. },
  30314. ]
  30315. ))
  30316. characterMakers.push(() => makeCharacter(
  30317. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30318. {
  30319. front: {
  30320. height: math.unit(179, "cm"),
  30321. weight: math.unit(100, "kg"),
  30322. name: "Front",
  30323. image: {
  30324. source: "./media/characters/raunehkeli/front.svg",
  30325. extra: 1934 / 1926,
  30326. bottom: 0 / 1934
  30327. }
  30328. },
  30329. },
  30330. [
  30331. {
  30332. name: "Normal",
  30333. height: math.unit(179, "cm")
  30334. },
  30335. {
  30336. name: "Maximum",
  30337. height: math.unit(575, "meters"),
  30338. default: true
  30339. },
  30340. ]
  30341. ))
  30342. characterMakers.push(() => makeCharacter(
  30343. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30344. {
  30345. front: {
  30346. height: math.unit(6, "feet"),
  30347. weight: math.unit(150, "lb"),
  30348. name: "Front",
  30349. image: {
  30350. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30351. extra: 2625 / 2518,
  30352. bottom: 60 / 2685
  30353. }
  30354. },
  30355. },
  30356. [
  30357. {
  30358. name: "Normal",
  30359. height: math.unit(6 + 2 / 12, "feet")
  30360. },
  30361. {
  30362. name: "Macro",
  30363. height: math.unit(1180, "feet"),
  30364. default: true
  30365. },
  30366. ]
  30367. ))
  30368. characterMakers.push(() => makeCharacter(
  30369. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30370. {
  30371. front: {
  30372. height: math.unit(5 + 6 / 12, "feet"),
  30373. weight: math.unit(108, "lb"),
  30374. name: "Front",
  30375. image: {
  30376. source: "./media/characters/lilith-zott/front.svg",
  30377. extra: 2510 / 2238,
  30378. bottom: 100 / 2610
  30379. }
  30380. },
  30381. frontDressed: {
  30382. height: math.unit(5 + 6 / 12, "feet"),
  30383. weight: math.unit(108, "lb"),
  30384. name: "Front (Dressed)",
  30385. image: {
  30386. source: "./media/characters/lilith-zott/front-dressed.svg",
  30387. extra: 2510 / 2238,
  30388. bottom: 100 / 2610
  30389. }
  30390. },
  30391. },
  30392. [
  30393. {
  30394. name: "Normal",
  30395. height: math.unit(5 + 6 / 12, "feet")
  30396. },
  30397. {
  30398. name: "Macro",
  30399. height: math.unit(1030, "feet"),
  30400. default: true
  30401. },
  30402. ]
  30403. ))
  30404. characterMakers.push(() => makeCharacter(
  30405. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30406. {
  30407. front: {
  30408. height: math.unit(6, "feet"),
  30409. weight: math.unit(150, "lb"),
  30410. name: "Front",
  30411. image: {
  30412. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30413. extra: 2567 / 2435,
  30414. bottom: 39 / 2606
  30415. }
  30416. },
  30417. frontSuper: {
  30418. height: math.unit(6, "feet"),
  30419. name: "Front (Super)",
  30420. image: {
  30421. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30422. extra: 2567 / 2435,
  30423. bottom: 39 / 2606
  30424. }
  30425. },
  30426. },
  30427. [
  30428. {
  30429. name: "Normal",
  30430. height: math.unit(5 + 10 / 12, "feet")
  30431. },
  30432. {
  30433. name: "Macro",
  30434. height: math.unit(1100, "feet"),
  30435. default: true
  30436. },
  30437. ]
  30438. ))
  30439. characterMakers.push(() => makeCharacter(
  30440. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30441. {
  30442. front: {
  30443. height: math.unit(100, "miles"),
  30444. name: "Front",
  30445. image: {
  30446. source: "./media/characters/sona/front.svg",
  30447. extra: 2433 / 2201,
  30448. bottom: 53 / 2486
  30449. }
  30450. },
  30451. foot: {
  30452. height: math.unit(16.1, "miles"),
  30453. name: "Foot",
  30454. image: {
  30455. source: "./media/characters/sona/foot.svg"
  30456. }
  30457. },
  30458. },
  30459. [
  30460. {
  30461. name: "Macro",
  30462. height: math.unit(100, "miles"),
  30463. default: true
  30464. },
  30465. ]
  30466. ))
  30467. characterMakers.push(() => makeCharacter(
  30468. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30469. {
  30470. front: {
  30471. height: math.unit(6, "feet"),
  30472. weight: math.unit(150, "lb"),
  30473. name: "Front",
  30474. image: {
  30475. source: "./media/characters/bailey/front.svg",
  30476. extra: 1778 / 1724,
  30477. bottom: 30 / 1808
  30478. }
  30479. },
  30480. },
  30481. [
  30482. {
  30483. name: "Micro",
  30484. height: math.unit(4, "inches")
  30485. },
  30486. {
  30487. name: "Normal",
  30488. height: math.unit(5 + 5 / 12, "feet"),
  30489. default: true
  30490. },
  30491. {
  30492. name: "Macro",
  30493. height: math.unit(250, "feet")
  30494. },
  30495. {
  30496. name: "Megamacro",
  30497. height: math.unit(100, "miles")
  30498. },
  30499. ]
  30500. ))
  30501. characterMakers.push(() => makeCharacter(
  30502. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30503. {
  30504. front: {
  30505. height: math.unit(5 + 2 / 12, "feet"),
  30506. weight: math.unit(120, "lb"),
  30507. name: "Front",
  30508. image: {
  30509. source: "./media/characters/snaps/front.svg",
  30510. extra: 2370 / 2177,
  30511. bottom: 48 / 2418
  30512. }
  30513. },
  30514. back: {
  30515. height: math.unit(5 + 2 / 12, "feet"),
  30516. weight: math.unit(120, "lb"),
  30517. name: "Back",
  30518. image: {
  30519. source: "./media/characters/snaps/back.svg",
  30520. extra: 2408 / 2258,
  30521. bottom: 15 / 2423
  30522. }
  30523. },
  30524. },
  30525. [
  30526. {
  30527. name: "Micro",
  30528. height: math.unit(9, "inches")
  30529. },
  30530. {
  30531. name: "Normal",
  30532. height: math.unit(5 + 2 / 12, "feet"),
  30533. default: true
  30534. },
  30535. {
  30536. name: "Mini Macro",
  30537. height: math.unit(10, "feet")
  30538. },
  30539. ]
  30540. ))
  30541. characterMakers.push(() => makeCharacter(
  30542. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30543. {
  30544. front: {
  30545. height: math.unit(1.8, "meters"),
  30546. weight: math.unit(85, "kg"),
  30547. name: "Front",
  30548. image: {
  30549. source: "./media/characters/azteck/front.svg",
  30550. extra: 2815 / 2625,
  30551. bottom: 89 / 2904
  30552. }
  30553. },
  30554. back: {
  30555. height: math.unit(1.8, "meters"),
  30556. weight: math.unit(85, "kg"),
  30557. name: "Back",
  30558. image: {
  30559. source: "./media/characters/azteck/back.svg",
  30560. extra: 2856 / 2648,
  30561. bottom: 85 / 2941
  30562. }
  30563. },
  30564. frontDressed: {
  30565. height: math.unit(1.8, "meters"),
  30566. weight: math.unit(85, "kg"),
  30567. name: "Front (Dressed)",
  30568. image: {
  30569. source: "./media/characters/azteck/front-dressed.svg",
  30570. extra: 2147 / 2003,
  30571. bottom: 68 / 2215
  30572. }
  30573. },
  30574. head: {
  30575. height: math.unit(0.47, "meters"),
  30576. weight: math.unit(85, "kg"),
  30577. name: "Head",
  30578. image: {
  30579. source: "./media/characters/azteck/head.svg"
  30580. }
  30581. },
  30582. },
  30583. [
  30584. {
  30585. name: "Bite sized",
  30586. height: math.unit(16, "cm")
  30587. },
  30588. {
  30589. name: "Normal",
  30590. height: math.unit(1.8, "meters"),
  30591. default: true
  30592. },
  30593. ]
  30594. ))
  30595. characterMakers.push(() => makeCharacter(
  30596. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30597. {
  30598. front: {
  30599. height: math.unit(6, "feet"),
  30600. weight: math.unit(150, "lb"),
  30601. name: "Front",
  30602. image: {
  30603. source: "./media/characters/pidge/front.svg",
  30604. extra: 1936/1820,
  30605. bottom: 0/1936
  30606. }
  30607. },
  30608. back: {
  30609. height: math.unit(6, "feet"),
  30610. weight: math.unit(150, "lb"),
  30611. name: "Back",
  30612. image: {
  30613. source: "./media/characters/pidge/back.svg",
  30614. extra: 1938/1843,
  30615. bottom: 0/1938
  30616. }
  30617. },
  30618. casual: {
  30619. height: math.unit(6, "feet"),
  30620. weight: math.unit(150, "lb"),
  30621. name: "Casual",
  30622. image: {
  30623. source: "./media/characters/pidge/casual.svg",
  30624. extra: 1936/1820,
  30625. bottom: 0/1936
  30626. }
  30627. },
  30628. tech: {
  30629. height: math.unit(6, "feet"),
  30630. weight: math.unit(150, "lb"),
  30631. name: "Tech",
  30632. image: {
  30633. source: "./media/characters/pidge/tech.svg",
  30634. extra: 1802/1682,
  30635. bottom: 0/1802
  30636. }
  30637. },
  30638. head: {
  30639. height: math.unit(1.61, "feet"),
  30640. name: "Head",
  30641. image: {
  30642. source: "./media/characters/pidge/head.svg"
  30643. }
  30644. },
  30645. collar: {
  30646. height: math.unit(0.82, "feet"),
  30647. name: "Collar",
  30648. image: {
  30649. source: "./media/characters/pidge/collar.svg"
  30650. }
  30651. },
  30652. },
  30653. [
  30654. {
  30655. name: "Macro",
  30656. height: math.unit(2, "mile"),
  30657. default: true
  30658. },
  30659. {
  30660. name: "PUPPY",
  30661. height: math.unit(20, "miles")
  30662. },
  30663. ]
  30664. ))
  30665. characterMakers.push(() => makeCharacter(
  30666. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30667. {
  30668. front: {
  30669. height: math.unit(6, "feet"),
  30670. weight: math.unit(150, "lb"),
  30671. name: "Front",
  30672. image: {
  30673. source: "./media/characters/en/front.svg",
  30674. extra: 1697 / 1563,
  30675. bottom: 103 / 1800
  30676. }
  30677. },
  30678. back: {
  30679. height: math.unit(6, "feet"),
  30680. weight: math.unit(150, "lb"),
  30681. name: "Back",
  30682. image: {
  30683. source: "./media/characters/en/back.svg",
  30684. extra: 1700 / 1570,
  30685. bottom: 51 / 1751
  30686. }
  30687. },
  30688. frontDressed: {
  30689. height: math.unit(6, "feet"),
  30690. weight: math.unit(150, "lb"),
  30691. name: "Front (Dressed)",
  30692. image: {
  30693. source: "./media/characters/en/front-dressed.svg",
  30694. extra: 1697 / 1563,
  30695. bottom: 103 / 1800
  30696. }
  30697. },
  30698. backDressed: {
  30699. height: math.unit(6, "feet"),
  30700. weight: math.unit(150, "lb"),
  30701. name: "Back (Dressed)",
  30702. image: {
  30703. source: "./media/characters/en/back-dressed.svg",
  30704. extra: 1700 / 1570,
  30705. bottom: 51 / 1751
  30706. }
  30707. },
  30708. },
  30709. [
  30710. {
  30711. name: "Macro",
  30712. height: math.unit(210, "feet"),
  30713. default: true
  30714. },
  30715. ]
  30716. ))
  30717. characterMakers.push(() => makeCharacter(
  30718. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30719. {
  30720. front: {
  30721. height: math.unit(6, "feet"),
  30722. weight: math.unit(150, "lb"),
  30723. name: "Front",
  30724. image: {
  30725. source: "./media/characters/haze-orris/front.svg",
  30726. extra: 3975 / 3525,
  30727. bottom: 137 / 4112
  30728. }
  30729. },
  30730. },
  30731. [
  30732. {
  30733. name: "Micro",
  30734. height: math.unit(150, "mm"),
  30735. default: true
  30736. },
  30737. ]
  30738. ))
  30739. characterMakers.push(() => makeCharacter(
  30740. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30741. {
  30742. front: {
  30743. height: math.unit(6, "feet"),
  30744. weight: math.unit(150, "lb"),
  30745. name: "Front",
  30746. image: {
  30747. source: "./media/characters/casselene-yaro/front.svg",
  30748. extra: 4721 / 4541,
  30749. bottom: 82 / 4803
  30750. }
  30751. },
  30752. back: {
  30753. height: math.unit(6, "feet"),
  30754. weight: math.unit(150, "lb"),
  30755. name: "Back",
  30756. image: {
  30757. source: "./media/characters/casselene-yaro/back.svg",
  30758. extra: 4569 / 4377,
  30759. bottom: 69 / 4638
  30760. }
  30761. },
  30762. dressed: {
  30763. height: math.unit(6, "feet"),
  30764. weight: math.unit(150, "lb"),
  30765. name: "Dressed",
  30766. image: {
  30767. source: "./media/characters/casselene-yaro/dressed.svg",
  30768. extra: 4721 / 4541,
  30769. bottom: 82 / 4803
  30770. }
  30771. },
  30772. maw: {
  30773. height: math.unit(1, "feet"),
  30774. name: "Maw",
  30775. image: {
  30776. source: "./media/characters/casselene-yaro/maw.svg"
  30777. }
  30778. },
  30779. },
  30780. [
  30781. {
  30782. name: "Macro",
  30783. height: math.unit(190, "feet"),
  30784. default: true
  30785. },
  30786. ]
  30787. ))
  30788. characterMakers.push(() => makeCharacter(
  30789. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30790. {
  30791. front: {
  30792. height: math.unit(10, "feet"),
  30793. weight: math.unit(15015, "lb"),
  30794. name: "Front",
  30795. image: {
  30796. source: "./media/characters/platine/front.svg",
  30797. extra: 1428/1353,
  30798. bottom: 31/1459
  30799. }
  30800. },
  30801. },
  30802. [
  30803. {
  30804. name: "Normal",
  30805. height: math.unit(10, "feet"),
  30806. default: true
  30807. },
  30808. {
  30809. name: "Macro",
  30810. height: math.unit(100, "feet")
  30811. },
  30812. {
  30813. name: "Megamacro",
  30814. height: math.unit(1000, "feet")
  30815. },
  30816. ]
  30817. ))
  30818. characterMakers.push(() => makeCharacter(
  30819. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30820. {
  30821. front: {
  30822. height: math.unit(15 + 5 / 12, "feet"),
  30823. weight: math.unit(4600, "lb"),
  30824. name: "Front",
  30825. image: {
  30826. source: "./media/characters/neapolitan-ananassa/front.svg",
  30827. extra: 2903 / 2736,
  30828. bottom: 0 / 2903
  30829. }
  30830. },
  30831. side: {
  30832. height: math.unit(15 + 5 / 12, "feet"),
  30833. weight: math.unit(4600, "lb"),
  30834. name: "Side",
  30835. image: {
  30836. source: "./media/characters/neapolitan-ananassa/side.svg",
  30837. extra: 2925 / 2719,
  30838. bottom: 0 / 2925
  30839. }
  30840. },
  30841. back: {
  30842. height: math.unit(15 + 5 / 12, "feet"),
  30843. weight: math.unit(4600, "lb"),
  30844. name: "Back",
  30845. image: {
  30846. source: "./media/characters/neapolitan-ananassa/back.svg",
  30847. extra: 2903 / 2736,
  30848. bottom: 0 / 2903
  30849. }
  30850. },
  30851. },
  30852. [
  30853. {
  30854. name: "Normal",
  30855. height: math.unit(15 + 5 / 12, "feet"),
  30856. default: true
  30857. },
  30858. {
  30859. name: "Post-Millenium",
  30860. height: math.unit(35 + 5 / 12, "feet")
  30861. },
  30862. {
  30863. name: "Post-Era",
  30864. height: math.unit(450 + 5 / 12, "feet")
  30865. },
  30866. ]
  30867. ))
  30868. characterMakers.push(() => makeCharacter(
  30869. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30870. {
  30871. front: {
  30872. height: math.unit(300, "meters"),
  30873. weight: math.unit(125000, "tonnes"),
  30874. name: "Front",
  30875. image: {
  30876. source: "./media/characters/pazuzu/front.svg",
  30877. extra: 877 / 794,
  30878. bottom: 47 / 924
  30879. }
  30880. },
  30881. },
  30882. [
  30883. {
  30884. name: "Macro",
  30885. height: math.unit(300, "meters"),
  30886. default: true
  30887. },
  30888. ]
  30889. ))
  30890. characterMakers.push(() => makeCharacter(
  30891. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30892. {
  30893. side: {
  30894. height: math.unit(10 + 7 / 12, "feet"),
  30895. weight: math.unit(2.5, "tons"),
  30896. name: "Side",
  30897. image: {
  30898. source: "./media/characters/aasha/side.svg",
  30899. extra: 1345 / 1245,
  30900. bottom: 111 / 1456
  30901. }
  30902. },
  30903. back: {
  30904. height: math.unit(10 + 7 / 12, "feet"),
  30905. weight: math.unit(2.5, "tons"),
  30906. name: "Back",
  30907. image: {
  30908. source: "./media/characters/aasha/back.svg",
  30909. extra: 1133 / 1057,
  30910. bottom: 257 / 1390
  30911. }
  30912. },
  30913. },
  30914. [
  30915. {
  30916. name: "Normal",
  30917. height: math.unit(10 + 7 / 12, "feet"),
  30918. default: true
  30919. },
  30920. ]
  30921. ))
  30922. characterMakers.push(() => makeCharacter(
  30923. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30924. {
  30925. front: {
  30926. height: math.unit(6 + 3 / 12, "feet"),
  30927. name: "Front",
  30928. image: {
  30929. source: "./media/characters/nevan/front.svg",
  30930. extra: 704 / 704,
  30931. bottom: 28 / 732
  30932. }
  30933. },
  30934. back: {
  30935. height: math.unit(6 + 3 / 12, "feet"),
  30936. name: "Back",
  30937. image: {
  30938. source: "./media/characters/nevan/back.svg",
  30939. extra: 714 / 714,
  30940. bottom: 21 / 735
  30941. }
  30942. },
  30943. frontFlaccid: {
  30944. height: math.unit(6 + 3 / 12, "feet"),
  30945. name: "Front (Flaccid)",
  30946. image: {
  30947. source: "./media/characters/nevan/front-flaccid.svg",
  30948. extra: 704 / 704,
  30949. bottom: 28 / 732
  30950. }
  30951. },
  30952. frontErect: {
  30953. height: math.unit(6 + 3 / 12, "feet"),
  30954. name: "Front (Erect)",
  30955. image: {
  30956. source: "./media/characters/nevan/front-erect.svg",
  30957. extra: 704 / 704,
  30958. bottom: 28 / 732
  30959. }
  30960. },
  30961. backFlaccid: {
  30962. height: math.unit(6 + 3 / 12, "feet"),
  30963. name: "Back (Flaccid)",
  30964. image: {
  30965. source: "./media/characters/nevan/back-flaccid.svg",
  30966. extra: 714 / 714,
  30967. bottom: 21 / 735
  30968. }
  30969. },
  30970. },
  30971. [
  30972. {
  30973. name: "Normal",
  30974. height: math.unit(6 + 3 / 12, "feet"),
  30975. default: true
  30976. },
  30977. ]
  30978. ))
  30979. characterMakers.push(() => makeCharacter(
  30980. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30981. {
  30982. front: {
  30983. height: math.unit(4, "feet"),
  30984. name: "Front",
  30985. image: {
  30986. source: "./media/characters/arhan/front.svg",
  30987. extra: 3368 / 3133,
  30988. bottom: 0 / 3368
  30989. }
  30990. },
  30991. side: {
  30992. height: math.unit(4, "feet"),
  30993. name: "Side",
  30994. image: {
  30995. source: "./media/characters/arhan/side.svg",
  30996. extra: 3347 / 3105,
  30997. bottom: 0 / 3347
  30998. }
  30999. },
  31000. tongue: {
  31001. height: math.unit(1.42, "feet"),
  31002. name: "Tongue",
  31003. image: {
  31004. source: "./media/characters/arhan/tongue.svg"
  31005. }
  31006. },
  31007. head: {
  31008. height: math.unit(0.85, "feet"),
  31009. name: "Head",
  31010. image: {
  31011. source: "./media/characters/arhan/head.svg"
  31012. }
  31013. },
  31014. },
  31015. [
  31016. {
  31017. name: "Normal",
  31018. height: math.unit(4, "feet"),
  31019. default: true
  31020. },
  31021. ]
  31022. ))
  31023. characterMakers.push(() => makeCharacter(
  31024. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31025. {
  31026. front: {
  31027. height: math.unit(5 + 7.5 / 12, "feet"),
  31028. weight: math.unit(120, "lb"),
  31029. name: "Front",
  31030. image: {
  31031. source: "./media/characters/digi-duncan/front.svg",
  31032. extra: 330 / 326,
  31033. bottom: 16 / 346
  31034. }
  31035. },
  31036. side: {
  31037. height: math.unit(5 + 7.5 / 12, "feet"),
  31038. weight: math.unit(120, "lb"),
  31039. name: "Side",
  31040. image: {
  31041. source: "./media/characters/digi-duncan/side.svg",
  31042. extra: 341 / 337,
  31043. bottom: 1 / 342
  31044. }
  31045. },
  31046. back: {
  31047. height: math.unit(5 + 7.5 / 12, "feet"),
  31048. weight: math.unit(120, "lb"),
  31049. name: "Back",
  31050. image: {
  31051. source: "./media/characters/digi-duncan/back.svg",
  31052. extra: 330 / 326,
  31053. bottom: 12 / 342
  31054. }
  31055. },
  31056. },
  31057. [
  31058. {
  31059. name: "Speck",
  31060. height: math.unit(0.25, "mm")
  31061. },
  31062. {
  31063. name: "Micro",
  31064. height: math.unit(5, "mm")
  31065. },
  31066. {
  31067. name: "Tiny",
  31068. height: math.unit(0.5, "inches"),
  31069. default: true
  31070. },
  31071. {
  31072. name: "Human",
  31073. height: math.unit(5 + 7.5 / 12, "feet")
  31074. },
  31075. {
  31076. name: "Minigiant",
  31077. height: math.unit(8 + 5.25, "feet")
  31078. },
  31079. {
  31080. name: "Giant",
  31081. height: math.unit(2000, "feet")
  31082. },
  31083. {
  31084. name: "Mega",
  31085. height: math.unit(371.1, "miles")
  31086. },
  31087. ]
  31088. ))
  31089. characterMakers.push(() => makeCharacter(
  31090. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31091. {
  31092. front: {
  31093. height: math.unit(2, "meters"),
  31094. weight: math.unit(350, "kg"),
  31095. name: "Front",
  31096. image: {
  31097. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31098. extra: 898 / 838,
  31099. bottom: 9 / 907
  31100. }
  31101. },
  31102. },
  31103. [
  31104. {
  31105. name: "Micro",
  31106. height: math.unit(8, "meters")
  31107. },
  31108. {
  31109. name: "Normal",
  31110. height: math.unit(50, "meters"),
  31111. default: true
  31112. },
  31113. {
  31114. name: "Macro",
  31115. height: math.unit(500, "meters")
  31116. },
  31117. ]
  31118. ))
  31119. characterMakers.push(() => makeCharacter(
  31120. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31121. {
  31122. front: {
  31123. height: math.unit(6 + 6 / 12, "feet"),
  31124. name: "Front",
  31125. image: {
  31126. source: "./media/characters/khardesh/front.svg",
  31127. extra: 1788/1596,
  31128. bottom: 66/1854
  31129. }
  31130. },
  31131. back: {
  31132. height: math.unit(6 + 6 / 12, "feet"),
  31133. name: "Back",
  31134. image: {
  31135. source: "./media/characters/khardesh/back.svg",
  31136. extra: 1781/1584,
  31137. bottom: 68/1849
  31138. }
  31139. },
  31140. },
  31141. [
  31142. {
  31143. name: "Normal",
  31144. height: math.unit(6 + 6 / 12, "feet"),
  31145. default: true
  31146. },
  31147. {
  31148. name: "Normal+",
  31149. height: math.unit(4, "meters")
  31150. },
  31151. {
  31152. name: "Macro",
  31153. height: math.unit(50, "meters")
  31154. },
  31155. {
  31156. name: "Macro+",
  31157. height: math.unit(100, "meters")
  31158. },
  31159. {
  31160. name: "Megamacro",
  31161. height: math.unit(20, "km")
  31162. },
  31163. ]
  31164. ))
  31165. characterMakers.push(() => makeCharacter(
  31166. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31167. {
  31168. front: {
  31169. height: math.unit(6, "feet"),
  31170. weight: math.unit(150, "lb"),
  31171. name: "Front",
  31172. image: {
  31173. source: "./media/characters/kosho/front.svg",
  31174. extra: 1847 / 1847,
  31175. bottom: 86 / 1933
  31176. }
  31177. },
  31178. },
  31179. [
  31180. {
  31181. name: "Second-stage micro",
  31182. height: math.unit(0.5, "inches")
  31183. },
  31184. {
  31185. name: "First-stage micro",
  31186. height: math.unit(6, "inches")
  31187. },
  31188. {
  31189. name: "Normal",
  31190. height: math.unit(6, "feet"),
  31191. default: true
  31192. },
  31193. {
  31194. name: "First-stage macro",
  31195. height: math.unit(72, "feet")
  31196. },
  31197. {
  31198. name: "Second-stage macro",
  31199. height: math.unit(864, "feet")
  31200. },
  31201. ]
  31202. ))
  31203. characterMakers.push(() => makeCharacter(
  31204. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31205. {
  31206. normal: {
  31207. height: math.unit(4 + 6 / 12, "feet"),
  31208. name: "Normal",
  31209. image: {
  31210. source: "./media/characters/hydra/normal.svg",
  31211. extra: 2833 / 2634,
  31212. bottom: 68 / 2901
  31213. }
  31214. },
  31215. smol: {
  31216. height: math.unit(0.705, "inches"),
  31217. name: "Smol",
  31218. image: {
  31219. source: "./media/characters/hydra/smol.svg",
  31220. extra: 2715 / 2540,
  31221. bottom: 0 / 2715
  31222. }
  31223. },
  31224. },
  31225. [
  31226. {
  31227. name: "Normal",
  31228. height: math.unit(4 + 6 / 12, "feet"),
  31229. default: true
  31230. }
  31231. ]
  31232. ))
  31233. characterMakers.push(() => makeCharacter(
  31234. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31235. {
  31236. front: {
  31237. height: math.unit(0.6, "cm"),
  31238. name: "Front",
  31239. image: {
  31240. source: "./media/characters/daz/front.svg",
  31241. extra: 1682 / 1164,
  31242. bottom: 42 / 1724
  31243. }
  31244. },
  31245. },
  31246. [
  31247. {
  31248. name: "Normal",
  31249. height: math.unit(0.6, "cm"),
  31250. default: true
  31251. },
  31252. ]
  31253. ))
  31254. characterMakers.push(() => makeCharacter(
  31255. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31256. {
  31257. front: {
  31258. height: math.unit(6, "feet"),
  31259. weight: math.unit(235, "lb"),
  31260. name: "Front",
  31261. image: {
  31262. source: "./media/characters/theo-pangolin/front.svg",
  31263. extra: 1996 / 1969,
  31264. bottom: 115 / 2111
  31265. }
  31266. },
  31267. back: {
  31268. height: math.unit(6, "feet"),
  31269. weight: math.unit(235, "lb"),
  31270. name: "Back",
  31271. image: {
  31272. source: "./media/characters/theo-pangolin/back.svg",
  31273. extra: 1979 / 1979,
  31274. bottom: 40 / 2019
  31275. }
  31276. },
  31277. feral: {
  31278. height: math.unit(2, "feet"),
  31279. weight: math.unit(30, "lb"),
  31280. name: "Feral",
  31281. image: {
  31282. source: "./media/characters/theo-pangolin/feral.svg",
  31283. extra: 803 / 791,
  31284. bottom: 181 / 984
  31285. }
  31286. },
  31287. footFive: {
  31288. height: math.unit(1.43, "feet"),
  31289. name: "Foot (Five Toes)",
  31290. image: {
  31291. source: "./media/characters/theo-pangolin/foot-five.svg"
  31292. }
  31293. },
  31294. footFour: {
  31295. height: math.unit(1.43, "feet"),
  31296. name: "Foot (Four Toes)",
  31297. image: {
  31298. source: "./media/characters/theo-pangolin/foot-four.svg"
  31299. }
  31300. },
  31301. handFour: {
  31302. height: math.unit(0.81, "feet"),
  31303. name: "Hand (Four Fingers)",
  31304. image: {
  31305. source: "./media/characters/theo-pangolin/hand-four.svg"
  31306. }
  31307. },
  31308. handThree: {
  31309. height: math.unit(0.81, "feet"),
  31310. name: "Hand (Three Fingers)",
  31311. image: {
  31312. source: "./media/characters/theo-pangolin/hand-three.svg"
  31313. }
  31314. },
  31315. headFront: {
  31316. height: math.unit(1.37, "feet"),
  31317. name: "Head (Front)",
  31318. image: {
  31319. source: "./media/characters/theo-pangolin/head-front.svg"
  31320. }
  31321. },
  31322. headSide: {
  31323. height: math.unit(1.43, "feet"),
  31324. name: "Head (Side)",
  31325. image: {
  31326. source: "./media/characters/theo-pangolin/head-side.svg"
  31327. }
  31328. },
  31329. tongue: {
  31330. height: math.unit(2.29, "feet"),
  31331. name: "Tongue",
  31332. image: {
  31333. source: "./media/characters/theo-pangolin/tongue.svg"
  31334. }
  31335. },
  31336. },
  31337. [
  31338. {
  31339. name: "Normal",
  31340. height: math.unit(6, "feet")
  31341. },
  31342. {
  31343. name: "Macro",
  31344. height: math.unit(400, "feet"),
  31345. default: true
  31346. },
  31347. ]
  31348. ))
  31349. characterMakers.push(() => makeCharacter(
  31350. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31351. {
  31352. front: {
  31353. height: math.unit(6, "inches"),
  31354. weight: math.unit(0.036, "kg"),
  31355. name: "Front",
  31356. image: {
  31357. source: "./media/characters/renée/front.svg",
  31358. extra: 900 / 886,
  31359. bottom: 8 / 908
  31360. }
  31361. },
  31362. },
  31363. [
  31364. {
  31365. name: "Nano",
  31366. height: math.unit(1, "nm")
  31367. },
  31368. {
  31369. name: "Micro",
  31370. height: math.unit(1, "mm")
  31371. },
  31372. {
  31373. name: "Normal",
  31374. height: math.unit(6, "inches")
  31375. },
  31376. {
  31377. name: "Macro",
  31378. height: math.unit(2000, "feet"),
  31379. default: true
  31380. },
  31381. {
  31382. name: "Megamacro",
  31383. height: math.unit(2, "km")
  31384. },
  31385. {
  31386. name: "Gigamacro",
  31387. height: math.unit(2000, "km")
  31388. },
  31389. {
  31390. name: "Teramacro",
  31391. height: math.unit(250000, "km")
  31392. },
  31393. ]
  31394. ))
  31395. characterMakers.push(() => makeCharacter(
  31396. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31397. {
  31398. front: {
  31399. height: math.unit(4, "meters"),
  31400. weight: math.unit(150, "kg"),
  31401. name: "Front",
  31402. image: {
  31403. source: "./media/characters/caledvwlch/front.svg",
  31404. extra: 1760 / 1551,
  31405. bottom: 28 / 1788
  31406. }
  31407. },
  31408. side: {
  31409. height: math.unit(4, "meters"),
  31410. weight: math.unit(150, "kg"),
  31411. name: "Side",
  31412. image: {
  31413. source: "./media/characters/caledvwlch/side.svg",
  31414. extra: 1605 / 1536,
  31415. bottom: 31 / 1636
  31416. }
  31417. },
  31418. back: {
  31419. height: math.unit(4, "meters"),
  31420. weight: math.unit(150, "kg"),
  31421. name: "Back",
  31422. image: {
  31423. source: "./media/characters/caledvwlch/back.svg",
  31424. extra: 1635 / 1565,
  31425. bottom: 27 / 1662
  31426. }
  31427. },
  31428. },
  31429. [
  31430. {
  31431. name: "\"Incognito\"",
  31432. height: math.unit(4, "meters")
  31433. },
  31434. {
  31435. name: "Small rampage",
  31436. height: math.unit(600, "meters")
  31437. },
  31438. {
  31439. name: "Mega",
  31440. height: math.unit(30, "km")
  31441. },
  31442. {
  31443. name: "Home-size",
  31444. height: math.unit(50, "km"),
  31445. default: true
  31446. },
  31447. {
  31448. name: "Giga",
  31449. height: math.unit(300, "km")
  31450. },
  31451. {
  31452. name: "Lounging",
  31453. height: math.unit(11000, "km")
  31454. },
  31455. {
  31456. name: "Planet snacking",
  31457. height: math.unit(2000000, "km")
  31458. },
  31459. ]
  31460. ))
  31461. characterMakers.push(() => makeCharacter(
  31462. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31463. {
  31464. front: {
  31465. height: math.unit(6, "feet"),
  31466. weight: math.unit(215, "lb"),
  31467. name: "Front",
  31468. image: {
  31469. source: "./media/characters/sapphire-svell/front.svg",
  31470. extra: 495 / 455,
  31471. bottom: 20 / 515
  31472. }
  31473. },
  31474. back: {
  31475. height: math.unit(6, "feet"),
  31476. weight: math.unit(216, "lb"),
  31477. name: "Back",
  31478. image: {
  31479. source: "./media/characters/sapphire-svell/back.svg",
  31480. extra: 497 / 477,
  31481. bottom: 7 / 504
  31482. }
  31483. },
  31484. maw: {
  31485. height: math.unit(1.57, "feet"),
  31486. name: "Maw",
  31487. image: {
  31488. source: "./media/characters/sapphire-svell/maw.svg"
  31489. }
  31490. },
  31491. foot: {
  31492. height: math.unit(1.07, "feet"),
  31493. name: "Foot",
  31494. image: {
  31495. source: "./media/characters/sapphire-svell/foot.svg"
  31496. }
  31497. },
  31498. toering: {
  31499. height: math.unit(1.7, "inch"),
  31500. name: "Toering",
  31501. image: {
  31502. source: "./media/characters/sapphire-svell/toering.svg"
  31503. }
  31504. },
  31505. },
  31506. [
  31507. {
  31508. name: "Normal",
  31509. height: math.unit(300, "feet"),
  31510. default: true
  31511. },
  31512. {
  31513. name: "Augmented",
  31514. height: math.unit(1250, "feet")
  31515. },
  31516. {
  31517. name: "Unleashed",
  31518. height: math.unit(3000, "feet")
  31519. },
  31520. ]
  31521. ))
  31522. characterMakers.push(() => makeCharacter(
  31523. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31524. {
  31525. side: {
  31526. height: math.unit(2 + 3 / 12, "feet"),
  31527. weight: math.unit(110, "lb"),
  31528. name: "Side",
  31529. image: {
  31530. source: "./media/characters/glitch-flux/side.svg",
  31531. extra: 997 / 805,
  31532. bottom: 20 / 1017
  31533. }
  31534. },
  31535. },
  31536. [
  31537. {
  31538. name: "Normal",
  31539. height: math.unit(2 + 3 / 12, "feet"),
  31540. default: true
  31541. },
  31542. ]
  31543. ))
  31544. characterMakers.push(() => makeCharacter(
  31545. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31546. {
  31547. front: {
  31548. height: math.unit(4, "meters"),
  31549. name: "Front",
  31550. image: {
  31551. source: "./media/characters/mid/front.svg",
  31552. extra: 507 / 476,
  31553. bottom: 17 / 524
  31554. }
  31555. },
  31556. back: {
  31557. height: math.unit(4, "meters"),
  31558. name: "Back",
  31559. image: {
  31560. source: "./media/characters/mid/back.svg",
  31561. extra: 519 / 487,
  31562. bottom: 7 / 526
  31563. }
  31564. },
  31565. stuck: {
  31566. height: math.unit(2.2, "meters"),
  31567. name: "Stuck",
  31568. image: {
  31569. source: "./media/characters/mid/stuck.svg",
  31570. extra: 1951 / 1869,
  31571. bottom: 88 / 2039
  31572. }
  31573. }
  31574. },
  31575. [
  31576. {
  31577. name: "Normal",
  31578. height: math.unit(4, "meters"),
  31579. default: true
  31580. },
  31581. {
  31582. name: "Big",
  31583. height: math.unit(10, "meters")
  31584. },
  31585. {
  31586. name: "Macro",
  31587. height: math.unit(800, "meters")
  31588. },
  31589. {
  31590. name: "Megamacro",
  31591. height: math.unit(100, "km")
  31592. },
  31593. {
  31594. name: "Overgrown",
  31595. height: math.unit(1, "parsec")
  31596. },
  31597. ]
  31598. ))
  31599. characterMakers.push(() => makeCharacter(
  31600. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31601. {
  31602. front: {
  31603. height: math.unit(2.5, "meters"),
  31604. weight: math.unit(225, "kg"),
  31605. name: "Front",
  31606. image: {
  31607. source: "./media/characters/iris/front.svg",
  31608. extra: 3348 / 3251,
  31609. bottom: 205 / 3553
  31610. }
  31611. },
  31612. maw: {
  31613. height: math.unit(0.56, "meter"),
  31614. name: "Maw",
  31615. image: {
  31616. source: "./media/characters/iris/maw.svg"
  31617. }
  31618. },
  31619. },
  31620. [
  31621. {
  31622. name: "Mewter cat",
  31623. height: math.unit(1.2, "meters")
  31624. },
  31625. {
  31626. name: "Minimacro",
  31627. height: math.unit(2.5, "meters"),
  31628. default: true
  31629. },
  31630. {
  31631. name: "Macro",
  31632. height: math.unit(180, "meters")
  31633. },
  31634. {
  31635. name: "Megamacro",
  31636. height: math.unit(2746, "meters")
  31637. },
  31638. ]
  31639. ))
  31640. characterMakers.push(() => makeCharacter(
  31641. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31642. {
  31643. front: {
  31644. height: math.unit(6, "feet"),
  31645. weight: math.unit(135, "lb"),
  31646. name: "Front",
  31647. image: {
  31648. source: "./media/characters/axel/front.svg",
  31649. extra: 908 / 908,
  31650. bottom: 58 / 966
  31651. }
  31652. },
  31653. side: {
  31654. height: math.unit(6, "feet"),
  31655. weight: math.unit(135, "lb"),
  31656. name: "Side",
  31657. image: {
  31658. source: "./media/characters/axel/side.svg",
  31659. extra: 958 / 958,
  31660. bottom: 11 / 969
  31661. }
  31662. },
  31663. back: {
  31664. height: math.unit(6, "feet"),
  31665. weight: math.unit(135, "lb"),
  31666. name: "Back",
  31667. image: {
  31668. source: "./media/characters/axel/back.svg",
  31669. extra: 887 / 887,
  31670. bottom: 34 / 921
  31671. }
  31672. },
  31673. head: {
  31674. height: math.unit(1.07, "feet"),
  31675. name: "Head",
  31676. image: {
  31677. source: "./media/characters/axel/head.svg"
  31678. }
  31679. },
  31680. beak: {
  31681. height: math.unit(1.4, "feet"),
  31682. name: "Beak",
  31683. image: {
  31684. source: "./media/characters/axel/beak.svg"
  31685. }
  31686. },
  31687. beakSide: {
  31688. height: math.unit(1.4, "feet"),
  31689. name: "Beak Side",
  31690. image: {
  31691. source: "./media/characters/axel/beak-side.svg"
  31692. }
  31693. },
  31694. sheath: {
  31695. height: math.unit(0.5, "feet"),
  31696. name: "Sheath",
  31697. image: {
  31698. source: "./media/characters/axel/sheath.svg"
  31699. }
  31700. },
  31701. dick: {
  31702. height: math.unit(0.98, "feet"),
  31703. name: "Dick",
  31704. image: {
  31705. source: "./media/characters/axel/dick.svg"
  31706. }
  31707. },
  31708. },
  31709. [
  31710. {
  31711. name: "Macro",
  31712. height: math.unit(68, "meters"),
  31713. default: true
  31714. },
  31715. ]
  31716. ))
  31717. characterMakers.push(() => makeCharacter(
  31718. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31719. {
  31720. front: {
  31721. height: math.unit(3.5, "meters"),
  31722. weight: math.unit(1200, "kg"),
  31723. name: "Front",
  31724. image: {
  31725. source: "./media/characters/joanna/front.svg",
  31726. extra: 1596 / 1488,
  31727. bottom: 29 / 1625
  31728. }
  31729. },
  31730. back: {
  31731. height: math.unit(3.5, "meters"),
  31732. weight: math.unit(1200, "kg"),
  31733. name: "Back",
  31734. image: {
  31735. source: "./media/characters/joanna/back.svg",
  31736. extra: 1594 / 1495,
  31737. bottom: 26 / 1620
  31738. }
  31739. },
  31740. frontShorts: {
  31741. height: math.unit(3.5, "meters"),
  31742. weight: math.unit(1200, "kg"),
  31743. name: "Front (Shorts)",
  31744. image: {
  31745. source: "./media/characters/joanna/front-shorts.svg",
  31746. extra: 1596 / 1488,
  31747. bottom: 29 / 1625
  31748. }
  31749. },
  31750. frontBiker: {
  31751. height: math.unit(3.5, "meters"),
  31752. weight: math.unit(1200, "kg"),
  31753. name: "Front (Biker)",
  31754. image: {
  31755. source: "./media/characters/joanna/front-biker.svg",
  31756. extra: 1596 / 1488,
  31757. bottom: 29 / 1625
  31758. }
  31759. },
  31760. backBiker: {
  31761. height: math.unit(3.5, "meters"),
  31762. weight: math.unit(1200, "kg"),
  31763. name: "Back (Biker)",
  31764. image: {
  31765. source: "./media/characters/joanna/back-biker.svg",
  31766. extra: 1594 / 1495,
  31767. bottom: 88 / 1682
  31768. }
  31769. },
  31770. bikeLeft: {
  31771. height: math.unit(2.4, "meters"),
  31772. weight: math.unit(1600, "kg"),
  31773. name: "Bike (Left)",
  31774. image: {
  31775. source: "./media/characters/joanna/bike-left.svg",
  31776. extra: 720 / 720,
  31777. bottom: 8 / 728
  31778. }
  31779. },
  31780. bikeRight: {
  31781. height: math.unit(2.4, "meters"),
  31782. weight: math.unit(1600, "kg"),
  31783. name: "Bike (Right)",
  31784. image: {
  31785. source: "./media/characters/joanna/bike-right.svg",
  31786. extra: 720 / 720,
  31787. bottom: 8 / 728
  31788. }
  31789. },
  31790. },
  31791. [
  31792. {
  31793. name: "Incognito",
  31794. height: math.unit(3.5, "meters")
  31795. },
  31796. {
  31797. name: "Casual Big",
  31798. height: math.unit(200, "meters")
  31799. },
  31800. {
  31801. name: "Macro",
  31802. height: math.unit(600, "meters")
  31803. },
  31804. {
  31805. name: "Original",
  31806. height: math.unit(20, "km"),
  31807. default: true
  31808. },
  31809. {
  31810. name: "Giga",
  31811. height: math.unit(400, "km")
  31812. },
  31813. {
  31814. name: "Lounging",
  31815. height: math.unit(1500, "km")
  31816. },
  31817. {
  31818. name: "Planetary",
  31819. height: math.unit(200000, "km")
  31820. },
  31821. ]
  31822. ))
  31823. characterMakers.push(() => makeCharacter(
  31824. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31825. {
  31826. front: {
  31827. height: math.unit(6, "feet"),
  31828. weight: math.unit(150, "lb"),
  31829. name: "Front",
  31830. image: {
  31831. source: "./media/characters/hugo-sigil/front.svg",
  31832. extra: 522 / 500,
  31833. bottom: 2 / 524
  31834. }
  31835. },
  31836. back: {
  31837. height: math.unit(6, "feet"),
  31838. weight: math.unit(150, "lb"),
  31839. name: "Back",
  31840. image: {
  31841. source: "./media/characters/hugo-sigil/back.svg",
  31842. extra: 519 / 495,
  31843. bottom: 5 / 524
  31844. }
  31845. },
  31846. maw: {
  31847. height: math.unit(1.4, "feet"),
  31848. weight: math.unit(150, "lb"),
  31849. name: "Maw",
  31850. image: {
  31851. source: "./media/characters/hugo-sigil/maw.svg"
  31852. }
  31853. },
  31854. feet: {
  31855. height: math.unit(1.56, "feet"),
  31856. weight: math.unit(150, "lb"),
  31857. name: "Feet",
  31858. image: {
  31859. source: "./media/characters/hugo-sigil/feet.svg",
  31860. extra: 177 / 177,
  31861. bottom: 12 / 189
  31862. }
  31863. },
  31864. },
  31865. [
  31866. {
  31867. name: "Normal",
  31868. height: math.unit(6, "feet")
  31869. },
  31870. {
  31871. name: "Macro",
  31872. height: math.unit(200, "feet"),
  31873. default: true
  31874. },
  31875. ]
  31876. ))
  31877. characterMakers.push(() => makeCharacter(
  31878. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31879. {
  31880. front: {
  31881. height: math.unit(6, "feet"),
  31882. weight: math.unit(150, "lb"),
  31883. name: "Front",
  31884. image: {
  31885. source: "./media/characters/peri/front.svg",
  31886. extra: 2354 / 2233,
  31887. bottom: 49 / 2403
  31888. }
  31889. },
  31890. },
  31891. [
  31892. {
  31893. name: "Really Small",
  31894. height: math.unit(1, "nm")
  31895. },
  31896. {
  31897. name: "Micro",
  31898. height: math.unit(4, "inches")
  31899. },
  31900. {
  31901. name: "Normal",
  31902. height: math.unit(7, "inches"),
  31903. default: true
  31904. },
  31905. {
  31906. name: "Macro",
  31907. height: math.unit(400, "feet")
  31908. },
  31909. {
  31910. name: "Megamacro",
  31911. height: math.unit(100, "miles")
  31912. },
  31913. ]
  31914. ))
  31915. characterMakers.push(() => makeCharacter(
  31916. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31917. {
  31918. frontSlim: {
  31919. height: math.unit(7, "feet"),
  31920. name: "Front (Slim)",
  31921. image: {
  31922. source: "./media/characters/issilora/front-slim.svg",
  31923. extra: 529 / 449,
  31924. bottom: 53 / 582
  31925. }
  31926. },
  31927. sideSlim: {
  31928. height: math.unit(7, "feet"),
  31929. name: "Side (Slim)",
  31930. image: {
  31931. source: "./media/characters/issilora/side-slim.svg",
  31932. extra: 570 / 480,
  31933. bottom: 30 / 600
  31934. }
  31935. },
  31936. backSlim: {
  31937. height: math.unit(7, "feet"),
  31938. name: "Back (Slim)",
  31939. image: {
  31940. source: "./media/characters/issilora/back-slim.svg",
  31941. extra: 537 / 455,
  31942. bottom: 46 / 583
  31943. }
  31944. },
  31945. frontBuff: {
  31946. height: math.unit(7, "feet"),
  31947. name: "Front (Buff)",
  31948. image: {
  31949. source: "./media/characters/issilora/front-buff.svg",
  31950. extra: 2310 / 2035,
  31951. bottom: 335 / 2645
  31952. }
  31953. },
  31954. head: {
  31955. height: math.unit(1.94, "feet"),
  31956. name: "Head",
  31957. image: {
  31958. source: "./media/characters/issilora/head.svg"
  31959. }
  31960. },
  31961. },
  31962. [
  31963. {
  31964. name: "Minimum",
  31965. height: math.unit(7, "feet")
  31966. },
  31967. {
  31968. name: "Comfortable",
  31969. height: math.unit(17, "feet")
  31970. },
  31971. {
  31972. name: "Fun Size",
  31973. height: math.unit(47, "feet")
  31974. },
  31975. {
  31976. name: "Natural Macro",
  31977. height: math.unit(137, "feet"),
  31978. default: true
  31979. },
  31980. {
  31981. name: "Maximum Kaiju",
  31982. height: math.unit(397, "feet")
  31983. },
  31984. ]
  31985. ))
  31986. characterMakers.push(() => makeCharacter(
  31987. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31988. {
  31989. front: {
  31990. height: math.unit(50 + 9/12, "feet"),
  31991. weight: math.unit(32.8, "tons"),
  31992. name: "Front",
  31993. image: {
  31994. source: "./media/characters/irb'iiritaahn/front.svg",
  31995. extra: 1878/1826,
  31996. bottom: 326/2204
  31997. }
  31998. },
  31999. back: {
  32000. height: math.unit(50 + 9/12, "feet"),
  32001. weight: math.unit(32.8, "tons"),
  32002. name: "Back",
  32003. image: {
  32004. source: "./media/characters/irb'iiritaahn/back.svg",
  32005. extra: 2052/2018,
  32006. bottom: 152/2204
  32007. }
  32008. },
  32009. head: {
  32010. height: math.unit(12.86, "feet"),
  32011. name: "Head",
  32012. image: {
  32013. source: "./media/characters/irb'iiritaahn/head.svg"
  32014. }
  32015. },
  32016. maw: {
  32017. height: math.unit(9.66, "feet"),
  32018. name: "Maw",
  32019. image: {
  32020. source: "./media/characters/irb'iiritaahn/maw.svg"
  32021. }
  32022. },
  32023. frontDick: {
  32024. height: math.unit(8.78461, "feet"),
  32025. name: "Front Dick",
  32026. image: {
  32027. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32028. }
  32029. },
  32030. rearDick: {
  32031. height: math.unit(8.78461, "feet"),
  32032. name: "Rear Dick",
  32033. image: {
  32034. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32035. }
  32036. },
  32037. rearDickUnfolded: {
  32038. height: math.unit(8.78, "feet"),
  32039. name: "Rear Dick (Unfolded)",
  32040. image: {
  32041. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32042. }
  32043. },
  32044. wings: {
  32045. height: math.unit(43, "feet"),
  32046. name: "Wings",
  32047. image: {
  32048. source: "./media/characters/irb'iiritaahn/wings.svg"
  32049. }
  32050. },
  32051. },
  32052. [
  32053. {
  32054. name: "Macro",
  32055. height: math.unit(50 + 9/12, "feet"),
  32056. default: true
  32057. },
  32058. ]
  32059. ))
  32060. characterMakers.push(() => makeCharacter(
  32061. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32062. {
  32063. front: {
  32064. height: math.unit(205, "cm"),
  32065. weight: math.unit(102, "kg"),
  32066. name: "Front",
  32067. image: {
  32068. source: "./media/characters/irbisgreif/front.svg",
  32069. extra: 785/706,
  32070. bottom: 13/798
  32071. }
  32072. },
  32073. back: {
  32074. height: math.unit(205, "cm"),
  32075. weight: math.unit(102, "kg"),
  32076. name: "Back",
  32077. image: {
  32078. source: "./media/characters/irbisgreif/back.svg",
  32079. extra: 713/701,
  32080. bottom: 26/739
  32081. }
  32082. },
  32083. frontDressed: {
  32084. height: math.unit(216, "cm"),
  32085. weight: math.unit(102, "kg"),
  32086. name: "Front-dressed",
  32087. image: {
  32088. source: "./media/characters/irbisgreif/front-dressed.svg",
  32089. extra: 902/776,
  32090. bottom: 14/916
  32091. }
  32092. },
  32093. sideDressed: {
  32094. height: math.unit(195, "cm"),
  32095. weight: math.unit(102, "kg"),
  32096. name: "Side-dressed",
  32097. image: {
  32098. source: "./media/characters/irbisgreif/side-dressed.svg",
  32099. extra: 788/688,
  32100. bottom: 21/809
  32101. }
  32102. },
  32103. backDressed: {
  32104. height: math.unit(216, "cm"),
  32105. weight: math.unit(102, "kg"),
  32106. name: "Back-dressed",
  32107. image: {
  32108. source: "./media/characters/irbisgreif/back-dressed.svg",
  32109. extra: 901/783,
  32110. bottom: 10/911
  32111. }
  32112. },
  32113. dick: {
  32114. height: math.unit(0.49, "feet"),
  32115. name: "Dick",
  32116. image: {
  32117. source: "./media/characters/irbisgreif/dick.svg"
  32118. }
  32119. },
  32120. wingTop: {
  32121. height: math.unit(1.93 , "feet"),
  32122. name: "Wing-top",
  32123. image: {
  32124. source: "./media/characters/irbisgreif/wing-top.svg"
  32125. }
  32126. },
  32127. wingBottom: {
  32128. height: math.unit(1.93 , "feet"),
  32129. name: "Wing-bottom",
  32130. image: {
  32131. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32132. }
  32133. },
  32134. },
  32135. [
  32136. {
  32137. name: "Normal",
  32138. height: math.unit(216, "cm"),
  32139. default: true
  32140. },
  32141. ]
  32142. ))
  32143. characterMakers.push(() => makeCharacter(
  32144. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32145. {
  32146. front: {
  32147. height: math.unit(6, "feet"),
  32148. weight: math.unit(150, "lb"),
  32149. name: "Front",
  32150. image: {
  32151. source: "./media/characters/pride/front.svg",
  32152. extra: 1299/1230,
  32153. bottom: 18/1317
  32154. }
  32155. },
  32156. },
  32157. [
  32158. {
  32159. name: "Normal",
  32160. height: math.unit(7, "feet")
  32161. },
  32162. {
  32163. name: "Mini-macro",
  32164. height: math.unit(11, "feet")
  32165. },
  32166. {
  32167. name: "Macro",
  32168. height: math.unit(15, "meters"),
  32169. default: true
  32170. },
  32171. {
  32172. name: "Macro+",
  32173. height: math.unit(40, "meters")
  32174. },
  32175. ]
  32176. ))
  32177. characterMakers.push(() => makeCharacter(
  32178. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32179. {
  32180. front: {
  32181. height: math.unit(4 + 2 / 12, "feet"),
  32182. weight: math.unit(95, "lb"),
  32183. name: "Front",
  32184. image: {
  32185. source: "./media/characters/vaelophis-nyx/front.svg",
  32186. extra: 2532/2330,
  32187. bottom: 0/2532
  32188. }
  32189. },
  32190. back: {
  32191. height: math.unit(4 + 2 / 12, "feet"),
  32192. weight: math.unit(95, "lb"),
  32193. name: "Back",
  32194. image: {
  32195. source: "./media/characters/vaelophis-nyx/back.svg",
  32196. extra: 2484/2361,
  32197. bottom: 0/2484
  32198. }
  32199. },
  32200. feralSide: {
  32201. height: math.unit(2 + 1/12, "feet"),
  32202. weight: math.unit(20, "lb"),
  32203. name: "Feral (Side)",
  32204. image: {
  32205. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32206. extra: 1721/1581,
  32207. bottom: 70/1791
  32208. }
  32209. },
  32210. feralLazing: {
  32211. height: math.unit(1.08, "feet"),
  32212. weight: math.unit(20, "lb"),
  32213. name: "Feral (Lazing)",
  32214. image: {
  32215. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32216. extra: 822/822,
  32217. bottom: 248/1070
  32218. }
  32219. },
  32220. ear: {
  32221. height: math.unit(0.416, "feet"),
  32222. name: "Ear",
  32223. image: {
  32224. source: "./media/characters/vaelophis-nyx/ear.svg"
  32225. }
  32226. },
  32227. eye: {
  32228. height: math.unit(0.0748, "feet"),
  32229. name: "Eye",
  32230. image: {
  32231. source: "./media/characters/vaelophis-nyx/eye.svg"
  32232. }
  32233. },
  32234. mouth: {
  32235. height: math.unit(0.378, "feet"),
  32236. name: "Mouth",
  32237. image: {
  32238. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32239. }
  32240. },
  32241. spade: {
  32242. height: math.unit(0.55, "feet"),
  32243. name: "Spade",
  32244. image: {
  32245. source: "./media/characters/vaelophis-nyx/spade.svg"
  32246. }
  32247. },
  32248. },
  32249. [
  32250. {
  32251. name: "Normal",
  32252. height: math.unit(4 + 2/12, "feet"),
  32253. default: true
  32254. },
  32255. ]
  32256. ))
  32257. characterMakers.push(() => makeCharacter(
  32258. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32259. {
  32260. front: {
  32261. height: math.unit(7, "feet"),
  32262. weight: math.unit(231, "lb"),
  32263. name: "Front",
  32264. image: {
  32265. source: "./media/characters/flux/front.svg",
  32266. extra: 919/871,
  32267. bottom: 0/919
  32268. }
  32269. },
  32270. back: {
  32271. height: math.unit(7, "feet"),
  32272. weight: math.unit(231, "lb"),
  32273. name: "Back",
  32274. image: {
  32275. source: "./media/characters/flux/back.svg",
  32276. extra: 1040/992,
  32277. bottom: 0/1040
  32278. }
  32279. },
  32280. frontDressed: {
  32281. height: math.unit(7, "feet"),
  32282. weight: math.unit(231, "lb"),
  32283. name: "Front (Dressed)",
  32284. image: {
  32285. source: "./media/characters/flux/front-dressed.svg",
  32286. extra: 919/871,
  32287. bottom: 0/919
  32288. }
  32289. },
  32290. feralSide: {
  32291. height: math.unit(5, "feet"),
  32292. weight: math.unit(150, "lb"),
  32293. name: "Feral (Side)",
  32294. image: {
  32295. source: "./media/characters/flux/feral-side.svg",
  32296. extra: 598/528,
  32297. bottom: 28/626
  32298. }
  32299. },
  32300. head: {
  32301. height: math.unit(1.585, "feet"),
  32302. name: "Head",
  32303. image: {
  32304. source: "./media/characters/flux/head.svg"
  32305. }
  32306. },
  32307. headSide: {
  32308. height: math.unit(1.74, "feet"),
  32309. name: "Head (Side)",
  32310. image: {
  32311. source: "./media/characters/flux/head-side.svg"
  32312. }
  32313. },
  32314. headSideFire: {
  32315. height: math.unit(1.76, "feet"),
  32316. name: "Head (Side, Fire)",
  32317. image: {
  32318. source: "./media/characters/flux/head-side-fire.svg"
  32319. }
  32320. },
  32321. },
  32322. [
  32323. {
  32324. name: "Normal",
  32325. height: math.unit(7, "feet"),
  32326. default: true
  32327. },
  32328. ]
  32329. ))
  32330. characterMakers.push(() => makeCharacter(
  32331. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32332. {
  32333. front: {
  32334. height: math.unit(9, "feet"),
  32335. weight: math.unit(1012, "lb"),
  32336. name: "Front",
  32337. image: {
  32338. source: "./media/characters/ulfra-lupae/front.svg",
  32339. extra: 1083/1011,
  32340. bottom: 67/1150
  32341. }
  32342. },
  32343. },
  32344. [
  32345. {
  32346. name: "Micro",
  32347. height: math.unit(6, "inches")
  32348. },
  32349. {
  32350. name: "Socializing",
  32351. height: math.unit(6 + 5/12, "feet")
  32352. },
  32353. {
  32354. name: "Normal",
  32355. height: math.unit(9, "feet"),
  32356. default: true
  32357. },
  32358. {
  32359. name: "Macro",
  32360. height: math.unit(150, "feet")
  32361. },
  32362. ]
  32363. ))
  32364. characterMakers.push(() => makeCharacter(
  32365. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32366. {
  32367. front: {
  32368. height: math.unit(5 + 2/12, "feet"),
  32369. weight: math.unit(120, "lb"),
  32370. name: "Front",
  32371. image: {
  32372. source: "./media/characters/timber/front.svg",
  32373. extra: 2814/2705,
  32374. bottom: 181/2995
  32375. }
  32376. },
  32377. },
  32378. [
  32379. {
  32380. name: "Normal",
  32381. height: math.unit(5 + 2/12, "feet"),
  32382. default: true
  32383. },
  32384. ]
  32385. ))
  32386. characterMakers.push(() => makeCharacter(
  32387. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32388. {
  32389. front: {
  32390. height: math.unit(9, "feet"),
  32391. name: "Front",
  32392. image: {
  32393. source: "./media/characters/nicki/front.svg",
  32394. extra: 1240/990,
  32395. bottom: 45/1285
  32396. },
  32397. form: "anthro",
  32398. default: true
  32399. },
  32400. side: {
  32401. height: math.unit(9, "feet"),
  32402. name: "Side",
  32403. image: {
  32404. source: "./media/characters/nicki/side.svg",
  32405. extra: 1047/973,
  32406. bottom: 61/1108
  32407. },
  32408. form: "anthro"
  32409. },
  32410. back: {
  32411. height: math.unit(9, "feet"),
  32412. name: "Back",
  32413. image: {
  32414. source: "./media/characters/nicki/back.svg",
  32415. extra: 1006/965,
  32416. bottom: 39/1045
  32417. },
  32418. form: "anthro"
  32419. },
  32420. taur: {
  32421. height: math.unit(15, "feet"),
  32422. name: "Taur",
  32423. image: {
  32424. source: "./media/characters/nicki/taur.svg",
  32425. extra: 1592/1347,
  32426. bottom: 0/1592
  32427. },
  32428. form: "taur",
  32429. default: true
  32430. },
  32431. },
  32432. [
  32433. {
  32434. name: "Normal",
  32435. height: math.unit(9, "feet"),
  32436. form: "anthro",
  32437. default: true
  32438. },
  32439. {
  32440. name: "Normal",
  32441. height: math.unit(15, "feet"),
  32442. form: "taur",
  32443. default: true
  32444. }
  32445. ],
  32446. {
  32447. "anthro": {
  32448. name: "Anthro",
  32449. default: true
  32450. },
  32451. "taur": {
  32452. name: "Taur"
  32453. }
  32454. }
  32455. ))
  32456. characterMakers.push(() => makeCharacter(
  32457. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32458. {
  32459. front: {
  32460. height: math.unit(7 + 10/12, "feet"),
  32461. weight: math.unit(3.5, "tons"),
  32462. name: "Front",
  32463. image: {
  32464. source: "./media/characters/lee/front.svg",
  32465. extra: 1773/1615,
  32466. bottom: 86/1859
  32467. }
  32468. },
  32469. hand: {
  32470. height: math.unit(1.78, "feet"),
  32471. name: "Hand",
  32472. image: {
  32473. source: "./media/characters/lee/hand.svg"
  32474. }
  32475. },
  32476. maw: {
  32477. height: math.unit(1.18, "feet"),
  32478. name: "Maw",
  32479. image: {
  32480. source: "./media/characters/lee/maw.svg"
  32481. }
  32482. },
  32483. },
  32484. [
  32485. {
  32486. name: "Normal",
  32487. height: math.unit(7 + 10/12, "feet"),
  32488. default: true
  32489. },
  32490. ]
  32491. ))
  32492. characterMakers.push(() => makeCharacter(
  32493. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32494. {
  32495. front: {
  32496. height: math.unit(9, "feet"),
  32497. name: "Front",
  32498. image: {
  32499. source: "./media/characters/guti/front.svg",
  32500. extra: 4551/4355,
  32501. bottom: 123/4674
  32502. }
  32503. },
  32504. tongue: {
  32505. height: math.unit(1, "feet"),
  32506. name: "Tongue",
  32507. image: {
  32508. source: "./media/characters/guti/tongue.svg"
  32509. }
  32510. },
  32511. paw: {
  32512. height: math.unit(1.18, "feet"),
  32513. name: "Paw",
  32514. image: {
  32515. source: "./media/characters/guti/paw.svg"
  32516. }
  32517. },
  32518. },
  32519. [
  32520. {
  32521. name: "Normal",
  32522. height: math.unit(9, "feet"),
  32523. default: true
  32524. },
  32525. ]
  32526. ))
  32527. characterMakers.push(() => makeCharacter(
  32528. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32529. {
  32530. side: {
  32531. height: math.unit(5, "meters"),
  32532. name: "Side",
  32533. image: {
  32534. source: "./media/characters/vesper/side.svg",
  32535. extra: 1605/1518,
  32536. bottom: 0/1605
  32537. }
  32538. },
  32539. },
  32540. [
  32541. {
  32542. name: "Small",
  32543. height: math.unit(5, "meters")
  32544. },
  32545. {
  32546. name: "Sage",
  32547. height: math.unit(100, "meters"),
  32548. default: true
  32549. },
  32550. {
  32551. name: "Fun Size",
  32552. height: math.unit(600, "meters")
  32553. },
  32554. {
  32555. name: "Goddess",
  32556. height: math.unit(20000, "km")
  32557. },
  32558. {
  32559. name: "Maximum",
  32560. height: math.unit(5, "galaxies")
  32561. },
  32562. ]
  32563. ))
  32564. characterMakers.push(() => makeCharacter(
  32565. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32566. {
  32567. front: {
  32568. height: math.unit(6 + 3/12, "feet"),
  32569. weight: math.unit(190, "lb"),
  32570. name: "Front",
  32571. image: {
  32572. source: "./media/characters/gawain/front.svg",
  32573. extra: 2222/2139,
  32574. bottom: 90/2312
  32575. }
  32576. },
  32577. back: {
  32578. height: math.unit(6 + 3/12, "feet"),
  32579. weight: math.unit(190, "lb"),
  32580. name: "Back",
  32581. image: {
  32582. source: "./media/characters/gawain/back.svg",
  32583. extra: 2199/2111,
  32584. bottom: 73/2272
  32585. }
  32586. },
  32587. },
  32588. [
  32589. {
  32590. name: "Normal",
  32591. height: math.unit(6 + 3/12, "feet"),
  32592. default: true
  32593. },
  32594. ]
  32595. ))
  32596. characterMakers.push(() => makeCharacter(
  32597. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32598. {
  32599. side: {
  32600. height: math.unit(3.5, "meters"),
  32601. weight: math.unit(16000, "lb"),
  32602. name: "Side",
  32603. image: {
  32604. source: "./media/characters/dascalti/side.svg",
  32605. extra: 392/273,
  32606. bottom: 47/439
  32607. }
  32608. },
  32609. breath: {
  32610. height: math.unit(7.4, "feet"),
  32611. name: "Breath",
  32612. image: {
  32613. source: "./media/characters/dascalti/breath.svg"
  32614. }
  32615. },
  32616. fed: {
  32617. height: math.unit(3.6, "meters"),
  32618. weight: math.unit(16000, "lb"),
  32619. name: "Fed",
  32620. image: {
  32621. source: "./media/characters/dascalti/fed.svg",
  32622. extra: 1419/820,
  32623. bottom: 95/1514
  32624. }
  32625. },
  32626. },
  32627. [
  32628. {
  32629. name: "Normal",
  32630. height: math.unit(3.5, "meters"),
  32631. default: true
  32632. },
  32633. ]
  32634. ))
  32635. characterMakers.push(() => makeCharacter(
  32636. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32637. {
  32638. front: {
  32639. height: math.unit(3 + 5/12, "feet"),
  32640. name: "Front",
  32641. image: {
  32642. source: "./media/characters/mauve/front.svg",
  32643. extra: 1126/1033,
  32644. bottom: 65/1191
  32645. }
  32646. },
  32647. side: {
  32648. height: math.unit(3 + 5/12, "feet"),
  32649. name: "Side",
  32650. image: {
  32651. source: "./media/characters/mauve/side.svg",
  32652. extra: 1089/1001,
  32653. bottom: 29/1118
  32654. }
  32655. },
  32656. back: {
  32657. height: math.unit(3 + 5/12, "feet"),
  32658. name: "Back",
  32659. image: {
  32660. source: "./media/characters/mauve/back.svg",
  32661. extra: 1173/1053,
  32662. bottom: 109/1282
  32663. }
  32664. },
  32665. },
  32666. [
  32667. {
  32668. name: "Normal",
  32669. height: math.unit(3 + 5/12, "feet"),
  32670. default: true
  32671. },
  32672. ]
  32673. ))
  32674. characterMakers.push(() => makeCharacter(
  32675. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32676. {
  32677. front: {
  32678. height: math.unit(6 + 3/12, "feet"),
  32679. weight: math.unit(430, "lb"),
  32680. name: "Front",
  32681. image: {
  32682. source: "./media/characters/carlos/front.svg",
  32683. extra: 1964/1913,
  32684. bottom: 70/2034
  32685. }
  32686. },
  32687. },
  32688. [
  32689. {
  32690. name: "Normal",
  32691. height: math.unit(6 + 3/12, "feet"),
  32692. default: true
  32693. },
  32694. ]
  32695. ))
  32696. characterMakers.push(() => makeCharacter(
  32697. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32698. {
  32699. back: {
  32700. height: math.unit(5 + 10/12, "feet"),
  32701. weight: math.unit(200, "lb"),
  32702. name: "Back",
  32703. image: {
  32704. source: "./media/characters/jax/back.svg",
  32705. extra: 764/739,
  32706. bottom: 25/789
  32707. }
  32708. },
  32709. },
  32710. [
  32711. {
  32712. name: "Normal",
  32713. height: math.unit(5 + 10/12, "feet"),
  32714. default: true
  32715. },
  32716. ]
  32717. ))
  32718. characterMakers.push(() => makeCharacter(
  32719. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32720. {
  32721. front: {
  32722. height: math.unit(8, "feet"),
  32723. weight: math.unit(250, "lb"),
  32724. name: "Front",
  32725. image: {
  32726. source: "./media/characters/eikthynir/front.svg",
  32727. extra: 1332/1166,
  32728. bottom: 82/1414
  32729. }
  32730. },
  32731. back: {
  32732. height: math.unit(8, "feet"),
  32733. weight: math.unit(250, "lb"),
  32734. name: "Back",
  32735. image: {
  32736. source: "./media/characters/eikthynir/back.svg",
  32737. extra: 1342/1190,
  32738. bottom: 19/1361
  32739. }
  32740. },
  32741. dick: {
  32742. height: math.unit(2.35, "feet"),
  32743. name: "Dick",
  32744. image: {
  32745. source: "./media/characters/eikthynir/dick.svg"
  32746. }
  32747. },
  32748. },
  32749. [
  32750. {
  32751. name: "Normal",
  32752. height: math.unit(8, "feet"),
  32753. default: true
  32754. },
  32755. ]
  32756. ))
  32757. characterMakers.push(() => makeCharacter(
  32758. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32759. {
  32760. front: {
  32761. height: math.unit(99, "meters"),
  32762. weight: math.unit(13000, "tons"),
  32763. name: "Front",
  32764. image: {
  32765. source: "./media/characters/zlmos/front.svg",
  32766. extra: 2202/1992,
  32767. bottom: 315/2517
  32768. }
  32769. },
  32770. },
  32771. [
  32772. {
  32773. name: "Macro",
  32774. height: math.unit(99, "meters"),
  32775. default: true
  32776. },
  32777. ]
  32778. ))
  32779. characterMakers.push(() => makeCharacter(
  32780. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32781. {
  32782. front: {
  32783. height: math.unit(6 + 5/12, "feet"),
  32784. name: "Front",
  32785. image: {
  32786. source: "./media/characters/purri/front.svg",
  32787. extra: 1698/1610,
  32788. bottom: 32/1730
  32789. }
  32790. },
  32791. frontAlt: {
  32792. height: math.unit(6 + 5/12, "feet"),
  32793. name: "Front (Alt)",
  32794. image: {
  32795. source: "./media/characters/purri/front-alt.svg",
  32796. extra: 450/420,
  32797. bottom: 26/476
  32798. }
  32799. },
  32800. boots: {
  32801. height: math.unit(5.5, "feet"),
  32802. name: "Boots",
  32803. image: {
  32804. source: "./media/characters/purri/boots.svg",
  32805. extra: 905/853,
  32806. bottom: 18/923
  32807. }
  32808. },
  32809. lying: {
  32810. height: math.unit(2, "feet"),
  32811. name: "Lying",
  32812. image: {
  32813. source: "./media/characters/purri/lying.svg",
  32814. extra: 940/843,
  32815. bottom: 146/1086
  32816. }
  32817. },
  32818. devious: {
  32819. height: math.unit(1.77, "feet"),
  32820. name: "Devious",
  32821. image: {
  32822. source: "./media/characters/purri/devious.svg",
  32823. extra: 1440/1155,
  32824. bottom: 147/1587
  32825. }
  32826. },
  32827. bean: {
  32828. height: math.unit(1.94, "feet"),
  32829. name: "Bean",
  32830. image: {
  32831. source: "./media/characters/purri/bean.svg"
  32832. }
  32833. },
  32834. },
  32835. [
  32836. {
  32837. name: "Micro",
  32838. height: math.unit(1, "mm")
  32839. },
  32840. {
  32841. name: "Normal",
  32842. height: math.unit(6 + 5/12, "feet"),
  32843. default: true
  32844. },
  32845. {
  32846. name: "Macro :3c",
  32847. height: math.unit(2, "miles")
  32848. },
  32849. ]
  32850. ))
  32851. characterMakers.push(() => makeCharacter(
  32852. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32853. {
  32854. front: {
  32855. height: math.unit(6 + 2/12, "feet"),
  32856. weight: math.unit(250, "lb"),
  32857. name: "Front",
  32858. image: {
  32859. source: "./media/characters/moonlight/front.svg",
  32860. extra: 1044/908,
  32861. bottom: 56/1100
  32862. }
  32863. },
  32864. feral: {
  32865. height: math.unit(3 + 1/12, "feet"),
  32866. weight: math.unit(50, "kg"),
  32867. name: "Feral",
  32868. image: {
  32869. source: "./media/characters/moonlight/feral.svg",
  32870. extra: 3705/2791,
  32871. bottom: 145/3850
  32872. }
  32873. },
  32874. paw: {
  32875. height: math.unit(1, "feet"),
  32876. name: "Paw",
  32877. image: {
  32878. source: "./media/characters/moonlight/paw.svg"
  32879. }
  32880. },
  32881. paws: {
  32882. height: math.unit(0.98, "feet"),
  32883. name: "Paws",
  32884. image: {
  32885. source: "./media/characters/moonlight/paws.svg",
  32886. extra: 939/939,
  32887. bottom: 50/989
  32888. }
  32889. },
  32890. mouth: {
  32891. height: math.unit(0.48, "feet"),
  32892. name: "Mouth",
  32893. image: {
  32894. source: "./media/characters/moonlight/mouth.svg"
  32895. }
  32896. },
  32897. dick: {
  32898. height: math.unit(1.46, "feet"),
  32899. name: "Dick",
  32900. image: {
  32901. source: "./media/characters/moonlight/dick.svg"
  32902. }
  32903. },
  32904. },
  32905. [
  32906. {
  32907. name: "Normal",
  32908. height: math.unit(6 + 2/12, "feet"),
  32909. default: true
  32910. },
  32911. {
  32912. name: "Macro",
  32913. height: math.unit(300, "feet")
  32914. },
  32915. {
  32916. name: "Macro+",
  32917. height: math.unit(1, "mile")
  32918. },
  32919. {
  32920. name: "Mt. Moon",
  32921. height: math.unit(5, "miles")
  32922. },
  32923. {
  32924. name: "Megamacro",
  32925. height: math.unit(15, "miles")
  32926. },
  32927. ]
  32928. ))
  32929. characterMakers.push(() => makeCharacter(
  32930. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32931. {
  32932. back: {
  32933. height: math.unit(6, "feet"),
  32934. weight: math.unit(150, "lb"),
  32935. name: "Back",
  32936. image: {
  32937. source: "./media/characters/sylen/back.svg",
  32938. extra: 1335/1273,
  32939. bottom: 107/1442
  32940. }
  32941. },
  32942. },
  32943. [
  32944. {
  32945. name: "Normal",
  32946. height: math.unit(5 + 5/12, "feet")
  32947. },
  32948. {
  32949. name: "Megamacro",
  32950. height: math.unit(3, "miles"),
  32951. default: true
  32952. },
  32953. ]
  32954. ))
  32955. characterMakers.push(() => makeCharacter(
  32956. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32957. {
  32958. front: {
  32959. height: math.unit(6, "feet"),
  32960. weight: math.unit(190, "lb"),
  32961. name: "Front",
  32962. image: {
  32963. source: "./media/characters/huttser/front.svg",
  32964. extra: 1152/1058,
  32965. bottom: 23/1175
  32966. }
  32967. },
  32968. side: {
  32969. height: math.unit(6, "feet"),
  32970. weight: math.unit(190, "lb"),
  32971. name: "Side",
  32972. image: {
  32973. source: "./media/characters/huttser/side.svg",
  32974. extra: 1174/1065,
  32975. bottom: 18/1192
  32976. }
  32977. },
  32978. back: {
  32979. height: math.unit(6, "feet"),
  32980. weight: math.unit(190, "lb"),
  32981. name: "Back",
  32982. image: {
  32983. source: "./media/characters/huttser/back.svg",
  32984. extra: 1158/1056,
  32985. bottom: 12/1170
  32986. }
  32987. },
  32988. },
  32989. [
  32990. ]
  32991. ))
  32992. characterMakers.push(() => makeCharacter(
  32993. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32994. {
  32995. side: {
  32996. height: math.unit(12 + 9/12, "feet"),
  32997. weight: math.unit(15000, "lb"),
  32998. name: "Side",
  32999. image: {
  33000. source: "./media/characters/faan/side.svg",
  33001. extra: 2747/2697,
  33002. bottom: 0/2747
  33003. }
  33004. },
  33005. front: {
  33006. height: math.unit(12 + 9/12, "feet"),
  33007. weight: math.unit(15000, "lb"),
  33008. name: "Front",
  33009. image: {
  33010. source: "./media/characters/faan/front.svg",
  33011. extra: 607/571,
  33012. bottom: 24/631
  33013. }
  33014. },
  33015. head: {
  33016. height: math.unit(2.85, "feet"),
  33017. name: "Head",
  33018. image: {
  33019. source: "./media/characters/faan/head.svg"
  33020. }
  33021. },
  33022. headAlt: {
  33023. height: math.unit(3.13, "feet"),
  33024. name: "Head-alt",
  33025. image: {
  33026. source: "./media/characters/faan/head-alt.svg"
  33027. }
  33028. },
  33029. },
  33030. [
  33031. {
  33032. name: "Normal",
  33033. height: math.unit(12 + 9/12, "feet"),
  33034. default: true
  33035. },
  33036. ]
  33037. ))
  33038. characterMakers.push(() => makeCharacter(
  33039. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33040. {
  33041. front: {
  33042. height: math.unit(6, "feet"),
  33043. weight: math.unit(300, "lb"),
  33044. name: "Front",
  33045. image: {
  33046. source: "./media/characters/tanio/front.svg",
  33047. extra: 711/673,
  33048. bottom: 25/736
  33049. }
  33050. },
  33051. },
  33052. [
  33053. {
  33054. name: "Normal",
  33055. height: math.unit(6, "feet"),
  33056. default: true
  33057. },
  33058. ]
  33059. ))
  33060. characterMakers.push(() => makeCharacter(
  33061. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33062. {
  33063. front: {
  33064. height: math.unit(3, "inches"),
  33065. name: "Front",
  33066. image: {
  33067. source: "./media/characters/noboru/front.svg",
  33068. extra: 1039/932,
  33069. bottom: 18/1057
  33070. }
  33071. },
  33072. },
  33073. [
  33074. {
  33075. name: "Micro",
  33076. height: math.unit(3, "inches"),
  33077. default: true
  33078. },
  33079. ]
  33080. ))
  33081. characterMakers.push(() => makeCharacter(
  33082. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33083. {
  33084. front: {
  33085. height: math.unit(1.85, "meters"),
  33086. weight: math.unit(80, "kg"),
  33087. name: "Front",
  33088. image: {
  33089. source: "./media/characters/daniel-barrett/front.svg",
  33090. extra: 355/337,
  33091. bottom: 9/364
  33092. }
  33093. },
  33094. },
  33095. [
  33096. {
  33097. name: "Pico",
  33098. height: math.unit(0.0433, "mm")
  33099. },
  33100. {
  33101. name: "Nano",
  33102. height: math.unit(1.5, "mm")
  33103. },
  33104. {
  33105. name: "Micro",
  33106. height: math.unit(5.3, "cm"),
  33107. default: true
  33108. },
  33109. {
  33110. name: "Normal",
  33111. height: math.unit(1.85, "meters")
  33112. },
  33113. {
  33114. name: "Macro",
  33115. height: math.unit(64.7, "meters")
  33116. },
  33117. {
  33118. name: "Megamacro",
  33119. height: math.unit(2.26, "km")
  33120. },
  33121. {
  33122. name: "Gigamacro",
  33123. height: math.unit(79, "km")
  33124. },
  33125. {
  33126. name: "Teramacro",
  33127. height: math.unit(2765, "km")
  33128. },
  33129. {
  33130. name: "Petamacro",
  33131. height: math.unit(96678, "km")
  33132. },
  33133. ]
  33134. ))
  33135. characterMakers.push(() => makeCharacter(
  33136. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33137. {
  33138. front: {
  33139. height: math.unit(30, "meters"),
  33140. weight: math.unit(400, "tons"),
  33141. name: "Front",
  33142. image: {
  33143. source: "./media/characters/zeel/front.svg",
  33144. extra: 2599/2599,
  33145. bottom: 226/2825
  33146. }
  33147. },
  33148. },
  33149. [
  33150. {
  33151. name: "Macro",
  33152. height: math.unit(30, "meters"),
  33153. default: true
  33154. },
  33155. ]
  33156. ))
  33157. characterMakers.push(() => makeCharacter(
  33158. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33159. {
  33160. front: {
  33161. height: math.unit(6 + 7/12, "feet"),
  33162. weight: math.unit(210, "lb"),
  33163. name: "Front",
  33164. image: {
  33165. source: "./media/characters/tarn/front.svg",
  33166. extra: 3517/3220,
  33167. bottom: 91/3608
  33168. }
  33169. },
  33170. back: {
  33171. height: math.unit(6 + 7/12, "feet"),
  33172. weight: math.unit(210, "lb"),
  33173. name: "Back",
  33174. image: {
  33175. source: "./media/characters/tarn/back.svg",
  33176. extra: 3566/3241,
  33177. bottom: 34/3600
  33178. }
  33179. },
  33180. dick: {
  33181. height: math.unit(1.65, "feet"),
  33182. name: "Dick",
  33183. image: {
  33184. source: "./media/characters/tarn/dick.svg"
  33185. }
  33186. },
  33187. paw: {
  33188. height: math.unit(1.80, "feet"),
  33189. name: "Paw",
  33190. image: {
  33191. source: "./media/characters/tarn/paw.svg"
  33192. }
  33193. },
  33194. tongue: {
  33195. height: math.unit(0.97, "feet"),
  33196. name: "Tongue",
  33197. image: {
  33198. source: "./media/characters/tarn/tongue.svg"
  33199. }
  33200. },
  33201. },
  33202. [
  33203. {
  33204. name: "Micro",
  33205. height: math.unit(4, "inches")
  33206. },
  33207. {
  33208. name: "Normal",
  33209. height: math.unit(6 + 7/12, "feet"),
  33210. default: true
  33211. },
  33212. {
  33213. name: "Macro",
  33214. height: math.unit(300, "feet")
  33215. },
  33216. ]
  33217. ))
  33218. characterMakers.push(() => makeCharacter(
  33219. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33220. {
  33221. front: {
  33222. height: math.unit(5 + 7/12, "feet"),
  33223. weight: math.unit(80, "kg"),
  33224. name: "Front",
  33225. image: {
  33226. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33227. extra: 3023/2865,
  33228. bottom: 33/3056
  33229. }
  33230. },
  33231. back: {
  33232. height: math.unit(5 + 7/12, "feet"),
  33233. weight: math.unit(80, "kg"),
  33234. name: "Back",
  33235. image: {
  33236. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33237. extra: 3020/2886,
  33238. bottom: 30/3050
  33239. }
  33240. },
  33241. dick: {
  33242. height: math.unit(0.98, "feet"),
  33243. name: "Dick",
  33244. image: {
  33245. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33246. }
  33247. },
  33248. anatomy: {
  33249. height: math.unit(2.86, "feet"),
  33250. name: "Anatomy",
  33251. image: {
  33252. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33253. }
  33254. },
  33255. },
  33256. [
  33257. {
  33258. name: "Really Small",
  33259. height: math.unit(2, "inches")
  33260. },
  33261. {
  33262. name: "Micro",
  33263. height: math.unit(5.583, "inches")
  33264. },
  33265. {
  33266. name: "Normal",
  33267. height: math.unit(5 + 7/12, "feet"),
  33268. default: true
  33269. },
  33270. {
  33271. name: "Macro",
  33272. height: math.unit(67, "feet")
  33273. },
  33274. {
  33275. name: "Megamacro",
  33276. height: math.unit(134, "feet")
  33277. },
  33278. ]
  33279. ))
  33280. characterMakers.push(() => makeCharacter(
  33281. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33282. {
  33283. front: {
  33284. height: math.unit(9, "feet"),
  33285. weight: math.unit(120, "lb"),
  33286. name: "Front",
  33287. image: {
  33288. source: "./media/characters/sally/front.svg",
  33289. extra: 1506/1349,
  33290. bottom: 66/1572
  33291. }
  33292. },
  33293. },
  33294. [
  33295. {
  33296. name: "Normal",
  33297. height: math.unit(9, "feet"),
  33298. default: true
  33299. },
  33300. ]
  33301. ))
  33302. characterMakers.push(() => makeCharacter(
  33303. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33304. {
  33305. front: {
  33306. height: math.unit(8, "feet"),
  33307. weight: math.unit(900, "lb"),
  33308. name: "Front",
  33309. image: {
  33310. source: "./media/characters/owen/front.svg",
  33311. extra: 1761/1657,
  33312. bottom: 74/1835
  33313. }
  33314. },
  33315. side: {
  33316. height: math.unit(8, "feet"),
  33317. weight: math.unit(900, "lb"),
  33318. name: "Side",
  33319. image: {
  33320. source: "./media/characters/owen/side.svg",
  33321. extra: 1797/1734,
  33322. bottom: 30/1827
  33323. }
  33324. },
  33325. back: {
  33326. height: math.unit(8, "feet"),
  33327. weight: math.unit(900, "lb"),
  33328. name: "Back",
  33329. image: {
  33330. source: "./media/characters/owen/back.svg",
  33331. extra: 1796/1706,
  33332. bottom: 59/1855
  33333. }
  33334. },
  33335. maw: {
  33336. height: math.unit(1.76, "feet"),
  33337. name: "Maw",
  33338. image: {
  33339. source: "./media/characters/owen/maw.svg"
  33340. }
  33341. },
  33342. },
  33343. [
  33344. {
  33345. name: "Normal",
  33346. height: math.unit(8, "feet"),
  33347. default: true
  33348. },
  33349. ]
  33350. ))
  33351. characterMakers.push(() => makeCharacter(
  33352. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33353. {
  33354. front: {
  33355. height: math.unit(4, "feet"),
  33356. weight: math.unit(400, "lb"),
  33357. name: "Front",
  33358. image: {
  33359. source: "./media/characters/ryth/front.svg",
  33360. extra: 1920/1748,
  33361. bottom: 42/1962
  33362. }
  33363. },
  33364. back: {
  33365. height: math.unit(4, "feet"),
  33366. weight: math.unit(400, "lb"),
  33367. name: "Back",
  33368. image: {
  33369. source: "./media/characters/ryth/back.svg",
  33370. extra: 1897/1690,
  33371. bottom: 89/1986
  33372. }
  33373. },
  33374. mouth: {
  33375. height: math.unit(1.39, "feet"),
  33376. name: "Mouth",
  33377. image: {
  33378. source: "./media/characters/ryth/mouth.svg"
  33379. }
  33380. },
  33381. tailmaw: {
  33382. height: math.unit(1.23, "feet"),
  33383. name: "Tailmaw",
  33384. image: {
  33385. source: "./media/characters/ryth/tailmaw.svg"
  33386. }
  33387. },
  33388. goia: {
  33389. height: math.unit(4, "meters"),
  33390. weight: math.unit(10800, "lb"),
  33391. name: "Goia",
  33392. image: {
  33393. source: "./media/characters/ryth/goia.svg",
  33394. extra: 745/640,
  33395. bottom: 107/852
  33396. }
  33397. },
  33398. goiaFront: {
  33399. height: math.unit(4, "meters"),
  33400. weight: math.unit(10800, "lb"),
  33401. name: "Goia (Front)",
  33402. image: {
  33403. source: "./media/characters/ryth/goia-front.svg",
  33404. extra: 750/586,
  33405. bottom: 114/864
  33406. }
  33407. },
  33408. goiaMaw: {
  33409. height: math.unit(5.55, "feet"),
  33410. name: "Goia Maw",
  33411. image: {
  33412. source: "./media/characters/ryth/goia-maw.svg"
  33413. }
  33414. },
  33415. goiaForepaw: {
  33416. height: math.unit(3.5, "feet"),
  33417. name: "Goia Forepaw",
  33418. image: {
  33419. source: "./media/characters/ryth/goia-forepaw.svg"
  33420. }
  33421. },
  33422. goiaHindpaw: {
  33423. height: math.unit(5.55, "feet"),
  33424. name: "Goia Hindpaw",
  33425. image: {
  33426. source: "./media/characters/ryth/goia-hindpaw.svg"
  33427. }
  33428. },
  33429. },
  33430. [
  33431. {
  33432. name: "Normal",
  33433. height: math.unit(4, "feet"),
  33434. default: true
  33435. },
  33436. ]
  33437. ))
  33438. characterMakers.push(() => makeCharacter(
  33439. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33440. {
  33441. front: {
  33442. height: math.unit(7, "feet"),
  33443. weight: math.unit(180, "lb"),
  33444. name: "Front",
  33445. image: {
  33446. source: "./media/characters/necrolance/front.svg",
  33447. extra: 1062/947,
  33448. bottom: 41/1103
  33449. }
  33450. },
  33451. back: {
  33452. height: math.unit(7, "feet"),
  33453. weight: math.unit(180, "lb"),
  33454. name: "Back",
  33455. image: {
  33456. source: "./media/characters/necrolance/back.svg",
  33457. extra: 1045/984,
  33458. bottom: 14/1059
  33459. }
  33460. },
  33461. wing: {
  33462. height: math.unit(2.67, "feet"),
  33463. name: "Wing",
  33464. image: {
  33465. source: "./media/characters/necrolance/wing.svg"
  33466. }
  33467. },
  33468. },
  33469. [
  33470. {
  33471. name: "Normal",
  33472. height: math.unit(7, "feet"),
  33473. default: true
  33474. },
  33475. ]
  33476. ))
  33477. characterMakers.push(() => makeCharacter(
  33478. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33479. {
  33480. front: {
  33481. height: math.unit(76, "meters"),
  33482. weight: math.unit(30000, "tons"),
  33483. name: "Front",
  33484. image: {
  33485. source: "./media/characters/tyler/front.svg",
  33486. extra: 1640/1640,
  33487. bottom: 114/1754
  33488. }
  33489. },
  33490. },
  33491. [
  33492. {
  33493. name: "Macro",
  33494. height: math.unit(76, "meters"),
  33495. default: true
  33496. },
  33497. ]
  33498. ))
  33499. characterMakers.push(() => makeCharacter(
  33500. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33501. {
  33502. front: {
  33503. height: math.unit(4 + 11/12, "feet"),
  33504. weight: math.unit(132, "lb"),
  33505. name: "Front",
  33506. image: {
  33507. source: "./media/characters/icey/front.svg",
  33508. extra: 2750/2550,
  33509. bottom: 33/2783
  33510. }
  33511. },
  33512. back: {
  33513. height: math.unit(4 + 11/12, "feet"),
  33514. weight: math.unit(132, "lb"),
  33515. name: "Back",
  33516. image: {
  33517. source: "./media/characters/icey/back.svg",
  33518. extra: 2624/2481,
  33519. bottom: 35/2659
  33520. }
  33521. },
  33522. },
  33523. [
  33524. {
  33525. name: "Normal",
  33526. height: math.unit(4 + 11/12, "feet"),
  33527. default: true
  33528. },
  33529. ]
  33530. ))
  33531. characterMakers.push(() => makeCharacter(
  33532. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33533. {
  33534. front: {
  33535. height: math.unit(100, "feet"),
  33536. weight: math.unit(0, "lb"),
  33537. name: "Front",
  33538. image: {
  33539. source: "./media/characters/smile/front.svg",
  33540. extra: 2983/2912,
  33541. bottom: 162/3145
  33542. }
  33543. },
  33544. back: {
  33545. height: math.unit(100, "feet"),
  33546. weight: math.unit(0, "lb"),
  33547. name: "Back",
  33548. image: {
  33549. source: "./media/characters/smile/back.svg",
  33550. extra: 3143/3031,
  33551. bottom: 91/3234
  33552. }
  33553. },
  33554. head: {
  33555. height: math.unit(26.3, "feet"),
  33556. weight: math.unit(0, "lb"),
  33557. name: "Head",
  33558. image: {
  33559. source: "./media/characters/smile/head.svg"
  33560. }
  33561. },
  33562. collar: {
  33563. height: math.unit(5.3, "feet"),
  33564. weight: math.unit(0, "lb"),
  33565. name: "Collar",
  33566. image: {
  33567. source: "./media/characters/smile/collar.svg"
  33568. }
  33569. },
  33570. },
  33571. [
  33572. {
  33573. name: "Macro",
  33574. height: math.unit(100, "feet"),
  33575. default: true
  33576. },
  33577. ]
  33578. ))
  33579. characterMakers.push(() => makeCharacter(
  33580. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33581. {
  33582. dragon: {
  33583. height: math.unit(26, "feet"),
  33584. weight: math.unit(36, "tons"),
  33585. name: "Dragon",
  33586. image: {
  33587. source: "./media/characters/arimphae/dragon.svg",
  33588. extra: 1574/983,
  33589. bottom: 357/1931
  33590. }
  33591. },
  33592. drake: {
  33593. height: math.unit(9, "feet"),
  33594. weight: math.unit(1.5, "tons"),
  33595. name: "Drake",
  33596. image: {
  33597. source: "./media/characters/arimphae/drake.svg",
  33598. extra: 1120/925,
  33599. bottom: 435/1555
  33600. }
  33601. },
  33602. },
  33603. [
  33604. {
  33605. name: "Small",
  33606. height: math.unit(26*5/9, "feet")
  33607. },
  33608. {
  33609. name: "Normal",
  33610. height: math.unit(26, "feet"),
  33611. default: true
  33612. },
  33613. ]
  33614. ))
  33615. characterMakers.push(() => makeCharacter(
  33616. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33617. {
  33618. front: {
  33619. height: math.unit(8 + 9/12, "feet"),
  33620. name: "Front",
  33621. image: {
  33622. source: "./media/characters/xander/front.svg",
  33623. extra: 1237/974,
  33624. bottom: 94/1331
  33625. }
  33626. },
  33627. },
  33628. [
  33629. {
  33630. name: "Normal",
  33631. height: math.unit(8 + 9/12, "feet"),
  33632. default: true
  33633. },
  33634. {
  33635. name: "Gaze Grabber",
  33636. height: math.unit(13 + 8/12, "feet")
  33637. },
  33638. {
  33639. name: "Jaw Dropper",
  33640. height: math.unit(27, "feet")
  33641. },
  33642. {
  33643. name: "Show Stopper",
  33644. height: math.unit(136, "feet")
  33645. },
  33646. {
  33647. name: "Superstar",
  33648. height: math.unit(1.9e6, "miles")
  33649. },
  33650. ]
  33651. ))
  33652. characterMakers.push(() => makeCharacter(
  33653. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33654. {
  33655. side: {
  33656. height: math.unit(2100, "feet"),
  33657. name: "Side",
  33658. image: {
  33659. source: "./media/characters/osiris/side.svg",
  33660. extra: 1105/939,
  33661. bottom: 167/1272
  33662. }
  33663. },
  33664. },
  33665. [
  33666. {
  33667. name: "Macro",
  33668. height: math.unit(2100, "feet"),
  33669. default: true
  33670. },
  33671. ]
  33672. ))
  33673. characterMakers.push(() => makeCharacter(
  33674. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33675. {
  33676. front: {
  33677. height: math.unit(6 + 8/12, "feet"),
  33678. weight: math.unit(225, "lb"),
  33679. name: "Front",
  33680. image: {
  33681. source: "./media/characters/rhys-londe/front.svg",
  33682. extra: 2258/2141,
  33683. bottom: 188/2446
  33684. }
  33685. },
  33686. back: {
  33687. height: math.unit(6 + 8/12, "feet"),
  33688. weight: math.unit(225, "lb"),
  33689. name: "Back",
  33690. image: {
  33691. source: "./media/characters/rhys-londe/back.svg",
  33692. extra: 2237/2137,
  33693. bottom: 63/2300
  33694. }
  33695. },
  33696. frontNsfw: {
  33697. height: math.unit(6 + 8/12, "feet"),
  33698. weight: math.unit(225, "lb"),
  33699. name: "Front (NSFW)",
  33700. image: {
  33701. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33702. extra: 2258/2141,
  33703. bottom: 188/2446
  33704. }
  33705. },
  33706. backNsfw: {
  33707. height: math.unit(6 + 8/12, "feet"),
  33708. weight: math.unit(225, "lb"),
  33709. name: "Back (NSFW)",
  33710. image: {
  33711. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33712. extra: 2237/2137,
  33713. bottom: 63/2300
  33714. }
  33715. },
  33716. dick: {
  33717. height: math.unit(30, "inches"),
  33718. name: "Dick",
  33719. image: {
  33720. source: "./media/characters/rhys-londe/dick.svg"
  33721. }
  33722. },
  33723. maw: {
  33724. height: math.unit(1.6, "feet"),
  33725. name: "Maw",
  33726. image: {
  33727. source: "./media/characters/rhys-londe/maw.svg"
  33728. }
  33729. },
  33730. },
  33731. [
  33732. {
  33733. name: "Normal",
  33734. height: math.unit(6 + 8/12, "feet"),
  33735. default: true
  33736. },
  33737. ]
  33738. ))
  33739. characterMakers.push(() => makeCharacter(
  33740. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33741. {
  33742. front: {
  33743. height: math.unit(3 + 10/12, "feet"),
  33744. weight: math.unit(90, "lb"),
  33745. name: "Front",
  33746. image: {
  33747. source: "./media/characters/taivas-ensim/front.svg",
  33748. extra: 1327/1216,
  33749. bottom: 96/1423
  33750. }
  33751. },
  33752. back: {
  33753. height: math.unit(3 + 10/12, "feet"),
  33754. weight: math.unit(90, "lb"),
  33755. name: "Back",
  33756. image: {
  33757. source: "./media/characters/taivas-ensim/back.svg",
  33758. extra: 1355/1247,
  33759. bottom: 11/1366
  33760. }
  33761. },
  33762. frontNsfw: {
  33763. height: math.unit(3 + 10/12, "feet"),
  33764. weight: math.unit(90, "lb"),
  33765. name: "Front (NSFW)",
  33766. image: {
  33767. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33768. extra: 1327/1216,
  33769. bottom: 96/1423
  33770. }
  33771. },
  33772. backNsfw: {
  33773. height: math.unit(3 + 10/12, "feet"),
  33774. weight: math.unit(90, "lb"),
  33775. name: "Back (NSFW)",
  33776. image: {
  33777. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33778. extra: 1355/1247,
  33779. bottom: 11/1366
  33780. }
  33781. },
  33782. },
  33783. [
  33784. {
  33785. name: "Normal",
  33786. height: math.unit(3 + 10/12, "feet"),
  33787. default: true
  33788. },
  33789. ]
  33790. ))
  33791. characterMakers.push(() => makeCharacter(
  33792. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33793. {
  33794. front: {
  33795. height: math.unit(9 + 6/12, "feet"),
  33796. weight: math.unit(940, "lb"),
  33797. name: "Front",
  33798. image: {
  33799. source: "./media/characters/byliss/front.svg",
  33800. extra: 1327/1290,
  33801. bottom: 82/1409
  33802. }
  33803. },
  33804. back: {
  33805. height: math.unit(9 + 6/12, "feet"),
  33806. weight: math.unit(940, "lb"),
  33807. name: "Back",
  33808. image: {
  33809. source: "./media/characters/byliss/back.svg",
  33810. extra: 1376/1349,
  33811. bottom: 9/1385
  33812. }
  33813. },
  33814. frontNsfw: {
  33815. height: math.unit(9 + 6/12, "feet"),
  33816. weight: math.unit(940, "lb"),
  33817. name: "Front (NSFW)",
  33818. image: {
  33819. source: "./media/characters/byliss/front-nsfw.svg",
  33820. extra: 1327/1290,
  33821. bottom: 82/1409
  33822. }
  33823. },
  33824. backNsfw: {
  33825. height: math.unit(9 + 6/12, "feet"),
  33826. weight: math.unit(940, "lb"),
  33827. name: "Back (NSFW)",
  33828. image: {
  33829. source: "./media/characters/byliss/back-nsfw.svg",
  33830. extra: 1376/1349,
  33831. bottom: 9/1385
  33832. }
  33833. },
  33834. },
  33835. [
  33836. {
  33837. name: "Normal",
  33838. height: math.unit(9 + 6/12, "feet"),
  33839. default: true
  33840. },
  33841. ]
  33842. ))
  33843. characterMakers.push(() => makeCharacter(
  33844. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33845. {
  33846. front: {
  33847. height: math.unit(5 + 2/12, "feet"),
  33848. weight: math.unit(200, "lb"),
  33849. name: "Front",
  33850. image: {
  33851. source: "./media/characters/noraly/front.svg",
  33852. extra: 4985/4773,
  33853. bottom: 150/5135
  33854. }
  33855. },
  33856. full: {
  33857. height: math.unit(5 + 2/12, "feet"),
  33858. weight: math.unit(164, "lb"),
  33859. name: "Full",
  33860. image: {
  33861. source: "./media/characters/noraly/full.svg",
  33862. extra: 1114/1059,
  33863. bottom: 35/1149
  33864. }
  33865. },
  33866. fuller: {
  33867. height: math.unit(5 + 2/12, "feet"),
  33868. weight: math.unit(230, "lb"),
  33869. name: "Fuller",
  33870. image: {
  33871. source: "./media/characters/noraly/fuller.svg",
  33872. extra: 1114/1059,
  33873. bottom: 35/1149
  33874. }
  33875. },
  33876. fullest: {
  33877. height: math.unit(5 + 2/12, "feet"),
  33878. weight: math.unit(300, "lb"),
  33879. name: "Fullest",
  33880. image: {
  33881. source: "./media/characters/noraly/fullest.svg",
  33882. extra: 1114/1059,
  33883. bottom: 35/1149
  33884. }
  33885. },
  33886. },
  33887. [
  33888. {
  33889. name: "Normal",
  33890. height: math.unit(5 + 2/12, "feet"),
  33891. default: true
  33892. },
  33893. ]
  33894. ))
  33895. characterMakers.push(() => makeCharacter(
  33896. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33897. {
  33898. front: {
  33899. height: math.unit(5 + 2/12, "feet"),
  33900. weight: math.unit(210, "lb"),
  33901. name: "Front",
  33902. image: {
  33903. source: "./media/characters/pera/front.svg",
  33904. extra: 1560/1531,
  33905. bottom: 165/1725
  33906. }
  33907. },
  33908. back: {
  33909. height: math.unit(5 + 2/12, "feet"),
  33910. weight: math.unit(210, "lb"),
  33911. name: "Back",
  33912. image: {
  33913. source: "./media/characters/pera/back.svg",
  33914. extra: 1523/1493,
  33915. bottom: 152/1675
  33916. }
  33917. },
  33918. dick: {
  33919. height: math.unit(2.4, "feet"),
  33920. name: "Dick",
  33921. image: {
  33922. source: "./media/characters/pera/dick.svg"
  33923. }
  33924. },
  33925. },
  33926. [
  33927. {
  33928. name: "Normal",
  33929. height: math.unit(5 + 2/12, "feet"),
  33930. default: true
  33931. },
  33932. ]
  33933. ))
  33934. characterMakers.push(() => makeCharacter(
  33935. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33936. {
  33937. front: {
  33938. height: math.unit(12, "feet"),
  33939. weight: math.unit(3200, "lb"),
  33940. name: "Front",
  33941. image: {
  33942. source: "./media/characters/julian/front.svg",
  33943. extra: 2962/2701,
  33944. bottom: 184/3146
  33945. }
  33946. },
  33947. maw: {
  33948. height: math.unit(5.35, "feet"),
  33949. name: "Maw",
  33950. image: {
  33951. source: "./media/characters/julian/maw.svg"
  33952. }
  33953. },
  33954. paw: {
  33955. height: math.unit(3.07, "feet"),
  33956. name: "Paw",
  33957. image: {
  33958. source: "./media/characters/julian/paw.svg"
  33959. }
  33960. },
  33961. },
  33962. [
  33963. {
  33964. name: "Default",
  33965. height: math.unit(12, "feet"),
  33966. default: true
  33967. },
  33968. {
  33969. name: "Big",
  33970. height: math.unit(50, "feet")
  33971. },
  33972. {
  33973. name: "Really Big",
  33974. height: math.unit(1, "mile")
  33975. },
  33976. {
  33977. name: "Extremely Big",
  33978. height: math.unit(100, "miles")
  33979. },
  33980. {
  33981. name: "Planet Hugger",
  33982. height: math.unit(200, "megameters")
  33983. },
  33984. {
  33985. name: "Unreasonably Big",
  33986. height: math.unit(1e300, "meters")
  33987. },
  33988. ]
  33989. ))
  33990. characterMakers.push(() => makeCharacter(
  33991. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33992. {
  33993. solgooleo: {
  33994. height: math.unit(4, "meters"),
  33995. weight: math.unit(6000*1.5, "kg"),
  33996. volume: math.unit(6000, "liters"),
  33997. name: "Solgooleo",
  33998. image: {
  33999. source: "./media/characters/pi/solgooleo.svg",
  34000. extra: 388/331,
  34001. bottom: 29/417
  34002. }
  34003. },
  34004. },
  34005. [
  34006. {
  34007. name: "Normal",
  34008. height: math.unit(4, "meters"),
  34009. default: true
  34010. },
  34011. ]
  34012. ))
  34013. characterMakers.push(() => makeCharacter(
  34014. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34015. {
  34016. front: {
  34017. height: math.unit(8, "feet"),
  34018. weight: math.unit(4, "tons"),
  34019. name: "Front",
  34020. image: {
  34021. source: "./media/characters/shaun/front.svg",
  34022. extra: 503/495,
  34023. bottom: 20/523
  34024. }
  34025. },
  34026. back: {
  34027. height: math.unit(8, "feet"),
  34028. weight: math.unit(4, "tons"),
  34029. name: "Back",
  34030. image: {
  34031. source: "./media/characters/shaun/back.svg",
  34032. extra: 487/480,
  34033. bottom: 20/507
  34034. }
  34035. },
  34036. },
  34037. [
  34038. {
  34039. name: "Lorg",
  34040. height: math.unit(8, "feet"),
  34041. default: true
  34042. },
  34043. ]
  34044. ))
  34045. characterMakers.push(() => makeCharacter(
  34046. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34047. {
  34048. frontAnthro: {
  34049. height: math.unit(7, "feet"),
  34050. name: "Front",
  34051. image: {
  34052. source: "./media/characters/sini/front-anthro.svg",
  34053. extra: 726/678,
  34054. bottom: 35/761
  34055. },
  34056. form: "anthro",
  34057. default: true
  34058. },
  34059. backAnthro: {
  34060. height: math.unit(7, "feet"),
  34061. name: "Back",
  34062. image: {
  34063. source: "./media/characters/sini/back-anthro.svg",
  34064. extra: 743/701,
  34065. bottom: 12/755
  34066. },
  34067. form: "anthro",
  34068. },
  34069. frontAnthroNsfw: {
  34070. height: math.unit(7, "feet"),
  34071. name: "Front (NSFW)",
  34072. image: {
  34073. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34074. extra: 726/678,
  34075. bottom: 35/761
  34076. },
  34077. form: "anthro"
  34078. },
  34079. backAnthroNsfw: {
  34080. height: math.unit(7, "feet"),
  34081. name: "Back (NSFW)",
  34082. image: {
  34083. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34084. extra: 743/701,
  34085. bottom: 12/755
  34086. },
  34087. form: "anthro",
  34088. },
  34089. mawAnthro: {
  34090. height: math.unit(2.14, "feet"),
  34091. name: "Maw",
  34092. image: {
  34093. source: "./media/characters/sini/maw-anthro.svg"
  34094. },
  34095. form: "anthro"
  34096. },
  34097. dick: {
  34098. height: math.unit(1.45, "feet"),
  34099. name: "Dick",
  34100. image: {
  34101. source: "./media/characters/sini/dick-anthro.svg"
  34102. },
  34103. form: "anthro"
  34104. },
  34105. feral: {
  34106. height: math.unit(16, "feet"),
  34107. name: "Feral",
  34108. image: {
  34109. source: "./media/characters/sini/feral.svg",
  34110. extra: 814/605,
  34111. bottom: 11/825
  34112. },
  34113. form: "feral",
  34114. default: true
  34115. },
  34116. feralNsfw: {
  34117. height: math.unit(16, "feet"),
  34118. name: "Feral (NSFW)",
  34119. image: {
  34120. source: "./media/characters/sini/feral-nsfw.svg",
  34121. extra: 814/605,
  34122. bottom: 11/825
  34123. },
  34124. form: "feral"
  34125. },
  34126. mawFeral: {
  34127. height: math.unit(5.66, "feet"),
  34128. name: "Maw",
  34129. image: {
  34130. source: "./media/characters/sini/maw-feral.svg"
  34131. },
  34132. form: "feral",
  34133. },
  34134. pawFeral: {
  34135. height: math.unit(5.17, "feet"),
  34136. name: "Paw",
  34137. image: {
  34138. source: "./media/characters/sini/paw-feral.svg"
  34139. },
  34140. form: "feral",
  34141. },
  34142. rumpFeral: {
  34143. height: math.unit(13.11, "feet"),
  34144. name: "Rump",
  34145. image: {
  34146. source: "./media/characters/sini/rump-feral.svg"
  34147. },
  34148. form: "feral",
  34149. },
  34150. dickFeral: {
  34151. height: math.unit(1, "feet"),
  34152. name: "Dick",
  34153. image: {
  34154. source: "./media/characters/sini/dick-feral.svg"
  34155. },
  34156. form: "feral",
  34157. },
  34158. eyeFeral: {
  34159. height: math.unit(1.23, "feet"),
  34160. name: "Eye",
  34161. image: {
  34162. source: "./media/characters/sini/eye-feral.svg"
  34163. },
  34164. form: "feral",
  34165. },
  34166. },
  34167. [
  34168. {
  34169. name: "Normal",
  34170. height: math.unit(7, "feet"),
  34171. default: true,
  34172. form: "anthro"
  34173. },
  34174. {
  34175. name: "Normal",
  34176. height: math.unit(16, "feet"),
  34177. default: true,
  34178. form: "feral"
  34179. },
  34180. ],
  34181. {
  34182. "anthro": {
  34183. name: "Anthro",
  34184. default: true
  34185. },
  34186. "feral": {
  34187. name: "Feral",
  34188. }
  34189. }
  34190. ))
  34191. characterMakers.push(() => makeCharacter(
  34192. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34193. {
  34194. side: {
  34195. height: math.unit(47.2, "meters"),
  34196. weight: math.unit(10000, "tons"),
  34197. name: "Side",
  34198. image: {
  34199. source: "./media/characters/raylldo/side.svg",
  34200. extra: 2363/642,
  34201. bottom: 221/2584
  34202. }
  34203. },
  34204. top: {
  34205. height: math.unit(240, "meters"),
  34206. weight: math.unit(10000, "tons"),
  34207. name: "Top",
  34208. image: {
  34209. source: "./media/characters/raylldo/top.svg"
  34210. }
  34211. },
  34212. bottom: {
  34213. height: math.unit(240, "meters"),
  34214. weight: math.unit(10000, "tons"),
  34215. name: "Bottom",
  34216. image: {
  34217. source: "./media/characters/raylldo/bottom.svg"
  34218. }
  34219. },
  34220. head: {
  34221. height: math.unit(38.6, "meters"),
  34222. name: "Head",
  34223. image: {
  34224. source: "./media/characters/raylldo/head.svg",
  34225. extra: 1335/1112,
  34226. bottom: 0/1335
  34227. }
  34228. },
  34229. maw: {
  34230. height: math.unit(16.37, "meters"),
  34231. name: "Maw",
  34232. image: {
  34233. source: "./media/characters/raylldo/maw.svg",
  34234. extra: 883/660,
  34235. bottom: 0/883
  34236. },
  34237. extraAttributes: {
  34238. preyCapacity: {
  34239. name: "Capacity",
  34240. power: 3,
  34241. type: "volume",
  34242. base: math.unit(1000, "people")
  34243. },
  34244. tongueSize: {
  34245. name: "Tongue Size",
  34246. power: 2,
  34247. type: "area",
  34248. base: math.unit(21, "m^2")
  34249. }
  34250. }
  34251. },
  34252. forepaw: {
  34253. height: math.unit(18, "meters"),
  34254. name: "Forepaw",
  34255. image: {
  34256. source: "./media/characters/raylldo/forepaw.svg"
  34257. }
  34258. },
  34259. hindpaw: {
  34260. height: math.unit(23, "meters"),
  34261. name: "Hindpaw",
  34262. image: {
  34263. source: "./media/characters/raylldo/hindpaw.svg"
  34264. }
  34265. },
  34266. genitals: {
  34267. height: math.unit(42, "meters"),
  34268. name: "Genitals",
  34269. image: {
  34270. source: "./media/characters/raylldo/genitals.svg"
  34271. }
  34272. },
  34273. },
  34274. [
  34275. {
  34276. name: "Normal",
  34277. height: math.unit(47.2, "meters"),
  34278. default: true
  34279. },
  34280. ]
  34281. ))
  34282. characterMakers.push(() => makeCharacter(
  34283. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34284. {
  34285. anthroFront: {
  34286. height: math.unit(9, "feet"),
  34287. weight: math.unit(600, "lb"),
  34288. name: "Anthro (Front)",
  34289. image: {
  34290. source: "./media/characters/glint/anthro-front.svg",
  34291. extra: 1097/1018,
  34292. bottom: 28/1125
  34293. }
  34294. },
  34295. anthroBack: {
  34296. height: math.unit(9, "feet"),
  34297. weight: math.unit(600, "lb"),
  34298. name: "Anthro (Back)",
  34299. image: {
  34300. source: "./media/characters/glint/anthro-back.svg",
  34301. extra: 1154/997,
  34302. bottom: 36/1190
  34303. }
  34304. },
  34305. feral: {
  34306. height: math.unit(11, "feet"),
  34307. weight: math.unit(50000, "lb"),
  34308. name: "Feral",
  34309. image: {
  34310. source: "./media/characters/glint/feral.svg",
  34311. extra: 3035/1585,
  34312. bottom: 1169/4204
  34313. }
  34314. },
  34315. dickAnthro: {
  34316. height: math.unit(0.7, "meters"),
  34317. name: "Dick (Anthro)",
  34318. image: {
  34319. source: "./media/characters/glint/dick-anthro.svg"
  34320. }
  34321. },
  34322. dickFeral: {
  34323. height: math.unit(2.65, "meters"),
  34324. name: "Dick (Feral)",
  34325. image: {
  34326. source: "./media/characters/glint/dick-feral.svg"
  34327. }
  34328. },
  34329. slitHidden: {
  34330. height: math.unit(5.85, "meters"),
  34331. name: "Slit (Hidden)",
  34332. image: {
  34333. source: "./media/characters/glint/slit-hidden.svg"
  34334. }
  34335. },
  34336. slitErect: {
  34337. height: math.unit(5.85, "meters"),
  34338. name: "Slit (Erect)",
  34339. image: {
  34340. source: "./media/characters/glint/slit-erect.svg"
  34341. }
  34342. },
  34343. mawAnthro: {
  34344. height: math.unit(0.63, "meters"),
  34345. name: "Maw (Anthro)",
  34346. image: {
  34347. source: "./media/characters/glint/maw.svg"
  34348. }
  34349. },
  34350. mawFeral: {
  34351. height: math.unit(2.89, "meters"),
  34352. name: "Maw (Feral)",
  34353. image: {
  34354. source: "./media/characters/glint/maw.svg"
  34355. }
  34356. },
  34357. },
  34358. [
  34359. {
  34360. name: "Normal",
  34361. height: math.unit(9, "feet"),
  34362. default: true
  34363. },
  34364. ]
  34365. ))
  34366. characterMakers.push(() => makeCharacter(
  34367. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34368. {
  34369. side: {
  34370. height: math.unit(15, "feet"),
  34371. weight: math.unit(5000, "kg"),
  34372. name: "Side",
  34373. image: {
  34374. source: "./media/characters/kairne/side.svg",
  34375. extra: 979/811,
  34376. bottom: 13/992
  34377. }
  34378. },
  34379. front: {
  34380. height: math.unit(15, "feet"),
  34381. weight: math.unit(5000, "kg"),
  34382. name: "Front",
  34383. image: {
  34384. source: "./media/characters/kairne/front.svg",
  34385. extra: 908/814,
  34386. bottom: 26/934
  34387. }
  34388. },
  34389. sideNsfw: {
  34390. height: math.unit(15, "feet"),
  34391. weight: math.unit(5000, "kg"),
  34392. name: "Side (NSFW)",
  34393. image: {
  34394. source: "./media/characters/kairne/side-nsfw.svg",
  34395. extra: 979/811,
  34396. bottom: 13/992
  34397. }
  34398. },
  34399. frontNsfw: {
  34400. height: math.unit(15, "feet"),
  34401. weight: math.unit(5000, "kg"),
  34402. name: "Front (NSFW)",
  34403. image: {
  34404. source: "./media/characters/kairne/front-nsfw.svg",
  34405. extra: 908/814,
  34406. bottom: 26/934
  34407. }
  34408. },
  34409. dickCaged: {
  34410. height: math.unit(0.65, "meters"),
  34411. name: "Dick-caged",
  34412. image: {
  34413. source: "./media/characters/kairne/dick-caged.svg"
  34414. }
  34415. },
  34416. dick: {
  34417. height: math.unit(0.79, "meters"),
  34418. name: "Dick",
  34419. image: {
  34420. source: "./media/characters/kairne/dick.svg"
  34421. }
  34422. },
  34423. genitals: {
  34424. height: math.unit(1.29, "meters"),
  34425. name: "Genitals",
  34426. image: {
  34427. source: "./media/characters/kairne/genitals.svg"
  34428. }
  34429. },
  34430. maw: {
  34431. height: math.unit(1.73, "meters"),
  34432. name: "Maw",
  34433. image: {
  34434. source: "./media/characters/kairne/maw.svg"
  34435. }
  34436. },
  34437. },
  34438. [
  34439. {
  34440. name: "Normal",
  34441. height: math.unit(15, "feet"),
  34442. default: true
  34443. },
  34444. ]
  34445. ))
  34446. characterMakers.push(() => makeCharacter(
  34447. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34448. {
  34449. front: {
  34450. height: math.unit(5 + 8/12, "feet"),
  34451. weight: math.unit(139, "lb"),
  34452. name: "Front",
  34453. image: {
  34454. source: "./media/characters/biscuit-jackal/front.svg",
  34455. extra: 2106/1961,
  34456. bottom: 58/2164
  34457. }
  34458. },
  34459. back: {
  34460. height: math.unit(5 + 8/12, "feet"),
  34461. weight: math.unit(139, "lb"),
  34462. name: "Back",
  34463. image: {
  34464. source: "./media/characters/biscuit-jackal/back.svg",
  34465. extra: 2132/1976,
  34466. bottom: 57/2189
  34467. }
  34468. },
  34469. werejackal: {
  34470. height: math.unit(6 + 3/12, "feet"),
  34471. weight: math.unit(188, "lb"),
  34472. name: "Werejackal",
  34473. image: {
  34474. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34475. extra: 2373/2178,
  34476. bottom: 53/2426
  34477. }
  34478. },
  34479. },
  34480. [
  34481. {
  34482. name: "Normal",
  34483. height: math.unit(5 + 8/12, "feet"),
  34484. default: true
  34485. },
  34486. ]
  34487. ))
  34488. characterMakers.push(() => makeCharacter(
  34489. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34490. {
  34491. front: {
  34492. height: math.unit(140, "cm"),
  34493. weight: math.unit(45, "kg"),
  34494. name: "Front",
  34495. image: {
  34496. source: "./media/characters/tayra-white/front.svg",
  34497. extra: 2229/2192,
  34498. bottom: 75/2304
  34499. }
  34500. },
  34501. },
  34502. [
  34503. {
  34504. name: "Normal",
  34505. height: math.unit(140, "cm"),
  34506. default: true
  34507. },
  34508. ]
  34509. ))
  34510. characterMakers.push(() => makeCharacter(
  34511. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34512. {
  34513. front: {
  34514. height: math.unit(4 + 5/12, "feet"),
  34515. name: "Front",
  34516. image: {
  34517. source: "./media/characters/scoop/front.svg",
  34518. extra: 1257/1136,
  34519. bottom: 69/1326
  34520. }
  34521. },
  34522. back: {
  34523. height: math.unit(4 + 5/12, "feet"),
  34524. name: "Back",
  34525. image: {
  34526. source: "./media/characters/scoop/back.svg",
  34527. extra: 1321/1152,
  34528. bottom: 32/1353
  34529. }
  34530. },
  34531. maw: {
  34532. height: math.unit(0.68, "feet"),
  34533. name: "Maw",
  34534. image: {
  34535. source: "./media/characters/scoop/maw.svg"
  34536. }
  34537. },
  34538. },
  34539. [
  34540. {
  34541. name: "Really Small",
  34542. height: math.unit(1, "mm")
  34543. },
  34544. {
  34545. name: "Micro",
  34546. height: math.unit(1, "inch")
  34547. },
  34548. {
  34549. name: "Normal",
  34550. height: math.unit(4 + 5/12, "feet"),
  34551. default: true
  34552. },
  34553. {
  34554. name: "Macro",
  34555. height: math.unit(200, "feet")
  34556. },
  34557. {
  34558. name: "Megamacro",
  34559. height: math.unit(3240, "feet")
  34560. },
  34561. {
  34562. name: "Teramacro",
  34563. height: math.unit(2500, "miles")
  34564. },
  34565. ]
  34566. ))
  34567. characterMakers.push(() => makeCharacter(
  34568. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34569. {
  34570. front: {
  34571. height: math.unit(15 + 7/12, "feet"),
  34572. weight: math.unit(1150, "tons"),
  34573. name: "Front",
  34574. image: {
  34575. source: "./media/characters/saphinara/front.svg",
  34576. extra: 1837/1643,
  34577. bottom: 84/1921
  34578. },
  34579. form: "normal",
  34580. default: true
  34581. },
  34582. side: {
  34583. height: math.unit(15 + 7/12, "feet"),
  34584. weight: math.unit(1150, "tons"),
  34585. name: "Side",
  34586. image: {
  34587. source: "./media/characters/saphinara/side.svg",
  34588. extra: 605/547,
  34589. bottom: 6/611
  34590. },
  34591. form: "normal"
  34592. },
  34593. back: {
  34594. height: math.unit(15 + 7/12, "feet"),
  34595. weight: math.unit(1150, "tons"),
  34596. name: "Back",
  34597. image: {
  34598. source: "./media/characters/saphinara/back.svg",
  34599. extra: 591/531,
  34600. bottom: 13/604
  34601. },
  34602. form: "normal"
  34603. },
  34604. frontTail: {
  34605. height: math.unit(15 + 7/12, "feet"),
  34606. weight: math.unit(1150, "tons"),
  34607. name: "Front (Full Tail)",
  34608. image: {
  34609. source: "./media/characters/saphinara/front-tail.svg",
  34610. extra: 2256/1630,
  34611. bottom: 261/2517
  34612. },
  34613. form: "normal"
  34614. },
  34615. insides: {
  34616. height: math.unit(11.92, "feet"),
  34617. name: "Insides",
  34618. image: {
  34619. source: "./media/characters/saphinara/insides.svg"
  34620. },
  34621. form: "normal"
  34622. },
  34623. head: {
  34624. height: math.unit(4.17, "feet"),
  34625. name: "Head",
  34626. image: {
  34627. source: "./media/characters/saphinara/head.svg"
  34628. },
  34629. form: "normal"
  34630. },
  34631. tongue: {
  34632. height: math.unit(4.60, "feet"),
  34633. name: "Tongue",
  34634. image: {
  34635. source: "./media/characters/saphinara/tongue.svg"
  34636. },
  34637. form: "normal"
  34638. },
  34639. headEnraged: {
  34640. height: math.unit(5.55, "feet"),
  34641. name: "Head (Enraged)",
  34642. image: {
  34643. source: "./media/characters/saphinara/head-enraged.svg"
  34644. },
  34645. form: "normal"
  34646. },
  34647. wings: {
  34648. height: math.unit(11.95, "feet"),
  34649. name: "Wings",
  34650. image: {
  34651. source: "./media/characters/saphinara/wings.svg"
  34652. },
  34653. form: "normal"
  34654. },
  34655. feathers: {
  34656. height: math.unit(8.92, "feet"),
  34657. name: "Feathers",
  34658. image: {
  34659. source: "./media/characters/saphinara/feathers.svg"
  34660. },
  34661. form: "normal"
  34662. },
  34663. shackles: {
  34664. height: math.unit(2, "feet"),
  34665. name: "Shackles",
  34666. image: {
  34667. source: "./media/characters/saphinara/shackles.svg"
  34668. },
  34669. form: "normal"
  34670. },
  34671. eyes: {
  34672. height: math.unit(1.331, "feet"),
  34673. name: "Eyes",
  34674. image: {
  34675. source: "./media/characters/saphinara/eyes.svg"
  34676. },
  34677. form: "normal"
  34678. },
  34679. eyesEnraged: {
  34680. height: math.unit(1.331, "feet"),
  34681. name: "Eyes (Enraged)",
  34682. image: {
  34683. source: "./media/characters/saphinara/eyes-enraged.svg"
  34684. },
  34685. form: "normal"
  34686. },
  34687. trueFormSide: {
  34688. height: math.unit(200, "feet"),
  34689. weight: math.unit(1e7, "tons"),
  34690. name: "Side",
  34691. image: {
  34692. source: "./media/characters/saphinara/true-form-side.svg",
  34693. extra: 1399/770,
  34694. bottom: 97/1496
  34695. },
  34696. form: "true-form",
  34697. default: true
  34698. },
  34699. trueFormMaw: {
  34700. height: math.unit(71.5, "feet"),
  34701. name: "Maw",
  34702. image: {
  34703. source: "./media/characters/saphinara/true-form-maw.svg",
  34704. extra: 2302/1453,
  34705. bottom: 0/2302
  34706. },
  34707. form: "true-form"
  34708. },
  34709. meowberusSide: {
  34710. height: math.unit(75, "feet"),
  34711. weight: math.unit(180000, "kg"),
  34712. preyCapacity: math.unit(50000, "people"),
  34713. name: "Side",
  34714. image: {
  34715. source: "./media/characters/saphinara/meowberus-side.svg",
  34716. extra: 1400/711,
  34717. bottom: 126/1526
  34718. },
  34719. form: "meowberus",
  34720. extraAttributes: {
  34721. "pawArea": {
  34722. name: "Paw Size",
  34723. power: 2,
  34724. type: "area",
  34725. base: math.unit(35, "m^2")
  34726. }
  34727. }
  34728. },
  34729. },
  34730. [
  34731. {
  34732. name: "Normal",
  34733. height: math.unit(15 + 7/12, "feet"),
  34734. default: true,
  34735. form: "normal"
  34736. },
  34737. {
  34738. name: "Angry",
  34739. height: math.unit(30 + 6/12, "feet"),
  34740. form: "normal"
  34741. },
  34742. {
  34743. name: "Enraged",
  34744. height: math.unit(102 + 1/12, "feet"),
  34745. form: "normal"
  34746. },
  34747. {
  34748. name: "True",
  34749. height: math.unit(200, "feet"),
  34750. default: true,
  34751. form: "true-form"
  34752. },
  34753. {
  34754. name: "Normal",
  34755. height: math.unit(75, "feet"),
  34756. default: true,
  34757. form: "meowberus"
  34758. },
  34759. ],
  34760. {
  34761. "normal": {
  34762. name: "Normal",
  34763. default: true
  34764. },
  34765. "true-form": {
  34766. name: "True Form"
  34767. },
  34768. "meowberus": {
  34769. name: "Meowberus",
  34770. },
  34771. }
  34772. ))
  34773. characterMakers.push(() => makeCharacter(
  34774. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34775. {
  34776. front: {
  34777. height: math.unit(6 + 8/12, "feet"),
  34778. weight: math.unit(300, "lb"),
  34779. name: "Front",
  34780. image: {
  34781. source: "./media/characters/jrain/front.svg",
  34782. extra: 3039/2865,
  34783. bottom: 399/3438
  34784. }
  34785. },
  34786. back: {
  34787. height: math.unit(6 + 8/12, "feet"),
  34788. weight: math.unit(300, "lb"),
  34789. name: "Back",
  34790. image: {
  34791. source: "./media/characters/jrain/back.svg",
  34792. extra: 3089/2938,
  34793. bottom: 172/3261
  34794. }
  34795. },
  34796. head: {
  34797. height: math.unit(2.14, "feet"),
  34798. name: "Head",
  34799. image: {
  34800. source: "./media/characters/jrain/head.svg"
  34801. }
  34802. },
  34803. maw: {
  34804. height: math.unit(1.77, "feet"),
  34805. name: "Maw",
  34806. image: {
  34807. source: "./media/characters/jrain/maw.svg"
  34808. }
  34809. },
  34810. leftHand: {
  34811. height: math.unit(1.1, "feet"),
  34812. name: "Left Hand",
  34813. image: {
  34814. source: "./media/characters/jrain/left-hand.svg"
  34815. }
  34816. },
  34817. rightHand: {
  34818. height: math.unit(1.1, "feet"),
  34819. name: "Right Hand",
  34820. image: {
  34821. source: "./media/characters/jrain/right-hand.svg"
  34822. }
  34823. },
  34824. eye: {
  34825. height: math.unit(0.35, "feet"),
  34826. name: "Eye",
  34827. image: {
  34828. source: "./media/characters/jrain/eye.svg"
  34829. }
  34830. },
  34831. },
  34832. [
  34833. {
  34834. name: "Normal",
  34835. height: math.unit(6 + 8/12, "feet"),
  34836. default: true
  34837. },
  34838. {
  34839. name: "Casually Large",
  34840. height: math.unit(25, "feet")
  34841. },
  34842. {
  34843. name: "Giant",
  34844. height: math.unit(100, "feet")
  34845. },
  34846. {
  34847. name: "Kaiju",
  34848. height: math.unit(300, "feet")
  34849. },
  34850. ]
  34851. ))
  34852. characterMakers.push(() => makeCharacter(
  34853. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34854. {
  34855. dragon: {
  34856. height: math.unit(5, "meters"),
  34857. name: "Dragon",
  34858. image: {
  34859. source: "./media/characters/sabrina/dragon.svg",
  34860. extra: 3670 / 2365,
  34861. bottom: 333 / 4003
  34862. }
  34863. },
  34864. gryphon: {
  34865. height: math.unit(3, "meters"),
  34866. name: "Gryphon",
  34867. image: {
  34868. source: "./media/characters/sabrina/gryphon.svg",
  34869. extra: 1576 / 945,
  34870. bottom: 71 / 1647
  34871. }
  34872. },
  34873. snake: {
  34874. height: math.unit(12, "meters"),
  34875. name: "Snake",
  34876. image: {
  34877. source: "./media/characters/sabrina/snake.svg",
  34878. extra: 1758 / 1320,
  34879. bottom: 186 / 1944
  34880. }
  34881. },
  34882. collar: {
  34883. height: math.unit(1.86, "meters"),
  34884. name: "Collar",
  34885. image: {
  34886. source: "./media/characters/sabrina/collar.svg"
  34887. }
  34888. },
  34889. eye: {
  34890. height: math.unit(0.53, "meters"),
  34891. name: "Eye",
  34892. image: {
  34893. source: "./media/characters/sabrina/eye.svg"
  34894. }
  34895. },
  34896. foot: {
  34897. height: math.unit(1.86, "meters"),
  34898. name: "Foot",
  34899. image: {
  34900. source: "./media/characters/sabrina/foot.svg"
  34901. }
  34902. },
  34903. hand: {
  34904. height: math.unit(1.32, "meters"),
  34905. name: "Hand",
  34906. image: {
  34907. source: "./media/characters/sabrina/hand.svg"
  34908. }
  34909. },
  34910. head: {
  34911. height: math.unit(2.44, "meters"),
  34912. name: "Head",
  34913. image: {
  34914. source: "./media/characters/sabrina/head.svg"
  34915. }
  34916. },
  34917. headAngry: {
  34918. height: math.unit(2.44, "meters"),
  34919. name: "Head (Angry))",
  34920. image: {
  34921. source: "./media/characters/sabrina/head-angry.svg"
  34922. }
  34923. },
  34924. maw: {
  34925. height: math.unit(1.65, "meters"),
  34926. name: "Maw",
  34927. image: {
  34928. source: "./media/characters/sabrina/maw.svg"
  34929. }
  34930. },
  34931. spikes: {
  34932. height: math.unit(1.69, "meters"),
  34933. name: "Spikes",
  34934. image: {
  34935. source: "./media/characters/sabrina/spikes.svg"
  34936. }
  34937. },
  34938. stomach: {
  34939. height: math.unit(1.15, "meters"),
  34940. name: "Stomach",
  34941. image: {
  34942. source: "./media/characters/sabrina/stomach.svg"
  34943. }
  34944. },
  34945. tongue: {
  34946. height: math.unit(1.27, "meters"),
  34947. name: "Tongue",
  34948. image: {
  34949. source: "./media/characters/sabrina/tongue.svg"
  34950. }
  34951. },
  34952. wingDorsal: {
  34953. height: math.unit(4.85, "meters"),
  34954. name: "Wing (Dorsal)",
  34955. image: {
  34956. source: "./media/characters/sabrina/wing-dorsal.svg"
  34957. }
  34958. },
  34959. wingVentral: {
  34960. height: math.unit(4.85, "meters"),
  34961. name: "Wing (Ventral)",
  34962. image: {
  34963. source: "./media/characters/sabrina/wing-ventral.svg"
  34964. }
  34965. },
  34966. },
  34967. [
  34968. {
  34969. name: "Normal",
  34970. height: math.unit(5, "meters"),
  34971. default: true
  34972. },
  34973. ]
  34974. ))
  34975. characterMakers.push(() => makeCharacter(
  34976. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34977. {
  34978. frontMaid: {
  34979. height: math.unit(5 + 5/12, "feet"),
  34980. weight: math.unit(130, "lb"),
  34981. name: "Front (Maid)",
  34982. image: {
  34983. source: "./media/characters/midnight-tales/front-maid.svg",
  34984. extra: 489/454,
  34985. bottom: 61/550
  34986. }
  34987. },
  34988. frontFormal: {
  34989. height: math.unit(5 + 5/12, "feet"),
  34990. weight: math.unit(130, "lb"),
  34991. name: "Front (Formal)",
  34992. image: {
  34993. source: "./media/characters/midnight-tales/front-formal.svg",
  34994. extra: 489/454,
  34995. bottom: 61/550
  34996. }
  34997. },
  34998. back: {
  34999. height: math.unit(5 + 5/12, "feet"),
  35000. weight: math.unit(130, "lb"),
  35001. name: "Back",
  35002. image: {
  35003. source: "./media/characters/midnight-tales/back.svg",
  35004. extra: 498/456,
  35005. bottom: 33/531
  35006. }
  35007. },
  35008. frontBeast: {
  35009. height: math.unit(40, "feet"),
  35010. weight: math.unit(64000, "lb"),
  35011. name: "Front (Beast)",
  35012. image: {
  35013. source: "./media/characters/midnight-tales/front-beast.svg",
  35014. extra: 927/860,
  35015. bottom: 53/980
  35016. }
  35017. },
  35018. backBeast: {
  35019. height: math.unit(40, "feet"),
  35020. weight: math.unit(64000, "lb"),
  35021. name: "Back (Beast)",
  35022. image: {
  35023. source: "./media/characters/midnight-tales/back-beast.svg",
  35024. extra: 929/855,
  35025. bottom: 16/945
  35026. }
  35027. },
  35028. footBeast: {
  35029. height: math.unit(6.7, "feet"),
  35030. name: "Foot (Beast)",
  35031. image: {
  35032. source: "./media/characters/midnight-tales/foot-beast.svg"
  35033. }
  35034. },
  35035. headBeast: {
  35036. height: math.unit(8, "feet"),
  35037. name: "Head (Beast)",
  35038. image: {
  35039. source: "./media/characters/midnight-tales/head-beast.svg"
  35040. }
  35041. },
  35042. },
  35043. [
  35044. {
  35045. name: "Normal",
  35046. height: math.unit(5 + 5 / 12, "feet"),
  35047. default: true
  35048. },
  35049. {
  35050. name: "Macro",
  35051. height: math.unit(25, "feet")
  35052. },
  35053. ]
  35054. ))
  35055. characterMakers.push(() => makeCharacter(
  35056. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35057. {
  35058. front: {
  35059. height: math.unit(5 + 10/12, "feet"),
  35060. name: "Front",
  35061. image: {
  35062. source: "./media/characters/argon/front.svg",
  35063. extra: 2009/1935,
  35064. bottom: 118/2127
  35065. }
  35066. },
  35067. back: {
  35068. height: math.unit(5 + 10/12, "feet"),
  35069. name: "Back",
  35070. image: {
  35071. source: "./media/characters/argon/back.svg",
  35072. extra: 2047/1992,
  35073. bottom: 20/2067
  35074. }
  35075. },
  35076. frontDressed: {
  35077. height: math.unit(5 + 10/12, "feet"),
  35078. name: "Front (Dressed)",
  35079. image: {
  35080. source: "./media/characters/argon/front-dressed.svg",
  35081. extra: 2009/1935,
  35082. bottom: 118/2127
  35083. }
  35084. },
  35085. },
  35086. [
  35087. {
  35088. name: "Normal",
  35089. height: math.unit(5 + 10/12, "feet"),
  35090. default: true
  35091. },
  35092. ]
  35093. ))
  35094. characterMakers.push(() => makeCharacter(
  35095. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35096. {
  35097. front: {
  35098. height: math.unit(8 + 6/12, "feet"),
  35099. weight: math.unit(1150, "lb"),
  35100. name: "Front",
  35101. image: {
  35102. source: "./media/characters/kichi/front.svg",
  35103. extra: 1267/1164,
  35104. bottom: 61/1328
  35105. }
  35106. },
  35107. back: {
  35108. height: math.unit(8 + 6/12, "feet"),
  35109. weight: math.unit(1150, "lb"),
  35110. name: "Back",
  35111. image: {
  35112. source: "./media/characters/kichi/back.svg",
  35113. extra: 1273/1166,
  35114. bottom: 33/1306
  35115. }
  35116. },
  35117. },
  35118. [
  35119. {
  35120. name: "Normal",
  35121. height: math.unit(8 + 6/12, "feet"),
  35122. default: true
  35123. },
  35124. ]
  35125. ))
  35126. characterMakers.push(() => makeCharacter(
  35127. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35128. {
  35129. front: {
  35130. height: math.unit(6, "feet"),
  35131. weight: math.unit(210, "lb"),
  35132. name: "Front",
  35133. image: {
  35134. source: "./media/characters/manetel-greyscale/front.svg",
  35135. extra: 350/312,
  35136. bottom: 8/358
  35137. }
  35138. },
  35139. },
  35140. [
  35141. {
  35142. name: "Micro",
  35143. height: math.unit(2, "inches")
  35144. },
  35145. {
  35146. name: "Normal",
  35147. height: math.unit(6, "feet"),
  35148. default: true
  35149. },
  35150. {
  35151. name: "Minimacro",
  35152. height: math.unit(17, "feet")
  35153. },
  35154. {
  35155. name: "Macro",
  35156. height: math.unit(117, "feet")
  35157. },
  35158. ]
  35159. ))
  35160. characterMakers.push(() => makeCharacter(
  35161. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35162. {
  35163. side: {
  35164. height: math.unit(5 + 1/12, "feet"),
  35165. weight: math.unit(418, "lb"),
  35166. name: "Side",
  35167. image: {
  35168. source: "./media/characters/softpurr/side.svg",
  35169. extra: 1993/1945,
  35170. bottom: 134/2127
  35171. }
  35172. },
  35173. front: {
  35174. height: math.unit(5 + 1/12, "feet"),
  35175. weight: math.unit(418, "lb"),
  35176. name: "Front",
  35177. image: {
  35178. source: "./media/characters/softpurr/front.svg",
  35179. extra: 1950/1856,
  35180. bottom: 174/2124
  35181. }
  35182. },
  35183. paw: {
  35184. height: math.unit(1, "feet"),
  35185. name: "Paw",
  35186. image: {
  35187. source: "./media/characters/softpurr/paw.svg"
  35188. }
  35189. },
  35190. },
  35191. [
  35192. {
  35193. name: "Normal",
  35194. height: math.unit(5 + 1/12, "feet"),
  35195. default: true
  35196. },
  35197. ]
  35198. ))
  35199. characterMakers.push(() => makeCharacter(
  35200. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35201. {
  35202. front: {
  35203. height: math.unit(260, "meters"),
  35204. name: "Front",
  35205. image: {
  35206. source: "./media/characters/anahita/front.svg",
  35207. extra: 665/635,
  35208. bottom: 89/754
  35209. }
  35210. },
  35211. },
  35212. [
  35213. {
  35214. name: "Macro",
  35215. height: math.unit(260, "meters"),
  35216. default: true
  35217. },
  35218. ]
  35219. ))
  35220. characterMakers.push(() => makeCharacter(
  35221. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35222. {
  35223. front: {
  35224. height: math.unit(4 + 10/12, "feet"),
  35225. weight: math.unit(160, "lb"),
  35226. name: "Front",
  35227. image: {
  35228. source: "./media/characters/chip-mouse/front.svg",
  35229. extra: 3528/3408,
  35230. bottom: 0/3528
  35231. }
  35232. },
  35233. frontNsfw: {
  35234. height: math.unit(4 + 10/12, "feet"),
  35235. weight: math.unit(160, "lb"),
  35236. name: "Front (NSFW)",
  35237. image: {
  35238. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35239. extra: 3528/3408,
  35240. bottom: 0/3528
  35241. }
  35242. },
  35243. },
  35244. [
  35245. {
  35246. name: "Normal",
  35247. height: math.unit(4 + 10/12, "feet"),
  35248. default: true
  35249. },
  35250. ]
  35251. ))
  35252. characterMakers.push(() => makeCharacter(
  35253. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35254. {
  35255. side: {
  35256. height: math.unit(10, "feet"),
  35257. weight: math.unit(14000, "lb"),
  35258. name: "Side",
  35259. image: {
  35260. source: "./media/characters/kremm/side.svg",
  35261. extra: 1390/1053,
  35262. bottom: 90/1480
  35263. }
  35264. },
  35265. gut: {
  35266. height: math.unit(5.8, "feet"),
  35267. name: "Gut",
  35268. image: {
  35269. source: "./media/characters/kremm/gut.svg"
  35270. }
  35271. },
  35272. ass: {
  35273. height: math.unit(6.1, "feet"),
  35274. name: "Ass",
  35275. image: {
  35276. source: "./media/characters/kremm/ass.svg"
  35277. }
  35278. },
  35279. jaws: {
  35280. height: math.unit(2.2, "feet"),
  35281. name: "Jaws",
  35282. image: {
  35283. source: "./media/characters/kremm/jaws.svg"
  35284. }
  35285. },
  35286. dick: {
  35287. height: math.unit(4.26, "feet"),
  35288. name: "Dick",
  35289. image: {
  35290. source: "./media/characters/kremm/dick.svg"
  35291. }
  35292. },
  35293. },
  35294. [
  35295. {
  35296. name: "Normal",
  35297. height: math.unit(10, "feet"),
  35298. default: true
  35299. },
  35300. ]
  35301. ))
  35302. characterMakers.push(() => makeCharacter(
  35303. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35304. {
  35305. front: {
  35306. height: math.unit(30, "stories"),
  35307. name: "Front",
  35308. image: {
  35309. source: "./media/characters/kai/front.svg",
  35310. extra: 1892/1718,
  35311. bottom: 162/2054
  35312. }
  35313. },
  35314. },
  35315. [
  35316. {
  35317. name: "Macro",
  35318. height: math.unit(30, "stories"),
  35319. default: true
  35320. },
  35321. ]
  35322. ))
  35323. characterMakers.push(() => makeCharacter(
  35324. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35325. {
  35326. front: {
  35327. height: math.unit(6 + 4/12, "feet"),
  35328. weight: math.unit(145, "lb"),
  35329. name: "Front",
  35330. image: {
  35331. source: "./media/characters/sykes/front.svg",
  35332. extra: 1321 / 1187,
  35333. bottom: 66 / 1387
  35334. }
  35335. },
  35336. back: {
  35337. height: math.unit(6 + 4/12, "feet"),
  35338. weight: math.unit(145, "lb"),
  35339. name: "Back",
  35340. image: {
  35341. source: "./media/characters/sykes/back.svg",
  35342. extra: 1326/1181,
  35343. bottom: 31/1357
  35344. }
  35345. },
  35346. traditionalOutfit: {
  35347. height: math.unit(6 + 4/12, "feet"),
  35348. weight: math.unit(145, "lb"),
  35349. name: "Traditional Outfit",
  35350. image: {
  35351. source: "./media/characters/sykes/traditional-outfit.svg",
  35352. extra: 1321 / 1187,
  35353. bottom: 66 / 1387
  35354. }
  35355. },
  35356. adventureOutfit: {
  35357. height: math.unit(6 + 4/12, "feet"),
  35358. weight: math.unit(145, "lb"),
  35359. name: "Adventure Outfit",
  35360. image: {
  35361. source: "./media/characters/sykes/adventure-outfit.svg",
  35362. extra: 1321 / 1187,
  35363. bottom: 66 / 1387
  35364. }
  35365. },
  35366. handLeft: {
  35367. height: math.unit(0.9, "feet"),
  35368. name: "Hand (Left)",
  35369. image: {
  35370. source: "./media/characters/sykes/hand-left.svg"
  35371. }
  35372. },
  35373. handRight: {
  35374. height: math.unit(0.839, "feet"),
  35375. name: "Hand (Right)",
  35376. image: {
  35377. source: "./media/characters/sykes/hand-right.svg"
  35378. }
  35379. },
  35380. leftFoot: {
  35381. height: math.unit(1.2, "feet"),
  35382. name: "Foot (Left)",
  35383. image: {
  35384. source: "./media/characters/sykes/foot-left.svg"
  35385. }
  35386. },
  35387. rightFoot: {
  35388. height: math.unit(1.2, "feet"),
  35389. name: "Foot (Right)",
  35390. image: {
  35391. source: "./media/characters/sykes/foot-right.svg"
  35392. }
  35393. },
  35394. maw: {
  35395. height: math.unit(1.93, "feet"),
  35396. name: "Maw",
  35397. image: {
  35398. source: "./media/characters/sykes/maw.svg"
  35399. }
  35400. },
  35401. teeth: {
  35402. height: math.unit(0.51, "feet"),
  35403. name: "Teeth",
  35404. image: {
  35405. source: "./media/characters/sykes/teeth.svg"
  35406. }
  35407. },
  35408. tongue: {
  35409. height: math.unit(2.13, "feet"),
  35410. name: "Tongue",
  35411. image: {
  35412. source: "./media/characters/sykes/tongue.svg"
  35413. }
  35414. },
  35415. uvula: {
  35416. height: math.unit(0.16, "feet"),
  35417. name: "Uvula",
  35418. image: {
  35419. source: "./media/characters/sykes/uvula.svg"
  35420. }
  35421. },
  35422. collar: {
  35423. height: math.unit(0.287, "feet"),
  35424. name: "Collar",
  35425. image: {
  35426. source: "./media/characters/sykes/collar.svg"
  35427. }
  35428. },
  35429. tail: {
  35430. height: math.unit(3.8, "feet"),
  35431. name: "Tail",
  35432. image: {
  35433. source: "./media/characters/sykes/tail.svg"
  35434. }
  35435. },
  35436. },
  35437. [
  35438. {
  35439. name: "Shrunken",
  35440. height: math.unit(5, "inches")
  35441. },
  35442. {
  35443. name: "Normal",
  35444. height: math.unit(6 + 4 / 12, "feet"),
  35445. default: true
  35446. },
  35447. {
  35448. name: "Big",
  35449. height: math.unit(15, "feet")
  35450. },
  35451. ]
  35452. ))
  35453. characterMakers.push(() => makeCharacter(
  35454. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35455. {
  35456. front: {
  35457. height: math.unit(5 + 8/12, "feet"),
  35458. weight: math.unit(190, "lb"),
  35459. name: "Front",
  35460. image: {
  35461. source: "./media/characters/oven-otter/front.svg",
  35462. extra: 1809/1740,
  35463. bottom: 181/1990
  35464. }
  35465. },
  35466. back: {
  35467. height: math.unit(5 + 8/12, "feet"),
  35468. weight: math.unit(190, "lb"),
  35469. name: "Back",
  35470. image: {
  35471. source: "./media/characters/oven-otter/back.svg",
  35472. extra: 1709/1635,
  35473. bottom: 118/1827
  35474. }
  35475. },
  35476. hand: {
  35477. height: math.unit(1.07, "feet"),
  35478. name: "Hand",
  35479. image: {
  35480. source: "./media/characters/oven-otter/hand.svg"
  35481. }
  35482. },
  35483. beans: {
  35484. height: math.unit(1.74, "feet"),
  35485. name: "Beans",
  35486. image: {
  35487. source: "./media/characters/oven-otter/beans.svg"
  35488. }
  35489. },
  35490. },
  35491. [
  35492. {
  35493. name: "Micro",
  35494. height: math.unit(0.5, "inches")
  35495. },
  35496. {
  35497. name: "Normal",
  35498. height: math.unit(5 + 8/12, "feet"),
  35499. default: true
  35500. },
  35501. {
  35502. name: "Macro",
  35503. height: math.unit(250, "feet")
  35504. },
  35505. {
  35506. name: "Really High",
  35507. height: math.unit(420, "feet")
  35508. },
  35509. ]
  35510. ))
  35511. characterMakers.push(() => makeCharacter(
  35512. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35513. {
  35514. front: {
  35515. height: math.unit(5, "meters"),
  35516. weight: math.unit(292000000000000, "kg"),
  35517. name: "Front",
  35518. image: {
  35519. source: "./media/characters/devourer/front.svg",
  35520. extra: 1800/1733,
  35521. bottom: 211/2011
  35522. }
  35523. },
  35524. maw: {
  35525. height: math.unit(1.1, "meter"),
  35526. name: "Maw",
  35527. image: {
  35528. source: "./media/characters/devourer/maw.svg"
  35529. }
  35530. },
  35531. },
  35532. [
  35533. {
  35534. name: "Small",
  35535. height: math.unit(3, "meters")
  35536. },
  35537. {
  35538. name: "Large",
  35539. height: math.unit(5, "meters"),
  35540. default: true
  35541. },
  35542. ]
  35543. ))
  35544. characterMakers.push(() => makeCharacter(
  35545. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35546. {
  35547. front: {
  35548. height: math.unit(6, "feet"),
  35549. weight: math.unit(400, "lb"),
  35550. name: "Front",
  35551. image: {
  35552. source: "./media/characters/ellarby/front.svg",
  35553. extra: 1909/1763,
  35554. bottom: 80/1989
  35555. }
  35556. },
  35557. back: {
  35558. height: math.unit(6, "feet"),
  35559. weight: math.unit(400, "lb"),
  35560. name: "Back",
  35561. image: {
  35562. source: "./media/characters/ellarby/back.svg",
  35563. extra: 1914/1784,
  35564. bottom: 172/2086
  35565. }
  35566. },
  35567. },
  35568. [
  35569. {
  35570. name: "Mischief",
  35571. height: math.unit(18, "inches")
  35572. },
  35573. {
  35574. name: "Trouble",
  35575. height: math.unit(12, "feet")
  35576. },
  35577. {
  35578. name: "Havoc",
  35579. height: math.unit(200, "feet"),
  35580. default: true
  35581. },
  35582. {
  35583. name: "Pandemonium",
  35584. height: math.unit(1, "mile")
  35585. },
  35586. {
  35587. name: "Catastrophe",
  35588. height: math.unit(100, "miles")
  35589. },
  35590. ]
  35591. ))
  35592. characterMakers.push(() => makeCharacter(
  35593. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35594. {
  35595. front: {
  35596. height: math.unit(4.7, "meters"),
  35597. weight: math.unit(6500, "kg"),
  35598. name: "Front",
  35599. image: {
  35600. source: "./media/characters/vex/front.svg",
  35601. extra: 1288/1140,
  35602. bottom: 100/1388
  35603. }
  35604. },
  35605. },
  35606. [
  35607. {
  35608. name: "Normal",
  35609. height: math.unit(4.7, "meters"),
  35610. default: true
  35611. },
  35612. ]
  35613. ))
  35614. characterMakers.push(() => makeCharacter(
  35615. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35616. {
  35617. normal: {
  35618. height: math.unit(6, "feet"),
  35619. weight: math.unit(350, "lb"),
  35620. name: "Normal",
  35621. image: {
  35622. source: "./media/characters/teshy/normal.svg",
  35623. extra: 1795/1735,
  35624. bottom: 16/1811
  35625. }
  35626. },
  35627. monsterFront: {
  35628. height: math.unit(12, "feet"),
  35629. weight: math.unit(4700, "lb"),
  35630. name: "Monster (Front)",
  35631. image: {
  35632. source: "./media/characters/teshy/monster-front.svg",
  35633. extra: 2042/2034,
  35634. bottom: 128/2170
  35635. }
  35636. },
  35637. monsterSide: {
  35638. height: math.unit(12, "feet"),
  35639. weight: math.unit(4700, "lb"),
  35640. name: "Monster (Side)",
  35641. image: {
  35642. source: "./media/characters/teshy/monster-side.svg",
  35643. extra: 2067/2056,
  35644. bottom: 70/2137
  35645. }
  35646. },
  35647. monsterBack: {
  35648. height: math.unit(12, "feet"),
  35649. weight: math.unit(4700, "lb"),
  35650. name: "Monster (Back)",
  35651. image: {
  35652. source: "./media/characters/teshy/monster-back.svg",
  35653. extra: 1921/1914,
  35654. bottom: 171/2092
  35655. }
  35656. },
  35657. },
  35658. [
  35659. {
  35660. name: "Normal",
  35661. height: math.unit(6, "feet"),
  35662. default: true
  35663. },
  35664. ]
  35665. ))
  35666. characterMakers.push(() => makeCharacter(
  35667. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35668. {
  35669. front: {
  35670. height: math.unit(6, "feet"),
  35671. name: "Front",
  35672. image: {
  35673. source: "./media/characters/ramey/front.svg",
  35674. extra: 790/787,
  35675. bottom: 27/817
  35676. }
  35677. },
  35678. },
  35679. [
  35680. {
  35681. name: "Normal",
  35682. height: math.unit(6, "feet"),
  35683. default: true
  35684. },
  35685. ]
  35686. ))
  35687. characterMakers.push(() => makeCharacter(
  35688. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35689. {
  35690. front: {
  35691. height: math.unit(5 + 5/12, "feet"),
  35692. weight: math.unit(120, "lb"),
  35693. name: "Front",
  35694. image: {
  35695. source: "./media/characters/phirae/front.svg",
  35696. extra: 2491/2436,
  35697. bottom: 38/2529
  35698. }
  35699. },
  35700. },
  35701. [
  35702. {
  35703. name: "Normal",
  35704. height: math.unit(5 + 5/12, "feet"),
  35705. default: true
  35706. },
  35707. ]
  35708. ))
  35709. characterMakers.push(() => makeCharacter(
  35710. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35711. {
  35712. front: {
  35713. height: math.unit(5 + 3/12, "feet"),
  35714. name: "Front",
  35715. image: {
  35716. source: "./media/characters/stagglas/front.svg",
  35717. extra: 962/882,
  35718. bottom: 53/1015
  35719. }
  35720. },
  35721. feral: {
  35722. height: math.unit(335, "cm"),
  35723. name: "Feral",
  35724. image: {
  35725. source: "./media/characters/stagglas/feral.svg",
  35726. extra: 1732/1090,
  35727. bottom: 48/1780
  35728. }
  35729. },
  35730. },
  35731. [
  35732. {
  35733. name: "Normal",
  35734. height: math.unit(5 + 3/12, "feet"),
  35735. default: true
  35736. },
  35737. ]
  35738. ))
  35739. characterMakers.push(() => makeCharacter(
  35740. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35741. {
  35742. front: {
  35743. height: math.unit(5 + 4/12, "feet"),
  35744. weight: math.unit(145, "lb"),
  35745. name: "Front",
  35746. image: {
  35747. source: "./media/characters/starra/front.svg",
  35748. extra: 1790/1691,
  35749. bottom: 91/1881
  35750. }
  35751. },
  35752. },
  35753. [
  35754. {
  35755. name: "Normal",
  35756. height: math.unit(5 + 4/12, "feet"),
  35757. default: true
  35758. },
  35759. ]
  35760. ))
  35761. characterMakers.push(() => makeCharacter(
  35762. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35763. {
  35764. front: {
  35765. height: math.unit(2.2, "meters"),
  35766. name: "Front",
  35767. image: {
  35768. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35769. extra: 1194/1005,
  35770. bottom: 25/1219
  35771. }
  35772. },
  35773. },
  35774. [
  35775. {
  35776. name: "Normal",
  35777. height: math.unit(2.2, "meters"),
  35778. default: true
  35779. },
  35780. ]
  35781. ))
  35782. characterMakers.push(() => makeCharacter(
  35783. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35784. {
  35785. side: {
  35786. height: math.unit(8 + 2/12, "feet"),
  35787. weight: math.unit(1240, "lb"),
  35788. name: "Side",
  35789. image: {
  35790. source: "./media/characters/mika-valentine/side.svg",
  35791. extra: 2670/2501,
  35792. bottom: 250/2920
  35793. }
  35794. },
  35795. },
  35796. [
  35797. {
  35798. name: "Normal",
  35799. height: math.unit(8 + 2/12, "feet"),
  35800. default: true
  35801. },
  35802. ]
  35803. ))
  35804. characterMakers.push(() => makeCharacter(
  35805. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35806. {
  35807. front: {
  35808. height: math.unit(7 + 2/12, "feet"),
  35809. name: "Front",
  35810. image: {
  35811. source: "./media/characters/xoltol/front.svg",
  35812. extra: 2212/2124,
  35813. bottom: 84/2296
  35814. }
  35815. },
  35816. side: {
  35817. height: math.unit(7 + 2/12, "feet"),
  35818. name: "Side",
  35819. image: {
  35820. source: "./media/characters/xoltol/side.svg",
  35821. extra: 2273/2197,
  35822. bottom: 26/2299
  35823. }
  35824. },
  35825. hand: {
  35826. height: math.unit(2.5, "feet"),
  35827. name: "Hand",
  35828. image: {
  35829. source: "./media/characters/xoltol/hand.svg"
  35830. }
  35831. },
  35832. },
  35833. [
  35834. {
  35835. name: "Small-ish",
  35836. height: math.unit(5 + 11/12, "feet")
  35837. },
  35838. {
  35839. name: "Normal",
  35840. height: math.unit(7 + 2/12, "feet")
  35841. },
  35842. {
  35843. name: "\"Macro\"",
  35844. height: math.unit(14 + 9/12, "feet"),
  35845. default: true
  35846. },
  35847. {
  35848. name: "Alternate Height",
  35849. height: math.unit(20, "feet")
  35850. },
  35851. {
  35852. name: "Actually Macro",
  35853. height: math.unit(100, "feet")
  35854. },
  35855. ]
  35856. ))
  35857. characterMakers.push(() => makeCharacter(
  35858. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35859. {
  35860. front: {
  35861. height: math.unit(5 + 2/12, "feet"),
  35862. name: "Front",
  35863. image: {
  35864. source: "./media/characters/kotetsu-redwood/front.svg",
  35865. extra: 1053/942,
  35866. bottom: 60/1113
  35867. }
  35868. },
  35869. },
  35870. [
  35871. {
  35872. name: "Normal",
  35873. height: math.unit(5 + 2/12, "feet"),
  35874. default: true
  35875. },
  35876. ]
  35877. ))
  35878. characterMakers.push(() => makeCharacter(
  35879. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35880. {
  35881. front: {
  35882. height: math.unit(2.4, "meters"),
  35883. weight: math.unit(125, "kg"),
  35884. name: "Front",
  35885. image: {
  35886. source: "./media/characters/lilith/front.svg",
  35887. extra: 1590/1513,
  35888. bottom: 203/1793
  35889. }
  35890. },
  35891. },
  35892. [
  35893. {
  35894. name: "Humanoid",
  35895. height: math.unit(2.4, "meters")
  35896. },
  35897. {
  35898. name: "Normal",
  35899. height: math.unit(6, "meters"),
  35900. default: true
  35901. },
  35902. {
  35903. name: "Largest",
  35904. height: math.unit(55, "meters")
  35905. },
  35906. ]
  35907. ))
  35908. characterMakers.push(() => makeCharacter(
  35909. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35910. {
  35911. front: {
  35912. height: math.unit(8 + 4/12, "feet"),
  35913. weight: math.unit(535, "lb"),
  35914. name: "Front",
  35915. image: {
  35916. source: "./media/characters/beh'kah-bolger/front.svg",
  35917. extra: 1660/1603,
  35918. bottom: 37/1697
  35919. }
  35920. },
  35921. },
  35922. [
  35923. {
  35924. name: "Normal",
  35925. height: math.unit(8 + 4/12, "feet"),
  35926. default: true
  35927. },
  35928. {
  35929. name: "Kaiju",
  35930. height: math.unit(250, "feet")
  35931. },
  35932. {
  35933. name: "Still Growing",
  35934. height: math.unit(10, "miles")
  35935. },
  35936. {
  35937. name: "Continental",
  35938. height: math.unit(5000, "miles")
  35939. },
  35940. {
  35941. name: "Final Form",
  35942. height: math.unit(2500000, "miles")
  35943. },
  35944. ]
  35945. ))
  35946. characterMakers.push(() => makeCharacter(
  35947. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35948. {
  35949. front: {
  35950. height: math.unit(7 + 2/12, "feet"),
  35951. weight: math.unit(230, "kg"),
  35952. name: "Front",
  35953. image: {
  35954. source: "./media/characters/tatyana-milewska/front.svg",
  35955. extra: 1199/1150,
  35956. bottom: 86/1285
  35957. }
  35958. },
  35959. },
  35960. [
  35961. {
  35962. name: "Normal",
  35963. height: math.unit(7 + 2/12, "feet"),
  35964. default: true
  35965. },
  35966. {
  35967. name: "Big",
  35968. height: math.unit(12, "feet")
  35969. },
  35970. {
  35971. name: "Minimacro",
  35972. height: math.unit(20, "feet")
  35973. },
  35974. {
  35975. name: "Macro",
  35976. height: math.unit(120, "feet")
  35977. },
  35978. ]
  35979. ))
  35980. characterMakers.push(() => makeCharacter(
  35981. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35982. {
  35983. front: {
  35984. height: math.unit(7 + 8/12, "feet"),
  35985. weight: math.unit(152, "kg"),
  35986. name: "Front",
  35987. image: {
  35988. source: "./media/characters/helen-arri/front.svg",
  35989. extra: 440/423,
  35990. bottom: 14/454
  35991. }
  35992. },
  35993. back: {
  35994. height: math.unit(7 + 8/12, "feet"),
  35995. weight: math.unit(152, "kg"),
  35996. name: "Back",
  35997. image: {
  35998. source: "./media/characters/helen-arri/back.svg",
  35999. extra: 443/426,
  36000. bottom: 8/451
  36001. }
  36002. },
  36003. },
  36004. [
  36005. {
  36006. name: "Normal",
  36007. height: math.unit(7 + 8/12, "feet"),
  36008. default: true
  36009. },
  36010. {
  36011. name: "Big",
  36012. height: math.unit(14, "feet")
  36013. },
  36014. {
  36015. name: "Minimacro",
  36016. height: math.unit(24, "feet")
  36017. },
  36018. {
  36019. name: "Macro",
  36020. height: math.unit(140, "feet")
  36021. },
  36022. ]
  36023. ))
  36024. characterMakers.push(() => makeCharacter(
  36025. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36026. {
  36027. front: {
  36028. height: math.unit(6, "meters"),
  36029. name: "Front",
  36030. image: {
  36031. source: "./media/characters/ehanu-rehu/front.svg",
  36032. extra: 1800/1800,
  36033. bottom: 59/1859
  36034. }
  36035. },
  36036. },
  36037. [
  36038. {
  36039. name: "Normal",
  36040. height: math.unit(6, "meters"),
  36041. default: true
  36042. },
  36043. ]
  36044. ))
  36045. characterMakers.push(() => makeCharacter(
  36046. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36047. {
  36048. front: {
  36049. height: math.unit(7 + 3/12, "feet"),
  36050. name: "Front",
  36051. image: {
  36052. source: "./media/characters/renholder/front.svg",
  36053. extra: 3096/2960,
  36054. bottom: 250/3346
  36055. }
  36056. },
  36057. },
  36058. [
  36059. {
  36060. name: "Normal Bat",
  36061. height: math.unit(7 + 3/12, "feet"),
  36062. default: true
  36063. },
  36064. {
  36065. name: "Slightly Tall Bat",
  36066. height: math.unit(100, "feet")
  36067. },
  36068. {
  36069. name: "Big Bat",
  36070. height: math.unit(1000, "feet")
  36071. },
  36072. {
  36073. name: "City-Sized Bat",
  36074. height: math.unit(200000, "feet")
  36075. },
  36076. {
  36077. name: "Bigger Bat",
  36078. height: math.unit(10000, "miles")
  36079. },
  36080. {
  36081. name: "Solar Sized Bat",
  36082. height: math.unit(100, "AU")
  36083. },
  36084. {
  36085. name: "Galactic Bat",
  36086. height: math.unit(200000, "lightyears")
  36087. },
  36088. {
  36089. name: "Universally Known Bat",
  36090. height: math.unit(1, "universe")
  36091. },
  36092. ]
  36093. ))
  36094. characterMakers.push(() => makeCharacter(
  36095. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36096. {
  36097. front: {
  36098. height: math.unit(6 + 11/12, "feet"),
  36099. weight: math.unit(250, "lb"),
  36100. name: "Front",
  36101. image: {
  36102. source: "./media/characters/cookiecat/front.svg",
  36103. extra: 893/827,
  36104. bottom: 14/907
  36105. }
  36106. },
  36107. },
  36108. [
  36109. {
  36110. name: "Micro",
  36111. height: math.unit(3, "inches")
  36112. },
  36113. {
  36114. name: "Normal",
  36115. height: math.unit(6 + 11/12, "feet"),
  36116. default: true
  36117. },
  36118. {
  36119. name: "Macro",
  36120. height: math.unit(100, "feet")
  36121. },
  36122. {
  36123. name: "Macro+",
  36124. height: math.unit(404, "feet")
  36125. },
  36126. {
  36127. name: "Megamacro",
  36128. height: math.unit(165, "miles")
  36129. },
  36130. {
  36131. name: "Planetary",
  36132. height: math.unit(4600, "miles")
  36133. },
  36134. ]
  36135. ))
  36136. characterMakers.push(() => makeCharacter(
  36137. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36138. {
  36139. front: {
  36140. height: math.unit(10 + 3/12, "feet"),
  36141. weight: math.unit(1500, "lb"),
  36142. name: "Front",
  36143. image: {
  36144. source: "./media/characters/tux-kusanagi/front.svg",
  36145. extra: 944/840,
  36146. bottom: 39/983
  36147. }
  36148. },
  36149. back: {
  36150. height: math.unit(10 + 3/12, "feet"),
  36151. weight: math.unit(1500, "lb"),
  36152. name: "Back",
  36153. image: {
  36154. source: "./media/characters/tux-kusanagi/back.svg",
  36155. extra: 941/842,
  36156. bottom: 28/969
  36157. }
  36158. },
  36159. rump: {
  36160. height: math.unit(5.25, "feet"),
  36161. name: "Rump",
  36162. image: {
  36163. source: "./media/characters/tux-kusanagi/rump.svg"
  36164. }
  36165. },
  36166. beak: {
  36167. height: math.unit(1.54, "feet"),
  36168. name: "Beak",
  36169. image: {
  36170. source: "./media/characters/tux-kusanagi/beak.svg"
  36171. }
  36172. },
  36173. },
  36174. [
  36175. {
  36176. name: "Normal",
  36177. height: math.unit(10 + 3/12, "feet"),
  36178. default: true
  36179. },
  36180. ]
  36181. ))
  36182. characterMakers.push(() => makeCharacter(
  36183. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36184. {
  36185. front: {
  36186. height: math.unit(58, "feet"),
  36187. weight: math.unit(200, "tons"),
  36188. name: "Front",
  36189. image: {
  36190. source: "./media/characters/uzarmazari/front.svg",
  36191. extra: 1575/1455,
  36192. bottom: 152/1727
  36193. }
  36194. },
  36195. back: {
  36196. height: math.unit(58, "feet"),
  36197. weight: math.unit(200, "tons"),
  36198. name: "Back",
  36199. image: {
  36200. source: "./media/characters/uzarmazari/back.svg",
  36201. extra: 1585/1510,
  36202. bottom: 157/1742
  36203. }
  36204. },
  36205. head: {
  36206. height: math.unit(26, "feet"),
  36207. name: "Head",
  36208. image: {
  36209. source: "./media/characters/uzarmazari/head.svg"
  36210. }
  36211. },
  36212. },
  36213. [
  36214. {
  36215. name: "Normal",
  36216. height: math.unit(58, "feet"),
  36217. default: true
  36218. },
  36219. ]
  36220. ))
  36221. characterMakers.push(() => makeCharacter(
  36222. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36223. {
  36224. side: {
  36225. height: math.unit(15, "feet"),
  36226. name: "Side",
  36227. image: {
  36228. source: "./media/characters/akitu/side.svg",
  36229. extra: 1421/1321,
  36230. bottom: 157/1578
  36231. }
  36232. },
  36233. front: {
  36234. height: math.unit(15, "feet"),
  36235. name: "Front",
  36236. image: {
  36237. source: "./media/characters/akitu/front.svg",
  36238. extra: 1435/1326,
  36239. bottom: 232/1667
  36240. }
  36241. },
  36242. },
  36243. [
  36244. {
  36245. name: "Normal",
  36246. height: math.unit(15, "feet"),
  36247. default: true
  36248. },
  36249. ]
  36250. ))
  36251. characterMakers.push(() => makeCharacter(
  36252. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36253. {
  36254. front: {
  36255. height: math.unit(10 + 8/12, "feet"),
  36256. name: "Front",
  36257. image: {
  36258. source: "./media/characters/azalie-croixland/front.svg",
  36259. extra: 1972/1856,
  36260. bottom: 31/2003
  36261. }
  36262. },
  36263. },
  36264. [
  36265. {
  36266. name: "Original Height",
  36267. height: math.unit(5 + 4/12, "feet")
  36268. },
  36269. {
  36270. name: "Normal Height",
  36271. height: math.unit(10 + 8/12, "feet"),
  36272. default: true
  36273. },
  36274. ]
  36275. ))
  36276. characterMakers.push(() => makeCharacter(
  36277. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36278. {
  36279. side: {
  36280. height: math.unit(7 + 1/12, "feet"),
  36281. weight: math.unit(245, "lb"),
  36282. name: "Side",
  36283. image: {
  36284. source: "./media/characters/kavus-kazian/side.svg",
  36285. extra: 349/342,
  36286. bottom: 15/364
  36287. }
  36288. },
  36289. },
  36290. [
  36291. {
  36292. name: "Normal",
  36293. height: math.unit(7 + 1/12, "feet"),
  36294. default: true
  36295. },
  36296. ]
  36297. ))
  36298. characterMakers.push(() => makeCharacter(
  36299. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36300. {
  36301. normalFront: {
  36302. height: math.unit(5 + 11/12, "feet"),
  36303. name: "Front",
  36304. image: {
  36305. source: "./media/characters/moonlight-rose/normal-front.svg",
  36306. extra: 1980/1825,
  36307. bottom: 18/1998
  36308. },
  36309. form: "normal",
  36310. default: true
  36311. },
  36312. normalBack: {
  36313. height: math.unit(5 + 11/12, "feet"),
  36314. name: "Back",
  36315. image: {
  36316. source: "./media/characters/moonlight-rose/normal-back.svg",
  36317. extra: 2010/1839,
  36318. bottom: 10/2020
  36319. },
  36320. form: "normal"
  36321. },
  36322. demonFront: {
  36323. height: math.unit(1.5, "earths"),
  36324. name: "Front",
  36325. image: {
  36326. source: "./media/characters/moonlight-rose/demon.svg",
  36327. extra: 1400/1294,
  36328. bottom: 45/1445
  36329. },
  36330. form: "demon",
  36331. default: true
  36332. },
  36333. terraFront: {
  36334. height: math.unit(1.5, "earths"),
  36335. name: "Front",
  36336. image: {
  36337. source: "./media/characters/moonlight-rose/terra.svg"
  36338. },
  36339. form: "terra",
  36340. default: true
  36341. },
  36342. jupiterFront: {
  36343. height: math.unit(69911*2, "km"),
  36344. name: "Front",
  36345. image: {
  36346. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36347. extra: 1367/1286,
  36348. bottom: 55/1422
  36349. },
  36350. form: "jupiter",
  36351. default: true
  36352. },
  36353. neptuneFront: {
  36354. height: math.unit(24622*2, "feet"),
  36355. name: "Front",
  36356. image: {
  36357. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36358. extra: 1851/1712,
  36359. bottom: 0/1851
  36360. },
  36361. form: "neptune",
  36362. default: true
  36363. },
  36364. },
  36365. [
  36366. {
  36367. name: "\"Natural\" Height",
  36368. height: math.unit(5 + 11/12, "feet"),
  36369. form: "normal"
  36370. },
  36371. {
  36372. name: "Smallest comfortable size",
  36373. height: math.unit(40, "meters"),
  36374. form: "normal"
  36375. },
  36376. {
  36377. name: "Common size",
  36378. height: math.unit(50, "km"),
  36379. form: "normal",
  36380. default: true
  36381. },
  36382. {
  36383. name: "Normal",
  36384. height: math.unit(1.5, "earths"),
  36385. form: "demon",
  36386. default: true
  36387. },
  36388. {
  36389. name: "Universal",
  36390. height: math.unit(15, "universes"),
  36391. form: "demon"
  36392. },
  36393. {
  36394. name: "Earth",
  36395. height: math.unit(1.5, "earths"),
  36396. form: "terra",
  36397. default: true
  36398. },
  36399. {
  36400. name: "Super Earth",
  36401. height: math.unit(67.5, "earths"),
  36402. form: "terra"
  36403. },
  36404. {
  36405. name: "Doesn't fit in a solar system...",
  36406. height: math.unit(1, "galaxy"),
  36407. form: "terra"
  36408. },
  36409. {
  36410. name: "Saturn",
  36411. height: math.unit(58232*2, "km"),
  36412. form: "jupiter"
  36413. },
  36414. {
  36415. name: "Jupiter",
  36416. height: math.unit(69911*2, "km"),
  36417. form: "jupiter",
  36418. default: true
  36419. },
  36420. {
  36421. name: "HD 100546 b",
  36422. height: math.unit(482938, "km"),
  36423. form: "jupiter"
  36424. },
  36425. {
  36426. name: "Enceladus",
  36427. height: math.unit(513*2, "km"),
  36428. form: "neptune"
  36429. },
  36430. {
  36431. name: "Europe",
  36432. height: math.unit(1560*2, "km"),
  36433. form: "neptune"
  36434. },
  36435. {
  36436. name: "Neptune",
  36437. height: math.unit(24622*2, "km"),
  36438. form: "neptune",
  36439. default: true
  36440. },
  36441. {
  36442. name: "CoRoT-9b",
  36443. height: math.unit(75067*2, "km"),
  36444. form: "neptune"
  36445. },
  36446. ],
  36447. {
  36448. "normal": {
  36449. name: "Normal",
  36450. default: true
  36451. },
  36452. "demon": {
  36453. name: "Demon"
  36454. },
  36455. "terra": {
  36456. name: "Terra"
  36457. },
  36458. "jupiter": {
  36459. name: "Jupiter"
  36460. },
  36461. "neptune": {
  36462. name: "Neptune"
  36463. }
  36464. }
  36465. ))
  36466. characterMakers.push(() => makeCharacter(
  36467. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36468. {
  36469. front: {
  36470. height: math.unit(16, "feet"),
  36471. weight: math.unit(610, "kg"),
  36472. name: "Front",
  36473. image: {
  36474. source: "./media/characters/huckle/front.svg",
  36475. extra: 1731/1625,
  36476. bottom: 33/1764
  36477. }
  36478. },
  36479. back: {
  36480. height: math.unit(16, "feet"),
  36481. weight: math.unit(610, "kg"),
  36482. name: "Back",
  36483. image: {
  36484. source: "./media/characters/huckle/back.svg",
  36485. extra: 1738/1651,
  36486. bottom: 37/1775
  36487. }
  36488. },
  36489. laughing: {
  36490. height: math.unit(3.75, "feet"),
  36491. name: "Laughing",
  36492. image: {
  36493. source: "./media/characters/huckle/laughing.svg"
  36494. }
  36495. },
  36496. angry: {
  36497. height: math.unit(4.15, "feet"),
  36498. name: "Angry",
  36499. image: {
  36500. source: "./media/characters/huckle/angry.svg"
  36501. }
  36502. },
  36503. },
  36504. [
  36505. {
  36506. name: "Normal",
  36507. height: math.unit(16, "feet"),
  36508. default: true
  36509. },
  36510. {
  36511. name: "Mini Macro",
  36512. height: math.unit(463, "feet")
  36513. },
  36514. {
  36515. name: "Macro",
  36516. height: math.unit(1680, "meters")
  36517. },
  36518. {
  36519. name: "Mega Macro",
  36520. height: math.unit(175, "km")
  36521. },
  36522. {
  36523. name: "Terra Macro",
  36524. height: math.unit(32, "gigameters")
  36525. },
  36526. {
  36527. name: "Multiverse+",
  36528. height: math.unit(2.56e23, "yottameters")
  36529. },
  36530. ]
  36531. ))
  36532. characterMakers.push(() => makeCharacter(
  36533. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36534. {
  36535. front: {
  36536. height: math.unit(6 + 9/12, "feet"),
  36537. weight: math.unit(280, "lb"),
  36538. name: "Front",
  36539. image: {
  36540. source: "./media/characters/candy/front.svg",
  36541. extra: 234/217,
  36542. bottom: 11/245
  36543. }
  36544. },
  36545. },
  36546. [
  36547. {
  36548. name: "Really Small",
  36549. height: math.unit(0.1, "nm")
  36550. },
  36551. {
  36552. name: "Micro",
  36553. height: math.unit(2, "inches")
  36554. },
  36555. {
  36556. name: "Normal",
  36557. height: math.unit(6 + 9/12, "feet"),
  36558. default: true
  36559. },
  36560. {
  36561. name: "Small Macro",
  36562. height: math.unit(69, "feet")
  36563. },
  36564. {
  36565. name: "Macro",
  36566. height: math.unit(160, "feet")
  36567. },
  36568. {
  36569. name: "Megamacro",
  36570. height: math.unit(22000, "miles")
  36571. },
  36572. {
  36573. name: "Gigamacro",
  36574. height: math.unit(50000, "miles")
  36575. },
  36576. ]
  36577. ))
  36578. characterMakers.push(() => makeCharacter(
  36579. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36580. {
  36581. front: {
  36582. height: math.unit(4, "feet"),
  36583. weight: math.unit(90, "lb"),
  36584. name: "Front",
  36585. image: {
  36586. source: "./media/characters/joey-mcdonald/front.svg",
  36587. extra: 1059/852,
  36588. bottom: 33/1092
  36589. }
  36590. },
  36591. back: {
  36592. height: math.unit(4, "feet"),
  36593. weight: math.unit(90, "lb"),
  36594. name: "Back",
  36595. image: {
  36596. source: "./media/characters/joey-mcdonald/back.svg",
  36597. extra: 1077/879,
  36598. bottom: 5/1082
  36599. }
  36600. },
  36601. frontKobold: {
  36602. height: math.unit(4, "feet"),
  36603. weight: math.unit(100, "lb"),
  36604. name: "Front-kobold",
  36605. image: {
  36606. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36607. extra: 1480/1367,
  36608. bottom: 0/1480
  36609. }
  36610. },
  36611. backKobold: {
  36612. height: math.unit(4, "feet"),
  36613. weight: math.unit(100, "lb"),
  36614. name: "Back-kobold",
  36615. image: {
  36616. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36617. extra: 1449/1361,
  36618. bottom: 0/1449
  36619. }
  36620. },
  36621. },
  36622. [
  36623. {
  36624. name: "Normal",
  36625. height: math.unit(4, "feet"),
  36626. default: true
  36627. },
  36628. ]
  36629. ))
  36630. characterMakers.push(() => makeCharacter(
  36631. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36632. {
  36633. front: {
  36634. height: math.unit(12 + 6/12, "feet"),
  36635. name: "Front",
  36636. image: {
  36637. source: "./media/characters/kass-lockheed/front.svg",
  36638. extra: 354/343,
  36639. bottom: 9/363
  36640. }
  36641. },
  36642. back: {
  36643. height: math.unit(12 + 6/12, "feet"),
  36644. name: "Back",
  36645. image: {
  36646. source: "./media/characters/kass-lockheed/back.svg",
  36647. extra: 364/352,
  36648. bottom: 3/367
  36649. }
  36650. },
  36651. dick: {
  36652. height: math.unit(3.12, "feet"),
  36653. name: "Dick",
  36654. image: {
  36655. source: "./media/characters/kass-lockheed/dick.svg"
  36656. }
  36657. },
  36658. head: {
  36659. height: math.unit(2.6, "feet"),
  36660. name: "Head",
  36661. image: {
  36662. source: "./media/characters/kass-lockheed/head.svg"
  36663. }
  36664. },
  36665. bleh: {
  36666. height: math.unit(2.85, "feet"),
  36667. name: "Bleh",
  36668. image: {
  36669. source: "./media/characters/kass-lockheed/bleh.svg"
  36670. }
  36671. },
  36672. smug: {
  36673. height: math.unit(2.85, "feet"),
  36674. name: "Smug",
  36675. image: {
  36676. source: "./media/characters/kass-lockheed/smug.svg"
  36677. }
  36678. },
  36679. },
  36680. [
  36681. {
  36682. name: "Normal",
  36683. height: math.unit(12 + 6/12, "feet"),
  36684. default: true
  36685. },
  36686. ]
  36687. ))
  36688. characterMakers.push(() => makeCharacter(
  36689. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36690. {
  36691. front: {
  36692. height: math.unit(6 + 2/12, "feet"),
  36693. name: "Front",
  36694. image: {
  36695. source: "./media/characters/taylor/front.svg",
  36696. extra: 639/495,
  36697. bottom: 12/651
  36698. }
  36699. },
  36700. },
  36701. [
  36702. {
  36703. name: "Normal",
  36704. height: math.unit(6 + 2/12, "feet"),
  36705. default: true
  36706. },
  36707. {
  36708. name: "Big",
  36709. height: math.unit(15, "feet")
  36710. },
  36711. {
  36712. name: "Lorg",
  36713. height: math.unit(80, "feet")
  36714. },
  36715. {
  36716. name: "Too Lorg",
  36717. height: math.unit(120, "feet")
  36718. },
  36719. ]
  36720. ))
  36721. characterMakers.push(() => makeCharacter(
  36722. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36723. {
  36724. front: {
  36725. height: math.unit(15, "feet"),
  36726. name: "Front",
  36727. image: {
  36728. source: "./media/characters/kaizer/front.svg",
  36729. extra: 1612/1436,
  36730. bottom: 43/1655
  36731. }
  36732. },
  36733. },
  36734. [
  36735. {
  36736. name: "Normal",
  36737. height: math.unit(15, "feet"),
  36738. default: true
  36739. },
  36740. ]
  36741. ))
  36742. characterMakers.push(() => makeCharacter(
  36743. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36744. {
  36745. front: {
  36746. height: math.unit(2, "feet"),
  36747. weight: math.unit(30, "lb"),
  36748. name: "Front",
  36749. image: {
  36750. source: "./media/characters/sandy/front.svg",
  36751. extra: 1439/1307,
  36752. bottom: 194/1633
  36753. }
  36754. },
  36755. },
  36756. [
  36757. {
  36758. name: "Normal",
  36759. height: math.unit(2, "feet"),
  36760. default: true
  36761. },
  36762. ]
  36763. ))
  36764. characterMakers.push(() => makeCharacter(
  36765. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36766. {
  36767. front: {
  36768. height: math.unit(3, "feet"),
  36769. name: "Front",
  36770. image: {
  36771. source: "./media/characters/mellvi/front.svg",
  36772. extra: 1831/1630,
  36773. bottom: 58/1889
  36774. }
  36775. },
  36776. },
  36777. [
  36778. {
  36779. name: "Normal",
  36780. height: math.unit(3, "feet"),
  36781. default: true
  36782. },
  36783. ]
  36784. ))
  36785. characterMakers.push(() => makeCharacter(
  36786. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36787. {
  36788. front: {
  36789. height: math.unit(5 + 11/12, "feet"),
  36790. weight: math.unit(200, "lb"),
  36791. name: "Front",
  36792. image: {
  36793. source: "./media/characters/shirou/front.svg",
  36794. extra: 2491/2383,
  36795. bottom: 189/2680
  36796. }
  36797. },
  36798. back: {
  36799. height: math.unit(5 + 11/12, "feet"),
  36800. weight: math.unit(200, "lb"),
  36801. name: "Back",
  36802. image: {
  36803. source: "./media/characters/shirou/back.svg",
  36804. extra: 2554/2450,
  36805. bottom: 76/2630
  36806. }
  36807. },
  36808. },
  36809. [
  36810. {
  36811. name: "Normal",
  36812. height: math.unit(5 + 11/12, "feet"),
  36813. default: true
  36814. },
  36815. ]
  36816. ))
  36817. characterMakers.push(() => makeCharacter(
  36818. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36819. {
  36820. front: {
  36821. height: math.unit(6 + 3/12, "feet"),
  36822. weight: math.unit(177, "lb"),
  36823. name: "Front",
  36824. image: {
  36825. source: "./media/characters/noryu/front.svg",
  36826. extra: 973/885,
  36827. bottom: 10/983
  36828. }
  36829. },
  36830. },
  36831. [
  36832. {
  36833. name: "Normal",
  36834. height: math.unit(6 + 3/12, "feet"),
  36835. default: true
  36836. },
  36837. ]
  36838. ))
  36839. characterMakers.push(() => makeCharacter(
  36840. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36841. {
  36842. front: {
  36843. height: math.unit(5 + 6/12, "feet"),
  36844. weight: math.unit(170, "lb"),
  36845. name: "Front",
  36846. image: {
  36847. source: "./media/characters/mevolas-rubenido/front.svg",
  36848. extra: 2109/1901,
  36849. bottom: 96/2205
  36850. }
  36851. },
  36852. },
  36853. [
  36854. {
  36855. name: "Normal",
  36856. height: math.unit(5 + 6/12, "feet"),
  36857. default: true
  36858. },
  36859. ]
  36860. ))
  36861. characterMakers.push(() => makeCharacter(
  36862. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36863. {
  36864. front: {
  36865. height: math.unit(100, "feet"),
  36866. name: "Front",
  36867. image: {
  36868. source: "./media/characters/dee/front.svg",
  36869. extra: 2153/2036,
  36870. bottom: 59/2212
  36871. }
  36872. },
  36873. back: {
  36874. height: math.unit(100, "feet"),
  36875. name: "Back",
  36876. image: {
  36877. source: "./media/characters/dee/back.svg",
  36878. extra: 2183/2058,
  36879. bottom: 75/2258
  36880. }
  36881. },
  36882. foot: {
  36883. height: math.unit(19.43, "feet"),
  36884. name: "Foot",
  36885. image: {
  36886. source: "./media/characters/dee/foot.svg"
  36887. }
  36888. },
  36889. hoof: {
  36890. height: math.unit(20.6, "feet"),
  36891. name: "Hoof",
  36892. image: {
  36893. source: "./media/characters/dee/hoof.svg"
  36894. }
  36895. },
  36896. },
  36897. [
  36898. {
  36899. name: "Macro",
  36900. height: math.unit(100, "feet"),
  36901. default: true
  36902. },
  36903. ]
  36904. ))
  36905. characterMakers.push(() => makeCharacter(
  36906. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36907. {
  36908. front: {
  36909. height: math.unit(5 + 6/12, "feet"),
  36910. name: "Front",
  36911. image: {
  36912. source: "./media/characters/teh/front.svg",
  36913. extra: 1002/847,
  36914. bottom: 62/1064
  36915. }
  36916. },
  36917. },
  36918. [
  36919. {
  36920. name: "Normal",
  36921. height: math.unit(5 + 6/12, "feet"),
  36922. default: true
  36923. },
  36924. ]
  36925. ))
  36926. characterMakers.push(() => makeCharacter(
  36927. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36928. {
  36929. side: {
  36930. height: math.unit(6 + 1/12, "feet"),
  36931. weight: math.unit(204, "lb"),
  36932. name: "Side",
  36933. image: {
  36934. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36935. extra: 974/775,
  36936. bottom: 169/1143
  36937. }
  36938. },
  36939. sitting: {
  36940. height: math.unit(6 + 2/12, "feet"),
  36941. weight: math.unit(204, "lb"),
  36942. name: "Sitting",
  36943. image: {
  36944. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36945. extra: 1175/964,
  36946. bottom: 378/1553
  36947. }
  36948. },
  36949. },
  36950. [
  36951. {
  36952. name: "Normal",
  36953. height: math.unit(6 + 1/12, "feet"),
  36954. default: true
  36955. },
  36956. ]
  36957. ))
  36958. characterMakers.push(() => makeCharacter(
  36959. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36960. {
  36961. front: {
  36962. height: math.unit(6, "inches"),
  36963. name: "Front",
  36964. image: {
  36965. source: "./media/characters/tululi/front.svg",
  36966. extra: 1997/1876,
  36967. bottom: 20/2017
  36968. }
  36969. },
  36970. },
  36971. [
  36972. {
  36973. name: "Normal",
  36974. height: math.unit(6, "inches"),
  36975. default: true
  36976. },
  36977. ]
  36978. ))
  36979. characterMakers.push(() => makeCharacter(
  36980. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36981. {
  36982. front: {
  36983. height: math.unit(4 + 1/12, "feet"),
  36984. name: "Front",
  36985. image: {
  36986. source: "./media/characters/star/front.svg",
  36987. extra: 1493/1189,
  36988. bottom: 48/1541
  36989. }
  36990. },
  36991. },
  36992. [
  36993. {
  36994. name: "Normal",
  36995. height: math.unit(4 + 1/12, "feet"),
  36996. default: true
  36997. },
  36998. ]
  36999. ))
  37000. characterMakers.push(() => makeCharacter(
  37001. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37002. {
  37003. front: {
  37004. height: math.unit(6 + 3/12, "feet"),
  37005. name: "Front",
  37006. image: {
  37007. source: "./media/characters/comet/front.svg",
  37008. extra: 1681/1462,
  37009. bottom: 26/1707
  37010. }
  37011. },
  37012. },
  37013. [
  37014. {
  37015. name: "Normal",
  37016. height: math.unit(6 + 3/12, "feet"),
  37017. default: true
  37018. },
  37019. ]
  37020. ))
  37021. characterMakers.push(() => makeCharacter(
  37022. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37023. {
  37024. front: {
  37025. height: math.unit(950, "feet"),
  37026. name: "Front",
  37027. image: {
  37028. source: "./media/characters/vortex/front.svg",
  37029. extra: 1497/1434,
  37030. bottom: 56/1553
  37031. }
  37032. },
  37033. maw: {
  37034. height: math.unit(285, "feet"),
  37035. name: "Maw",
  37036. image: {
  37037. source: "./media/characters/vortex/maw.svg"
  37038. }
  37039. },
  37040. },
  37041. [
  37042. {
  37043. name: "Macro",
  37044. height: math.unit(950, "feet"),
  37045. default: true
  37046. },
  37047. ]
  37048. ))
  37049. characterMakers.push(() => makeCharacter(
  37050. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37051. {
  37052. front: {
  37053. height: math.unit(600, "feet"),
  37054. weight: math.unit(0.02, "grams"),
  37055. name: "Front",
  37056. image: {
  37057. source: "./media/characters/doodle/front.svg",
  37058. extra: 1578/1413,
  37059. bottom: 37/1615
  37060. }
  37061. },
  37062. },
  37063. [
  37064. {
  37065. name: "Macro",
  37066. height: math.unit(600, "feet"),
  37067. default: true
  37068. },
  37069. ]
  37070. ))
  37071. characterMakers.push(() => makeCharacter(
  37072. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37073. {
  37074. front: {
  37075. height: math.unit(6 + 6/12, "feet"),
  37076. name: "Front",
  37077. image: {
  37078. source: "./media/characters/jai/front.svg",
  37079. extra: 1645/1534,
  37080. bottom: 115/1760
  37081. }
  37082. },
  37083. },
  37084. [
  37085. {
  37086. name: "Normal",
  37087. height: math.unit(6 + 6/12, "feet"),
  37088. default: true
  37089. },
  37090. ]
  37091. ))
  37092. characterMakers.push(() => makeCharacter(
  37093. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37094. {
  37095. front: {
  37096. height: math.unit(6 + 8/12, "feet"),
  37097. name: "Front",
  37098. image: {
  37099. source: "./media/characters/pixel/front.svg",
  37100. extra: 1900/1735,
  37101. bottom: 63/1963
  37102. }
  37103. },
  37104. },
  37105. [
  37106. {
  37107. name: "Normal",
  37108. height: math.unit(6 + 8/12, "feet"),
  37109. default: true
  37110. },
  37111. ]
  37112. ))
  37113. characterMakers.push(() => makeCharacter(
  37114. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37115. {
  37116. back: {
  37117. height: math.unit(4 + 1/12, "feet"),
  37118. weight: math.unit(75, "lb"),
  37119. name: "Back",
  37120. image: {
  37121. source: "./media/characters/rhett/back.svg",
  37122. extra: 930/878,
  37123. bottom: 25/955
  37124. }
  37125. },
  37126. front: {
  37127. height: math.unit(4 + 1/12, "feet"),
  37128. weight: math.unit(75, "lb"),
  37129. name: "Front",
  37130. image: {
  37131. source: "./media/characters/rhett/front.svg",
  37132. extra: 1682/1586,
  37133. bottom: 92/1774
  37134. }
  37135. },
  37136. },
  37137. [
  37138. {
  37139. name: "Micro",
  37140. height: math.unit(8, "inches")
  37141. },
  37142. {
  37143. name: "Tiny",
  37144. height: math.unit(2, "feet")
  37145. },
  37146. {
  37147. name: "Normal",
  37148. height: math.unit(4 + 1/12, "feet"),
  37149. default: true
  37150. },
  37151. ]
  37152. ))
  37153. characterMakers.push(() => makeCharacter(
  37154. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37155. {
  37156. front: {
  37157. height: math.unit(3 + 3/12, "feet"),
  37158. name: "Front",
  37159. image: {
  37160. source: "./media/characters/penny/front.svg",
  37161. extra: 1406/1311,
  37162. bottom: 26/1432
  37163. }
  37164. },
  37165. },
  37166. [
  37167. {
  37168. name: "Normal",
  37169. height: math.unit(3 + 3/12, "feet"),
  37170. default: true
  37171. },
  37172. ]
  37173. ))
  37174. characterMakers.push(() => makeCharacter(
  37175. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37176. {
  37177. front: {
  37178. height: math.unit(4 + 11/12, "feet"),
  37179. name: "Front",
  37180. image: {
  37181. source: "./media/characters/monty/front.svg",
  37182. extra: 1479/1209,
  37183. bottom: 0/1479
  37184. }
  37185. },
  37186. },
  37187. [
  37188. {
  37189. name: "Normal",
  37190. height: math.unit(4 + 11/12, "feet"),
  37191. default: true
  37192. },
  37193. ]
  37194. ))
  37195. characterMakers.push(() => makeCharacter(
  37196. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37197. {
  37198. front: {
  37199. height: math.unit(8 + 4/12, "feet"),
  37200. name: "Front",
  37201. image: {
  37202. source: "./media/characters/sterling/front.svg",
  37203. extra: 1420/1236,
  37204. bottom: 27/1447
  37205. }
  37206. },
  37207. },
  37208. [
  37209. {
  37210. name: "Normal",
  37211. height: math.unit(8 + 4/12, "feet"),
  37212. default: true
  37213. },
  37214. ]
  37215. ))
  37216. characterMakers.push(() => makeCharacter(
  37217. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37218. {
  37219. front: {
  37220. height: math.unit(15, "feet"),
  37221. name: "Front",
  37222. image: {
  37223. source: "./media/characters/marble/front.svg",
  37224. extra: 973/937,
  37225. bottom: 32/1005
  37226. }
  37227. },
  37228. },
  37229. [
  37230. {
  37231. name: "Normal",
  37232. height: math.unit(15, "feet"),
  37233. default: true
  37234. },
  37235. ]
  37236. ))
  37237. characterMakers.push(() => makeCharacter(
  37238. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37239. {
  37240. front: {
  37241. height: math.unit(3, "inches"),
  37242. name: "Front",
  37243. image: {
  37244. source: "./media/characters/powder/front.svg",
  37245. extra: 1504/1334,
  37246. bottom: 518/2022
  37247. }
  37248. },
  37249. },
  37250. [
  37251. {
  37252. name: "Normal",
  37253. height: math.unit(3, "inches"),
  37254. default: true
  37255. },
  37256. ]
  37257. ))
  37258. characterMakers.push(() => makeCharacter(
  37259. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37260. {
  37261. front: {
  37262. height: math.unit(4 + 5/12, "feet"),
  37263. name: "Front",
  37264. image: {
  37265. source: "./media/characters/joey-raccoon/front.svg",
  37266. extra: 1273/1197,
  37267. bottom: 0/1273
  37268. }
  37269. },
  37270. },
  37271. [
  37272. {
  37273. name: "Normal",
  37274. height: math.unit(4 + 5/12, "feet"),
  37275. default: true
  37276. },
  37277. ]
  37278. ))
  37279. characterMakers.push(() => makeCharacter(
  37280. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37281. {
  37282. front: {
  37283. height: math.unit(8 + 4/12, "feet"),
  37284. name: "Front",
  37285. image: {
  37286. source: "./media/characters/vick/front.svg",
  37287. extra: 2187/2118,
  37288. bottom: 47/2234
  37289. }
  37290. },
  37291. },
  37292. [
  37293. {
  37294. name: "Normal",
  37295. height: math.unit(8 + 4/12, "feet"),
  37296. default: true
  37297. },
  37298. ]
  37299. ))
  37300. characterMakers.push(() => makeCharacter(
  37301. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37302. {
  37303. front: {
  37304. height: math.unit(5 + 5/12, "feet"),
  37305. name: "Front",
  37306. image: {
  37307. source: "./media/characters/mitsy/front.svg",
  37308. extra: 1842/1695,
  37309. bottom: 0/1842
  37310. }
  37311. },
  37312. },
  37313. [
  37314. {
  37315. name: "Normal",
  37316. height: math.unit(5 + 5/12, "feet"),
  37317. default: true
  37318. },
  37319. ]
  37320. ))
  37321. characterMakers.push(() => makeCharacter(
  37322. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37323. {
  37324. front: {
  37325. height: math.unit(6 + 3/12, "feet"),
  37326. name: "Front",
  37327. image: {
  37328. source: "./media/characters/silvy/front.svg",
  37329. extra: 1995/1836,
  37330. bottom: 225/2220
  37331. }
  37332. },
  37333. },
  37334. [
  37335. {
  37336. name: "Normal",
  37337. height: math.unit(6 + 3/12, "feet"),
  37338. default: true
  37339. },
  37340. ]
  37341. ))
  37342. characterMakers.push(() => makeCharacter(
  37343. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37344. {
  37345. front: {
  37346. height: math.unit(3 + 8/12, "feet"),
  37347. name: "Front",
  37348. image: {
  37349. source: "./media/characters/rodney/front.svg",
  37350. extra: 1956/1747,
  37351. bottom: 31/1987
  37352. }
  37353. },
  37354. frontDressed: {
  37355. height: math.unit(2.9, "feet"),
  37356. name: "Front (Dressed)",
  37357. image: {
  37358. source: "./media/characters/rodney/front-dressed.svg",
  37359. extra: 1382/1241,
  37360. bottom: 385/1767
  37361. }
  37362. },
  37363. },
  37364. [
  37365. {
  37366. name: "Normal",
  37367. height: math.unit(3 + 8/12, "feet"),
  37368. default: true
  37369. },
  37370. ]
  37371. ))
  37372. characterMakers.push(() => makeCharacter(
  37373. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37374. {
  37375. front: {
  37376. height: math.unit(5 + 9/12, "feet"),
  37377. weight: math.unit(194, "lbs"),
  37378. name: "Front",
  37379. image: {
  37380. source: "./media/characters/zakail-sudekai/front.svg",
  37381. extra: 2696/2533,
  37382. bottom: 248/2944
  37383. }
  37384. },
  37385. maw: {
  37386. height: math.unit(1.35, "feet"),
  37387. name: "Maw",
  37388. image: {
  37389. source: "./media/characters/zakail-sudekai/maw.svg"
  37390. }
  37391. },
  37392. },
  37393. [
  37394. {
  37395. name: "Normal",
  37396. height: math.unit(5 + 9/12, "feet"),
  37397. default: true
  37398. },
  37399. ]
  37400. ))
  37401. characterMakers.push(() => makeCharacter(
  37402. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37403. {
  37404. front: {
  37405. height: math.unit(8 + 4/12, "feet"),
  37406. weight: math.unit(1200, "lb"),
  37407. name: "Front",
  37408. image: {
  37409. source: "./media/characters/eleanor/front.svg",
  37410. extra: 1226/1192,
  37411. bottom: 52/1278
  37412. }
  37413. },
  37414. back: {
  37415. height: math.unit(8 + 4/12, "feet"),
  37416. weight: math.unit(1200, "lb"),
  37417. name: "Back",
  37418. image: {
  37419. source: "./media/characters/eleanor/back.svg",
  37420. extra: 1242/1184,
  37421. bottom: 60/1302
  37422. }
  37423. },
  37424. head: {
  37425. height: math.unit(2.62, "feet"),
  37426. name: "Head",
  37427. image: {
  37428. source: "./media/characters/eleanor/head.svg"
  37429. }
  37430. },
  37431. },
  37432. [
  37433. {
  37434. name: "Normal",
  37435. height: math.unit(8 + 4/12, "feet"),
  37436. default: true
  37437. },
  37438. ]
  37439. ))
  37440. characterMakers.push(() => makeCharacter(
  37441. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37442. {
  37443. front: {
  37444. height: math.unit(8 + 4/12, "feet"),
  37445. weight: math.unit(750, "lb"),
  37446. name: "Front",
  37447. image: {
  37448. source: "./media/characters/tanya/front.svg",
  37449. extra: 1749/1615,
  37450. bottom: 33/1782
  37451. }
  37452. },
  37453. },
  37454. [
  37455. {
  37456. name: "Normal",
  37457. height: math.unit(8 + 4/12, "feet"),
  37458. default: true
  37459. },
  37460. ]
  37461. ))
  37462. characterMakers.push(() => makeCharacter(
  37463. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37464. {
  37465. front: {
  37466. height: math.unit(5, "feet"),
  37467. weight: math.unit(225, "lb"),
  37468. name: "Front",
  37469. image: {
  37470. source: "./media/characters/cindy/front.svg",
  37471. extra: 1320/1250,
  37472. bottom: 42/1362
  37473. }
  37474. },
  37475. frontDressed: {
  37476. height: math.unit(5, "feet"),
  37477. weight: math.unit(225, "lb"),
  37478. name: "Front (Dressed)",
  37479. image: {
  37480. source: "./media/characters/cindy/front-dressed.svg",
  37481. extra: 1320/1250,
  37482. bottom: 42/1362
  37483. }
  37484. },
  37485. back: {
  37486. height: math.unit(5, "feet"),
  37487. weight: math.unit(225, "lb"),
  37488. name: "Back",
  37489. image: {
  37490. source: "./media/characters/cindy/back.svg",
  37491. extra: 1384/1346,
  37492. bottom: 14/1398
  37493. }
  37494. },
  37495. },
  37496. [
  37497. {
  37498. name: "Normal",
  37499. height: math.unit(5, "feet"),
  37500. default: true
  37501. },
  37502. ]
  37503. ))
  37504. characterMakers.push(() => makeCharacter(
  37505. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37506. {
  37507. front: {
  37508. height: math.unit(6 + 9/12, "feet"),
  37509. weight: math.unit(440, "lb"),
  37510. name: "Front",
  37511. image: {
  37512. source: "./media/characters/wilbur-owen/front.svg",
  37513. extra: 1575/1448,
  37514. bottom: 72/1647
  37515. }
  37516. },
  37517. back: {
  37518. height: math.unit(6 + 9/12, "feet"),
  37519. weight: math.unit(440, "lb"),
  37520. name: "Back",
  37521. image: {
  37522. source: "./media/characters/wilbur-owen/back.svg",
  37523. extra: 1578/1445,
  37524. bottom: 36/1614
  37525. }
  37526. },
  37527. },
  37528. [
  37529. {
  37530. name: "Normal",
  37531. height: math.unit(6 + 9/12, "feet"),
  37532. default: true
  37533. },
  37534. ]
  37535. ))
  37536. characterMakers.push(() => makeCharacter(
  37537. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37538. {
  37539. front: {
  37540. height: math.unit(6 + 5/12, "feet"),
  37541. weight: math.unit(650, "lb"),
  37542. name: "Front",
  37543. image: {
  37544. source: "./media/characters/keegan/front.svg",
  37545. extra: 2387/2198,
  37546. bottom: 33/2420
  37547. }
  37548. },
  37549. side: {
  37550. height: math.unit(6 + 5/12, "feet"),
  37551. weight: math.unit(650, "lb"),
  37552. name: "Side",
  37553. image: {
  37554. source: "./media/characters/keegan/side.svg",
  37555. extra: 2390/2202,
  37556. bottom: 47/2437
  37557. }
  37558. },
  37559. back: {
  37560. height: math.unit(6 + 5/12, "feet"),
  37561. weight: math.unit(650, "lb"),
  37562. name: "Back",
  37563. image: {
  37564. source: "./media/characters/keegan/back.svg",
  37565. extra: 2418/2268,
  37566. bottom: 15/2433
  37567. }
  37568. },
  37569. frontSfw: {
  37570. height: math.unit(6 + 5/12, "feet"),
  37571. weight: math.unit(650, "lb"),
  37572. name: "Front (SFW)",
  37573. image: {
  37574. source: "./media/characters/keegan/front-sfw.svg",
  37575. extra: 2387/2198,
  37576. bottom: 33/2420
  37577. }
  37578. },
  37579. beans: {
  37580. height: math.unit(1.85, "feet"),
  37581. name: "Beans",
  37582. image: {
  37583. source: "./media/characters/keegan/beans.svg"
  37584. }
  37585. },
  37586. },
  37587. [
  37588. {
  37589. name: "Normal",
  37590. height: math.unit(6 + 5/12, "feet"),
  37591. default: true
  37592. },
  37593. ]
  37594. ))
  37595. characterMakers.push(() => makeCharacter(
  37596. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37597. {
  37598. front: {
  37599. height: math.unit(9, "feet"),
  37600. name: "Front",
  37601. image: {
  37602. source: "./media/characters/colton/front.svg",
  37603. extra: 1589/1326,
  37604. bottom: 139/1728
  37605. }
  37606. },
  37607. },
  37608. [
  37609. {
  37610. name: "Normal",
  37611. height: math.unit(9, "feet"),
  37612. default: true
  37613. },
  37614. ]
  37615. ))
  37616. characterMakers.push(() => makeCharacter(
  37617. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37618. {
  37619. front: {
  37620. height: math.unit(2 + 9/12, "feet"),
  37621. name: "Front",
  37622. image: {
  37623. source: "./media/characters/bora/front.svg",
  37624. extra: 1265/1250,
  37625. bottom: 24/1289
  37626. }
  37627. },
  37628. },
  37629. [
  37630. {
  37631. name: "Normal",
  37632. height: math.unit(2 + 9/12, "feet"),
  37633. default: true
  37634. },
  37635. ]
  37636. ))
  37637. characterMakers.push(() => makeCharacter(
  37638. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37639. {
  37640. front: {
  37641. height: math.unit(8, "feet"),
  37642. name: "Front",
  37643. image: {
  37644. source: "./media/characters/myu-myu/front.svg",
  37645. extra: 1949/1857,
  37646. bottom: 90/2039
  37647. }
  37648. },
  37649. },
  37650. [
  37651. {
  37652. name: "Normal",
  37653. height: math.unit(8, "feet"),
  37654. default: true
  37655. },
  37656. {
  37657. name: "Big",
  37658. height: math.unit(15, "feet")
  37659. },
  37660. {
  37661. name: "BIG",
  37662. height: math.unit(25, "feet")
  37663. },
  37664. ]
  37665. ))
  37666. characterMakers.push(() => makeCharacter(
  37667. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37668. {
  37669. side: {
  37670. height: math.unit(7 + 5/12, "feet"),
  37671. weight: math.unit(2800, "lb"),
  37672. name: "Side",
  37673. image: {
  37674. source: "./media/characters/haloren/side.svg",
  37675. extra: 1793/409,
  37676. bottom: 59/1852
  37677. }
  37678. },
  37679. frontPaw: {
  37680. height: math.unit(2.36, "feet"),
  37681. name: "Front paw",
  37682. image: {
  37683. source: "./media/characters/haloren/front-paw.svg"
  37684. }
  37685. },
  37686. hindPaw: {
  37687. height: math.unit(3.18, "feet"),
  37688. name: "Hind paw",
  37689. image: {
  37690. source: "./media/characters/haloren/hind-paw.svg"
  37691. }
  37692. },
  37693. maw: {
  37694. height: math.unit(5.05, "feet"),
  37695. name: "Maw",
  37696. image: {
  37697. source: "./media/characters/haloren/maw.svg"
  37698. }
  37699. },
  37700. dick: {
  37701. height: math.unit(2.90, "feet"),
  37702. name: "Dick",
  37703. image: {
  37704. source: "./media/characters/haloren/dick.svg"
  37705. }
  37706. },
  37707. },
  37708. [
  37709. {
  37710. name: "Normal",
  37711. height: math.unit(7 + 5/12, "feet"),
  37712. default: true
  37713. },
  37714. {
  37715. name: "Enhanced",
  37716. height: math.unit(14 + 3/12, "feet")
  37717. },
  37718. ]
  37719. ))
  37720. characterMakers.push(() => makeCharacter(
  37721. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37722. {
  37723. front: {
  37724. height: math.unit(171, "cm"),
  37725. name: "Front",
  37726. image: {
  37727. source: "./media/characters/kimmy/front.svg",
  37728. extra: 1491/1435,
  37729. bottom: 53/1544
  37730. }
  37731. },
  37732. },
  37733. [
  37734. {
  37735. name: "Small",
  37736. height: math.unit(9, "cm")
  37737. },
  37738. {
  37739. name: "Normal",
  37740. height: math.unit(171, "cm"),
  37741. default: true
  37742. },
  37743. ]
  37744. ))
  37745. characterMakers.push(() => makeCharacter(
  37746. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37747. {
  37748. front: {
  37749. height: math.unit(8, "feet"),
  37750. weight: math.unit(300, "lb"),
  37751. name: "Front",
  37752. image: {
  37753. source: "./media/characters/galeboomer/front.svg",
  37754. extra: 4651/4415,
  37755. bottom: 162/4813
  37756. }
  37757. },
  37758. back: {
  37759. height: math.unit(8, "feet"),
  37760. weight: math.unit(300, "lb"),
  37761. name: "Back",
  37762. image: {
  37763. source: "./media/characters/galeboomer/back.svg",
  37764. extra: 4544/4314,
  37765. bottom: 16/4560
  37766. }
  37767. },
  37768. frontAlt: {
  37769. height: math.unit(8, "feet"),
  37770. weight: math.unit(300, "lb"),
  37771. name: "Front (Alt)",
  37772. image: {
  37773. source: "./media/characters/galeboomer/front-alt.svg",
  37774. extra: 4458/4228,
  37775. bottom: 68/4526
  37776. }
  37777. },
  37778. maw: {
  37779. height: math.unit(1.2, "feet"),
  37780. name: "Maw",
  37781. image: {
  37782. source: "./media/characters/galeboomer/maw.svg"
  37783. }
  37784. },
  37785. },
  37786. [
  37787. {
  37788. name: "Normal",
  37789. height: math.unit(8, "feet"),
  37790. default: true
  37791. },
  37792. ]
  37793. ))
  37794. characterMakers.push(() => makeCharacter(
  37795. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37796. {
  37797. front: {
  37798. height: math.unit(5 + 9/12, "feet"),
  37799. weight: math.unit(120, "lb"),
  37800. name: "Front",
  37801. image: {
  37802. source: "./media/characters/chyr/front.svg",
  37803. extra: 1323/1254,
  37804. bottom: 63/1386
  37805. }
  37806. },
  37807. back: {
  37808. height: math.unit(5 + 9/12, "feet"),
  37809. weight: math.unit(120, "lb"),
  37810. name: "Back",
  37811. image: {
  37812. source: "./media/characters/chyr/back.svg",
  37813. extra: 1323/1252,
  37814. bottom: 48/1371
  37815. }
  37816. },
  37817. },
  37818. [
  37819. {
  37820. name: "Normal",
  37821. height: math.unit(5 + 9/12, "feet"),
  37822. default: true
  37823. },
  37824. ]
  37825. ))
  37826. characterMakers.push(() => makeCharacter(
  37827. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37828. {
  37829. front: {
  37830. height: math.unit(7, "feet"),
  37831. weight: math.unit(310, "lb"),
  37832. name: "Front",
  37833. image: {
  37834. source: "./media/characters/solarus/front.svg",
  37835. extra: 2415/2021,
  37836. bottom: 103/2518
  37837. }
  37838. },
  37839. back: {
  37840. height: math.unit(7, "feet"),
  37841. weight: math.unit(310, "lb"),
  37842. name: "Back",
  37843. image: {
  37844. source: "./media/characters/solarus/back.svg",
  37845. extra: 2463/2089,
  37846. bottom: 79/2542
  37847. }
  37848. },
  37849. },
  37850. [
  37851. {
  37852. name: "Normal",
  37853. height: math.unit(7, "feet"),
  37854. default: true
  37855. },
  37856. ]
  37857. ))
  37858. characterMakers.push(() => makeCharacter(
  37859. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37860. {
  37861. front: {
  37862. height: math.unit(16, "feet"),
  37863. name: "Front",
  37864. image: {
  37865. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37866. extra: 1844/1780,
  37867. bottom: 58/1902
  37868. }
  37869. },
  37870. winterCoat: {
  37871. height: math.unit(16, "feet"),
  37872. name: "Winter Coat",
  37873. image: {
  37874. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37875. extra: 1807/1775,
  37876. bottom: 69/1876
  37877. }
  37878. },
  37879. },
  37880. [
  37881. {
  37882. name: "Normal",
  37883. height: math.unit(16, "feet"),
  37884. default: true
  37885. },
  37886. {
  37887. name: "Chicago Size",
  37888. height: math.unit(560, "feet")
  37889. },
  37890. ]
  37891. ))
  37892. characterMakers.push(() => makeCharacter(
  37893. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37894. {
  37895. front: {
  37896. height: math.unit(11 + 6/12, "feet"),
  37897. weight: math.unit(1366, "lb"),
  37898. name: "Front",
  37899. image: {
  37900. source: "./media/characters/lexor/front.svg",
  37901. extra: 1560/1481,
  37902. bottom: 211/1771
  37903. }
  37904. },
  37905. back: {
  37906. height: math.unit(11 + 6/12, "feet"),
  37907. weight: math.unit(1366, "lb"),
  37908. name: "Back",
  37909. image: {
  37910. source: "./media/characters/lexor/back.svg",
  37911. extra: 1614/1533,
  37912. bottom: 76/1690
  37913. }
  37914. },
  37915. maw: {
  37916. height: math.unit(3, "feet"),
  37917. name: "Maw",
  37918. image: {
  37919. source: "./media/characters/lexor/maw.svg"
  37920. }
  37921. },
  37922. dick: {
  37923. height: math.unit(2.59, "feet"),
  37924. name: "Dick",
  37925. image: {
  37926. source: "./media/characters/lexor/dick.svg"
  37927. }
  37928. },
  37929. },
  37930. [
  37931. {
  37932. name: "Normal",
  37933. height: math.unit(11 + 6/12, "feet"),
  37934. default: true
  37935. },
  37936. ]
  37937. ))
  37938. characterMakers.push(() => makeCharacter(
  37939. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37940. {
  37941. front: {
  37942. height: math.unit(5 + 8/12, "feet"),
  37943. name: "Front",
  37944. image: {
  37945. source: "./media/characters/magnum/front.svg",
  37946. extra: 942/855,
  37947. bottom: 26/968
  37948. }
  37949. },
  37950. },
  37951. [
  37952. {
  37953. name: "Normal",
  37954. height: math.unit(5 + 8/12, "feet"),
  37955. default: true
  37956. },
  37957. ]
  37958. ))
  37959. characterMakers.push(() => makeCharacter(
  37960. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37961. {
  37962. front: {
  37963. height: math.unit(18 + 4/12, "feet"),
  37964. weight: math.unit(1500, "kg"),
  37965. name: "Front",
  37966. image: {
  37967. source: "./media/characters/solas-sharpsman/front.svg",
  37968. extra: 1698/1589,
  37969. bottom: 0/1698
  37970. }
  37971. },
  37972. },
  37973. [
  37974. {
  37975. name: "Normal",
  37976. height: math.unit(18 + 4/12, "feet"),
  37977. default: true
  37978. },
  37979. ]
  37980. ))
  37981. characterMakers.push(() => makeCharacter(
  37982. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37983. {
  37984. front: {
  37985. height: math.unit(5 + 5/12, "feet"),
  37986. weight: math.unit(180, "lb"),
  37987. name: "Front",
  37988. image: {
  37989. source: "./media/characters/october/front.svg",
  37990. extra: 1800/1650,
  37991. bottom: 0/1800
  37992. }
  37993. },
  37994. frontNsfw: {
  37995. height: math.unit(5 + 5/12, "feet"),
  37996. weight: math.unit(180, "lb"),
  37997. name: "Front (NSFW)",
  37998. image: {
  37999. source: "./media/characters/october/front-nsfw.svg",
  38000. extra: 1392/1307,
  38001. bottom: 42/1434
  38002. }
  38003. },
  38004. },
  38005. [
  38006. {
  38007. name: "Normal",
  38008. height: math.unit(5 + 5/12, "feet"),
  38009. default: true
  38010. },
  38011. ]
  38012. ))
  38013. characterMakers.push(() => makeCharacter(
  38014. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38015. {
  38016. front: {
  38017. height: math.unit(8 + 6/12, "feet"),
  38018. name: "Front",
  38019. image: {
  38020. source: "./media/characters/essynkardi/front.svg",
  38021. extra: 1914/1846,
  38022. bottom: 22/1936
  38023. }
  38024. },
  38025. },
  38026. [
  38027. {
  38028. name: "Normal",
  38029. height: math.unit(8 + 6/12, "feet"),
  38030. default: true
  38031. },
  38032. ]
  38033. ))
  38034. characterMakers.push(() => makeCharacter(
  38035. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38036. {
  38037. front: {
  38038. height: math.unit(6 + 6/12, "feet"),
  38039. weight: math.unit(7, "lb"),
  38040. name: "Front",
  38041. image: {
  38042. source: "./media/characters/icky/front.svg",
  38043. extra: 813/782,
  38044. bottom: 66/879
  38045. }
  38046. },
  38047. back: {
  38048. height: math.unit(6 + 6/12, "feet"),
  38049. weight: math.unit(7, "lb"),
  38050. name: "Back",
  38051. image: {
  38052. source: "./media/characters/icky/back.svg",
  38053. extra: 754/735,
  38054. bottom: 56/810
  38055. }
  38056. },
  38057. },
  38058. [
  38059. {
  38060. name: "Normal",
  38061. height: math.unit(6 + 6/12, "feet"),
  38062. default: true
  38063. },
  38064. ]
  38065. ))
  38066. characterMakers.push(() => makeCharacter(
  38067. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38068. {
  38069. front: {
  38070. height: math.unit(15, "feet"),
  38071. name: "Front",
  38072. image: {
  38073. source: "./media/characters/rojas/front.svg",
  38074. extra: 1462/1408,
  38075. bottom: 95/1557
  38076. }
  38077. },
  38078. back: {
  38079. height: math.unit(15, "feet"),
  38080. name: "Back",
  38081. image: {
  38082. source: "./media/characters/rojas/back.svg",
  38083. extra: 1023/954,
  38084. bottom: 28/1051
  38085. }
  38086. },
  38087. },
  38088. [
  38089. {
  38090. name: "Normal",
  38091. height: math.unit(15, "feet"),
  38092. default: true
  38093. },
  38094. ]
  38095. ))
  38096. characterMakers.push(() => makeCharacter(
  38097. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38098. {
  38099. frontHuman: {
  38100. height: math.unit(5 + 7/12, "feet"),
  38101. name: "Front (Human)",
  38102. image: {
  38103. source: "./media/characters/alek-dryagan/front-human.svg",
  38104. extra: 1687/1667,
  38105. bottom: 69/1756
  38106. }
  38107. },
  38108. backHuman: {
  38109. height: math.unit(5 + 7/12, "feet"),
  38110. name: "Back (Human)",
  38111. image: {
  38112. source: "./media/characters/alek-dryagan/back-human.svg",
  38113. extra: 1670/1649,
  38114. bottom: 65/1735
  38115. }
  38116. },
  38117. frontDemi: {
  38118. height: math.unit(65, "feet"),
  38119. name: "Front (Demi)",
  38120. image: {
  38121. source: "./media/characters/alek-dryagan/front-demi.svg",
  38122. extra: 1669/1642,
  38123. bottom: 49/1718
  38124. }
  38125. },
  38126. backDemi: {
  38127. height: math.unit(65, "feet"),
  38128. name: "Back (Demi)",
  38129. image: {
  38130. source: "./media/characters/alek-dryagan/back-demi.svg",
  38131. extra: 1658/1637,
  38132. bottom: 40/1698
  38133. }
  38134. },
  38135. mawHuman: {
  38136. height: math.unit(0.3, "feet"),
  38137. name: "Maw (Human)",
  38138. image: {
  38139. source: "./media/characters/alek-dryagan/maw-human.svg"
  38140. }
  38141. },
  38142. mawDemi: {
  38143. height: math.unit(3.8, "feet"),
  38144. name: "Maw (Demi)",
  38145. image: {
  38146. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38147. }
  38148. },
  38149. },
  38150. [
  38151. {
  38152. name: "Normal",
  38153. height: math.unit(5 + 7/12, "feet"),
  38154. default: true
  38155. },
  38156. ]
  38157. ))
  38158. characterMakers.push(() => makeCharacter(
  38159. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38160. {
  38161. frontHuman: {
  38162. height: math.unit(5 + 2/12, "feet"),
  38163. name: "Front (Human)",
  38164. image: {
  38165. source: "./media/characters/gen/front-human.svg",
  38166. extra: 1627/1538,
  38167. bottom: 71/1698
  38168. }
  38169. },
  38170. backHuman: {
  38171. height: math.unit(5 + 2/12, "feet"),
  38172. name: "Back (Human)",
  38173. image: {
  38174. source: "./media/characters/gen/back-human.svg",
  38175. extra: 1638/1548,
  38176. bottom: 69/1707
  38177. }
  38178. },
  38179. frontDemi: {
  38180. height: math.unit(5 + 2/12, "feet"),
  38181. name: "Front (Demi)",
  38182. image: {
  38183. source: "./media/characters/gen/front-demi.svg",
  38184. extra: 1627/1538,
  38185. bottom: 71/1698
  38186. }
  38187. },
  38188. backDemi: {
  38189. height: math.unit(5 + 2/12, "feet"),
  38190. name: "Back (Demi)",
  38191. image: {
  38192. source: "./media/characters/gen/back-demi.svg",
  38193. extra: 1638/1548,
  38194. bottom: 69/1707
  38195. }
  38196. },
  38197. },
  38198. [
  38199. {
  38200. name: "Normal",
  38201. height: math.unit(5 + 2/12, "feet"),
  38202. default: true
  38203. },
  38204. ]
  38205. ))
  38206. characterMakers.push(() => makeCharacter(
  38207. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38208. {
  38209. frontImp: {
  38210. height: math.unit(1 + 11/12, "feet"),
  38211. name: "Front (Imp)",
  38212. image: {
  38213. source: "./media/characters/max-kobold/front-imp.svg",
  38214. extra: 1238/1134,
  38215. bottom: 81/1319
  38216. }
  38217. },
  38218. backImp: {
  38219. height: math.unit(1 + 11/12, "feet"),
  38220. name: "Back (Imp)",
  38221. image: {
  38222. source: "./media/characters/max-kobold/back-imp.svg",
  38223. extra: 1334/1175,
  38224. bottom: 34/1368
  38225. }
  38226. },
  38227. frontDemi: {
  38228. height: math.unit(5 + 9/12, "feet"),
  38229. name: "Front (Demi)",
  38230. image: {
  38231. source: "./media/characters/max-kobold/front-demi.svg",
  38232. extra: 1715/1685,
  38233. bottom: 54/1769
  38234. }
  38235. },
  38236. backDemi: {
  38237. height: math.unit(5 + 9/12, "feet"),
  38238. name: "Back (Demi)",
  38239. image: {
  38240. source: "./media/characters/max-kobold/back-demi.svg",
  38241. extra: 1752/1729,
  38242. bottom: 41/1793
  38243. }
  38244. },
  38245. handImp: {
  38246. height: math.unit(0.45, "feet"),
  38247. name: "Hand (Imp)",
  38248. image: {
  38249. source: "./media/characters/max-kobold/hand.svg"
  38250. }
  38251. },
  38252. pawImp: {
  38253. height: math.unit(0.46, "feet"),
  38254. name: "Paw (Imp)",
  38255. image: {
  38256. source: "./media/characters/max-kobold/paw.svg"
  38257. }
  38258. },
  38259. handDemi: {
  38260. height: math.unit(0.80, "feet"),
  38261. name: "Hand (Demi)",
  38262. image: {
  38263. source: "./media/characters/max-kobold/hand.svg"
  38264. }
  38265. },
  38266. pawDemi: {
  38267. height: math.unit(1.1, "feet"),
  38268. name: "Paw (Demi)",
  38269. image: {
  38270. source: "./media/characters/max-kobold/paw.svg"
  38271. }
  38272. },
  38273. headImp: {
  38274. height: math.unit(1.33, "feet"),
  38275. name: "Head (Imp)",
  38276. image: {
  38277. source: "./media/characters/max-kobold/head-imp.svg"
  38278. }
  38279. },
  38280. mawImp: {
  38281. height: math.unit(0.75, "feet"),
  38282. name: "Maw (Imp)",
  38283. image: {
  38284. source: "./media/characters/max-kobold/maw-imp.svg"
  38285. }
  38286. },
  38287. mawDemi: {
  38288. height: math.unit(0.42, "feet"),
  38289. name: "Maw (Demi)",
  38290. image: {
  38291. source: "./media/characters/max-kobold/maw-demi.svg"
  38292. }
  38293. },
  38294. },
  38295. [
  38296. {
  38297. name: "Normal",
  38298. height: math.unit(1 + 11/12, "feet"),
  38299. default: true
  38300. },
  38301. ]
  38302. ))
  38303. characterMakers.push(() => makeCharacter(
  38304. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38305. {
  38306. front: {
  38307. height: math.unit(7 + 5/12, "feet"),
  38308. name: "Front",
  38309. image: {
  38310. source: "./media/characters/carbon/front.svg",
  38311. extra: 1754/1689,
  38312. bottom: 65/1819
  38313. }
  38314. },
  38315. back: {
  38316. height: math.unit(7 + 5/12, "feet"),
  38317. name: "Back",
  38318. image: {
  38319. source: "./media/characters/carbon/back.svg",
  38320. extra: 1762/1695,
  38321. bottom: 24/1786
  38322. }
  38323. },
  38324. frontGigantamax: {
  38325. height: math.unit(150, "feet"),
  38326. name: "Front (Gigantamax)",
  38327. image: {
  38328. source: "./media/characters/carbon/front-gigantamax.svg",
  38329. extra: 1826/1669,
  38330. bottom: 59/1885
  38331. }
  38332. },
  38333. backGigantamax: {
  38334. height: math.unit(150, "feet"),
  38335. name: "Back (Gigantamax)",
  38336. image: {
  38337. source: "./media/characters/carbon/back-gigantamax.svg",
  38338. extra: 1796/1653,
  38339. bottom: 53/1849
  38340. }
  38341. },
  38342. maw: {
  38343. height: math.unit(0.48, "feet"),
  38344. name: "Maw",
  38345. image: {
  38346. source: "./media/characters/carbon/maw.svg"
  38347. }
  38348. },
  38349. mawGigantamax: {
  38350. height: math.unit(7.5, "feet"),
  38351. name: "Maw (Gigantamax)",
  38352. image: {
  38353. source: "./media/characters/carbon/maw-gigantamax.svg"
  38354. }
  38355. },
  38356. },
  38357. [
  38358. {
  38359. name: "Normal",
  38360. height: math.unit(7 + 5/12, "feet"),
  38361. default: true
  38362. },
  38363. ]
  38364. ))
  38365. characterMakers.push(() => makeCharacter(
  38366. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38367. {
  38368. front: {
  38369. height: math.unit(6, "feet"),
  38370. name: "Front",
  38371. image: {
  38372. source: "./media/characters/maverick/front.svg",
  38373. extra: 1672/1661,
  38374. bottom: 85/1757
  38375. }
  38376. },
  38377. back: {
  38378. height: math.unit(6, "feet"),
  38379. name: "Back",
  38380. image: {
  38381. source: "./media/characters/maverick/back.svg",
  38382. extra: 1642/1631,
  38383. bottom: 38/1680
  38384. }
  38385. },
  38386. },
  38387. [
  38388. {
  38389. name: "Normal",
  38390. height: math.unit(6, "feet"),
  38391. default: true
  38392. },
  38393. ]
  38394. ))
  38395. characterMakers.push(() => makeCharacter(
  38396. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38397. {
  38398. front: {
  38399. height: math.unit(15, "feet"),
  38400. weight: math.unit(615, "lb"),
  38401. name: "Front",
  38402. image: {
  38403. source: "./media/characters/grockle/front.svg",
  38404. extra: 1535/1427,
  38405. bottom: 56/1591
  38406. }
  38407. },
  38408. },
  38409. [
  38410. {
  38411. name: "Normal",
  38412. height: math.unit(15, "feet"),
  38413. default: true
  38414. },
  38415. {
  38416. name: "Large",
  38417. height: math.unit(150, "feet")
  38418. },
  38419. {
  38420. name: "Macro",
  38421. height: math.unit(1876, "feet")
  38422. },
  38423. {
  38424. name: "Mega Macro",
  38425. height: math.unit(121940, "feet")
  38426. },
  38427. {
  38428. name: "Giga Macro",
  38429. height: math.unit(750, "km")
  38430. },
  38431. {
  38432. name: "Tera Macro",
  38433. height: math.unit(750000, "km")
  38434. },
  38435. {
  38436. name: "Galactic",
  38437. height: math.unit(1.4e5, "km")
  38438. },
  38439. {
  38440. name: "Godlike",
  38441. height: math.unit(9.8e280, "galaxies")
  38442. },
  38443. ]
  38444. ))
  38445. characterMakers.push(() => makeCharacter(
  38446. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38447. {
  38448. front: {
  38449. height: math.unit(11, "meters"),
  38450. weight: math.unit(20, "tonnes"),
  38451. name: "Front",
  38452. image: {
  38453. source: "./media/characters/alistair/front.svg",
  38454. extra: 1265/1009,
  38455. bottom: 93/1358
  38456. }
  38457. },
  38458. },
  38459. [
  38460. {
  38461. name: "Normal",
  38462. height: math.unit(11, "meters"),
  38463. default: true
  38464. },
  38465. ]
  38466. ))
  38467. characterMakers.push(() => makeCharacter(
  38468. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38469. {
  38470. front: {
  38471. height: math.unit(5 + 8/12, "feet"),
  38472. name: "Front",
  38473. image: {
  38474. source: "./media/characters/haruka/front.svg",
  38475. extra: 2012/1952,
  38476. bottom: 0/2012
  38477. }
  38478. },
  38479. },
  38480. [
  38481. {
  38482. name: "Normal",
  38483. height: math.unit(5 + 8/12, "feet"),
  38484. default: true
  38485. },
  38486. ]
  38487. ))
  38488. characterMakers.push(() => makeCharacter(
  38489. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38490. {
  38491. back: {
  38492. height: math.unit(9, "feet"),
  38493. name: "Back",
  38494. image: {
  38495. source: "./media/characters/vivian-sylveon/back.svg",
  38496. extra: 1853/1714,
  38497. bottom: 0/1853
  38498. }
  38499. },
  38500. },
  38501. [
  38502. {
  38503. name: "Normal",
  38504. height: math.unit(9, "feet"),
  38505. default: true
  38506. },
  38507. {
  38508. name: "Macro",
  38509. height: math.unit(500, "feet")
  38510. },
  38511. {
  38512. name: "Megamacro",
  38513. height: math.unit(600, "miles")
  38514. },
  38515. {
  38516. name: "Gigamacro",
  38517. height: math.unit(30000, "miles")
  38518. },
  38519. ]
  38520. ))
  38521. characterMakers.push(() => makeCharacter(
  38522. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38523. {
  38524. anthro: {
  38525. height: math.unit(5 + 10/12, "feet"),
  38526. weight: math.unit(100, "lb"),
  38527. name: "Anthro",
  38528. image: {
  38529. source: "./media/characters/daiki/anthro.svg",
  38530. extra: 1115/1027,
  38531. bottom: 69/1184
  38532. }
  38533. },
  38534. feral: {
  38535. height: math.unit(200, "feet"),
  38536. name: "Feral",
  38537. image: {
  38538. source: "./media/characters/daiki/feral.svg",
  38539. extra: 1256/313,
  38540. bottom: 39/1295
  38541. }
  38542. },
  38543. feralHead: {
  38544. height: math.unit(171, "feet"),
  38545. name: "Feral Head",
  38546. image: {
  38547. source: "./media/characters/daiki/feral-head.svg"
  38548. }
  38549. },
  38550. manaDragon: {
  38551. height: math.unit(170, "meters"),
  38552. name: "Mana-dragon",
  38553. image: {
  38554. source: "./media/characters/daiki/mana-dragon.svg",
  38555. extra: 763/420,
  38556. bottom: 97/860
  38557. }
  38558. },
  38559. },
  38560. [
  38561. {
  38562. name: "Normal",
  38563. height: math.unit(5 + 10/12, "feet"),
  38564. default: true
  38565. },
  38566. ]
  38567. ))
  38568. characterMakers.push(() => makeCharacter(
  38569. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38570. {
  38571. fullyEquippedFront: {
  38572. height: math.unit(3 + 1/12, "feet"),
  38573. weight: math.unit(24, "lb"),
  38574. name: "Fully Equipped (Front)",
  38575. image: {
  38576. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38577. extra: 687/605,
  38578. bottom: 18/705
  38579. }
  38580. },
  38581. fullyEquippedBack: {
  38582. height: math.unit(3 + 1/12, "feet"),
  38583. weight: math.unit(24, "lb"),
  38584. name: "Fully Equipped (Back)",
  38585. image: {
  38586. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38587. extra: 689/590,
  38588. bottom: 18/707
  38589. }
  38590. },
  38591. dailyWear: {
  38592. height: math.unit(3 + 1/12, "feet"),
  38593. weight: math.unit(24, "lb"),
  38594. name: "Daily Wear",
  38595. image: {
  38596. source: "./media/characters/tea-spot/daily-wear.svg",
  38597. extra: 701/620,
  38598. bottom: 21/722
  38599. }
  38600. },
  38601. maidWork: {
  38602. height: math.unit(3 + 1/12, "feet"),
  38603. weight: math.unit(24, "lb"),
  38604. name: "Maid Work",
  38605. image: {
  38606. source: "./media/characters/tea-spot/maid-work.svg",
  38607. extra: 693/609,
  38608. bottom: 15/708
  38609. }
  38610. },
  38611. },
  38612. [
  38613. {
  38614. name: "Normal",
  38615. height: math.unit(3 + 1/12, "feet"),
  38616. default: true
  38617. },
  38618. ]
  38619. ))
  38620. characterMakers.push(() => makeCharacter(
  38621. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38622. {
  38623. front: {
  38624. height: math.unit(175, "cm"),
  38625. weight: math.unit(75, "kg"),
  38626. name: "Front",
  38627. image: {
  38628. source: "./media/characters/chee/front.svg",
  38629. extra: 1796/1740,
  38630. bottom: 40/1836
  38631. }
  38632. },
  38633. },
  38634. [
  38635. {
  38636. name: "Micro-Micro",
  38637. height: math.unit(1, "nm")
  38638. },
  38639. {
  38640. name: "Micro-erst",
  38641. height: math.unit(1, "micrometer")
  38642. },
  38643. {
  38644. name: "Micro-er",
  38645. height: math.unit(1, "cm")
  38646. },
  38647. {
  38648. name: "Normal",
  38649. height: math.unit(175, "cm"),
  38650. default: true
  38651. },
  38652. {
  38653. name: "Macro",
  38654. height: math.unit(100, "m")
  38655. },
  38656. {
  38657. name: "Macro-er",
  38658. height: math.unit(1, "km")
  38659. },
  38660. {
  38661. name: "Macro-erst",
  38662. height: math.unit(10, "km")
  38663. },
  38664. {
  38665. name: "Macro-Macro",
  38666. height: math.unit(100, "km")
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(11 + 9/12, "feet"),
  38675. weight: math.unit(935, "lb"),
  38676. name: "Front",
  38677. image: {
  38678. source: "./media/characters/kingsley/front.svg",
  38679. extra: 1803/1674,
  38680. bottom: 127/1930
  38681. }
  38682. },
  38683. frontNude: {
  38684. height: math.unit(11 + 9/12, "feet"),
  38685. weight: math.unit(935, "lb"),
  38686. name: "Front (Nude)",
  38687. image: {
  38688. source: "./media/characters/kingsley/front-nude.svg",
  38689. extra: 1803/1674,
  38690. bottom: 127/1930
  38691. }
  38692. },
  38693. },
  38694. [
  38695. {
  38696. name: "Normal",
  38697. height: math.unit(11 + 9/12, "feet"),
  38698. default: true
  38699. },
  38700. ]
  38701. ))
  38702. characterMakers.push(() => makeCharacter(
  38703. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38704. {
  38705. side: {
  38706. height: math.unit(9, "feet"),
  38707. name: "Side",
  38708. image: {
  38709. source: "./media/characters/rymel/side.svg",
  38710. extra: 792/469,
  38711. bottom: 121/913
  38712. }
  38713. },
  38714. maw: {
  38715. height: math.unit(2.4, "meters"),
  38716. name: "Maw",
  38717. image: {
  38718. source: "./media/characters/rymel/maw.svg"
  38719. }
  38720. },
  38721. },
  38722. [
  38723. {
  38724. name: "House Drake",
  38725. height: math.unit(2, "feet")
  38726. },
  38727. {
  38728. name: "Reduced",
  38729. height: math.unit(4.5, "feet")
  38730. },
  38731. {
  38732. name: "Normal",
  38733. height: math.unit(9, "feet"),
  38734. default: true
  38735. },
  38736. ]
  38737. ))
  38738. characterMakers.push(() => makeCharacter(
  38739. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38740. {
  38741. front: {
  38742. height: math.unit(1.74, "meters"),
  38743. weight: math.unit(55, "kg"),
  38744. name: "Front",
  38745. image: {
  38746. source: "./media/characters/rubus/front.svg",
  38747. extra: 1894/1742,
  38748. bottom: 44/1938
  38749. }
  38750. },
  38751. },
  38752. [
  38753. {
  38754. name: "Normal",
  38755. height: math.unit(1.74, "meters"),
  38756. default: true
  38757. },
  38758. ]
  38759. ))
  38760. characterMakers.push(() => makeCharacter(
  38761. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38762. {
  38763. front: {
  38764. height: math.unit(5 + 2/12, "feet"),
  38765. weight: math.unit(112, "lb"),
  38766. name: "Front",
  38767. image: {
  38768. source: "./media/characters/cassie-kingston/front.svg",
  38769. extra: 1438/1390,
  38770. bottom: 47/1485
  38771. }
  38772. },
  38773. },
  38774. [
  38775. {
  38776. name: "Normal",
  38777. height: math.unit(5 + 2/12, "feet"),
  38778. default: true
  38779. },
  38780. {
  38781. name: "Macro",
  38782. height: math.unit(128, "feet")
  38783. },
  38784. {
  38785. name: "Megamacro",
  38786. height: math.unit(2.56, "miles")
  38787. },
  38788. ]
  38789. ))
  38790. characterMakers.push(() => makeCharacter(
  38791. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38792. {
  38793. front: {
  38794. height: math.unit(7, "feet"),
  38795. name: "Front",
  38796. image: {
  38797. source: "./media/characters/fox/front.svg",
  38798. extra: 1798/1703,
  38799. bottom: 55/1853
  38800. }
  38801. },
  38802. back: {
  38803. height: math.unit(7, "feet"),
  38804. name: "Back",
  38805. image: {
  38806. source: "./media/characters/fox/back.svg",
  38807. extra: 1748/1649,
  38808. bottom: 32/1780
  38809. }
  38810. },
  38811. head: {
  38812. height: math.unit(1.95, "feet"),
  38813. name: "Head",
  38814. image: {
  38815. source: "./media/characters/fox/head.svg"
  38816. }
  38817. },
  38818. dick: {
  38819. height: math.unit(1.33, "feet"),
  38820. name: "Dick",
  38821. image: {
  38822. source: "./media/characters/fox/dick.svg"
  38823. }
  38824. },
  38825. foot: {
  38826. height: math.unit(1, "feet"),
  38827. name: "Foot",
  38828. image: {
  38829. source: "./media/characters/fox/foot.svg"
  38830. }
  38831. },
  38832. paw: {
  38833. height: math.unit(0.92, "feet"),
  38834. name: "Paw",
  38835. image: {
  38836. source: "./media/characters/fox/paw.svg"
  38837. }
  38838. },
  38839. },
  38840. [
  38841. {
  38842. name: "Small",
  38843. height: math.unit(3, "inches")
  38844. },
  38845. {
  38846. name: "\"Realistic\"",
  38847. height: math.unit(7, "feet")
  38848. },
  38849. {
  38850. name: "Normal",
  38851. height: math.unit(150, "feet"),
  38852. default: true
  38853. },
  38854. {
  38855. name: "BIG",
  38856. height: math.unit(1200, "feet")
  38857. },
  38858. {
  38859. name: "👀",
  38860. height: math.unit(5, "miles")
  38861. },
  38862. {
  38863. name: "👀👀👀",
  38864. height: math.unit(64, "miles")
  38865. },
  38866. ]
  38867. ))
  38868. characterMakers.push(() => makeCharacter(
  38869. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38870. {
  38871. front: {
  38872. height: math.unit(625, "feet"),
  38873. name: "Front",
  38874. image: {
  38875. source: "./media/characters/asonja-rossa/front.svg",
  38876. extra: 1833/1686,
  38877. bottom: 24/1857
  38878. }
  38879. },
  38880. back: {
  38881. height: math.unit(625, "feet"),
  38882. name: "Back",
  38883. image: {
  38884. source: "./media/characters/asonja-rossa/back.svg",
  38885. extra: 1852/1753,
  38886. bottom: 26/1878
  38887. }
  38888. },
  38889. },
  38890. [
  38891. {
  38892. name: "Macro",
  38893. height: math.unit(625, "feet"),
  38894. default: true
  38895. },
  38896. ]
  38897. ))
  38898. characterMakers.push(() => makeCharacter(
  38899. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38900. {
  38901. side: {
  38902. height: math.unit(8, "feet"),
  38903. name: "Side",
  38904. image: {
  38905. source: "./media/characters/rezukii/side.svg",
  38906. extra: 979/542,
  38907. bottom: 87/1066
  38908. }
  38909. },
  38910. sitting: {
  38911. height: math.unit(14.6, "feet"),
  38912. name: "Sitting",
  38913. image: {
  38914. source: "./media/characters/rezukii/sitting.svg",
  38915. extra: 1023/813,
  38916. bottom: 45/1068
  38917. }
  38918. },
  38919. },
  38920. [
  38921. {
  38922. name: "Tiny",
  38923. height: math.unit(2, "feet")
  38924. },
  38925. {
  38926. name: "Smol",
  38927. height: math.unit(4, "feet")
  38928. },
  38929. {
  38930. name: "Normal",
  38931. height: math.unit(8, "feet"),
  38932. default: true
  38933. },
  38934. {
  38935. name: "Big",
  38936. height: math.unit(12, "feet")
  38937. },
  38938. {
  38939. name: "Macro",
  38940. height: math.unit(30, "feet")
  38941. },
  38942. ]
  38943. ))
  38944. characterMakers.push(() => makeCharacter(
  38945. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38946. {
  38947. front: {
  38948. height: math.unit(14, "feet"),
  38949. weight: math.unit(9.5, "tonnes"),
  38950. name: "Front",
  38951. image: {
  38952. source: "./media/characters/dawnheart/front.svg",
  38953. extra: 2792/2675,
  38954. bottom: 64/2856
  38955. }
  38956. },
  38957. },
  38958. [
  38959. {
  38960. name: "Normal",
  38961. height: math.unit(14, "feet"),
  38962. default: true
  38963. },
  38964. ]
  38965. ))
  38966. characterMakers.push(() => makeCharacter(
  38967. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38968. {
  38969. front: {
  38970. height: math.unit(1.7, "m"),
  38971. name: "Front",
  38972. image: {
  38973. source: "./media/characters/gladi/front.svg",
  38974. extra: 1460/1362,
  38975. bottom: 19/1479
  38976. }
  38977. },
  38978. back: {
  38979. height: math.unit(1.7, "m"),
  38980. name: "Back",
  38981. image: {
  38982. source: "./media/characters/gladi/back.svg",
  38983. extra: 1459/1357,
  38984. bottom: 12/1471
  38985. }
  38986. },
  38987. feral: {
  38988. height: math.unit(2.05, "m"),
  38989. name: "Feral",
  38990. image: {
  38991. source: "./media/characters/gladi/feral.svg",
  38992. extra: 821/557,
  38993. bottom: 91/912
  38994. }
  38995. },
  38996. },
  38997. [
  38998. {
  38999. name: "Shortest",
  39000. height: math.unit(70, "cm")
  39001. },
  39002. {
  39003. name: "Normal",
  39004. height: math.unit(1.7, "m")
  39005. },
  39006. {
  39007. name: "Macro",
  39008. height: math.unit(10, "m"),
  39009. default: true
  39010. },
  39011. {
  39012. name: "Tallest",
  39013. height: math.unit(200, "m")
  39014. },
  39015. ]
  39016. ))
  39017. characterMakers.push(() => makeCharacter(
  39018. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39019. {
  39020. front: {
  39021. height: math.unit(5 + 7/12, "feet"),
  39022. weight: math.unit(2, "tons"),
  39023. name: "Front",
  39024. image: {
  39025. source: "./media/characters/erdno/front.svg",
  39026. extra: 1234/1129,
  39027. bottom: 35/1269
  39028. }
  39029. },
  39030. angled: {
  39031. height: math.unit(5 + 7/12, "feet"),
  39032. weight: math.unit(2, "tons"),
  39033. name: "Angled",
  39034. image: {
  39035. source: "./media/characters/erdno/angled.svg",
  39036. extra: 1185/1139,
  39037. bottom: 36/1221
  39038. }
  39039. },
  39040. side: {
  39041. height: math.unit(5 + 7/12, "feet"),
  39042. weight: math.unit(2, "tons"),
  39043. name: "Side",
  39044. image: {
  39045. source: "./media/characters/erdno/side.svg",
  39046. extra: 1191/1144,
  39047. bottom: 40/1231
  39048. }
  39049. },
  39050. back: {
  39051. height: math.unit(5 + 7/12, "feet"),
  39052. weight: math.unit(2, "tons"),
  39053. name: "Back",
  39054. image: {
  39055. source: "./media/characters/erdno/back.svg",
  39056. extra: 1202/1146,
  39057. bottom: 17/1219
  39058. }
  39059. },
  39060. frontNsfw: {
  39061. height: math.unit(5 + 7/12, "feet"),
  39062. weight: math.unit(2, "tons"),
  39063. name: "Front (NSFW)",
  39064. image: {
  39065. source: "./media/characters/erdno/front-nsfw.svg",
  39066. extra: 1234/1129,
  39067. bottom: 35/1269
  39068. }
  39069. },
  39070. angledNsfw: {
  39071. height: math.unit(5 + 7/12, "feet"),
  39072. weight: math.unit(2, "tons"),
  39073. name: "Angled (NSFW)",
  39074. image: {
  39075. source: "./media/characters/erdno/angled-nsfw.svg",
  39076. extra: 1185/1139,
  39077. bottom: 36/1221
  39078. }
  39079. },
  39080. sideNsfw: {
  39081. height: math.unit(5 + 7/12, "feet"),
  39082. weight: math.unit(2, "tons"),
  39083. name: "Side (NSFW)",
  39084. image: {
  39085. source: "./media/characters/erdno/side-nsfw.svg",
  39086. extra: 1191/1144,
  39087. bottom: 40/1231
  39088. }
  39089. },
  39090. backNsfw: {
  39091. height: math.unit(5 + 7/12, "feet"),
  39092. weight: math.unit(2, "tons"),
  39093. name: "Back (NSFW)",
  39094. image: {
  39095. source: "./media/characters/erdno/back-nsfw.svg",
  39096. extra: 1202/1146,
  39097. bottom: 17/1219
  39098. }
  39099. },
  39100. frontHyper: {
  39101. height: math.unit(5 + 7/12, "feet"),
  39102. weight: math.unit(2, "tons"),
  39103. name: "Front (Hyper)",
  39104. image: {
  39105. source: "./media/characters/erdno/front-hyper.svg",
  39106. extra: 1298/1136,
  39107. bottom: 35/1333
  39108. }
  39109. },
  39110. },
  39111. [
  39112. {
  39113. name: "Normal",
  39114. height: math.unit(5 + 7/12, "feet"),
  39115. default: true
  39116. },
  39117. {
  39118. name: "Big",
  39119. height: math.unit(5.7, "meters")
  39120. },
  39121. {
  39122. name: "Macro",
  39123. height: math.unit(5.7, "kilometers")
  39124. },
  39125. {
  39126. name: "Megamacro",
  39127. height: math.unit(5.7, "earths")
  39128. },
  39129. ]
  39130. ))
  39131. characterMakers.push(() => makeCharacter(
  39132. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39133. {
  39134. front: {
  39135. height: math.unit(5 + 10/12, "feet"),
  39136. weight: math.unit(150, "lb"),
  39137. name: "Front",
  39138. image: {
  39139. source: "./media/characters/jamie/front.svg",
  39140. extra: 1908/1768,
  39141. bottom: 19/1927
  39142. }
  39143. },
  39144. },
  39145. [
  39146. {
  39147. name: "Minimum",
  39148. height: math.unit(2, "cm")
  39149. },
  39150. {
  39151. name: "Micro",
  39152. height: math.unit(3, "inches")
  39153. },
  39154. {
  39155. name: "Normal",
  39156. height: math.unit(5 + 10/12, "feet"),
  39157. default: true
  39158. },
  39159. {
  39160. name: "Macro",
  39161. height: math.unit(150, "feet")
  39162. },
  39163. {
  39164. name: "Megamacro",
  39165. height: math.unit(10000, "m")
  39166. },
  39167. ]
  39168. ))
  39169. characterMakers.push(() => makeCharacter(
  39170. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39171. {
  39172. front: {
  39173. height: math.unit(2, "meters"),
  39174. weight: math.unit(100, "kg"),
  39175. name: "Front",
  39176. image: {
  39177. source: "./media/characters/shiron/front.svg",
  39178. extra: 2103/1985,
  39179. bottom: 98/2201
  39180. }
  39181. },
  39182. back: {
  39183. height: math.unit(2, "meters"),
  39184. weight: math.unit(100, "kg"),
  39185. name: "Back",
  39186. image: {
  39187. source: "./media/characters/shiron/back.svg",
  39188. extra: 2110/2015,
  39189. bottom: 89/2199
  39190. }
  39191. },
  39192. hand: {
  39193. height: math.unit(0.96, "feet"),
  39194. name: "Hand",
  39195. image: {
  39196. source: "./media/characters/shiron/hand.svg"
  39197. }
  39198. },
  39199. foot: {
  39200. height: math.unit(1.464, "feet"),
  39201. name: "Foot",
  39202. image: {
  39203. source: "./media/characters/shiron/foot.svg"
  39204. }
  39205. },
  39206. },
  39207. [
  39208. {
  39209. name: "Normal",
  39210. height: math.unit(2, "meters")
  39211. },
  39212. {
  39213. name: "Macro",
  39214. height: math.unit(500, "meters"),
  39215. default: true
  39216. },
  39217. {
  39218. name: "Megamacro",
  39219. height: math.unit(20, "km")
  39220. },
  39221. ]
  39222. ))
  39223. characterMakers.push(() => makeCharacter(
  39224. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39225. {
  39226. front: {
  39227. height: math.unit(6, "feet"),
  39228. name: "Front",
  39229. image: {
  39230. source: "./media/characters/sam/front.svg",
  39231. extra: 849/826,
  39232. bottom: 19/868
  39233. }
  39234. },
  39235. },
  39236. [
  39237. {
  39238. name: "Normal",
  39239. height: math.unit(6, "feet"),
  39240. default: true
  39241. },
  39242. ]
  39243. ))
  39244. characterMakers.push(() => makeCharacter(
  39245. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39246. {
  39247. front: {
  39248. height: math.unit(8 + 4/12, "feet"),
  39249. weight: math.unit(122, "kg"),
  39250. name: "Front",
  39251. image: {
  39252. source: "./media/characters/namori-kurogawa/front.svg",
  39253. extra: 1894/1576,
  39254. bottom: 34/1928
  39255. }
  39256. },
  39257. },
  39258. [
  39259. {
  39260. name: "Normal",
  39261. height: math.unit(8 + 4/12, "feet"),
  39262. default: true
  39263. },
  39264. ]
  39265. ))
  39266. characterMakers.push(() => makeCharacter(
  39267. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39268. {
  39269. front: {
  39270. height: math.unit(9, "feet"),
  39271. weight: math.unit(621, "lb"),
  39272. name: "Front",
  39273. image: {
  39274. source: "./media/characters/unmru/front.svg",
  39275. extra: 1853/1747,
  39276. bottom: 73/1926
  39277. }
  39278. },
  39279. side: {
  39280. height: math.unit(9, "feet"),
  39281. weight: math.unit(621, "lb"),
  39282. name: "Side",
  39283. image: {
  39284. source: "./media/characters/unmru/side.svg",
  39285. extra: 1781/1671,
  39286. bottom: 127/1908
  39287. }
  39288. },
  39289. back: {
  39290. height: math.unit(9, "feet"),
  39291. weight: math.unit(621, "lb"),
  39292. name: "Back",
  39293. image: {
  39294. source: "./media/characters/unmru/back.svg",
  39295. extra: 1894/1765,
  39296. bottom: 75/1969
  39297. }
  39298. },
  39299. dick: {
  39300. height: math.unit(3, "feet"),
  39301. weight: math.unit(35, "lb"),
  39302. name: "Dick",
  39303. image: {
  39304. source: "./media/characters/unmru/dick.svg"
  39305. }
  39306. },
  39307. },
  39308. [
  39309. {
  39310. name: "Normal",
  39311. height: math.unit(9, "feet")
  39312. },
  39313. {
  39314. name: "Natural",
  39315. height: math.unit(27, "feet"),
  39316. default: true
  39317. },
  39318. {
  39319. name: "Giant",
  39320. height: math.unit(90, "feet")
  39321. },
  39322. {
  39323. name: "Kaiju",
  39324. height: math.unit(270, "feet")
  39325. },
  39326. {
  39327. name: "Macro",
  39328. height: math.unit(900, "feet")
  39329. },
  39330. {
  39331. name: "Macro+",
  39332. height: math.unit(2700, "feet")
  39333. },
  39334. {
  39335. name: "Megamacro",
  39336. height: math.unit(9000, "feet")
  39337. },
  39338. {
  39339. name: "City-Crushing",
  39340. height: math.unit(27000, "feet")
  39341. },
  39342. {
  39343. name: "Mountain-Mashing",
  39344. height: math.unit(90000, "feet")
  39345. },
  39346. {
  39347. name: "Earth-Eclipsing",
  39348. height: math.unit(2.7e8, "feet")
  39349. },
  39350. {
  39351. name: "Sol-Swallowing",
  39352. height: math.unit(9e10, "feet")
  39353. },
  39354. {
  39355. name: "Majoris-Munching",
  39356. height: math.unit(2.7e13, "feet")
  39357. },
  39358. ]
  39359. ))
  39360. characterMakers.push(() => makeCharacter(
  39361. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39362. {
  39363. front: {
  39364. height: math.unit(1, "inch"),
  39365. name: "Front",
  39366. image: {
  39367. source: "./media/characters/squeaks-mouse/front.svg",
  39368. extra: 352/308,
  39369. bottom: 25/377
  39370. }
  39371. },
  39372. },
  39373. [
  39374. {
  39375. name: "Micro",
  39376. height: math.unit(1, "inch"),
  39377. default: true
  39378. },
  39379. ]
  39380. ))
  39381. characterMakers.push(() => makeCharacter(
  39382. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39383. {
  39384. side: {
  39385. height: math.unit(35, "feet"),
  39386. name: "Side",
  39387. image: {
  39388. source: "./media/characters/sayko/side.svg",
  39389. extra: 1697/1021,
  39390. bottom: 82/1779
  39391. }
  39392. },
  39393. head: {
  39394. height: math.unit(16, "feet"),
  39395. name: "Head",
  39396. image: {
  39397. source: "./media/characters/sayko/head.svg"
  39398. }
  39399. },
  39400. forepaw: {
  39401. height: math.unit(7.85, "feet"),
  39402. name: "Forepaw",
  39403. image: {
  39404. source: "./media/characters/sayko/forepaw.svg"
  39405. }
  39406. },
  39407. hindpaw: {
  39408. height: math.unit(8.8, "feet"),
  39409. name: "Hindpaw",
  39410. image: {
  39411. source: "./media/characters/sayko/hindpaw.svg"
  39412. }
  39413. },
  39414. },
  39415. [
  39416. {
  39417. name: "Normal",
  39418. height: math.unit(35, "feet"),
  39419. default: true
  39420. },
  39421. {
  39422. name: "Colossus",
  39423. height: math.unit(100, "meters")
  39424. },
  39425. {
  39426. name: "\"Small\" Deity",
  39427. height: math.unit(1, "km")
  39428. },
  39429. {
  39430. name: "\"Large\" Deity",
  39431. height: math.unit(15, "km")
  39432. },
  39433. ]
  39434. ))
  39435. characterMakers.push(() => makeCharacter(
  39436. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39437. {
  39438. front: {
  39439. height: math.unit(6, "feet"),
  39440. weight: math.unit(250, "lb"),
  39441. name: "Front",
  39442. image: {
  39443. source: "./media/characters/mukiro/front.svg",
  39444. extra: 1368/1310,
  39445. bottom: 34/1402
  39446. }
  39447. },
  39448. },
  39449. [
  39450. {
  39451. name: "Normal",
  39452. height: math.unit(6, "feet"),
  39453. default: true
  39454. },
  39455. ]
  39456. ))
  39457. characterMakers.push(() => makeCharacter(
  39458. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39459. {
  39460. front: {
  39461. height: math.unit(12 + 4/12, "feet"),
  39462. name: "Front",
  39463. image: {
  39464. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39465. extra: 1346/1311,
  39466. bottom: 65/1411
  39467. }
  39468. },
  39469. },
  39470. [
  39471. {
  39472. name: "Base",
  39473. height: math.unit(12 + 4/12, "feet"),
  39474. default: true
  39475. },
  39476. {
  39477. name: "Macro",
  39478. height: math.unit(150, "feet")
  39479. },
  39480. {
  39481. name: "Mega",
  39482. height: math.unit(2, "miles")
  39483. },
  39484. {
  39485. name: "Demi God",
  39486. height: math.unit(4, "AU")
  39487. },
  39488. {
  39489. name: "God Size",
  39490. height: math.unit(1, "universe")
  39491. },
  39492. ]
  39493. ))
  39494. characterMakers.push(() => makeCharacter(
  39495. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39496. {
  39497. front: {
  39498. height: math.unit(3 + 3/12, "feet"),
  39499. weight: math.unit(88, "lb"),
  39500. name: "Front",
  39501. image: {
  39502. source: "./media/characters/trey/front.svg",
  39503. extra: 1815/1509,
  39504. bottom: 60/1875
  39505. }
  39506. },
  39507. },
  39508. [
  39509. {
  39510. name: "Normal",
  39511. height: math.unit(3 + 3/12, "feet"),
  39512. default: true
  39513. },
  39514. ]
  39515. ))
  39516. characterMakers.push(() => makeCharacter(
  39517. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39518. {
  39519. front: {
  39520. height: math.unit(4, "meters"),
  39521. name: "Front",
  39522. image: {
  39523. source: "./media/characters/adelonda/front.svg",
  39524. extra: 1077/982,
  39525. bottom: 39/1116
  39526. }
  39527. },
  39528. back: {
  39529. height: math.unit(4, "meters"),
  39530. name: "Back",
  39531. image: {
  39532. source: "./media/characters/adelonda/back.svg",
  39533. extra: 1105/1003,
  39534. bottom: 25/1130
  39535. }
  39536. },
  39537. feral: {
  39538. height: math.unit(40/1.5, "meters"),
  39539. name: "Feral",
  39540. image: {
  39541. source: "./media/characters/adelonda/feral.svg",
  39542. extra: 597/271,
  39543. bottom: 387/984
  39544. }
  39545. },
  39546. },
  39547. [
  39548. {
  39549. name: "Normal",
  39550. height: math.unit(4, "meters"),
  39551. default: true
  39552. },
  39553. ]
  39554. ))
  39555. characterMakers.push(() => makeCharacter(
  39556. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39557. {
  39558. front: {
  39559. height: math.unit(8 + 4/12, "feet"),
  39560. weight: math.unit(670, "lb"),
  39561. name: "Front",
  39562. image: {
  39563. source: "./media/characters/acadiel/front.svg",
  39564. extra: 1901/1595,
  39565. bottom: 142/2043
  39566. }
  39567. },
  39568. },
  39569. [
  39570. {
  39571. name: "Normal",
  39572. height: math.unit(8 + 4/12, "feet"),
  39573. default: true
  39574. },
  39575. {
  39576. name: "Macro",
  39577. height: math.unit(200, "feet")
  39578. },
  39579. ]
  39580. ))
  39581. characterMakers.push(() => makeCharacter(
  39582. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39583. {
  39584. front: {
  39585. height: math.unit(6 + 2/12, "feet"),
  39586. weight: math.unit(185, "lb"),
  39587. name: "Front",
  39588. image: {
  39589. source: "./media/characters/kayne-ein/front.svg",
  39590. extra: 1780/1560,
  39591. bottom: 81/1861
  39592. }
  39593. },
  39594. },
  39595. [
  39596. {
  39597. name: "Normal",
  39598. height: math.unit(6 + 2/12, "feet"),
  39599. default: true
  39600. },
  39601. {
  39602. name: "Transformation Stage",
  39603. height: math.unit(15, "feet")
  39604. },
  39605. {
  39606. name: "Macro",
  39607. height: math.unit(150, "feet")
  39608. },
  39609. {
  39610. name: "Earth's Shadow",
  39611. height: math.unit(6200, "miles")
  39612. },
  39613. {
  39614. name: "Universal Demon",
  39615. height: math.unit(28e9, "parsecs")
  39616. },
  39617. {
  39618. name: "Multiverse God",
  39619. height: math.unit(3, "multiverses")
  39620. },
  39621. ]
  39622. ))
  39623. characterMakers.push(() => makeCharacter(
  39624. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39625. {
  39626. front: {
  39627. height: math.unit(5 + 5/12, "feet"),
  39628. name: "Front",
  39629. image: {
  39630. source: "./media/characters/fawn/front.svg",
  39631. extra: 1873/1731,
  39632. bottom: 95/1968
  39633. }
  39634. },
  39635. back: {
  39636. height: math.unit(5 + 5/12, "feet"),
  39637. name: "Back",
  39638. image: {
  39639. source: "./media/characters/fawn/back.svg",
  39640. extra: 1813/1700,
  39641. bottom: 14/1827
  39642. }
  39643. },
  39644. hoof: {
  39645. height: math.unit(1.45, "feet"),
  39646. name: "Hoof",
  39647. image: {
  39648. source: "./media/characters/fawn/hoof.svg"
  39649. }
  39650. },
  39651. },
  39652. [
  39653. {
  39654. name: "Normal",
  39655. height: math.unit(5 + 5/12, "feet"),
  39656. default: true
  39657. },
  39658. ]
  39659. ))
  39660. characterMakers.push(() => makeCharacter(
  39661. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39662. {
  39663. front: {
  39664. height: math.unit(2 + 5/12, "feet"),
  39665. name: "Front",
  39666. image: {
  39667. source: "./media/characters/orion/front.svg",
  39668. extra: 1366/1304,
  39669. bottom: 43/1409
  39670. }
  39671. },
  39672. paw: {
  39673. height: math.unit(0.52, "feet"),
  39674. name: "Paw",
  39675. image: {
  39676. source: "./media/characters/orion/paw.svg"
  39677. }
  39678. },
  39679. },
  39680. [
  39681. {
  39682. name: "Normal",
  39683. height: math.unit(2 + 5/12, "feet"),
  39684. default: true
  39685. },
  39686. ]
  39687. ))
  39688. characterMakers.push(() => makeCharacter(
  39689. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39690. {
  39691. front: {
  39692. height: math.unit(5 + 10/12, "feet"),
  39693. name: "Front",
  39694. image: {
  39695. source: "./media/characters/vera/front.svg",
  39696. extra: 1680/1575,
  39697. bottom: 49/1729
  39698. }
  39699. },
  39700. back: {
  39701. height: math.unit(5 + 10/12, "feet"),
  39702. name: "Back",
  39703. image: {
  39704. source: "./media/characters/vera/back.svg",
  39705. extra: 1700/1588,
  39706. bottom: 18/1718
  39707. }
  39708. },
  39709. arcanine: {
  39710. height: math.unit(6 + 8/12, "feet"),
  39711. name: "Arcanine",
  39712. image: {
  39713. source: "./media/characters/vera/arcanine.svg",
  39714. extra: 1590/1511,
  39715. bottom: 71/1661
  39716. }
  39717. },
  39718. maw: {
  39719. height: math.unit(0.82, "feet"),
  39720. name: "Maw",
  39721. image: {
  39722. source: "./media/characters/vera/maw.svg"
  39723. }
  39724. },
  39725. mawArcanine: {
  39726. height: math.unit(0.97, "feet"),
  39727. name: "Maw (Arcanine)",
  39728. image: {
  39729. source: "./media/characters/vera/maw-arcanine.svg"
  39730. }
  39731. },
  39732. paw: {
  39733. height: math.unit(0.75, "feet"),
  39734. name: "Paw",
  39735. image: {
  39736. source: "./media/characters/vera/paw.svg"
  39737. }
  39738. },
  39739. pawprint: {
  39740. height: math.unit(0.52, "feet"),
  39741. name: "Pawprint",
  39742. image: {
  39743. source: "./media/characters/vera/pawprint.svg"
  39744. }
  39745. },
  39746. },
  39747. [
  39748. {
  39749. name: "Normal",
  39750. height: math.unit(5 + 10/12, "feet"),
  39751. default: true
  39752. },
  39753. {
  39754. name: "Macro",
  39755. height: math.unit(75, "feet")
  39756. },
  39757. ]
  39758. ))
  39759. characterMakers.push(() => makeCharacter(
  39760. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39761. {
  39762. front: {
  39763. height: math.unit(4, "feet"),
  39764. weight: math.unit(40, "lb"),
  39765. name: "Front",
  39766. image: {
  39767. source: "./media/characters/orvan-rabbit/front.svg",
  39768. extra: 1896/1642,
  39769. bottom: 29/1925
  39770. }
  39771. },
  39772. },
  39773. [
  39774. {
  39775. name: "Normal",
  39776. height: math.unit(4, "feet"),
  39777. default: true
  39778. },
  39779. ]
  39780. ))
  39781. characterMakers.push(() => makeCharacter(
  39782. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39783. {
  39784. front: {
  39785. height: math.unit(6, "feet"),
  39786. weight: math.unit(168, "lb"),
  39787. name: "Front",
  39788. image: {
  39789. source: "./media/characters/lisa/front.svg",
  39790. extra: 2065/1867,
  39791. bottom: 46/2111
  39792. }
  39793. },
  39794. back: {
  39795. height: math.unit(6, "feet"),
  39796. weight: math.unit(168, "lb"),
  39797. name: "Back",
  39798. image: {
  39799. source: "./media/characters/lisa/back.svg",
  39800. extra: 1982/1838,
  39801. bottom: 29/2011
  39802. }
  39803. },
  39804. maw: {
  39805. height: math.unit(0.81, "feet"),
  39806. name: "Maw",
  39807. image: {
  39808. source: "./media/characters/lisa/maw.svg"
  39809. }
  39810. },
  39811. paw: {
  39812. height: math.unit(0.9, "feet"),
  39813. name: "Paw",
  39814. image: {
  39815. source: "./media/characters/lisa/paw.svg"
  39816. }
  39817. },
  39818. caribousune: {
  39819. height: math.unit(7 + 2/12, "feet"),
  39820. weight: math.unit(268, "lb"),
  39821. name: "Caribousune",
  39822. image: {
  39823. source: "./media/characters/lisa/caribousune.svg",
  39824. extra: 1843/1633,
  39825. bottom: 29/1872
  39826. }
  39827. },
  39828. frontCaribousune: {
  39829. height: math.unit(7 + 2/12, "feet"),
  39830. weight: math.unit(268, "lb"),
  39831. name: "Front (Caribousune)",
  39832. image: {
  39833. source: "./media/characters/lisa/front-caribousune.svg",
  39834. extra: 1818/1638,
  39835. bottom: 52/1870
  39836. }
  39837. },
  39838. sideCaribousune: {
  39839. height: math.unit(7 + 2/12, "feet"),
  39840. weight: math.unit(268, "lb"),
  39841. name: "Side (Caribousune)",
  39842. image: {
  39843. source: "./media/characters/lisa/side-caribousune.svg",
  39844. extra: 1851/1635,
  39845. bottom: 16/1867
  39846. }
  39847. },
  39848. backCaribousune: {
  39849. height: math.unit(7 + 2/12, "feet"),
  39850. weight: math.unit(268, "lb"),
  39851. name: "Back (Caribousune)",
  39852. image: {
  39853. source: "./media/characters/lisa/back-caribousune.svg",
  39854. extra: 1801/1604,
  39855. bottom: 44/1845
  39856. }
  39857. },
  39858. caribou: {
  39859. height: math.unit(7 + 2/12, "feet"),
  39860. weight: math.unit(268, "lb"),
  39861. name: "Caribou",
  39862. image: {
  39863. source: "./media/characters/lisa/caribou.svg",
  39864. extra: 1843/1633,
  39865. bottom: 29/1872
  39866. }
  39867. },
  39868. frontCaribou: {
  39869. height: math.unit(7 + 2/12, "feet"),
  39870. weight: math.unit(268, "lb"),
  39871. name: "Front (Caribou)",
  39872. image: {
  39873. source: "./media/characters/lisa/front-caribou.svg",
  39874. extra: 1818/1638,
  39875. bottom: 52/1870
  39876. }
  39877. },
  39878. sideCaribou: {
  39879. height: math.unit(7 + 2/12, "feet"),
  39880. weight: math.unit(268, "lb"),
  39881. name: "Side (Caribou)",
  39882. image: {
  39883. source: "./media/characters/lisa/side-caribou.svg",
  39884. extra: 1851/1635,
  39885. bottom: 16/1867
  39886. }
  39887. },
  39888. backCaribou: {
  39889. height: math.unit(7 + 2/12, "feet"),
  39890. weight: math.unit(268, "lb"),
  39891. name: "Back (Caribou)",
  39892. image: {
  39893. source: "./media/characters/lisa/back-caribou.svg",
  39894. extra: 1801/1604,
  39895. bottom: 44/1845
  39896. }
  39897. },
  39898. mawCaribou: {
  39899. height: math.unit(1.45, "feet"),
  39900. name: "Maw (Caribou)",
  39901. image: {
  39902. source: "./media/characters/lisa/maw-caribou.svg"
  39903. }
  39904. },
  39905. mawCaribousune: {
  39906. height: math.unit(1.45, "feet"),
  39907. name: "Maw (Caribousune)",
  39908. image: {
  39909. source: "./media/characters/lisa/maw-caribousune.svg"
  39910. }
  39911. },
  39912. pawCaribousune: {
  39913. height: math.unit(1.61, "feet"),
  39914. name: "Paw (Caribou)",
  39915. image: {
  39916. source: "./media/characters/lisa/paw-caribousune.svg"
  39917. }
  39918. },
  39919. },
  39920. [
  39921. {
  39922. name: "Normal",
  39923. height: math.unit(6, "feet")
  39924. },
  39925. {
  39926. name: "God Size",
  39927. height: math.unit(72, "feet"),
  39928. default: true
  39929. },
  39930. {
  39931. name: "Towering",
  39932. height: math.unit(288, "feet")
  39933. },
  39934. {
  39935. name: "City Size",
  39936. height: math.unit(48384, "feet")
  39937. },
  39938. {
  39939. name: "Continental",
  39940. height: math.unit(4200, "miles")
  39941. },
  39942. {
  39943. name: "Planet Eater",
  39944. height: math.unit(42, "earths")
  39945. },
  39946. {
  39947. name: "Star Swallower",
  39948. height: math.unit(42, "solarradii")
  39949. },
  39950. {
  39951. name: "System Swallower",
  39952. height: math.unit(84000, "AU")
  39953. },
  39954. {
  39955. name: "Galaxy Gobbler",
  39956. height: math.unit(42, "galaxies")
  39957. },
  39958. {
  39959. name: "Universe Devourer",
  39960. height: math.unit(42, "universes")
  39961. },
  39962. {
  39963. name: "Multiverse Muncher",
  39964. height: math.unit(42, "multiverses")
  39965. },
  39966. ]
  39967. ))
  39968. characterMakers.push(() => makeCharacter(
  39969. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39970. {
  39971. front: {
  39972. height: math.unit(36, "feet"),
  39973. name: "Front",
  39974. image: {
  39975. source: "./media/characters/shadow-rat/front.svg",
  39976. extra: 1845/1758,
  39977. bottom: 83/1928
  39978. }
  39979. },
  39980. },
  39981. [
  39982. {
  39983. name: "Macro",
  39984. height: math.unit(36, "feet"),
  39985. default: true
  39986. },
  39987. ]
  39988. ))
  39989. characterMakers.push(() => makeCharacter(
  39990. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39991. {
  39992. side: {
  39993. height: math.unit(8, "feet"),
  39994. weight: math.unit(2630, "lb"),
  39995. name: "Side",
  39996. image: {
  39997. source: "./media/characters/torallia/side.svg",
  39998. extra: 2164/2021,
  39999. bottom: 371/2535
  40000. }
  40001. },
  40002. },
  40003. [
  40004. {
  40005. name: "Mortal Interaction",
  40006. height: math.unit(8, "feet")
  40007. },
  40008. {
  40009. name: "Natural",
  40010. height: math.unit(24, "feet"),
  40011. default: true
  40012. },
  40013. {
  40014. name: "Giant",
  40015. height: math.unit(80, "feet")
  40016. },
  40017. {
  40018. name: "Kaiju",
  40019. height: math.unit(240, "feet")
  40020. },
  40021. {
  40022. name: "Macro",
  40023. height: math.unit(800, "feet")
  40024. },
  40025. {
  40026. name: "Macro+",
  40027. height: math.unit(2400, "feet")
  40028. },
  40029. {
  40030. name: "Macro++",
  40031. height: math.unit(8000, "feet")
  40032. },
  40033. {
  40034. name: "City-Crushing",
  40035. height: math.unit(24000, "feet")
  40036. },
  40037. {
  40038. name: "Mountain-Mashing",
  40039. height: math.unit(80000, "feet")
  40040. },
  40041. {
  40042. name: "District Demolisher",
  40043. height: math.unit(240000, "feet")
  40044. },
  40045. {
  40046. name: "Tri-County Terror",
  40047. height: math.unit(800000, "feet")
  40048. },
  40049. {
  40050. name: "State Smasher",
  40051. height: math.unit(2.4e6, "feet")
  40052. },
  40053. {
  40054. name: "Nation Nemesis",
  40055. height: math.unit(8e6, "feet")
  40056. },
  40057. {
  40058. name: "Continent Cracker",
  40059. height: math.unit(2.4e7, "feet")
  40060. },
  40061. {
  40062. name: "Planet-Pillaging",
  40063. height: math.unit(8e7, "feet")
  40064. },
  40065. {
  40066. name: "Earth-Eclipsing",
  40067. height: math.unit(2.4e8, "feet")
  40068. },
  40069. {
  40070. name: "Jovian-Jostling",
  40071. height: math.unit(8e8, "feet")
  40072. },
  40073. {
  40074. name: "Gas Giant Gulper",
  40075. height: math.unit(2.4e9, "feet")
  40076. },
  40077. {
  40078. name: "Astral Annihilator",
  40079. height: math.unit(8e9, "feet")
  40080. },
  40081. {
  40082. name: "Celestial Conqueror",
  40083. height: math.unit(2.4e10, "feet")
  40084. },
  40085. {
  40086. name: "Sol-Swallowing",
  40087. height: math.unit(8e10, "feet")
  40088. },
  40089. {
  40090. name: "Hunter of the Heavens",
  40091. height: math.unit(2.4e13, "feet")
  40092. },
  40093. ]
  40094. ))
  40095. characterMakers.push(() => makeCharacter(
  40096. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40097. {
  40098. front: {
  40099. height: math.unit(6 + 8/12, "feet"),
  40100. weight: math.unit(250, "kilograms"),
  40101. volume: math.unit(28, "liters"),
  40102. name: "Front",
  40103. image: {
  40104. source: "./media/characters/rebecca-pawlson/front.svg",
  40105. extra: 1737/1596,
  40106. bottom: 107/1844
  40107. }
  40108. },
  40109. back: {
  40110. height: math.unit(6 + 8/12, "feet"),
  40111. weight: math.unit(250, "kilograms"),
  40112. volume: math.unit(28, "liters"),
  40113. name: "Back",
  40114. image: {
  40115. source: "./media/characters/rebecca-pawlson/back.svg",
  40116. extra: 1702/1523,
  40117. bottom: 86/1788
  40118. }
  40119. },
  40120. },
  40121. [
  40122. {
  40123. name: "Normal",
  40124. height: math.unit(6 + 8/12, "feet")
  40125. },
  40126. {
  40127. name: "Mini Macro",
  40128. height: math.unit(10, "feet"),
  40129. default: true
  40130. },
  40131. {
  40132. name: "Macro",
  40133. height: math.unit(100, "feet")
  40134. },
  40135. {
  40136. name: "Mega Macro",
  40137. height: math.unit(2500, "feet")
  40138. },
  40139. {
  40140. name: "Giga Macro",
  40141. height: math.unit(50, "miles")
  40142. },
  40143. ]
  40144. ))
  40145. characterMakers.push(() => makeCharacter(
  40146. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40147. {
  40148. front: {
  40149. height: math.unit(7 + 6/12, "feet"),
  40150. weight: math.unit(600, "lb"),
  40151. name: "Front",
  40152. image: {
  40153. source: "./media/characters/moxie-nova/front.svg",
  40154. extra: 1734/1652,
  40155. bottom: 41/1775
  40156. }
  40157. },
  40158. },
  40159. [
  40160. {
  40161. name: "Normal",
  40162. height: math.unit(7 + 6/12, "feet"),
  40163. default: true
  40164. },
  40165. ]
  40166. ))
  40167. characterMakers.push(() => makeCharacter(
  40168. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40169. {
  40170. goat: {
  40171. height: math.unit(4, "feet"),
  40172. weight: math.unit(180, "lb"),
  40173. name: "Goat",
  40174. image: {
  40175. source: "./media/characters/tiffany/goat.svg",
  40176. extra: 1845/1595,
  40177. bottom: 106/1951
  40178. }
  40179. },
  40180. front: {
  40181. height: math.unit(5, "feet"),
  40182. weight: math.unit(150, "lb"),
  40183. name: "Foxcoon",
  40184. image: {
  40185. source: "./media/characters/tiffany/foxcoon.svg",
  40186. extra: 1941/1845,
  40187. bottom: 58/1999
  40188. }
  40189. },
  40190. },
  40191. [
  40192. {
  40193. name: "Normal",
  40194. height: math.unit(5, "feet"),
  40195. default: true
  40196. },
  40197. ]
  40198. ))
  40199. characterMakers.push(() => makeCharacter(
  40200. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40201. {
  40202. front: {
  40203. height: math.unit(8, "feet"),
  40204. weight: math.unit(300, "lb"),
  40205. name: "Front",
  40206. image: {
  40207. source: "./media/characters/raxinath/front.svg",
  40208. extra: 1407/1309,
  40209. bottom: 39/1446
  40210. }
  40211. },
  40212. back: {
  40213. height: math.unit(8, "feet"),
  40214. weight: math.unit(300, "lb"),
  40215. name: "Back",
  40216. image: {
  40217. source: "./media/characters/raxinath/back.svg",
  40218. extra: 1405/1315,
  40219. bottom: 9/1414
  40220. }
  40221. },
  40222. },
  40223. [
  40224. {
  40225. name: "Speck",
  40226. height: math.unit(0.5, "nm")
  40227. },
  40228. {
  40229. name: "Micro",
  40230. height: math.unit(3, "inches")
  40231. },
  40232. {
  40233. name: "Kobold",
  40234. height: math.unit(3, "feet")
  40235. },
  40236. {
  40237. name: "Normal",
  40238. height: math.unit(8, "feet"),
  40239. default: true
  40240. },
  40241. {
  40242. name: "Giant",
  40243. height: math.unit(50, "feet")
  40244. },
  40245. {
  40246. name: "Macro",
  40247. height: math.unit(1000, "feet")
  40248. },
  40249. {
  40250. name: "Megamacro",
  40251. height: math.unit(1, "mile")
  40252. },
  40253. ]
  40254. ))
  40255. characterMakers.push(() => makeCharacter(
  40256. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40257. {
  40258. front: {
  40259. height: math.unit(10, "feet"),
  40260. weight: math.unit(1442, "lb"),
  40261. name: "Front",
  40262. image: {
  40263. source: "./media/characters/mal-dragon/front.svg",
  40264. extra: 1515/1444,
  40265. bottom: 113/1628
  40266. }
  40267. },
  40268. back: {
  40269. height: math.unit(10, "feet"),
  40270. weight: math.unit(1442, "lb"),
  40271. name: "Back",
  40272. image: {
  40273. source: "./media/characters/mal-dragon/back.svg",
  40274. extra: 1527/1434,
  40275. bottom: 25/1552
  40276. }
  40277. },
  40278. },
  40279. [
  40280. {
  40281. name: "Mortal Interaction",
  40282. height: math.unit(10, "feet"),
  40283. default: true
  40284. },
  40285. {
  40286. name: "Large",
  40287. height: math.unit(30, "feet")
  40288. },
  40289. {
  40290. name: "Kaiju",
  40291. height: math.unit(300, "feet")
  40292. },
  40293. {
  40294. name: "Megamacro",
  40295. height: math.unit(10000, "feet")
  40296. },
  40297. {
  40298. name: "Continent Cracker",
  40299. height: math.unit(30000000, "feet")
  40300. },
  40301. {
  40302. name: "Sol-Swallowing",
  40303. height: math.unit(1e11, "feet")
  40304. },
  40305. {
  40306. name: "Light Universal",
  40307. height: math.unit(5, "universes")
  40308. },
  40309. {
  40310. name: "Universe Atoms",
  40311. height: math.unit(1.829e9, "universes")
  40312. },
  40313. {
  40314. name: "Light Multiversal",
  40315. height: math.unit(5, "multiverses")
  40316. },
  40317. {
  40318. name: "Multiverse Atoms",
  40319. height: math.unit(1.829e9, "multiverses")
  40320. },
  40321. {
  40322. name: "Fabric of Time",
  40323. height: math.unit(1e262, "multiverses")
  40324. },
  40325. ]
  40326. ))
  40327. characterMakers.push(() => makeCharacter(
  40328. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40329. {
  40330. front: {
  40331. height: math.unit(9, "feet"),
  40332. weight: math.unit(1050, "lb"),
  40333. name: "Front",
  40334. image: {
  40335. source: "./media/characters/tabitha/front.svg",
  40336. extra: 2083/1994,
  40337. bottom: 68/2151
  40338. }
  40339. },
  40340. },
  40341. [
  40342. {
  40343. name: "Baseline",
  40344. height: math.unit(9, "feet"),
  40345. default: true
  40346. },
  40347. {
  40348. name: "Giant",
  40349. height: math.unit(90, "feet")
  40350. },
  40351. {
  40352. name: "Macro",
  40353. height: math.unit(900, "feet")
  40354. },
  40355. {
  40356. name: "Megamacro",
  40357. height: math.unit(9000, "feet")
  40358. },
  40359. {
  40360. name: "City-Crushing",
  40361. height: math.unit(27000, "feet")
  40362. },
  40363. {
  40364. name: "Mountain-Mashing",
  40365. height: math.unit(90000, "feet")
  40366. },
  40367. {
  40368. name: "Nation Nemesis",
  40369. height: math.unit(9e6, "feet")
  40370. },
  40371. {
  40372. name: "Continent Cracker",
  40373. height: math.unit(27e6, "feet")
  40374. },
  40375. {
  40376. name: "Earth-Eclipsing",
  40377. height: math.unit(2.7e8, "feet")
  40378. },
  40379. {
  40380. name: "Gas Giant Gulper",
  40381. height: math.unit(2.7e9, "feet")
  40382. },
  40383. {
  40384. name: "Sol-Swallowing",
  40385. height: math.unit(9e10, "feet")
  40386. },
  40387. {
  40388. name: "Galaxy Gulper",
  40389. height: math.unit(9, "galaxies")
  40390. },
  40391. {
  40392. name: "Cosmos Churner",
  40393. height: math.unit(9, "universes")
  40394. },
  40395. ]
  40396. ))
  40397. characterMakers.push(() => makeCharacter(
  40398. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40399. {
  40400. front: {
  40401. height: math.unit(160, "cm"),
  40402. weight: math.unit(55, "kg"),
  40403. name: "Front",
  40404. image: {
  40405. source: "./media/characters/tow/front.svg",
  40406. extra: 1751/1722,
  40407. bottom: 74/1825
  40408. }
  40409. },
  40410. },
  40411. [
  40412. {
  40413. name: "Norm",
  40414. height: math.unit(160, "cm")
  40415. },
  40416. {
  40417. name: "Casual",
  40418. height: math.unit(3200, "m"),
  40419. default: true
  40420. },
  40421. {
  40422. name: "Show-Off",
  40423. height: math.unit(160, "km")
  40424. },
  40425. ]
  40426. ))
  40427. characterMakers.push(() => makeCharacter(
  40428. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40429. {
  40430. front: {
  40431. height: math.unit(7 + 11/12, "feet"),
  40432. weight: math.unit(342.8, "lb"),
  40433. name: "Front",
  40434. image: {
  40435. source: "./media/characters/vivian-orca-dragon/front.svg",
  40436. extra: 1890/1865,
  40437. bottom: 28/1918
  40438. }
  40439. },
  40440. },
  40441. [
  40442. {
  40443. name: "Micro",
  40444. height: math.unit(5, "inches")
  40445. },
  40446. {
  40447. name: "Normal",
  40448. height: math.unit(7 + 11/12, "feet"),
  40449. default: true
  40450. },
  40451. {
  40452. name: "Macro",
  40453. height: math.unit(395 + 7/12, "feet")
  40454. },
  40455. ]
  40456. ))
  40457. characterMakers.push(() => makeCharacter(
  40458. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40459. {
  40460. side: {
  40461. height: math.unit(10, "feet"),
  40462. weight: math.unit(1442, "lb"),
  40463. name: "Side",
  40464. image: {
  40465. source: "./media/characters/lotherakon/side.svg",
  40466. extra: 1604/1497,
  40467. bottom: 89/1693
  40468. }
  40469. },
  40470. },
  40471. [
  40472. {
  40473. name: "Mortal Interaction",
  40474. height: math.unit(10, "feet")
  40475. },
  40476. {
  40477. name: "Large",
  40478. height: math.unit(30, "feet"),
  40479. default: true
  40480. },
  40481. {
  40482. name: "Giant",
  40483. height: math.unit(100, "feet")
  40484. },
  40485. {
  40486. name: "Kaiju",
  40487. height: math.unit(300, "feet")
  40488. },
  40489. {
  40490. name: "Macro",
  40491. height: math.unit(1000, "feet")
  40492. },
  40493. {
  40494. name: "Macro+",
  40495. height: math.unit(3000, "feet")
  40496. },
  40497. {
  40498. name: "Megamacro",
  40499. height: math.unit(10000, "feet")
  40500. },
  40501. {
  40502. name: "City-Crushing",
  40503. height: math.unit(30000, "feet")
  40504. },
  40505. {
  40506. name: "Continent Cracker",
  40507. height: math.unit(30e6, "feet")
  40508. },
  40509. {
  40510. name: "Earth Eclipsing",
  40511. height: math.unit(3e8, "feet")
  40512. },
  40513. {
  40514. name: "Gas Giant Gulper",
  40515. height: math.unit(3e9, "feet")
  40516. },
  40517. {
  40518. name: "Sol-Swallowing",
  40519. height: math.unit(1e11, "feet")
  40520. },
  40521. {
  40522. name: "System Swallower",
  40523. height: math.unit(3e14, "feet")
  40524. },
  40525. {
  40526. name: "Galaxy Gulper",
  40527. height: math.unit(10, "galaxies")
  40528. },
  40529. {
  40530. name: "Light Universal",
  40531. height: math.unit(5, "universes")
  40532. },
  40533. {
  40534. name: "Universe Palm",
  40535. height: math.unit(20, "universes")
  40536. },
  40537. {
  40538. name: "Light Multiversal",
  40539. height: math.unit(5, "multiverses")
  40540. },
  40541. {
  40542. name: "Multiverse Palm",
  40543. height: math.unit(20, "multiverses")
  40544. },
  40545. {
  40546. name: "Inferno Incarnate",
  40547. height: math.unit(1e7, "multiverses")
  40548. },
  40549. ]
  40550. ))
  40551. characterMakers.push(() => makeCharacter(
  40552. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40553. {
  40554. front: {
  40555. height: math.unit(8, "feet"),
  40556. weight: math.unit(1200, "lb"),
  40557. name: "Front",
  40558. image: {
  40559. source: "./media/characters/malithee/front.svg",
  40560. extra: 1675/1640,
  40561. bottom: 162/1837
  40562. }
  40563. },
  40564. },
  40565. [
  40566. {
  40567. name: "Mortal Interaction",
  40568. height: math.unit(8, "feet"),
  40569. default: true
  40570. },
  40571. {
  40572. name: "Large",
  40573. height: math.unit(24, "feet")
  40574. },
  40575. {
  40576. name: "Kaiju",
  40577. height: math.unit(240, "feet")
  40578. },
  40579. {
  40580. name: "Megamacro",
  40581. height: math.unit(8000, "feet")
  40582. },
  40583. {
  40584. name: "Continent Cracker",
  40585. height: math.unit(24e6, "feet")
  40586. },
  40587. {
  40588. name: "Earth-Eclipsing",
  40589. height: math.unit(2.4e8, "feet")
  40590. },
  40591. {
  40592. name: "Sol-Swallowing",
  40593. height: math.unit(8e10, "feet")
  40594. },
  40595. {
  40596. name: "Galaxy Gulper",
  40597. height: math.unit(8, "galaxies")
  40598. },
  40599. {
  40600. name: "Light Universal",
  40601. height: math.unit(4, "universes")
  40602. },
  40603. {
  40604. name: "Universe Atoms",
  40605. height: math.unit(1.829e9, "universes")
  40606. },
  40607. {
  40608. name: "Light Multiversal",
  40609. height: math.unit(4, "multiverses")
  40610. },
  40611. {
  40612. name: "Multiverse Atoms",
  40613. height: math.unit(1.829e9, "multiverses")
  40614. },
  40615. {
  40616. name: "Nigh-Omnipresence",
  40617. height: math.unit(8e261, "multiverses")
  40618. },
  40619. ]
  40620. ))
  40621. characterMakers.push(() => makeCharacter(
  40622. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40623. {
  40624. front: {
  40625. height: math.unit(10, "feet"),
  40626. weight: math.unit(1500, "lb"),
  40627. name: "Front",
  40628. image: {
  40629. source: "./media/characters/miles-thestia/front.svg",
  40630. extra: 1812/1727,
  40631. bottom: 86/1898
  40632. }
  40633. },
  40634. back: {
  40635. height: math.unit(10, "feet"),
  40636. weight: math.unit(1500, "lb"),
  40637. name: "Back",
  40638. image: {
  40639. source: "./media/characters/miles-thestia/back.svg",
  40640. extra: 1799/1690,
  40641. bottom: 47/1846
  40642. }
  40643. },
  40644. frontNsfw: {
  40645. height: math.unit(10, "feet"),
  40646. weight: math.unit(1500, "lb"),
  40647. name: "Front (NSFW)",
  40648. image: {
  40649. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40650. extra: 1812/1727,
  40651. bottom: 86/1898
  40652. }
  40653. },
  40654. },
  40655. [
  40656. {
  40657. name: "Mini-Macro",
  40658. height: math.unit(10, "feet"),
  40659. default: true
  40660. },
  40661. ]
  40662. ))
  40663. characterMakers.push(() => makeCharacter(
  40664. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40665. {
  40666. front: {
  40667. height: math.unit(25, "feet"),
  40668. name: "Front",
  40669. image: {
  40670. source: "./media/characters/titan-s-wulf/front.svg",
  40671. extra: 1560/1484,
  40672. bottom: 76/1636
  40673. }
  40674. },
  40675. },
  40676. [
  40677. {
  40678. name: "Smallest",
  40679. height: math.unit(25, "feet"),
  40680. default: true
  40681. },
  40682. {
  40683. name: "Normal",
  40684. height: math.unit(200, "feet")
  40685. },
  40686. {
  40687. name: "Macro",
  40688. height: math.unit(200000, "feet")
  40689. },
  40690. {
  40691. name: "Multiversal Original",
  40692. height: math.unit(10000, "multiverses")
  40693. },
  40694. ]
  40695. ))
  40696. characterMakers.push(() => makeCharacter(
  40697. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40698. {
  40699. front: {
  40700. height: math.unit(8, "feet"),
  40701. weight: math.unit(553, "lb"),
  40702. name: "Front",
  40703. image: {
  40704. source: "./media/characters/tawendeh/front.svg",
  40705. extra: 2365/2268,
  40706. bottom: 83/2448
  40707. }
  40708. },
  40709. frontClothed: {
  40710. height: math.unit(8, "feet"),
  40711. weight: math.unit(553, "lb"),
  40712. name: "Front (Clothed)",
  40713. image: {
  40714. source: "./media/characters/tawendeh/front-clothed.svg",
  40715. extra: 2365/2268,
  40716. bottom: 83/2448
  40717. }
  40718. },
  40719. back: {
  40720. height: math.unit(8, "feet"),
  40721. weight: math.unit(553, "lb"),
  40722. name: "Back",
  40723. image: {
  40724. source: "./media/characters/tawendeh/back.svg",
  40725. extra: 2397/2294,
  40726. bottom: 42/2439
  40727. }
  40728. },
  40729. },
  40730. [
  40731. {
  40732. name: "Mortal Interaction",
  40733. height: math.unit(8, "feet"),
  40734. default: true
  40735. },
  40736. {
  40737. name: "Giant",
  40738. height: math.unit(80, "feet")
  40739. },
  40740. {
  40741. name: "Macro",
  40742. height: math.unit(800, "feet")
  40743. },
  40744. {
  40745. name: "Megamacro",
  40746. height: math.unit(8000, "feet")
  40747. },
  40748. {
  40749. name: "City-Crushing",
  40750. height: math.unit(24000, "feet")
  40751. },
  40752. {
  40753. name: "Mountain-Mashing",
  40754. height: math.unit(80000, "feet")
  40755. },
  40756. {
  40757. name: "Nation Nemesis",
  40758. height: math.unit(8e6, "feet")
  40759. },
  40760. {
  40761. name: "Continent Cracker",
  40762. height: math.unit(24e6, "feet")
  40763. },
  40764. {
  40765. name: "Earth-Eclipsing",
  40766. height: math.unit(2.4e8, "feet")
  40767. },
  40768. {
  40769. name: "Gas Giant Gulper",
  40770. height: math.unit(2.4e9, "feet")
  40771. },
  40772. {
  40773. name: "Sol-Swallowing",
  40774. height: math.unit(8e10, "feet")
  40775. },
  40776. {
  40777. name: "Galaxy Gulper",
  40778. height: math.unit(8, "galaxies")
  40779. },
  40780. {
  40781. name: "Cosmos Churner",
  40782. height: math.unit(8, "universes")
  40783. },
  40784. {
  40785. name: "Omnipotent Otter",
  40786. height: math.unit(80, "universes")
  40787. },
  40788. ]
  40789. ))
  40790. characterMakers.push(() => makeCharacter(
  40791. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40792. {
  40793. front: {
  40794. height: math.unit(2.6, "meters"),
  40795. weight: math.unit(900, "kg"),
  40796. name: "Front",
  40797. image: {
  40798. source: "./media/characters/neesha/front.svg",
  40799. extra: 1803/1653,
  40800. bottom: 128/1931
  40801. }
  40802. },
  40803. },
  40804. [
  40805. {
  40806. name: "Normal",
  40807. height: math.unit(2.6, "meters"),
  40808. default: true
  40809. },
  40810. {
  40811. name: "Macro",
  40812. height: math.unit(50, "meters")
  40813. },
  40814. ]
  40815. ))
  40816. characterMakers.push(() => makeCharacter(
  40817. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40818. {
  40819. front: {
  40820. height: math.unit(5, "feet"),
  40821. weight: math.unit(185, "lb"),
  40822. name: "Front",
  40823. image: {
  40824. source: "./media/characters/kyera/front.svg",
  40825. extra: 1875/1790,
  40826. bottom: 96/1971
  40827. }
  40828. },
  40829. },
  40830. [
  40831. {
  40832. name: "Normal",
  40833. height: math.unit(5, "feet"),
  40834. default: true
  40835. },
  40836. ]
  40837. ))
  40838. characterMakers.push(() => makeCharacter(
  40839. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40840. {
  40841. front: {
  40842. height: math.unit(7 + 6/12, "feet"),
  40843. weight: math.unit(540, "lb"),
  40844. name: "Front",
  40845. image: {
  40846. source: "./media/characters/yuko/front.svg",
  40847. extra: 1282/1222,
  40848. bottom: 101/1383
  40849. }
  40850. },
  40851. frontClothed: {
  40852. height: math.unit(7 + 6/12, "feet"),
  40853. weight: math.unit(540, "lb"),
  40854. name: "Front (Clothed)",
  40855. image: {
  40856. source: "./media/characters/yuko/front-clothed.svg",
  40857. extra: 1282/1222,
  40858. bottom: 101/1383
  40859. }
  40860. },
  40861. },
  40862. [
  40863. {
  40864. name: "Normal",
  40865. height: math.unit(7 + 6/12, "feet"),
  40866. default: true
  40867. },
  40868. {
  40869. name: "Macro",
  40870. height: math.unit(26 + 9/12, "feet")
  40871. },
  40872. {
  40873. name: "Megamacro",
  40874. height: math.unit(300, "feet")
  40875. },
  40876. {
  40877. name: "Gigamacro",
  40878. height: math.unit(5000, "feet")
  40879. },
  40880. {
  40881. name: "Planetary",
  40882. height: math.unit(10000, "miles")
  40883. },
  40884. ]
  40885. ))
  40886. characterMakers.push(() => makeCharacter(
  40887. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40888. {
  40889. front: {
  40890. height: math.unit(8 + 2/12, "feet"),
  40891. weight: math.unit(600, "lb"),
  40892. name: "Front",
  40893. image: {
  40894. source: "./media/characters/deam-nitrel/front.svg",
  40895. extra: 1308/1234,
  40896. bottom: 125/1433
  40897. }
  40898. },
  40899. },
  40900. [
  40901. {
  40902. name: "Normal",
  40903. height: math.unit(8 + 2/12, "feet"),
  40904. default: true
  40905. },
  40906. ]
  40907. ))
  40908. characterMakers.push(() => makeCharacter(
  40909. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40910. {
  40911. front: {
  40912. height: math.unit(6.1, "feet"),
  40913. weight: math.unit(180, "lb"),
  40914. name: "Front",
  40915. image: {
  40916. source: "./media/characters/skyress/front.svg",
  40917. extra: 1045/915,
  40918. bottom: 28/1073
  40919. }
  40920. },
  40921. maw: {
  40922. height: math.unit(1, "feet"),
  40923. name: "Maw",
  40924. image: {
  40925. source: "./media/characters/skyress/maw.svg"
  40926. }
  40927. },
  40928. },
  40929. [
  40930. {
  40931. name: "Normal",
  40932. height: math.unit(6.1, "feet"),
  40933. default: true
  40934. },
  40935. {
  40936. name: "Macro",
  40937. height: math.unit(200, "feet")
  40938. },
  40939. ]
  40940. ))
  40941. characterMakers.push(() => makeCharacter(
  40942. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40943. {
  40944. front: {
  40945. height: math.unit(4 + 2/12, "feet"),
  40946. weight: math.unit(40, "kg"),
  40947. name: "Front",
  40948. image: {
  40949. source: "./media/characters/amethyst-jones/front.svg",
  40950. extra: 1220/1150,
  40951. bottom: 101/1321
  40952. }
  40953. },
  40954. },
  40955. [
  40956. {
  40957. name: "Normal",
  40958. height: math.unit(4 + 2/12, "feet"),
  40959. default: true
  40960. },
  40961. ]
  40962. ))
  40963. characterMakers.push(() => makeCharacter(
  40964. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40965. {
  40966. front: {
  40967. height: math.unit(1.7, "m"),
  40968. weight: math.unit(135, "lb"),
  40969. name: "Front",
  40970. image: {
  40971. source: "./media/characters/jade/front.svg",
  40972. extra: 1818/1767,
  40973. bottom: 32/1850
  40974. }
  40975. },
  40976. back: {
  40977. height: math.unit(1.7, "m"),
  40978. weight: math.unit(135, "lb"),
  40979. name: "Back",
  40980. image: {
  40981. source: "./media/characters/jade/back.svg",
  40982. extra: 1869/1809,
  40983. bottom: 35/1904
  40984. }
  40985. },
  40986. hand: {
  40987. height: math.unit(0.24, "m"),
  40988. name: "Hand",
  40989. image: {
  40990. source: "./media/characters/jade/hand.svg"
  40991. }
  40992. },
  40993. foot: {
  40994. height: math.unit(0.263, "m"),
  40995. name: "Foot",
  40996. image: {
  40997. source: "./media/characters/jade/foot.svg"
  40998. }
  40999. },
  41000. dick: {
  41001. height: math.unit(0.47, "m"),
  41002. name: "Dick",
  41003. image: {
  41004. source: "./media/characters/jade/dick.svg"
  41005. }
  41006. },
  41007. },
  41008. [
  41009. {
  41010. name: "Micro",
  41011. height: math.unit(22, "cm")
  41012. },
  41013. {
  41014. name: "Normal",
  41015. height: math.unit(1.7, "m"),
  41016. default: true
  41017. },
  41018. {
  41019. name: "Macro",
  41020. height: math.unit(152, "m")
  41021. },
  41022. ]
  41023. ))
  41024. characterMakers.push(() => makeCharacter(
  41025. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41026. {
  41027. front: {
  41028. height: math.unit(100, "miles"),
  41029. weight: math.unit(20000, "tons"),
  41030. name: "Front",
  41031. image: {
  41032. source: "./media/characters/cookie/front.svg",
  41033. extra: 1125/1070,
  41034. bottom: 30/1155
  41035. }
  41036. },
  41037. },
  41038. [
  41039. {
  41040. name: "Big",
  41041. height: math.unit(50, "feet")
  41042. },
  41043. {
  41044. name: "Macro",
  41045. height: math.unit(100, "miles"),
  41046. default: true
  41047. },
  41048. {
  41049. name: "Megamacro",
  41050. height: math.unit(90000, "miles")
  41051. },
  41052. ]
  41053. ))
  41054. characterMakers.push(() => makeCharacter(
  41055. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41056. {
  41057. front: {
  41058. height: math.unit(6, "feet"),
  41059. weight: math.unit(145, "lb"),
  41060. name: "Front",
  41061. image: {
  41062. source: "./media/characters/farzian/front.svg",
  41063. extra: 1902/1693,
  41064. bottom: 108/2010
  41065. }
  41066. },
  41067. },
  41068. [
  41069. {
  41070. name: "Macro",
  41071. height: math.unit(500, "feet"),
  41072. default: true
  41073. },
  41074. ]
  41075. ))
  41076. characterMakers.push(() => makeCharacter(
  41077. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41078. {
  41079. front: {
  41080. height: math.unit(3 + 6/12, "feet"),
  41081. weight: math.unit(50, "lb"),
  41082. name: "Front",
  41083. image: {
  41084. source: "./media/characters/kimberly-tilson/front.svg",
  41085. extra: 1400/1322,
  41086. bottom: 36/1436
  41087. }
  41088. },
  41089. back: {
  41090. height: math.unit(3 + 6/12, "feet"),
  41091. weight: math.unit(50, "lb"),
  41092. name: "Back",
  41093. image: {
  41094. source: "./media/characters/kimberly-tilson/back.svg",
  41095. extra: 1370/1307,
  41096. bottom: 20/1390
  41097. }
  41098. },
  41099. },
  41100. [
  41101. {
  41102. name: "Normal",
  41103. height: math.unit(3 + 6/12, "feet"),
  41104. default: true
  41105. },
  41106. ]
  41107. ))
  41108. characterMakers.push(() => makeCharacter(
  41109. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41110. {
  41111. front: {
  41112. height: math.unit(1148, "feet"),
  41113. weight: math.unit(34057, "lb"),
  41114. name: "Front",
  41115. image: {
  41116. source: "./media/characters/harthos/front.svg",
  41117. extra: 1391/1339,
  41118. bottom: 13/1404
  41119. }
  41120. },
  41121. },
  41122. [
  41123. {
  41124. name: "Macro",
  41125. height: math.unit(1148, "feet"),
  41126. default: true
  41127. },
  41128. ]
  41129. ))
  41130. characterMakers.push(() => makeCharacter(
  41131. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41132. {
  41133. front: {
  41134. height: math.unit(15, "feet"),
  41135. name: "Front",
  41136. image: {
  41137. source: "./media/characters/hypatia/front.svg",
  41138. extra: 1653/1591,
  41139. bottom: 79/1732
  41140. }
  41141. },
  41142. },
  41143. [
  41144. {
  41145. name: "Normal",
  41146. height: math.unit(15, "feet")
  41147. },
  41148. {
  41149. name: "Small",
  41150. height: math.unit(300, "feet")
  41151. },
  41152. {
  41153. name: "Macro",
  41154. height: math.unit(2500, "feet"),
  41155. default: true
  41156. },
  41157. {
  41158. name: "Mega Macro",
  41159. height: math.unit(1500, "miles")
  41160. },
  41161. {
  41162. name: "Giga Macro",
  41163. height: math.unit(1.5e6, "miles")
  41164. },
  41165. ]
  41166. ))
  41167. characterMakers.push(() => makeCharacter(
  41168. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41169. {
  41170. front: {
  41171. height: math.unit(6, "feet"),
  41172. weight: math.unit(200, "lb"),
  41173. name: "Front",
  41174. image: {
  41175. source: "./media/characters/wulver/front.svg",
  41176. extra: 1724/1632,
  41177. bottom: 130/1854
  41178. }
  41179. },
  41180. frontNsfw: {
  41181. height: math.unit(6, "feet"),
  41182. weight: math.unit(200, "lb"),
  41183. name: "Front (NSFW)",
  41184. image: {
  41185. source: "./media/characters/wulver/front-nsfw.svg",
  41186. extra: 1724/1632,
  41187. bottom: 130/1854
  41188. }
  41189. },
  41190. },
  41191. [
  41192. {
  41193. name: "Human-Sized",
  41194. height: math.unit(6, "feet")
  41195. },
  41196. {
  41197. name: "Normal",
  41198. height: math.unit(4, "meters"),
  41199. default: true
  41200. },
  41201. {
  41202. name: "Large",
  41203. height: math.unit(6, "m")
  41204. },
  41205. ]
  41206. ))
  41207. characterMakers.push(() => makeCharacter(
  41208. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41209. {
  41210. front: {
  41211. height: math.unit(7, "feet"),
  41212. name: "Front",
  41213. image: {
  41214. source: "./media/characters/maru/front.svg",
  41215. extra: 1595/1570,
  41216. bottom: 0/1595
  41217. }
  41218. },
  41219. },
  41220. [
  41221. {
  41222. name: "Normal",
  41223. height: math.unit(7, "feet"),
  41224. default: true
  41225. },
  41226. {
  41227. name: "Macro",
  41228. height: math.unit(700, "feet")
  41229. },
  41230. {
  41231. name: "Mega Macro",
  41232. height: math.unit(25, "miles")
  41233. },
  41234. ]
  41235. ))
  41236. characterMakers.push(() => makeCharacter(
  41237. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41238. {
  41239. front: {
  41240. height: math.unit(6, "feet"),
  41241. weight: math.unit(170, "lb"),
  41242. name: "Front",
  41243. image: {
  41244. source: "./media/characters/xenon/front.svg",
  41245. extra: 1376/1305,
  41246. bottom: 56/1432
  41247. }
  41248. },
  41249. back: {
  41250. height: math.unit(6, "feet"),
  41251. weight: math.unit(170, "lb"),
  41252. name: "Back",
  41253. image: {
  41254. source: "./media/characters/xenon/back.svg",
  41255. extra: 1328/1259,
  41256. bottom: 95/1423
  41257. }
  41258. },
  41259. maw: {
  41260. height: math.unit(0.52, "feet"),
  41261. name: "Maw",
  41262. image: {
  41263. source: "./media/characters/xenon/maw.svg"
  41264. }
  41265. },
  41266. hand: {
  41267. height: math.unit(0.82, "feet"),
  41268. name: "Hand",
  41269. image: {
  41270. source: "./media/characters/xenon/hand.svg"
  41271. }
  41272. },
  41273. foot: {
  41274. height: math.unit(1.13, "feet"),
  41275. name: "Foot",
  41276. image: {
  41277. source: "./media/characters/xenon/foot.svg"
  41278. }
  41279. },
  41280. },
  41281. [
  41282. {
  41283. name: "Micro",
  41284. height: math.unit(0.8, "inches")
  41285. },
  41286. {
  41287. name: "Normal",
  41288. height: math.unit(6, "feet")
  41289. },
  41290. {
  41291. name: "Macro",
  41292. height: math.unit(50, "feet"),
  41293. default: true
  41294. },
  41295. {
  41296. name: "Macro+",
  41297. height: math.unit(250, "feet")
  41298. },
  41299. {
  41300. name: "Megamacro",
  41301. height: math.unit(1500, "feet")
  41302. },
  41303. ]
  41304. ))
  41305. characterMakers.push(() => makeCharacter(
  41306. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41307. {
  41308. front: {
  41309. height: math.unit(7 + 5/12, "feet"),
  41310. name: "Front",
  41311. image: {
  41312. source: "./media/characters/zane/front.svg",
  41313. extra: 1260/1203,
  41314. bottom: 94/1354
  41315. }
  41316. },
  41317. back: {
  41318. height: math.unit(5.05, "feet"),
  41319. name: "Back",
  41320. image: {
  41321. source: "./media/characters/zane/back.svg",
  41322. extra: 893/829,
  41323. bottom: 30/923
  41324. }
  41325. },
  41326. werewolf: {
  41327. height: math.unit(11, "feet"),
  41328. name: "Werewolf",
  41329. image: {
  41330. source: "./media/characters/zane/werewolf.svg",
  41331. extra: 1383/1323,
  41332. bottom: 89/1472
  41333. }
  41334. },
  41335. foot: {
  41336. height: math.unit(1.46, "feet"),
  41337. name: "Foot",
  41338. image: {
  41339. source: "./media/characters/zane/foot.svg"
  41340. }
  41341. },
  41342. footFront: {
  41343. height: math.unit(0.784, "feet"),
  41344. name: "Foot (Front)",
  41345. image: {
  41346. source: "./media/characters/zane/foot-front.svg"
  41347. }
  41348. },
  41349. dick: {
  41350. height: math.unit(1.95, "feet"),
  41351. name: "Dick",
  41352. image: {
  41353. source: "./media/characters/zane/dick.svg"
  41354. }
  41355. },
  41356. dickWerewolf: {
  41357. height: math.unit(3.77, "feet"),
  41358. name: "Dick (Werewolf)",
  41359. image: {
  41360. source: "./media/characters/zane/dick.svg"
  41361. }
  41362. },
  41363. },
  41364. [
  41365. {
  41366. name: "Normal",
  41367. height: math.unit(7 + 5/12, "feet"),
  41368. default: true
  41369. },
  41370. ]
  41371. ))
  41372. characterMakers.push(() => makeCharacter(
  41373. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41374. {
  41375. front: {
  41376. height: math.unit(6 + 2/12, "feet"),
  41377. weight: math.unit(284, "lb"),
  41378. name: "Front",
  41379. image: {
  41380. source: "./media/characters/benni-desparque/front.svg",
  41381. extra: 1353/1126,
  41382. bottom: 69/1422
  41383. }
  41384. },
  41385. },
  41386. [
  41387. {
  41388. name: "Civilian",
  41389. height: math.unit(6 + 2/12, "feet")
  41390. },
  41391. {
  41392. name: "Normal",
  41393. height: math.unit(98, "feet"),
  41394. default: true
  41395. },
  41396. {
  41397. name: "Kaiju Fighter",
  41398. height: math.unit(268, "feet")
  41399. },
  41400. ]
  41401. ))
  41402. characterMakers.push(() => makeCharacter(
  41403. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41404. {
  41405. front: {
  41406. height: math.unit(5, "feet"),
  41407. weight: math.unit(105, "lb"),
  41408. name: "Front",
  41409. image: {
  41410. source: "./media/characters/maxine/front.svg",
  41411. extra: 1386/1250,
  41412. bottom: 71/1457
  41413. }
  41414. },
  41415. },
  41416. [
  41417. {
  41418. name: "Normal",
  41419. height: math.unit(5, "feet"),
  41420. default: true
  41421. },
  41422. ]
  41423. ))
  41424. characterMakers.push(() => makeCharacter(
  41425. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41426. {
  41427. front: {
  41428. height: math.unit(11 + 7/12, "feet"),
  41429. weight: math.unit(9576, "lb"),
  41430. name: "Front",
  41431. image: {
  41432. source: "./media/characters/scaly/front.svg",
  41433. extra: 888/867,
  41434. bottom: 36/924
  41435. }
  41436. },
  41437. },
  41438. [
  41439. {
  41440. name: "Normal",
  41441. height: math.unit(11 + 7/12, "feet"),
  41442. default: true
  41443. },
  41444. ]
  41445. ))
  41446. characterMakers.push(() => makeCharacter(
  41447. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41448. {
  41449. front: {
  41450. height: math.unit(6 + 3/12, "feet"),
  41451. name: "Front",
  41452. image: {
  41453. source: "./media/characters/saelria/front.svg",
  41454. extra: 1243/1138,
  41455. bottom: 46/1289
  41456. }
  41457. },
  41458. },
  41459. [
  41460. {
  41461. name: "Micro",
  41462. height: math.unit(6, "inches"),
  41463. },
  41464. {
  41465. name: "Normal",
  41466. height: math.unit(6 + 3/12, "feet"),
  41467. default: true
  41468. },
  41469. {
  41470. name: "Macro",
  41471. height: math.unit(25, "feet")
  41472. },
  41473. ]
  41474. ))
  41475. characterMakers.push(() => makeCharacter(
  41476. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41477. {
  41478. front: {
  41479. height: math.unit(80, "meters"),
  41480. weight: math.unit(7000, "tonnes"),
  41481. name: "Front",
  41482. image: {
  41483. source: "./media/characters/tef/front.svg",
  41484. extra: 2036/1991,
  41485. bottom: 54/2090
  41486. }
  41487. },
  41488. back: {
  41489. height: math.unit(80, "meters"),
  41490. weight: math.unit(7000, "tonnes"),
  41491. name: "Back",
  41492. image: {
  41493. source: "./media/characters/tef/back.svg",
  41494. extra: 2036/1991,
  41495. bottom: 54/2090
  41496. }
  41497. },
  41498. },
  41499. [
  41500. {
  41501. name: "Macro",
  41502. height: math.unit(80, "meters"),
  41503. default: true
  41504. },
  41505. ]
  41506. ))
  41507. characterMakers.push(() => makeCharacter(
  41508. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41509. {
  41510. front: {
  41511. height: math.unit(13, "feet"),
  41512. weight: math.unit(6, "tons"),
  41513. name: "Front",
  41514. image: {
  41515. source: "./media/characters/rover/front.svg",
  41516. extra: 1233/1156,
  41517. bottom: 50/1283
  41518. }
  41519. },
  41520. back: {
  41521. height: math.unit(13, "feet"),
  41522. weight: math.unit(6, "tons"),
  41523. name: "Back",
  41524. image: {
  41525. source: "./media/characters/rover/back.svg",
  41526. extra: 1327/1258,
  41527. bottom: 39/1366
  41528. }
  41529. },
  41530. },
  41531. [
  41532. {
  41533. name: "Normal",
  41534. height: math.unit(13, "feet"),
  41535. default: true
  41536. },
  41537. {
  41538. name: "Macro",
  41539. height: math.unit(1300, "feet")
  41540. },
  41541. {
  41542. name: "Megamacro",
  41543. height: math.unit(1300, "miles")
  41544. },
  41545. {
  41546. name: "Gigamacro",
  41547. height: math.unit(1300000, "miles")
  41548. },
  41549. ]
  41550. ))
  41551. characterMakers.push(() => makeCharacter(
  41552. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41553. {
  41554. front: {
  41555. height: math.unit(6, "feet"),
  41556. weight: math.unit(150, "lb"),
  41557. name: "Front",
  41558. image: {
  41559. source: "./media/characters/ariz/front.svg",
  41560. extra: 1401/1346,
  41561. bottom: 5/1406
  41562. }
  41563. },
  41564. },
  41565. [
  41566. {
  41567. name: "Normal",
  41568. height: math.unit(10, "feet"),
  41569. default: true
  41570. },
  41571. ]
  41572. ))
  41573. characterMakers.push(() => makeCharacter(
  41574. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41575. {
  41576. front: {
  41577. height: math.unit(6, "feet"),
  41578. weight: math.unit(140, "lb"),
  41579. name: "Front",
  41580. image: {
  41581. source: "./media/characters/sigrun/front.svg",
  41582. extra: 1418/1359,
  41583. bottom: 27/1445
  41584. }
  41585. },
  41586. },
  41587. [
  41588. {
  41589. name: "Macro",
  41590. height: math.unit(35, "feet"),
  41591. default: true
  41592. },
  41593. ]
  41594. ))
  41595. characterMakers.push(() => makeCharacter(
  41596. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41597. {
  41598. front: {
  41599. height: math.unit(6, "feet"),
  41600. weight: math.unit(150, "lb"),
  41601. name: "Front",
  41602. image: {
  41603. source: "./media/characters/numin/front.svg",
  41604. extra: 1433/1388,
  41605. bottom: 12/1445
  41606. }
  41607. },
  41608. },
  41609. [
  41610. {
  41611. name: "Macro",
  41612. height: math.unit(21.5, "km"),
  41613. default: true
  41614. },
  41615. ]
  41616. ))
  41617. characterMakers.push(() => makeCharacter(
  41618. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41619. {
  41620. front: {
  41621. height: math.unit(6, "feet"),
  41622. weight: math.unit(463, "lb"),
  41623. name: "Front",
  41624. image: {
  41625. source: "./media/characters/melwa/front.svg",
  41626. extra: 1307/1248,
  41627. bottom: 93/1400
  41628. }
  41629. },
  41630. },
  41631. [
  41632. {
  41633. name: "Macro",
  41634. height: math.unit(50, "meters"),
  41635. default: true
  41636. },
  41637. ]
  41638. ))
  41639. characterMakers.push(() => makeCharacter(
  41640. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41641. {
  41642. front: {
  41643. height: math.unit(325, "feet"),
  41644. name: "Front",
  41645. image: {
  41646. source: "./media/characters/zorkaiju/front.svg",
  41647. extra: 1955/1814,
  41648. bottom: 40/1995
  41649. }
  41650. },
  41651. frontExtended: {
  41652. height: math.unit(325, "feet"),
  41653. name: "Front (Extended)",
  41654. image: {
  41655. source: "./media/characters/zorkaiju/front-extended.svg",
  41656. extra: 1955/1814,
  41657. bottom: 40/1995
  41658. }
  41659. },
  41660. side: {
  41661. height: math.unit(325, "feet"),
  41662. name: "Side",
  41663. image: {
  41664. source: "./media/characters/zorkaiju/side.svg",
  41665. extra: 1495/1396,
  41666. bottom: 17/1512
  41667. }
  41668. },
  41669. sideExtended: {
  41670. height: math.unit(325, "feet"),
  41671. name: "Side (Extended)",
  41672. image: {
  41673. source: "./media/characters/zorkaiju/side-extended.svg",
  41674. extra: 1495/1396,
  41675. bottom: 17/1512
  41676. }
  41677. },
  41678. back: {
  41679. height: math.unit(325, "feet"),
  41680. name: "Back",
  41681. image: {
  41682. source: "./media/characters/zorkaiju/back.svg",
  41683. extra: 1959/1821,
  41684. bottom: 31/1990
  41685. }
  41686. },
  41687. backExtended: {
  41688. height: math.unit(325, "feet"),
  41689. name: "Back (Extended)",
  41690. image: {
  41691. source: "./media/characters/zorkaiju/back-extended.svg",
  41692. extra: 1959/1821,
  41693. bottom: 31/1990
  41694. }
  41695. },
  41696. hand: {
  41697. height: math.unit(58.4, "feet"),
  41698. name: "Hand",
  41699. image: {
  41700. source: "./media/characters/zorkaiju/hand.svg"
  41701. }
  41702. },
  41703. handExtended: {
  41704. height: math.unit(61.4, "feet"),
  41705. name: "Hand (Extended)",
  41706. image: {
  41707. source: "./media/characters/zorkaiju/hand-extended.svg"
  41708. }
  41709. },
  41710. foot: {
  41711. height: math.unit(95, "feet"),
  41712. name: "Foot",
  41713. image: {
  41714. source: "./media/characters/zorkaiju/foot.svg"
  41715. }
  41716. },
  41717. leftArm: {
  41718. height: math.unit(59, "feet"),
  41719. name: "Left Arm",
  41720. image: {
  41721. source: "./media/characters/zorkaiju/left-arm.svg"
  41722. }
  41723. },
  41724. rightArm: {
  41725. height: math.unit(59, "feet"),
  41726. name: "Right Arm",
  41727. image: {
  41728. source: "./media/characters/zorkaiju/right-arm.svg"
  41729. }
  41730. },
  41731. leftArmExtended: {
  41732. height: math.unit(59 * 1.033546, "feet"),
  41733. name: "Left Arm (Extended)",
  41734. image: {
  41735. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41736. }
  41737. },
  41738. rightArmExtended: {
  41739. height: math.unit(59 * 1.0496, "feet"),
  41740. name: "Right Arm (Extended)",
  41741. image: {
  41742. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41743. }
  41744. },
  41745. tail: {
  41746. height: math.unit(104, "feet"),
  41747. name: "Tail",
  41748. image: {
  41749. source: "./media/characters/zorkaiju/tail.svg"
  41750. }
  41751. },
  41752. tailExtended: {
  41753. height: math.unit(104, "feet"),
  41754. name: "Tail (Extended)",
  41755. image: {
  41756. source: "./media/characters/zorkaiju/tail-extended.svg"
  41757. }
  41758. },
  41759. tailBottom: {
  41760. height: math.unit(104, "feet"),
  41761. name: "Tail Bottom",
  41762. image: {
  41763. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41764. }
  41765. },
  41766. crystal: {
  41767. height: math.unit(27.54, "feet"),
  41768. name: "Crystal",
  41769. image: {
  41770. source: "./media/characters/zorkaiju/crystal.svg"
  41771. }
  41772. },
  41773. },
  41774. [
  41775. {
  41776. name: "Kaiju",
  41777. height: math.unit(325, "feet"),
  41778. default: true
  41779. },
  41780. ]
  41781. ))
  41782. characterMakers.push(() => makeCharacter(
  41783. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41784. {
  41785. front: {
  41786. height: math.unit(6 + 1/12, "feet"),
  41787. weight: math.unit(115, "lb"),
  41788. name: "Front",
  41789. image: {
  41790. source: "./media/characters/bailey-belfry/front.svg",
  41791. extra: 1240/1121,
  41792. bottom: 101/1341
  41793. }
  41794. },
  41795. },
  41796. [
  41797. {
  41798. name: "Normal",
  41799. height: math.unit(6 + 1/12, "feet"),
  41800. default: true
  41801. },
  41802. ]
  41803. ))
  41804. characterMakers.push(() => makeCharacter(
  41805. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41806. {
  41807. side: {
  41808. height: math.unit(4, "meters"),
  41809. weight: math.unit(250, "kg"),
  41810. name: "Side",
  41811. image: {
  41812. source: "./media/characters/blacky/side.svg",
  41813. extra: 1027/919,
  41814. bottom: 43/1070
  41815. }
  41816. },
  41817. maw: {
  41818. height: math.unit(1, "meters"),
  41819. name: "Maw",
  41820. image: {
  41821. source: "./media/characters/blacky/maw.svg"
  41822. }
  41823. },
  41824. paw: {
  41825. height: math.unit(1, "meters"),
  41826. name: "Paw",
  41827. image: {
  41828. source: "./media/characters/blacky/paw.svg"
  41829. }
  41830. },
  41831. },
  41832. [
  41833. {
  41834. name: "Normal",
  41835. height: math.unit(4, "meters"),
  41836. default: true
  41837. },
  41838. ]
  41839. ))
  41840. characterMakers.push(() => makeCharacter(
  41841. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41842. {
  41843. front: {
  41844. height: math.unit(170, "cm"),
  41845. weight: math.unit(66, "kg"),
  41846. name: "Front",
  41847. image: {
  41848. source: "./media/characters/thux-ei/front.svg",
  41849. extra: 1109/1011,
  41850. bottom: 8/1117
  41851. }
  41852. },
  41853. },
  41854. [
  41855. {
  41856. name: "Normal",
  41857. height: math.unit(170, "cm"),
  41858. default: true
  41859. },
  41860. ]
  41861. ))
  41862. characterMakers.push(() => makeCharacter(
  41863. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41864. {
  41865. front: {
  41866. height: math.unit(5, "feet"),
  41867. weight: math.unit(120, "lb"),
  41868. name: "Front",
  41869. image: {
  41870. source: "./media/characters/roxanne-voltaire/front.svg",
  41871. extra: 1901/1779,
  41872. bottom: 53/1954
  41873. }
  41874. },
  41875. },
  41876. [
  41877. {
  41878. name: "Normal",
  41879. height: math.unit(5, "feet"),
  41880. default: true
  41881. },
  41882. {
  41883. name: "Giant",
  41884. height: math.unit(50, "feet")
  41885. },
  41886. {
  41887. name: "Titan",
  41888. height: math.unit(500, "feet")
  41889. },
  41890. {
  41891. name: "Macro",
  41892. height: math.unit(5000, "feet")
  41893. },
  41894. {
  41895. name: "Megamacro",
  41896. height: math.unit(50000, "feet")
  41897. },
  41898. {
  41899. name: "Gigamacro",
  41900. height: math.unit(500000, "feet")
  41901. },
  41902. {
  41903. name: "Teramacro",
  41904. height: math.unit(5e6, "feet")
  41905. },
  41906. ]
  41907. ))
  41908. characterMakers.push(() => makeCharacter(
  41909. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41910. {
  41911. front: {
  41912. height: math.unit(6 + 2/12, "feet"),
  41913. name: "Front",
  41914. image: {
  41915. source: "./media/characters/squeaks/front.svg",
  41916. extra: 1823/1768,
  41917. bottom: 138/1961
  41918. }
  41919. },
  41920. },
  41921. [
  41922. {
  41923. name: "Micro",
  41924. height: math.unit(0.5, "inches")
  41925. },
  41926. {
  41927. name: "Normal",
  41928. height: math.unit(6 + 2/12, "feet"),
  41929. default: true
  41930. },
  41931. {
  41932. name: "Macro",
  41933. height: math.unit(600, "feet")
  41934. },
  41935. ]
  41936. ))
  41937. characterMakers.push(() => makeCharacter(
  41938. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41939. {
  41940. front: {
  41941. height: math.unit(1.72, "meters"),
  41942. name: "Front",
  41943. image: {
  41944. source: "./media/characters/archinger/front.svg",
  41945. extra: 1861/1675,
  41946. bottom: 125/1986
  41947. }
  41948. },
  41949. back: {
  41950. height: math.unit(1.72, "meters"),
  41951. name: "Back",
  41952. image: {
  41953. source: "./media/characters/archinger/back.svg",
  41954. extra: 1844/1701,
  41955. bottom: 104/1948
  41956. }
  41957. },
  41958. cock: {
  41959. height: math.unit(0.59, "feet"),
  41960. name: "Cock",
  41961. image: {
  41962. source: "./media/characters/archinger/cock.svg"
  41963. }
  41964. },
  41965. },
  41966. [
  41967. {
  41968. name: "Normal",
  41969. height: math.unit(1.72, "meters"),
  41970. default: true
  41971. },
  41972. {
  41973. name: "Macro",
  41974. height: math.unit(84, "meters")
  41975. },
  41976. {
  41977. name: "Macro+",
  41978. height: math.unit(112, "meters")
  41979. },
  41980. {
  41981. name: "Macro++",
  41982. height: math.unit(960, "meters")
  41983. },
  41984. {
  41985. name: "Macro+++",
  41986. height: math.unit(4, "km")
  41987. },
  41988. {
  41989. name: "Macro++++",
  41990. height: math.unit(48, "km")
  41991. },
  41992. {
  41993. name: "Macro+++++",
  41994. height: math.unit(4500, "km")
  41995. },
  41996. ]
  41997. ))
  41998. characterMakers.push(() => makeCharacter(
  41999. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42000. {
  42001. front: {
  42002. height: math.unit(5 + 5/12, "feet"),
  42003. name: "Front",
  42004. image: {
  42005. source: "./media/characters/alsnapz/front.svg",
  42006. extra: 1157/1065,
  42007. bottom: 42/1199
  42008. }
  42009. },
  42010. },
  42011. [
  42012. {
  42013. name: "Normal",
  42014. height: math.unit(5 + 5/12, "feet"),
  42015. default: true
  42016. },
  42017. ]
  42018. ))
  42019. characterMakers.push(() => makeCharacter(
  42020. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42021. {
  42022. side: {
  42023. height: math.unit(3.2, "earths"),
  42024. name: "Side",
  42025. image: {
  42026. source: "./media/characters/mag/side.svg",
  42027. extra: 1331/1008,
  42028. bottom: 52/1383
  42029. }
  42030. },
  42031. wing: {
  42032. height: math.unit(1.94, "earths"),
  42033. name: "Wing",
  42034. image: {
  42035. source: "./media/characters/mag/wing.svg"
  42036. }
  42037. },
  42038. dick: {
  42039. height: math.unit(1.8, "earths"),
  42040. name: "Dick",
  42041. image: {
  42042. source: "./media/characters/mag/dick.svg"
  42043. }
  42044. },
  42045. ass: {
  42046. height: math.unit(1.33, "earths"),
  42047. name: "Ass",
  42048. image: {
  42049. source: "./media/characters/mag/ass.svg"
  42050. }
  42051. },
  42052. head: {
  42053. height: math.unit(1.1, "earths"),
  42054. name: "Head",
  42055. image: {
  42056. source: "./media/characters/mag/head.svg"
  42057. }
  42058. },
  42059. maw: {
  42060. height: math.unit(1.62, "earths"),
  42061. name: "Maw",
  42062. image: {
  42063. source: "./media/characters/mag/maw.svg"
  42064. }
  42065. },
  42066. },
  42067. [
  42068. {
  42069. name: "Small",
  42070. height: math.unit(162, "feet")
  42071. },
  42072. {
  42073. name: "Normal",
  42074. height: math.unit(3.2, "earths"),
  42075. default: true
  42076. },
  42077. ]
  42078. ))
  42079. characterMakers.push(() => makeCharacter(
  42080. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42081. {
  42082. front: {
  42083. height: math.unit(512, "feet"),
  42084. weight: math.unit(63509, "tonnes"),
  42085. name: "Front",
  42086. image: {
  42087. source: "./media/characters/vorrel-harroc/front.svg",
  42088. extra: 1075/1063,
  42089. bottom: 62/1137
  42090. }
  42091. },
  42092. },
  42093. [
  42094. {
  42095. name: "Normal",
  42096. height: math.unit(10, "feet")
  42097. },
  42098. {
  42099. name: "Macro",
  42100. height: math.unit(512, "feet"),
  42101. default: true
  42102. },
  42103. {
  42104. name: "Megamacro",
  42105. height: math.unit(256, "miles")
  42106. },
  42107. {
  42108. name: "Gigamacro",
  42109. height: math.unit(4096, "miles")
  42110. },
  42111. ]
  42112. ))
  42113. characterMakers.push(() => makeCharacter(
  42114. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42115. {
  42116. side: {
  42117. height: math.unit(50, "feet"),
  42118. name: "Side",
  42119. image: {
  42120. source: "./media/characters/froimar/side.svg",
  42121. extra: 855/638,
  42122. bottom: 99/954
  42123. }
  42124. },
  42125. },
  42126. [
  42127. {
  42128. name: "Macro",
  42129. height: math.unit(50, "feet"),
  42130. default: true
  42131. },
  42132. ]
  42133. ))
  42134. characterMakers.push(() => makeCharacter(
  42135. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42136. {
  42137. front: {
  42138. height: math.unit(210, "miles"),
  42139. name: "Front",
  42140. image: {
  42141. source: "./media/characters/timothy/front.svg",
  42142. extra: 1007/943,
  42143. bottom: 62/1069
  42144. }
  42145. },
  42146. frontSkirt: {
  42147. height: math.unit(210, "miles"),
  42148. name: "Front (Skirt)",
  42149. image: {
  42150. source: "./media/characters/timothy/front-skirt.svg",
  42151. extra: 1007/943,
  42152. bottom: 62/1069
  42153. }
  42154. },
  42155. frontCoat: {
  42156. height: math.unit(210, "miles"),
  42157. name: "Front (Coat)",
  42158. image: {
  42159. source: "./media/characters/timothy/front-coat.svg",
  42160. extra: 1007/943,
  42161. bottom: 62/1069
  42162. }
  42163. },
  42164. },
  42165. [
  42166. {
  42167. name: "Macro",
  42168. height: math.unit(210, "miles"),
  42169. default: true
  42170. },
  42171. {
  42172. name: "Megamacro",
  42173. height: math.unit(210000, "miles")
  42174. },
  42175. ]
  42176. ))
  42177. characterMakers.push(() => makeCharacter(
  42178. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42179. {
  42180. front: {
  42181. height: math.unit(188, "feet"),
  42182. name: "Front",
  42183. image: {
  42184. source: "./media/characters/pyotr/front.svg",
  42185. extra: 1912/1826,
  42186. bottom: 18/1930
  42187. }
  42188. },
  42189. },
  42190. [
  42191. {
  42192. name: "Macro",
  42193. height: math.unit(188, "feet"),
  42194. default: true
  42195. },
  42196. {
  42197. name: "Megamacro",
  42198. height: math.unit(8, "miles")
  42199. },
  42200. ]
  42201. ))
  42202. characterMakers.push(() => makeCharacter(
  42203. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42204. {
  42205. side: {
  42206. height: math.unit(10, "feet"),
  42207. weight: math.unit(4500, "lb"),
  42208. name: "Side",
  42209. image: {
  42210. source: "./media/characters/ackart/side.svg",
  42211. extra: 1776/1668,
  42212. bottom: 116/1892
  42213. }
  42214. },
  42215. },
  42216. [
  42217. {
  42218. name: "Normal",
  42219. height: math.unit(10, "feet"),
  42220. default: true
  42221. },
  42222. ]
  42223. ))
  42224. characterMakers.push(() => makeCharacter(
  42225. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42226. {
  42227. side: {
  42228. height: math.unit(21, "feet"),
  42229. name: "Side",
  42230. image: {
  42231. source: "./media/characters/nolow/side.svg",
  42232. extra: 1484/1434,
  42233. bottom: 85/1569
  42234. }
  42235. },
  42236. sideErect: {
  42237. height: math.unit(21, "feet"),
  42238. name: "Side-erect",
  42239. image: {
  42240. source: "./media/characters/nolow/side-erect.svg",
  42241. extra: 1484/1434,
  42242. bottom: 85/1569
  42243. }
  42244. },
  42245. },
  42246. [
  42247. {
  42248. name: "Regular",
  42249. height: math.unit(12, "feet")
  42250. },
  42251. {
  42252. name: "Big Chee",
  42253. height: math.unit(21, "feet"),
  42254. default: true
  42255. },
  42256. ]
  42257. ))
  42258. characterMakers.push(() => makeCharacter(
  42259. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42260. {
  42261. front: {
  42262. height: math.unit(7, "feet"),
  42263. weight: math.unit(250, "lb"),
  42264. name: "Front",
  42265. image: {
  42266. source: "./media/characters/nines/front.svg",
  42267. extra: 1741/1607,
  42268. bottom: 41/1782
  42269. }
  42270. },
  42271. side: {
  42272. height: math.unit(7, "feet"),
  42273. weight: math.unit(250, "lb"),
  42274. name: "Side",
  42275. image: {
  42276. source: "./media/characters/nines/side.svg",
  42277. extra: 1854/1735,
  42278. bottom: 93/1947
  42279. }
  42280. },
  42281. back: {
  42282. height: math.unit(7, "feet"),
  42283. weight: math.unit(250, "lb"),
  42284. name: "Back",
  42285. image: {
  42286. source: "./media/characters/nines/back.svg",
  42287. extra: 1748/1615,
  42288. bottom: 20/1768
  42289. }
  42290. },
  42291. },
  42292. [
  42293. {
  42294. name: "Megamacro",
  42295. height: math.unit(99, "km"),
  42296. default: true
  42297. },
  42298. ]
  42299. ))
  42300. characterMakers.push(() => makeCharacter(
  42301. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42302. {
  42303. front: {
  42304. height: math.unit(5 + 10/12, "feet"),
  42305. weight: math.unit(210, "lb"),
  42306. name: "Front",
  42307. image: {
  42308. source: "./media/characters/zenith/front.svg",
  42309. extra: 1531/1452,
  42310. bottom: 198/1729
  42311. }
  42312. },
  42313. back: {
  42314. height: math.unit(5 + 10/12, "feet"),
  42315. weight: math.unit(210, "lb"),
  42316. name: "Back",
  42317. image: {
  42318. source: "./media/characters/zenith/back.svg",
  42319. extra: 1571/1487,
  42320. bottom: 75/1646
  42321. }
  42322. },
  42323. },
  42324. [
  42325. {
  42326. name: "Normal",
  42327. height: math.unit(5 + 10/12, "feet"),
  42328. default: true
  42329. }
  42330. ]
  42331. ))
  42332. characterMakers.push(() => makeCharacter(
  42333. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42334. {
  42335. front: {
  42336. height: math.unit(4, "feet"),
  42337. weight: math.unit(60, "lb"),
  42338. name: "Front",
  42339. image: {
  42340. source: "./media/characters/jasper/front.svg",
  42341. extra: 1450/1379,
  42342. bottom: 19/1469
  42343. }
  42344. },
  42345. },
  42346. [
  42347. {
  42348. name: "Normal",
  42349. height: math.unit(4, "feet"),
  42350. default: true
  42351. },
  42352. ]
  42353. ))
  42354. characterMakers.push(() => makeCharacter(
  42355. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42356. {
  42357. front: {
  42358. height: math.unit(6 + 5/12, "feet"),
  42359. weight: math.unit(290, "lb"),
  42360. name: "Front",
  42361. image: {
  42362. source: "./media/characters/tiberius-thyben/front.svg",
  42363. extra: 757/739,
  42364. bottom: 39/796
  42365. }
  42366. },
  42367. },
  42368. [
  42369. {
  42370. name: "Micro",
  42371. height: math.unit(1.5, "inches")
  42372. },
  42373. {
  42374. name: "Normal",
  42375. height: math.unit(6 + 5/12, "feet"),
  42376. default: true
  42377. },
  42378. {
  42379. name: "Macro",
  42380. height: math.unit(300, "feet")
  42381. },
  42382. ]
  42383. ))
  42384. characterMakers.push(() => makeCharacter(
  42385. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42386. {
  42387. front: {
  42388. height: math.unit(5 + 6/12, "feet"),
  42389. weight: math.unit(60, "kg"),
  42390. name: "Front",
  42391. image: {
  42392. source: "./media/characters/sabre/front.svg",
  42393. extra: 738/671,
  42394. bottom: 27/765
  42395. }
  42396. },
  42397. },
  42398. [
  42399. {
  42400. name: "Teeny",
  42401. height: math.unit(2, "inches")
  42402. },
  42403. {
  42404. name: "Smol",
  42405. height: math.unit(8, "inches")
  42406. },
  42407. {
  42408. name: "Normal",
  42409. height: math.unit(5 + 6/12, "feet"),
  42410. default: true
  42411. },
  42412. {
  42413. name: "Mini-Macro",
  42414. height: math.unit(15, "feet")
  42415. },
  42416. {
  42417. name: "Macro",
  42418. height: math.unit(50, "feet")
  42419. },
  42420. ]
  42421. ))
  42422. characterMakers.push(() => makeCharacter(
  42423. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42424. {
  42425. front: {
  42426. height: math.unit(6 + 4/12, "feet"),
  42427. weight: math.unit(170, "lb"),
  42428. name: "Front",
  42429. image: {
  42430. source: "./media/characters/charlie/front.svg",
  42431. extra: 1348/1228,
  42432. bottom: 15/1363
  42433. }
  42434. },
  42435. },
  42436. [
  42437. {
  42438. name: "Macro",
  42439. height: math.unit(1700, "meters"),
  42440. default: true
  42441. },
  42442. {
  42443. name: "MegaMacro",
  42444. height: math.unit(20400, "meters")
  42445. },
  42446. ]
  42447. ))
  42448. characterMakers.push(() => makeCharacter(
  42449. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42450. {
  42451. front: {
  42452. height: math.unit(6 + 3/12, "feet"),
  42453. weight: math.unit(185, "lb"),
  42454. name: "Front",
  42455. image: {
  42456. source: "./media/characters/susan-grant/front.svg",
  42457. extra: 1351/1327,
  42458. bottom: 26/1377
  42459. }
  42460. },
  42461. },
  42462. [
  42463. {
  42464. name: "Normal",
  42465. height: math.unit(6 + 3/12, "feet"),
  42466. default: true
  42467. },
  42468. {
  42469. name: "Macro",
  42470. height: math.unit(225, "feet")
  42471. },
  42472. {
  42473. name: "Macro+",
  42474. height: math.unit(900, "feet")
  42475. },
  42476. {
  42477. name: "MegaMacro",
  42478. height: math.unit(14400, "feet")
  42479. },
  42480. ]
  42481. ))
  42482. characterMakers.push(() => makeCharacter(
  42483. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42484. {
  42485. front: {
  42486. height: math.unit(5 + 4/12, "feet"),
  42487. weight: math.unit(110, "lb"),
  42488. name: "Front",
  42489. image: {
  42490. source: "./media/characters/axel-isanov/front.svg",
  42491. extra: 1096/1065,
  42492. bottom: 13/1109
  42493. }
  42494. },
  42495. },
  42496. [
  42497. {
  42498. name: "Normal",
  42499. height: math.unit(5 + 4/12, "feet"),
  42500. default: true
  42501. },
  42502. ]
  42503. ))
  42504. characterMakers.push(() => makeCharacter(
  42505. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42506. {
  42507. front: {
  42508. height: math.unit(9, "feet"),
  42509. weight: math.unit(467, "lb"),
  42510. name: "Front",
  42511. image: {
  42512. source: "./media/characters/necahual/front.svg",
  42513. extra: 920/873,
  42514. bottom: 26/946
  42515. }
  42516. },
  42517. back: {
  42518. height: math.unit(9, "feet"),
  42519. weight: math.unit(467, "lb"),
  42520. name: "Back",
  42521. image: {
  42522. source: "./media/characters/necahual/back.svg",
  42523. extra: 930/884,
  42524. bottom: 16/946
  42525. }
  42526. },
  42527. frontUnderwear: {
  42528. height: math.unit(9, "feet"),
  42529. weight: math.unit(467, "lb"),
  42530. name: "Front (Underwear)",
  42531. image: {
  42532. source: "./media/characters/necahual/front-underwear.svg",
  42533. extra: 920/873,
  42534. bottom: 26/946
  42535. }
  42536. },
  42537. frontDressed: {
  42538. height: math.unit(9, "feet"),
  42539. weight: math.unit(467, "lb"),
  42540. name: "Front (Dressed)",
  42541. image: {
  42542. source: "./media/characters/necahual/front-dressed.svg",
  42543. extra: 920/873,
  42544. bottom: 26/946
  42545. }
  42546. },
  42547. },
  42548. [
  42549. {
  42550. name: "Comprsesed",
  42551. height: math.unit(9, "feet")
  42552. },
  42553. {
  42554. name: "Natural",
  42555. height: math.unit(15, "feet"),
  42556. default: true
  42557. },
  42558. {
  42559. name: "Boosted",
  42560. height: math.unit(50, "feet")
  42561. },
  42562. {
  42563. name: "Boosted+",
  42564. height: math.unit(150, "feet")
  42565. },
  42566. {
  42567. name: "Max",
  42568. height: math.unit(500, "feet")
  42569. },
  42570. ]
  42571. ))
  42572. characterMakers.push(() => makeCharacter(
  42573. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42574. {
  42575. front: {
  42576. height: math.unit(22 + 1/12, "feet"),
  42577. weight: math.unit(3200, "lb"),
  42578. name: "Front",
  42579. image: {
  42580. source: "./media/characters/theo-acacia/front.svg",
  42581. extra: 1796/1741,
  42582. bottom: 83/1879
  42583. }
  42584. },
  42585. frontUnderwear: {
  42586. height: math.unit(22 + 1/12, "feet"),
  42587. weight: math.unit(3200, "lb"),
  42588. name: "Front (Underwear)",
  42589. image: {
  42590. source: "./media/characters/theo-acacia/front-underwear.svg",
  42591. extra: 1796/1741,
  42592. bottom: 83/1879
  42593. }
  42594. },
  42595. frontNude: {
  42596. height: math.unit(22 + 1/12, "feet"),
  42597. weight: math.unit(3200, "lb"),
  42598. name: "Front (Nude)",
  42599. image: {
  42600. source: "./media/characters/theo-acacia/front-nude.svg",
  42601. extra: 1796/1741,
  42602. bottom: 83/1879
  42603. }
  42604. },
  42605. },
  42606. [
  42607. {
  42608. name: "Normal",
  42609. height: math.unit(22 + 1/12, "feet"),
  42610. default: true
  42611. },
  42612. ]
  42613. ))
  42614. characterMakers.push(() => makeCharacter(
  42615. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42616. {
  42617. front: {
  42618. height: math.unit(20, "feet"),
  42619. name: "Front",
  42620. image: {
  42621. source: "./media/characters/astra/front.svg",
  42622. extra: 1850/1714,
  42623. bottom: 106/1956
  42624. }
  42625. },
  42626. frontUndressed: {
  42627. height: math.unit(20, "feet"),
  42628. name: "Front (Undressed)",
  42629. image: {
  42630. source: "./media/characters/astra/front-undressed.svg",
  42631. extra: 1926/1749,
  42632. bottom: 0/1926
  42633. }
  42634. },
  42635. hand: {
  42636. height: math.unit(1.53, "feet"),
  42637. name: "Hand",
  42638. image: {
  42639. source: "./media/characters/astra/hand.svg"
  42640. }
  42641. },
  42642. paw: {
  42643. height: math.unit(1.53, "feet"),
  42644. name: "Paw",
  42645. image: {
  42646. source: "./media/characters/astra/paw.svg"
  42647. }
  42648. },
  42649. },
  42650. [
  42651. {
  42652. name: "Smallest",
  42653. height: math.unit(20, "feet")
  42654. },
  42655. {
  42656. name: "Normal",
  42657. height: math.unit(1e9, "miles"),
  42658. default: true
  42659. },
  42660. {
  42661. name: "Larger",
  42662. height: math.unit(5, "multiverses")
  42663. },
  42664. {
  42665. name: "Largest",
  42666. height: math.unit(1e9, "multiverses")
  42667. },
  42668. ]
  42669. ))
  42670. characterMakers.push(() => makeCharacter(
  42671. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42672. {
  42673. front: {
  42674. height: math.unit(8, "feet"),
  42675. name: "Front",
  42676. image: {
  42677. source: "./media/characters/breanna/front.svg",
  42678. extra: 1912/1632,
  42679. bottom: 33/1945
  42680. }
  42681. },
  42682. },
  42683. [
  42684. {
  42685. name: "Smallest",
  42686. height: math.unit(8, "feet")
  42687. },
  42688. {
  42689. name: "Normal",
  42690. height: math.unit(1, "mile"),
  42691. default: true
  42692. },
  42693. {
  42694. name: "Maximum",
  42695. height: math.unit(1500000000000, "lightyears")
  42696. },
  42697. ]
  42698. ))
  42699. characterMakers.push(() => makeCharacter(
  42700. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42701. {
  42702. front: {
  42703. height: math.unit(5 + 11/12, "feet"),
  42704. weight: math.unit(155, "lb"),
  42705. name: "Front",
  42706. image: {
  42707. source: "./media/characters/cai/front.svg",
  42708. extra: 1823/1702,
  42709. bottom: 32/1855
  42710. }
  42711. },
  42712. back: {
  42713. height: math.unit(5 + 11/12, "feet"),
  42714. weight: math.unit(155, "lb"),
  42715. name: "Back",
  42716. image: {
  42717. source: "./media/characters/cai/back.svg",
  42718. extra: 1809/1708,
  42719. bottom: 31/1840
  42720. }
  42721. },
  42722. },
  42723. [
  42724. {
  42725. name: "Normal",
  42726. height: math.unit(5 + 11/12, "feet"),
  42727. default: true
  42728. },
  42729. {
  42730. name: "Big",
  42731. height: math.unit(15, "feet")
  42732. },
  42733. {
  42734. name: "Macro",
  42735. height: math.unit(200, "feet")
  42736. },
  42737. ]
  42738. ))
  42739. characterMakers.push(() => makeCharacter(
  42740. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42741. {
  42742. front: {
  42743. height: math.unit(5 + 6/12, "feet"),
  42744. weight: math.unit(160, "lb"),
  42745. name: "Front",
  42746. image: {
  42747. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42748. extra: 1227/1174,
  42749. bottom: 37/1264
  42750. }
  42751. },
  42752. },
  42753. [
  42754. {
  42755. name: "Macro",
  42756. height: math.unit(444, "meters"),
  42757. default: true
  42758. },
  42759. ]
  42760. ))
  42761. characterMakers.push(() => makeCharacter(
  42762. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42763. {
  42764. front: {
  42765. height: math.unit(18 + 7/12, "feet"),
  42766. name: "Front",
  42767. image: {
  42768. source: "./media/characters/rex/front.svg",
  42769. extra: 1941/1807,
  42770. bottom: 66/2007
  42771. }
  42772. },
  42773. back: {
  42774. height: math.unit(18 + 7/12, "feet"),
  42775. name: "Back",
  42776. image: {
  42777. source: "./media/characters/rex/back.svg",
  42778. extra: 1937/1822,
  42779. bottom: 42/1979
  42780. }
  42781. },
  42782. boot: {
  42783. height: math.unit(3.45, "feet"),
  42784. name: "Boot",
  42785. image: {
  42786. source: "./media/characters/rex/boot.svg"
  42787. }
  42788. },
  42789. paw: {
  42790. height: math.unit(4.17, "feet"),
  42791. name: "Paw",
  42792. image: {
  42793. source: "./media/characters/rex/paw.svg"
  42794. }
  42795. },
  42796. head: {
  42797. height: math.unit(6.728, "feet"),
  42798. name: "Head",
  42799. image: {
  42800. source: "./media/characters/rex/head.svg"
  42801. }
  42802. },
  42803. },
  42804. [
  42805. {
  42806. name: "Nano",
  42807. height: math.unit(18 + 7/12, "feet")
  42808. },
  42809. {
  42810. name: "Micro",
  42811. height: math.unit(1.5, "megameters")
  42812. },
  42813. {
  42814. name: "Normal",
  42815. height: math.unit(440, "megameters"),
  42816. default: true
  42817. },
  42818. {
  42819. name: "Macro",
  42820. height: math.unit(2.5, "gigameters")
  42821. },
  42822. {
  42823. name: "Gigamacro",
  42824. height: math.unit(2, "galaxies")
  42825. },
  42826. ]
  42827. ))
  42828. characterMakers.push(() => makeCharacter(
  42829. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42830. {
  42831. side: {
  42832. height: math.unit(32, "feet"),
  42833. weight: math.unit(250000, "lb"),
  42834. name: "Side",
  42835. image: {
  42836. source: "./media/characters/silverwing/side.svg",
  42837. extra: 1100/1019,
  42838. bottom: 204/1304
  42839. }
  42840. },
  42841. },
  42842. [
  42843. {
  42844. name: "Normal",
  42845. height: math.unit(32, "feet"),
  42846. default: true
  42847. },
  42848. ]
  42849. ))
  42850. characterMakers.push(() => makeCharacter(
  42851. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42852. {
  42853. front: {
  42854. height: math.unit(6 + 6/12, "feet"),
  42855. weight: math.unit(350, "lb"),
  42856. name: "Front",
  42857. image: {
  42858. source: "./media/characters/tristan-hawthorne/front.svg",
  42859. extra: 1159/1124,
  42860. bottom: 37/1196
  42861. },
  42862. form: "labrador",
  42863. default: true
  42864. },
  42865. skunkFront: {
  42866. height: math.unit(4 + 6/12, "feet"),
  42867. weight: math.unit(120, "lb"),
  42868. name: "Front",
  42869. image: {
  42870. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42871. extra: 1609/1551,
  42872. bottom: 169/1778
  42873. },
  42874. form: "skunk",
  42875. default: true
  42876. },
  42877. },
  42878. [
  42879. {
  42880. name: "Normal",
  42881. height: math.unit(6 + 6/12, "feet"),
  42882. form: "labrador",
  42883. default: true
  42884. },
  42885. {
  42886. name: "Normal",
  42887. height: math.unit(4 + 6/12, "feet"),
  42888. form: "skunk",
  42889. default: true
  42890. },
  42891. ],
  42892. {
  42893. "labrador": {
  42894. name: "Labrador",
  42895. default: true
  42896. },
  42897. "skunk": {
  42898. name: "Skunk"
  42899. }
  42900. }
  42901. ))
  42902. characterMakers.push(() => makeCharacter(
  42903. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42904. {
  42905. front: {
  42906. height: math.unit(5 + 11/12, "feet"),
  42907. weight: math.unit(190, "lb"),
  42908. name: "Front",
  42909. image: {
  42910. source: "./media/characters/mizu/front.svg",
  42911. extra: 1988/1788,
  42912. bottom: 14/2002
  42913. }
  42914. },
  42915. },
  42916. [
  42917. {
  42918. name: "Normal",
  42919. height: math.unit(5 + 11/12, "feet"),
  42920. default: true
  42921. },
  42922. ]
  42923. ))
  42924. characterMakers.push(() => makeCharacter(
  42925. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42926. {
  42927. front: {
  42928. height: math.unit(1.7, "feet"),
  42929. weight: math.unit(50, "lb"),
  42930. name: "Front",
  42931. image: {
  42932. source: "./media/characters/dechroma/front.svg",
  42933. extra: 1095/859,
  42934. bottom: 64/1159
  42935. }
  42936. },
  42937. },
  42938. [
  42939. {
  42940. name: "Normal",
  42941. height: math.unit(1.7, "feet"),
  42942. default: true
  42943. },
  42944. ]
  42945. ))
  42946. characterMakers.push(() => makeCharacter(
  42947. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42948. {
  42949. side: {
  42950. height: math.unit(30, "feet"),
  42951. name: "Side",
  42952. image: {
  42953. source: "./media/characters/veluren-thanazel/side.svg",
  42954. extra: 1611/633,
  42955. bottom: 118/1729
  42956. }
  42957. },
  42958. front: {
  42959. height: math.unit(30, "feet"),
  42960. name: "Front",
  42961. image: {
  42962. source: "./media/characters/veluren-thanazel/front.svg",
  42963. extra: 1486/636,
  42964. bottom: 238/1724
  42965. }
  42966. },
  42967. head: {
  42968. height: math.unit(21.4, "feet"),
  42969. name: "Head",
  42970. image: {
  42971. source: "./media/characters/veluren-thanazel/head.svg"
  42972. }
  42973. },
  42974. genitals: {
  42975. height: math.unit(19.4, "feet"),
  42976. name: "Genitals",
  42977. image: {
  42978. source: "./media/characters/veluren-thanazel/genitals.svg"
  42979. }
  42980. },
  42981. },
  42982. [
  42983. {
  42984. name: "Social",
  42985. height: math.unit(6, "feet")
  42986. },
  42987. {
  42988. name: "Play",
  42989. height: math.unit(12, "feet")
  42990. },
  42991. {
  42992. name: "True",
  42993. height: math.unit(30, "feet"),
  42994. default: true
  42995. },
  42996. ]
  42997. ))
  42998. characterMakers.push(() => makeCharacter(
  42999. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43000. {
  43001. front: {
  43002. height: math.unit(7 + 6/12, "feet"),
  43003. weight: math.unit(500, "kg"),
  43004. name: "Front",
  43005. image: {
  43006. source: "./media/characters/arcturas/front.svg",
  43007. extra: 1700/1500,
  43008. bottom: 145/1845
  43009. }
  43010. },
  43011. },
  43012. [
  43013. {
  43014. name: "Normal",
  43015. height: math.unit(7 + 6/12, "feet"),
  43016. default: true
  43017. },
  43018. ]
  43019. ))
  43020. characterMakers.push(() => makeCharacter(
  43021. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43022. {
  43023. side: {
  43024. height: math.unit(6, "feet"),
  43025. weight: math.unit(2, "tons"),
  43026. name: "Side",
  43027. image: {
  43028. source: "./media/characters/vitaen/side.svg",
  43029. extra: 1157/617,
  43030. bottom: 122/1279
  43031. }
  43032. },
  43033. },
  43034. [
  43035. {
  43036. name: "Normal",
  43037. height: math.unit(6, "feet"),
  43038. default: true
  43039. },
  43040. ]
  43041. ))
  43042. characterMakers.push(() => makeCharacter(
  43043. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43044. {
  43045. front: {
  43046. height: math.unit(19, "feet"),
  43047. name: "Front",
  43048. image: {
  43049. source: "./media/characters/fia-dreamweaver/front.svg",
  43050. extra: 1630/1504,
  43051. bottom: 25/1655
  43052. }
  43053. },
  43054. },
  43055. [
  43056. {
  43057. name: "Normal",
  43058. height: math.unit(19, "feet"),
  43059. default: true
  43060. },
  43061. ]
  43062. ))
  43063. characterMakers.push(() => makeCharacter(
  43064. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43065. {
  43066. front: {
  43067. height: math.unit(5 + 4/12, "feet"),
  43068. name: "Front",
  43069. image: {
  43070. source: "./media/characters/artan/front.svg",
  43071. extra: 1618/1535,
  43072. bottom: 46/1664
  43073. }
  43074. },
  43075. back: {
  43076. height: math.unit(5 + 4/12, "feet"),
  43077. name: "Back",
  43078. image: {
  43079. source: "./media/characters/artan/back.svg",
  43080. extra: 1618/1543,
  43081. bottom: 31/1649
  43082. }
  43083. },
  43084. },
  43085. [
  43086. {
  43087. name: "Normal",
  43088. height: math.unit(5 + 4/12, "feet"),
  43089. default: true
  43090. },
  43091. ]
  43092. ))
  43093. characterMakers.push(() => makeCharacter(
  43094. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43095. {
  43096. side: {
  43097. height: math.unit(182, "cm"),
  43098. weight: math.unit(1000, "lb"),
  43099. name: "Side",
  43100. image: {
  43101. source: "./media/characters/silver-dragon/side.svg",
  43102. extra: 710/287,
  43103. bottom: 88/798
  43104. }
  43105. },
  43106. },
  43107. [
  43108. {
  43109. name: "Normal",
  43110. height: math.unit(182, "cm"),
  43111. default: true
  43112. },
  43113. ]
  43114. ))
  43115. characterMakers.push(() => makeCharacter(
  43116. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43117. {
  43118. side: {
  43119. height: math.unit(6 + 6/12, "feet"),
  43120. weight: math.unit(1.5, "tons"),
  43121. name: "Side",
  43122. image: {
  43123. source: "./media/characters/zephyr/side.svg",
  43124. extra: 1433/586,
  43125. bottom: 109/1542
  43126. }
  43127. },
  43128. },
  43129. [
  43130. {
  43131. name: "Normal",
  43132. height: math.unit(6 + 6/12, "feet"),
  43133. default: true
  43134. },
  43135. ]
  43136. ))
  43137. characterMakers.push(() => makeCharacter(
  43138. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43139. {
  43140. side: {
  43141. height: math.unit(1, "feet"),
  43142. name: "Side",
  43143. image: {
  43144. source: "./media/characters/vixye/side.svg",
  43145. extra: 632/541,
  43146. bottom: 0/632
  43147. }
  43148. },
  43149. },
  43150. [
  43151. {
  43152. name: "Normal",
  43153. height: math.unit(1, "feet"),
  43154. default: true
  43155. },
  43156. {
  43157. name: "True",
  43158. height: math.unit(1e15, "multiverses")
  43159. },
  43160. ]
  43161. ))
  43162. characterMakers.push(() => makeCharacter(
  43163. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43164. {
  43165. front: {
  43166. height: math.unit(8 + 2/12, "feet"),
  43167. weight: math.unit(650, "lb"),
  43168. name: "Front",
  43169. image: {
  43170. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43171. extra: 1174/1137,
  43172. bottom: 82/1256
  43173. }
  43174. },
  43175. back: {
  43176. height: math.unit(8 + 2/12, "feet"),
  43177. weight: math.unit(650, "lb"),
  43178. name: "Back",
  43179. image: {
  43180. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43181. extra: 1204/1157,
  43182. bottom: 46/1250
  43183. }
  43184. },
  43185. },
  43186. [
  43187. {
  43188. name: "Wildform",
  43189. height: math.unit(8 + 2/12, "feet"),
  43190. default: true
  43191. },
  43192. ]
  43193. ))
  43194. characterMakers.push(() => makeCharacter(
  43195. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43196. {
  43197. front: {
  43198. height: math.unit(18, "feet"),
  43199. name: "Front",
  43200. image: {
  43201. source: "./media/characters/cyphin/front.svg",
  43202. extra: 970/886,
  43203. bottom: 42/1012
  43204. }
  43205. },
  43206. back: {
  43207. height: math.unit(18, "feet"),
  43208. name: "Back",
  43209. image: {
  43210. source: "./media/characters/cyphin/back.svg",
  43211. extra: 1009/894,
  43212. bottom: 24/1033
  43213. }
  43214. },
  43215. head: {
  43216. height: math.unit(5.05, "feet"),
  43217. name: "Head",
  43218. image: {
  43219. source: "./media/characters/cyphin/head.svg"
  43220. }
  43221. },
  43222. tailbud: {
  43223. height: math.unit(5, "feet"),
  43224. name: "Tailbud",
  43225. image: {
  43226. source: "./media/characters/cyphin/tailbud.svg"
  43227. }
  43228. },
  43229. },
  43230. [
  43231. ]
  43232. ))
  43233. characterMakers.push(() => makeCharacter(
  43234. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43235. {
  43236. side: {
  43237. height: math.unit(10, "feet"),
  43238. weight: math.unit(6, "tons"),
  43239. name: "Side",
  43240. image: {
  43241. source: "./media/characters/raijin/side.svg",
  43242. extra: 1529/613,
  43243. bottom: 337/1866
  43244. }
  43245. },
  43246. },
  43247. [
  43248. {
  43249. name: "Normal",
  43250. height: math.unit(10, "feet"),
  43251. default: true
  43252. },
  43253. ]
  43254. ))
  43255. characterMakers.push(() => makeCharacter(
  43256. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43257. {
  43258. side: {
  43259. height: math.unit(9, "feet"),
  43260. name: "Side",
  43261. image: {
  43262. source: "./media/characters/nilghais/side.svg",
  43263. extra: 1047/744,
  43264. bottom: 91/1138
  43265. }
  43266. },
  43267. head: {
  43268. height: math.unit(3.14, "feet"),
  43269. name: "Head",
  43270. image: {
  43271. source: "./media/characters/nilghais/head.svg"
  43272. }
  43273. },
  43274. mouth: {
  43275. height: math.unit(4.6, "feet"),
  43276. name: "Mouth",
  43277. image: {
  43278. source: "./media/characters/nilghais/mouth.svg"
  43279. }
  43280. },
  43281. wings: {
  43282. height: math.unit(24, "feet"),
  43283. name: "Wings",
  43284. image: {
  43285. source: "./media/characters/nilghais/wings.svg"
  43286. }
  43287. },
  43288. ass: {
  43289. height: math.unit(6.12, "feet"),
  43290. name: "Ass",
  43291. image: {
  43292. source: "./media/characters/nilghais/ass.svg"
  43293. }
  43294. },
  43295. },
  43296. [
  43297. {
  43298. name: "Normal",
  43299. height: math.unit(9, "feet"),
  43300. default: true
  43301. },
  43302. ]
  43303. ))
  43304. characterMakers.push(() => makeCharacter(
  43305. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43306. {
  43307. regular: {
  43308. height: math.unit(16 + 2/12, "feet"),
  43309. weight: math.unit(2300, "lb"),
  43310. name: "Regular",
  43311. image: {
  43312. source: "./media/characters/zolgar/regular.svg",
  43313. extra: 1246/1004,
  43314. bottom: 124/1370
  43315. }
  43316. },
  43317. boxers: {
  43318. height: math.unit(16 + 2/12, "feet"),
  43319. weight: math.unit(2300, "lb"),
  43320. name: "Boxers",
  43321. image: {
  43322. source: "./media/characters/zolgar/boxers.svg",
  43323. extra: 1246/1004,
  43324. bottom: 124/1370
  43325. }
  43326. },
  43327. armored: {
  43328. height: math.unit(16 + 2/12, "feet"),
  43329. weight: math.unit(2300, "lb"),
  43330. name: "Armored",
  43331. image: {
  43332. source: "./media/characters/zolgar/armored.svg",
  43333. extra: 1246/1004,
  43334. bottom: 124/1370
  43335. }
  43336. },
  43337. goth: {
  43338. height: math.unit(16 + 2/12, "feet"),
  43339. weight: math.unit(2300, "lb"),
  43340. name: "Goth",
  43341. image: {
  43342. source: "./media/characters/zolgar/goth.svg",
  43343. extra: 1246/1004,
  43344. bottom: 124/1370
  43345. }
  43346. },
  43347. },
  43348. [
  43349. {
  43350. name: "Shrunken Down",
  43351. height: math.unit(9 + 2/12, "feet")
  43352. },
  43353. {
  43354. name: "Normal",
  43355. height: math.unit(16 + 2/12, "feet"),
  43356. default: true
  43357. },
  43358. ]
  43359. ))
  43360. characterMakers.push(() => makeCharacter(
  43361. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43362. {
  43363. front: {
  43364. height: math.unit(6, "feet"),
  43365. weight: math.unit(168, "lb"),
  43366. name: "Front",
  43367. image: {
  43368. source: "./media/characters/luca/front.svg",
  43369. extra: 841/667,
  43370. bottom: 102/943
  43371. }
  43372. },
  43373. },
  43374. [
  43375. {
  43376. name: "Normal",
  43377. height: math.unit(6, "feet"),
  43378. default: true
  43379. },
  43380. ]
  43381. ))
  43382. characterMakers.push(() => makeCharacter(
  43383. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43384. {
  43385. side: {
  43386. height: math.unit(7 + 3/12, "feet"),
  43387. weight: math.unit(312, "lb"),
  43388. name: "Side",
  43389. image: {
  43390. source: "./media/characters/zezo/side.svg",
  43391. extra: 1192/1067,
  43392. bottom: 63/1255
  43393. }
  43394. },
  43395. },
  43396. [
  43397. {
  43398. name: "Normal",
  43399. height: math.unit(7 + 3/12, "feet"),
  43400. default: true
  43401. },
  43402. ]
  43403. ))
  43404. characterMakers.push(() => makeCharacter(
  43405. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43406. {
  43407. front: {
  43408. height: math.unit(5 + 5/12, "feet"),
  43409. weight: math.unit(170, "lb"),
  43410. name: "Front",
  43411. image: {
  43412. source: "./media/characters/mayso/front.svg",
  43413. extra: 1215/1108,
  43414. bottom: 16/1231
  43415. }
  43416. },
  43417. },
  43418. [
  43419. {
  43420. name: "Normal",
  43421. height: math.unit(5 + 5/12, "feet"),
  43422. default: true
  43423. },
  43424. ]
  43425. ))
  43426. characterMakers.push(() => makeCharacter(
  43427. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43428. {
  43429. front: {
  43430. height: math.unit(4 + 3/12, "feet"),
  43431. weight: math.unit(80, "lb"),
  43432. name: "Front",
  43433. image: {
  43434. source: "./media/characters/hess/front.svg",
  43435. extra: 1200/1123,
  43436. bottom: 16/1216
  43437. }
  43438. },
  43439. },
  43440. [
  43441. {
  43442. name: "Normal",
  43443. height: math.unit(4 + 3/12, "feet"),
  43444. default: true
  43445. },
  43446. ]
  43447. ))
  43448. characterMakers.push(() => makeCharacter(
  43449. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43450. {
  43451. front: {
  43452. height: math.unit(1.9, "meters"),
  43453. name: "Front",
  43454. image: {
  43455. source: "./media/characters/ashgar/front.svg",
  43456. extra: 1177/1146,
  43457. bottom: 99/1276
  43458. }
  43459. },
  43460. back: {
  43461. height: math.unit(1.9, "meters"),
  43462. name: "Back",
  43463. image: {
  43464. source: "./media/characters/ashgar/back.svg",
  43465. extra: 1201/1183,
  43466. bottom: 53/1254
  43467. }
  43468. },
  43469. feral: {
  43470. height: math.unit(1.4, "meters"),
  43471. name: "Feral",
  43472. image: {
  43473. source: "./media/characters/ashgar/feral.svg",
  43474. extra: 370/345,
  43475. bottom: 45/415
  43476. }
  43477. },
  43478. },
  43479. [
  43480. {
  43481. name: "Normal",
  43482. height: math.unit(1.9, "meters"),
  43483. default: true
  43484. },
  43485. ]
  43486. ))
  43487. characterMakers.push(() => makeCharacter(
  43488. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43489. {
  43490. regular: {
  43491. height: math.unit(6, "feet"),
  43492. weight: math.unit(220, "lb"),
  43493. name: "Regular",
  43494. image: {
  43495. source: "./media/characters/phillip/regular.svg",
  43496. extra: 1373/1277,
  43497. bottom: 75/1448
  43498. }
  43499. },
  43500. dressed: {
  43501. height: math.unit(6, "feet"),
  43502. weight: math.unit(220, "lb"),
  43503. name: "Dressed",
  43504. image: {
  43505. source: "./media/characters/phillip/dressed.svg",
  43506. extra: 1373/1277,
  43507. bottom: 75/1448
  43508. }
  43509. },
  43510. paw: {
  43511. height: math.unit(1.44, "feet"),
  43512. name: "Paw",
  43513. image: {
  43514. source: "./media/characters/phillip/paw.svg"
  43515. }
  43516. },
  43517. },
  43518. [
  43519. {
  43520. name: "Normal",
  43521. height: math.unit(6, "feet"),
  43522. default: true
  43523. },
  43524. ]
  43525. ))
  43526. characterMakers.push(() => makeCharacter(
  43527. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43528. {
  43529. side: {
  43530. height: math.unit(42, "feet"),
  43531. name: "Side",
  43532. image: {
  43533. source: "./media/characters/uvula/side.svg",
  43534. extra: 683/586,
  43535. bottom: 60/743
  43536. }
  43537. },
  43538. front: {
  43539. height: math.unit(42, "feet"),
  43540. name: "Front",
  43541. image: {
  43542. source: "./media/characters/uvula/front.svg",
  43543. extra: 705/613,
  43544. bottom: 54/759
  43545. }
  43546. },
  43547. maw: {
  43548. height: math.unit(23.5, "feet"),
  43549. name: "Maw",
  43550. image: {
  43551. source: "./media/characters/uvula/maw.svg"
  43552. }
  43553. },
  43554. },
  43555. [
  43556. {
  43557. name: "Original Size",
  43558. height: math.unit(14, "inches")
  43559. },
  43560. {
  43561. name: "Human Size",
  43562. height: math.unit(6, "feet")
  43563. },
  43564. {
  43565. name: "Big",
  43566. height: math.unit(42, "feet"),
  43567. default: true
  43568. },
  43569. {
  43570. name: "Bigger",
  43571. height: math.unit(100, "feet")
  43572. },
  43573. ]
  43574. ))
  43575. characterMakers.push(() => makeCharacter(
  43576. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43577. {
  43578. front: {
  43579. height: math.unit(5 + 11/12, "feet"),
  43580. name: "Front",
  43581. image: {
  43582. source: "./media/characters/lannah/front.svg",
  43583. extra: 1208/1113,
  43584. bottom: 97/1305
  43585. }
  43586. },
  43587. },
  43588. [
  43589. {
  43590. name: "Normal",
  43591. height: math.unit(5 + 11/12, "feet"),
  43592. default: true
  43593. },
  43594. ]
  43595. ))
  43596. characterMakers.push(() => makeCharacter(
  43597. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43598. {
  43599. front: {
  43600. height: math.unit(6 + 3/12, "feet"),
  43601. weight: math.unit(3.5, "tons"),
  43602. name: "Front",
  43603. image: {
  43604. source: "./media/characters/emberflame/front.svg",
  43605. extra: 1198/672,
  43606. bottom: 82/1280
  43607. }
  43608. },
  43609. side: {
  43610. height: math.unit(6 + 3/12, "feet"),
  43611. weight: math.unit(3.5, "tons"),
  43612. name: "Side",
  43613. image: {
  43614. source: "./media/characters/emberflame/side.svg",
  43615. extra: 938/527,
  43616. bottom: 56/994
  43617. }
  43618. },
  43619. },
  43620. [
  43621. {
  43622. name: "Normal",
  43623. height: math.unit(6 + 3/12, "feet"),
  43624. default: true
  43625. },
  43626. ]
  43627. ))
  43628. characterMakers.push(() => makeCharacter(
  43629. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43630. {
  43631. side: {
  43632. height: math.unit(17.5, "feet"),
  43633. weight: math.unit(35, "tons"),
  43634. name: "Side",
  43635. image: {
  43636. source: "./media/characters/sophie-ambrose/side.svg",
  43637. extra: 1573/1242,
  43638. bottom: 71/1644
  43639. }
  43640. },
  43641. maw: {
  43642. height: math.unit(7.4, "feet"),
  43643. name: "Maw",
  43644. image: {
  43645. source: "./media/characters/sophie-ambrose/maw.svg"
  43646. }
  43647. },
  43648. },
  43649. [
  43650. {
  43651. name: "Normal",
  43652. height: math.unit(17.5, "feet"),
  43653. default: true
  43654. },
  43655. ]
  43656. ))
  43657. characterMakers.push(() => makeCharacter(
  43658. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43659. {
  43660. front: {
  43661. height: math.unit(280, "feet"),
  43662. weight: math.unit(550, "tons"),
  43663. name: "Front",
  43664. image: {
  43665. source: "./media/characters/king-mugi/front.svg",
  43666. extra: 1102/947,
  43667. bottom: 104/1206
  43668. }
  43669. },
  43670. },
  43671. [
  43672. {
  43673. name: "King Mugi",
  43674. height: math.unit(280, "feet"),
  43675. default: true
  43676. },
  43677. ]
  43678. ))
  43679. characterMakers.push(() => makeCharacter(
  43680. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43681. {
  43682. front: {
  43683. height: math.unit(64, "meters"),
  43684. name: "Front",
  43685. image: {
  43686. source: "./media/characters/nova-fox/front.svg",
  43687. extra: 1310/1246,
  43688. bottom: 65/1375
  43689. }
  43690. },
  43691. },
  43692. [
  43693. {
  43694. name: "Macro",
  43695. height: math.unit(64, "meters"),
  43696. default: true
  43697. },
  43698. ]
  43699. ))
  43700. characterMakers.push(() => makeCharacter(
  43701. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43702. {
  43703. front: {
  43704. height: math.unit(6 + 3/12, "feet"),
  43705. weight: math.unit(170, "lb"),
  43706. name: "Front",
  43707. image: {
  43708. source: "./media/characters/sam-bat/front.svg",
  43709. extra: 1601/1411,
  43710. bottom: 125/1726
  43711. }
  43712. },
  43713. back: {
  43714. height: math.unit(6 + 3/12, "feet"),
  43715. weight: math.unit(170, "lb"),
  43716. name: "Back",
  43717. image: {
  43718. source: "./media/characters/sam-bat/back.svg",
  43719. extra: 1577/1405,
  43720. bottom: 58/1635
  43721. }
  43722. },
  43723. },
  43724. [
  43725. {
  43726. name: "Normal",
  43727. height: math.unit(6 + 3/12, "feet"),
  43728. default: true
  43729. },
  43730. ]
  43731. ))
  43732. characterMakers.push(() => makeCharacter(
  43733. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43734. {
  43735. front: {
  43736. height: math.unit(59, "feet"),
  43737. weight: math.unit(40000, "lb"),
  43738. name: "Front",
  43739. image: {
  43740. source: "./media/characters/inari/front.svg",
  43741. extra: 1884/1350,
  43742. bottom: 95/1979
  43743. }
  43744. },
  43745. },
  43746. [
  43747. {
  43748. name: "Gigantamax",
  43749. height: math.unit(59, "feet"),
  43750. default: true
  43751. },
  43752. ]
  43753. ))
  43754. characterMakers.push(() => makeCharacter(
  43755. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43756. {
  43757. front: {
  43758. height: math.unit(5 + 8/12, "feet"),
  43759. name: "Front",
  43760. image: {
  43761. source: "./media/characters/elizabeth/front.svg",
  43762. extra: 1395/1298,
  43763. bottom: 54/1449
  43764. }
  43765. },
  43766. mouth: {
  43767. height: math.unit(1.97, "feet"),
  43768. name: "Mouth",
  43769. image: {
  43770. source: "./media/characters/elizabeth/mouth.svg"
  43771. }
  43772. },
  43773. foot: {
  43774. height: math.unit(1.17, "feet"),
  43775. name: "Foot",
  43776. image: {
  43777. source: "./media/characters/elizabeth/foot.svg"
  43778. }
  43779. },
  43780. },
  43781. [
  43782. {
  43783. name: "Normal",
  43784. height: math.unit(5 + 8/12, "feet"),
  43785. default: true
  43786. },
  43787. {
  43788. name: "Minimacro",
  43789. height: math.unit(18, "feet")
  43790. },
  43791. {
  43792. name: "Macro",
  43793. height: math.unit(180, "feet")
  43794. },
  43795. ]
  43796. ))
  43797. characterMakers.push(() => makeCharacter(
  43798. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43799. {
  43800. front: {
  43801. height: math.unit(5 + 2/12, "feet"),
  43802. name: "Front",
  43803. image: {
  43804. source: "./media/characters/october-gossamer/front.svg",
  43805. extra: 505/454,
  43806. bottom: 7/512
  43807. }
  43808. },
  43809. back: {
  43810. height: math.unit(5 + 2/12, "feet"),
  43811. name: "Back",
  43812. image: {
  43813. source: "./media/characters/october-gossamer/back.svg",
  43814. extra: 501/454,
  43815. bottom: 11/512
  43816. }
  43817. },
  43818. },
  43819. [
  43820. {
  43821. name: "Normal",
  43822. height: math.unit(5 + 2/12, "feet"),
  43823. default: true
  43824. },
  43825. ]
  43826. ))
  43827. characterMakers.push(() => makeCharacter(
  43828. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43829. {
  43830. front: {
  43831. height: math.unit(5, "feet"),
  43832. name: "Front",
  43833. image: {
  43834. source: "./media/characters/epiglottis/front.svg",
  43835. extra: 923/849,
  43836. bottom: 17/940
  43837. }
  43838. },
  43839. },
  43840. [
  43841. {
  43842. name: "Original Size",
  43843. height: math.unit(10, "inches")
  43844. },
  43845. {
  43846. name: "Human Size",
  43847. height: math.unit(5, "feet"),
  43848. default: true
  43849. },
  43850. {
  43851. name: "Big",
  43852. height: math.unit(25, "feet")
  43853. },
  43854. {
  43855. name: "Bigger",
  43856. height: math.unit(50, "feet")
  43857. },
  43858. {
  43859. name: "oh lawd",
  43860. height: math.unit(75, "feet")
  43861. },
  43862. ]
  43863. ))
  43864. characterMakers.push(() => makeCharacter(
  43865. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43866. {
  43867. front: {
  43868. height: math.unit(2 + 4/12, "feet"),
  43869. weight: math.unit(60, "lb"),
  43870. name: "Front",
  43871. image: {
  43872. source: "./media/characters/lerm/front.svg",
  43873. extra: 796/790,
  43874. bottom: 79/875
  43875. }
  43876. },
  43877. },
  43878. [
  43879. {
  43880. name: "Normal",
  43881. height: math.unit(2 + 4/12, "feet"),
  43882. default: true
  43883. },
  43884. ]
  43885. ))
  43886. characterMakers.push(() => makeCharacter(
  43887. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43888. {
  43889. front: {
  43890. height: math.unit(5.5, "feet"),
  43891. weight: math.unit(130, "lb"),
  43892. name: "Front",
  43893. image: {
  43894. source: "./media/characters/xena-nebadon/front.svg",
  43895. extra: 1828/1730,
  43896. bottom: 79/1907
  43897. }
  43898. },
  43899. },
  43900. [
  43901. {
  43902. name: "Tiny Puppy",
  43903. height: math.unit(3, "inches")
  43904. },
  43905. {
  43906. name: "Normal",
  43907. height: math.unit(5.5, "feet"),
  43908. default: true
  43909. },
  43910. {
  43911. name: "Lotta Lady",
  43912. height: math.unit(12, "feet")
  43913. },
  43914. {
  43915. name: "Pretty Big",
  43916. height: math.unit(100, "feet")
  43917. },
  43918. {
  43919. name: "Big",
  43920. height: math.unit(500, "feet")
  43921. },
  43922. {
  43923. name: "Skyscraper Toys",
  43924. height: math.unit(2500, "feet")
  43925. },
  43926. {
  43927. name: "Plane Catcher",
  43928. height: math.unit(8, "miles")
  43929. },
  43930. {
  43931. name: "Planet Toys",
  43932. height: math.unit(15, "earths")
  43933. },
  43934. {
  43935. name: "Stardust",
  43936. height: math.unit(0.25, "galaxies")
  43937. },
  43938. {
  43939. name: "Snacks",
  43940. height: math.unit(70, "universes")
  43941. },
  43942. ]
  43943. ))
  43944. characterMakers.push(() => makeCharacter(
  43945. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43946. {
  43947. front: {
  43948. height: math.unit(1.6, "meters"),
  43949. weight: math.unit(60, "kg"),
  43950. name: "Front",
  43951. image: {
  43952. source: "./media/characters/bounty/front.svg",
  43953. extra: 1426/1308,
  43954. bottom: 15/1441
  43955. }
  43956. },
  43957. back: {
  43958. height: math.unit(1.6, "meters"),
  43959. weight: math.unit(60, "kg"),
  43960. name: "Back",
  43961. image: {
  43962. source: "./media/characters/bounty/back.svg",
  43963. extra: 1417/1307,
  43964. bottom: 8/1425
  43965. }
  43966. },
  43967. },
  43968. [
  43969. {
  43970. name: "Normal",
  43971. height: math.unit(1.6, "meters"),
  43972. default: true
  43973. },
  43974. {
  43975. name: "Macro",
  43976. height: math.unit(300, "meters")
  43977. },
  43978. ]
  43979. ))
  43980. characterMakers.push(() => makeCharacter(
  43981. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43982. {
  43983. front: {
  43984. height: math.unit(2 + 8/12, "feet"),
  43985. weight: math.unit(15, "lb"),
  43986. name: "Front",
  43987. image: {
  43988. source: "./media/characters/mochi/front.svg",
  43989. extra: 1022/852,
  43990. bottom: 435/1457
  43991. }
  43992. },
  43993. back: {
  43994. height: math.unit(2 + 8/12, "feet"),
  43995. weight: math.unit(15, "lb"),
  43996. name: "Back",
  43997. image: {
  43998. source: "./media/characters/mochi/back.svg",
  43999. extra: 1335/1119,
  44000. bottom: 39/1374
  44001. }
  44002. },
  44003. bird: {
  44004. height: math.unit(2 + 8/12, "feet"),
  44005. weight: math.unit(15, "lb"),
  44006. name: "Bird",
  44007. image: {
  44008. source: "./media/characters/mochi/bird.svg",
  44009. extra: 1251/1113,
  44010. bottom: 178/1429
  44011. }
  44012. },
  44013. kaiju: {
  44014. height: math.unit(154, "feet"),
  44015. weight: math.unit(1e7, "lb"),
  44016. name: "Kaiju",
  44017. image: {
  44018. source: "./media/characters/mochi/kaiju.svg",
  44019. extra: 460/324,
  44020. bottom: 40/500
  44021. }
  44022. },
  44023. head: {
  44024. height: math.unit(1.21, "feet"),
  44025. name: "Head",
  44026. image: {
  44027. source: "./media/characters/mochi/head.svg"
  44028. }
  44029. },
  44030. alternateTail: {
  44031. height: math.unit(2 + 8/12, "feet"),
  44032. weight: math.unit(45, "lb"),
  44033. name: "Alternate Tail",
  44034. image: {
  44035. source: "./media/characters/mochi/alternate-tail.svg",
  44036. extra: 139/76,
  44037. bottom: 45/184
  44038. }
  44039. },
  44040. },
  44041. [
  44042. {
  44043. name: "Micro",
  44044. height: math.unit(2, "inches")
  44045. },
  44046. {
  44047. name: "Normal",
  44048. height: math.unit(2 + 8/12, "feet"),
  44049. default: true
  44050. },
  44051. {
  44052. name: "Macro",
  44053. height: math.unit(106, "feet")
  44054. },
  44055. ]
  44056. ))
  44057. characterMakers.push(() => makeCharacter(
  44058. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44059. {
  44060. front: {
  44061. height: math.unit(5.67, "feet"),
  44062. weight: math.unit(135, "lb"),
  44063. name: "Front",
  44064. image: {
  44065. source: "./media/characters/sarel/front.svg",
  44066. extra: 865/788,
  44067. bottom: 97/962
  44068. }
  44069. },
  44070. back: {
  44071. height: math.unit(5.67, "feet"),
  44072. weight: math.unit(135, "lb"),
  44073. name: "Back",
  44074. image: {
  44075. source: "./media/characters/sarel/back.svg",
  44076. extra: 857/777,
  44077. bottom: 32/889
  44078. }
  44079. },
  44080. chozoan: {
  44081. height: math.unit(5.67, "feet"),
  44082. weight: math.unit(135, "lb"),
  44083. name: "Chozoan",
  44084. image: {
  44085. source: "./media/characters/sarel/chozoan.svg",
  44086. extra: 865/788,
  44087. bottom: 97/962
  44088. }
  44089. },
  44090. current: {
  44091. height: math.unit(5.67, "feet"),
  44092. weight: math.unit(135, "lb"),
  44093. name: "Current",
  44094. image: {
  44095. source: "./media/characters/sarel/current.svg",
  44096. extra: 865/788,
  44097. bottom: 97/962
  44098. }
  44099. },
  44100. head: {
  44101. height: math.unit(1.77, "feet"),
  44102. name: "Head",
  44103. image: {
  44104. source: "./media/characters/sarel/head.svg"
  44105. }
  44106. },
  44107. claws: {
  44108. height: math.unit(1.8, "feet"),
  44109. name: "Claws",
  44110. image: {
  44111. source: "./media/characters/sarel/claws.svg"
  44112. }
  44113. },
  44114. clawsAlt: {
  44115. height: math.unit(1.8, "feet"),
  44116. name: "Claws-alt",
  44117. image: {
  44118. source: "./media/characters/sarel/claws-alt.svg"
  44119. }
  44120. },
  44121. },
  44122. [
  44123. {
  44124. name: "Normal",
  44125. height: math.unit(5.67, "feet"),
  44126. default: true
  44127. },
  44128. ]
  44129. ))
  44130. characterMakers.push(() => makeCharacter(
  44131. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44132. {
  44133. front: {
  44134. height: math.unit(5500, "feet"),
  44135. name: "Front",
  44136. image: {
  44137. source: "./media/characters/alyonia/front.svg",
  44138. extra: 1200/1135,
  44139. bottom: 29/1229
  44140. }
  44141. },
  44142. back: {
  44143. height: math.unit(5500, "feet"),
  44144. name: "Back",
  44145. image: {
  44146. source: "./media/characters/alyonia/back.svg",
  44147. extra: 1205/1138,
  44148. bottom: 10/1215
  44149. }
  44150. },
  44151. },
  44152. [
  44153. {
  44154. name: "Small",
  44155. height: math.unit(10, "feet")
  44156. },
  44157. {
  44158. name: "Macro",
  44159. height: math.unit(500, "feet")
  44160. },
  44161. {
  44162. name: "Mega Macro",
  44163. height: math.unit(5500, "feet"),
  44164. default: true
  44165. },
  44166. {
  44167. name: "Mega Macro+",
  44168. height: math.unit(500000, "feet")
  44169. },
  44170. {
  44171. name: "Giga Macro",
  44172. height: math.unit(3000, "miles")
  44173. },
  44174. {
  44175. name: "Tera Macro",
  44176. height: math.unit(2.8e6, "miles")
  44177. },
  44178. {
  44179. name: "Galactic",
  44180. height: math.unit(120000, "lightyears")
  44181. },
  44182. ]
  44183. ))
  44184. characterMakers.push(() => makeCharacter(
  44185. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44186. {
  44187. werewolf: {
  44188. height: math.unit(8, "feet"),
  44189. weight: math.unit(425, "lb"),
  44190. name: "Werewolf",
  44191. image: {
  44192. source: "./media/characters/autumn/werewolf.svg",
  44193. extra: 2154/2031,
  44194. bottom: 160/2314
  44195. }
  44196. },
  44197. human: {
  44198. height: math.unit(5 + 8/12, "feet"),
  44199. weight: math.unit(150, "lb"),
  44200. name: "Human",
  44201. image: {
  44202. source: "./media/characters/autumn/human.svg",
  44203. extra: 1200/1149,
  44204. bottom: 30/1230
  44205. }
  44206. },
  44207. },
  44208. [
  44209. {
  44210. name: "Normal",
  44211. height: math.unit(8, "feet"),
  44212. default: true
  44213. },
  44214. ]
  44215. ))
  44216. characterMakers.push(() => makeCharacter(
  44217. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44218. {
  44219. front: {
  44220. height: math.unit(8 + 5/12, "feet"),
  44221. weight: math.unit(825, "lb"),
  44222. name: "Front",
  44223. image: {
  44224. source: "./media/characters/cobalt-charizard/front.svg",
  44225. extra: 1268/1155,
  44226. bottom: 122/1390
  44227. }
  44228. },
  44229. side: {
  44230. height: math.unit(8 + 5/12, "feet"),
  44231. weight: math.unit(825, "lb"),
  44232. name: "Side",
  44233. image: {
  44234. source: "./media/characters/cobalt-charizard/side.svg",
  44235. extra: 1348/1257,
  44236. bottom: 58/1406
  44237. }
  44238. },
  44239. gMax: {
  44240. height: math.unit(134 + 11/12, "feet"),
  44241. name: "G-Max",
  44242. image: {
  44243. source: "./media/characters/cobalt-charizard/g-max.svg",
  44244. extra: 1835/1541,
  44245. bottom: 151/1986
  44246. }
  44247. },
  44248. },
  44249. [
  44250. {
  44251. name: "Normal",
  44252. height: math.unit(8 + 5/12, "feet"),
  44253. default: true
  44254. },
  44255. ]
  44256. ))
  44257. characterMakers.push(() => makeCharacter(
  44258. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44259. {
  44260. front: {
  44261. height: math.unit(6 + 3/12, "feet"),
  44262. weight: math.unit(210, "lb"),
  44263. name: "Front",
  44264. image: {
  44265. source: "./media/characters/stella/front.svg",
  44266. extra: 3549/3335,
  44267. bottom: 51/3600
  44268. }
  44269. },
  44270. },
  44271. [
  44272. {
  44273. name: "Normal",
  44274. height: math.unit(6 + 3/12, "feet"),
  44275. default: true
  44276. },
  44277. ]
  44278. ))
  44279. characterMakers.push(() => makeCharacter(
  44280. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44281. {
  44282. front: {
  44283. height: math.unit(5, "feet"),
  44284. weight: math.unit(90, "lb"),
  44285. name: "Front",
  44286. image: {
  44287. source: "./media/characters/riley-bishop/front.svg",
  44288. extra: 1450/1428,
  44289. bottom: 152/1602
  44290. }
  44291. },
  44292. },
  44293. [
  44294. {
  44295. name: "Normal",
  44296. height: math.unit(5, "feet"),
  44297. default: true
  44298. },
  44299. ]
  44300. ))
  44301. characterMakers.push(() => makeCharacter(
  44302. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44303. {
  44304. side: {
  44305. height: math.unit(8 + 2/12, "feet"),
  44306. weight: math.unit(500, "kg"),
  44307. name: "Side",
  44308. image: {
  44309. source: "./media/characters/theo-arcanine/side.svg",
  44310. extra: 1342/1074,
  44311. bottom: 111/1453
  44312. }
  44313. },
  44314. },
  44315. [
  44316. {
  44317. name: "Normal",
  44318. height: math.unit(8 + 2/12, "feet"),
  44319. default: true
  44320. },
  44321. ]
  44322. ))
  44323. characterMakers.push(() => makeCharacter(
  44324. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44325. {
  44326. front: {
  44327. height: math.unit(4, "feet"),
  44328. name: "Front",
  44329. image: {
  44330. source: "./media/characters/kali/front.svg",
  44331. extra: 1921/1357,
  44332. bottom: 70/1991
  44333. }
  44334. },
  44335. },
  44336. [
  44337. {
  44338. name: "Normal",
  44339. height: math.unit(4, "feet"),
  44340. default: true
  44341. },
  44342. {
  44343. name: "Macro",
  44344. height: math.unit(32, "meters")
  44345. },
  44346. {
  44347. name: "Macro+",
  44348. height: math.unit(150, "meters")
  44349. },
  44350. {
  44351. name: "Megamacro",
  44352. height: math.unit(7500, "meters")
  44353. },
  44354. {
  44355. name: "Megamacro+",
  44356. height: math.unit(80, "kilometers")
  44357. },
  44358. ]
  44359. ))
  44360. characterMakers.push(() => makeCharacter(
  44361. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44362. {
  44363. side: {
  44364. height: math.unit(5 + 11/12, "feet"),
  44365. weight: math.unit(236, "lb"),
  44366. name: "Side",
  44367. image: {
  44368. source: "./media/characters/gapp/side.svg",
  44369. extra: 775/340,
  44370. bottom: 58/833
  44371. }
  44372. },
  44373. mouth: {
  44374. height: math.unit(2.98, "feet"),
  44375. name: "Mouth",
  44376. image: {
  44377. source: "./media/characters/gapp/mouth.svg"
  44378. }
  44379. },
  44380. },
  44381. [
  44382. {
  44383. name: "Normal",
  44384. height: math.unit(5 + 1/12, "feet"),
  44385. default: true
  44386. },
  44387. ]
  44388. ))
  44389. characterMakers.push(() => makeCharacter(
  44390. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44391. {
  44392. front: {
  44393. height: math.unit(6, "feet"),
  44394. name: "Front",
  44395. image: {
  44396. source: "./media/characters/persephone/front.svg",
  44397. extra: 1895/1717,
  44398. bottom: 96/1991
  44399. }
  44400. },
  44401. back: {
  44402. height: math.unit(6, "feet"),
  44403. name: "Back",
  44404. image: {
  44405. source: "./media/characters/persephone/back.svg",
  44406. extra: 1868/1679,
  44407. bottom: 26/1894
  44408. }
  44409. },
  44410. casual: {
  44411. height: math.unit(6, "feet"),
  44412. name: "Casual",
  44413. image: {
  44414. source: "./media/characters/persephone/casual.svg",
  44415. extra: 1713/1541,
  44416. bottom: 76/1789
  44417. }
  44418. },
  44419. },
  44420. [
  44421. {
  44422. name: "Human Size",
  44423. height: math.unit(6, "feet")
  44424. },
  44425. {
  44426. name: "Big Steppy",
  44427. height: math.unit(600, "meters"),
  44428. default: true
  44429. },
  44430. {
  44431. name: "Galaxy Brain",
  44432. height: math.unit(1, "zettameter")
  44433. },
  44434. ]
  44435. ))
  44436. characterMakers.push(() => makeCharacter(
  44437. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44438. {
  44439. front: {
  44440. height: math.unit(1.85, "meters"),
  44441. name: "Front",
  44442. image: {
  44443. source: "./media/characters/riley-foxthing/front.svg",
  44444. extra: 1495/1354,
  44445. bottom: 122/1617
  44446. }
  44447. },
  44448. frontAlt: {
  44449. height: math.unit(1.85, "meters"),
  44450. name: "Front (Alt)",
  44451. image: {
  44452. source: "./media/characters/riley-foxthing/front-alt.svg",
  44453. extra: 1572/1389,
  44454. bottom: 116/1688
  44455. }
  44456. },
  44457. },
  44458. [
  44459. {
  44460. name: "Normal Sized",
  44461. height: math.unit(1.85, "meters"),
  44462. default: true
  44463. },
  44464. {
  44465. name: "Quite Sizable",
  44466. height: math.unit(5, "meters")
  44467. },
  44468. {
  44469. name: "Rather Large",
  44470. height: math.unit(20, "meters")
  44471. },
  44472. {
  44473. name: "Macro",
  44474. height: math.unit(450, "meters")
  44475. },
  44476. {
  44477. name: "Giga",
  44478. height: math.unit(5, "km")
  44479. },
  44480. ]
  44481. ))
  44482. characterMakers.push(() => makeCharacter(
  44483. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44484. {
  44485. front: {
  44486. height: math.unit(6, "feet"),
  44487. weight: math.unit(200, "lb"),
  44488. name: "Front",
  44489. image: {
  44490. source: "./media/characters/blizzard/front.svg",
  44491. extra: 1136/990,
  44492. bottom: 136/1272
  44493. }
  44494. },
  44495. back: {
  44496. height: math.unit(6, "feet"),
  44497. weight: math.unit(200, "lb"),
  44498. name: "Back",
  44499. image: {
  44500. source: "./media/characters/blizzard/back.svg",
  44501. extra: 1175/1034,
  44502. bottom: 97/1272
  44503. }
  44504. },
  44505. sitting: {
  44506. height: math.unit(3.725, "feet"),
  44507. weight: math.unit(200, "lb"),
  44508. name: "Sitting",
  44509. image: {
  44510. source: "./media/characters/blizzard/sitting.svg",
  44511. extra: 581/485,
  44512. bottom: 90/671
  44513. }
  44514. },
  44515. frontWizard: {
  44516. height: math.unit(7.9, "feet"),
  44517. weight: math.unit(200, "lb"),
  44518. name: "Front (Wizard)",
  44519. image: {
  44520. source: "./media/characters/blizzard/front-wizard.svg"
  44521. }
  44522. },
  44523. backWizard: {
  44524. height: math.unit(7.9, "feet"),
  44525. weight: math.unit(200, "lb"),
  44526. name: "Back (Wizard)",
  44527. image: {
  44528. source: "./media/characters/blizzard/back-wizard.svg"
  44529. }
  44530. },
  44531. frontNsfw: {
  44532. height: math.unit(6, "feet"),
  44533. weight: math.unit(200, "lb"),
  44534. name: "Front (NSFW)",
  44535. image: {
  44536. source: "./media/characters/blizzard/front-nsfw.svg",
  44537. extra: 1136/990,
  44538. bottom: 136/1272
  44539. }
  44540. },
  44541. backNsfw: {
  44542. height: math.unit(6, "feet"),
  44543. weight: math.unit(200, "lb"),
  44544. name: "Back (NSFW)",
  44545. image: {
  44546. source: "./media/characters/blizzard/back-nsfw.svg",
  44547. extra: 1175/1034,
  44548. bottom: 97/1272
  44549. }
  44550. },
  44551. sittingNsfw: {
  44552. height: math.unit(3.725, "feet"),
  44553. weight: math.unit(200, "lb"),
  44554. name: "Sitting (NSFW)",
  44555. image: {
  44556. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44557. extra: 581/485,
  44558. bottom: 90/671
  44559. }
  44560. },
  44561. wizardFrontNsfw: {
  44562. height: math.unit(7.9, "feet"),
  44563. weight: math.unit(200, "lb"),
  44564. name: "Wizard (Front, NSFW)",
  44565. image: {
  44566. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44567. }
  44568. },
  44569. },
  44570. [
  44571. {
  44572. name: "Normal",
  44573. height: math.unit(6, "feet"),
  44574. default: true
  44575. },
  44576. ]
  44577. ))
  44578. characterMakers.push(() => makeCharacter(
  44579. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44580. {
  44581. front: {
  44582. height: math.unit(5 + 2/12, "feet"),
  44583. name: "Front",
  44584. image: {
  44585. source: "./media/characters/lumi/front.svg",
  44586. extra: 1328/1268,
  44587. bottom: 103/1431
  44588. }
  44589. },
  44590. back: {
  44591. height: math.unit(5 + 2/12, "feet"),
  44592. name: "Back",
  44593. image: {
  44594. source: "./media/characters/lumi/back.svg",
  44595. extra: 1381/1327,
  44596. bottom: 43/1424
  44597. }
  44598. },
  44599. },
  44600. [
  44601. {
  44602. name: "Normal",
  44603. height: math.unit(5 + 2/12, "feet"),
  44604. default: true
  44605. },
  44606. ]
  44607. ))
  44608. characterMakers.push(() => makeCharacter(
  44609. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44610. {
  44611. front: {
  44612. height: math.unit(5 + 9/12, "feet"),
  44613. name: "Front",
  44614. image: {
  44615. source: "./media/characters/aliya-cotton/front.svg",
  44616. extra: 577/564,
  44617. bottom: 29/606
  44618. }
  44619. },
  44620. },
  44621. [
  44622. {
  44623. name: "Normal",
  44624. height: math.unit(5 + 9/12, "feet"),
  44625. default: true
  44626. },
  44627. ]
  44628. ))
  44629. characterMakers.push(() => makeCharacter(
  44630. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44631. {
  44632. front: {
  44633. height: math.unit(2.7, "meters"),
  44634. weight: math.unit(25000, "lb"),
  44635. name: "Front",
  44636. image: {
  44637. source: "./media/characters/noah-luxray/front.svg",
  44638. extra: 1644/825,
  44639. bottom: 339/1983
  44640. }
  44641. },
  44642. side: {
  44643. height: math.unit(2.97, "meters"),
  44644. weight: math.unit(25000, "lb"),
  44645. name: "Side",
  44646. image: {
  44647. source: "./media/characters/noah-luxray/side.svg",
  44648. extra: 1319/650,
  44649. bottom: 163/1482
  44650. }
  44651. },
  44652. dick: {
  44653. height: math.unit(7.4, "feet"),
  44654. weight: math.unit(2500, "lb"),
  44655. name: "Dick",
  44656. image: {
  44657. source: "./media/characters/noah-luxray/dick.svg"
  44658. }
  44659. },
  44660. dickAlt: {
  44661. height: math.unit(10.83, "feet"),
  44662. weight: math.unit(2500, "lb"),
  44663. name: "Dick-alt",
  44664. image: {
  44665. source: "./media/characters/noah-luxray/dick-alt.svg"
  44666. }
  44667. },
  44668. },
  44669. [
  44670. {
  44671. name: "BIG",
  44672. height: math.unit(2.7, "meters"),
  44673. default: true
  44674. },
  44675. ]
  44676. ))
  44677. characterMakers.push(() => makeCharacter(
  44678. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44679. {
  44680. standing: {
  44681. height: math.unit(183, "cm"),
  44682. weight: math.unit(68, "kg"),
  44683. name: "Standing",
  44684. image: {
  44685. source: "./media/characters/arion/standing.svg",
  44686. extra: 1869/1807,
  44687. bottom: 93/1962
  44688. }
  44689. },
  44690. reclining: {
  44691. height: math.unit(70.5, "cm"),
  44692. weight: math.unit(68, "lb"),
  44693. name: "Reclining",
  44694. image: {
  44695. source: "./media/characters/arion/reclining.svg",
  44696. extra: 937/870,
  44697. bottom: 63/1000
  44698. }
  44699. },
  44700. },
  44701. [
  44702. {
  44703. name: "Colossus Size, Low",
  44704. height: math.unit(33, "meters"),
  44705. default: true
  44706. },
  44707. {
  44708. name: "Colossus Size, Mid",
  44709. height: math.unit(52, "meters")
  44710. },
  44711. {
  44712. name: "Colossus Size, High",
  44713. height: math.unit(60, "meters")
  44714. },
  44715. {
  44716. name: "Titan Size, Low",
  44717. height: math.unit(91, "meters"),
  44718. },
  44719. {
  44720. name: "Titan Size, Mid",
  44721. height: math.unit(122, "meters")
  44722. },
  44723. {
  44724. name: "Titan Size, High",
  44725. height: math.unit(162, "meters")
  44726. },
  44727. ]
  44728. ))
  44729. characterMakers.push(() => makeCharacter(
  44730. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44731. {
  44732. front: {
  44733. height: math.unit(53, "meters"),
  44734. name: "Front",
  44735. image: {
  44736. source: "./media/characters/stellar-marbey/front.svg",
  44737. extra: 1913/1805,
  44738. bottom: 92/2005
  44739. }
  44740. },
  44741. back: {
  44742. height: math.unit(53, "meters"),
  44743. name: "Back",
  44744. image: {
  44745. source: "./media/characters/stellar-marbey/back.svg",
  44746. extra: 1960/1851,
  44747. bottom: 28/1988
  44748. }
  44749. },
  44750. mouth: {
  44751. height: math.unit(3.5, "meters"),
  44752. name: "Mouth",
  44753. image: {
  44754. source: "./media/characters/stellar-marbey/mouth.svg"
  44755. }
  44756. },
  44757. },
  44758. [
  44759. {
  44760. name: "Macro",
  44761. height: math.unit(53, "meters"),
  44762. default: true
  44763. },
  44764. ]
  44765. ))
  44766. characterMakers.push(() => makeCharacter(
  44767. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44768. {
  44769. front: {
  44770. height: math.unit(8 + 1/12, "feet"),
  44771. weight: math.unit(233, "lb"),
  44772. name: "Front",
  44773. image: {
  44774. source: "./media/characters/matsu/front.svg",
  44775. extra: 832/772,
  44776. bottom: 40/872
  44777. }
  44778. },
  44779. back: {
  44780. height: math.unit(8 + 1/12, "feet"),
  44781. weight: math.unit(233, "lb"),
  44782. name: "Back",
  44783. image: {
  44784. source: "./media/characters/matsu/back.svg",
  44785. extra: 839/780,
  44786. bottom: 47/886
  44787. }
  44788. },
  44789. },
  44790. [
  44791. {
  44792. name: "Normal",
  44793. height: math.unit(8 + 1/12, "feet"),
  44794. default: true
  44795. },
  44796. ]
  44797. ))
  44798. characterMakers.push(() => makeCharacter(
  44799. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44800. {
  44801. front: {
  44802. height: math.unit(4, "feet"),
  44803. weight: math.unit(148, "lb"),
  44804. name: "Front",
  44805. image: {
  44806. source: "./media/characters/thiz/front.svg",
  44807. extra: 1913/1748,
  44808. bottom: 62/1975
  44809. }
  44810. },
  44811. },
  44812. [
  44813. {
  44814. name: "Normal",
  44815. height: math.unit(4, "feet"),
  44816. default: true
  44817. },
  44818. ]
  44819. ))
  44820. characterMakers.push(() => makeCharacter(
  44821. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44822. {
  44823. front: {
  44824. height: math.unit(7 + 6/12, "feet"),
  44825. weight: math.unit(267, "lb"),
  44826. name: "Front",
  44827. image: {
  44828. source: "./media/characters/marcel/front.svg",
  44829. extra: 1221/1096,
  44830. bottom: 76/1297
  44831. }
  44832. },
  44833. },
  44834. [
  44835. {
  44836. name: "Normal",
  44837. height: math.unit(7 + 6/12, "feet"),
  44838. default: true
  44839. },
  44840. ]
  44841. ))
  44842. characterMakers.push(() => makeCharacter(
  44843. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44844. {
  44845. side: {
  44846. height: math.unit(42, "meters"),
  44847. name: "Side",
  44848. image: {
  44849. source: "./media/characters/flake/side.svg",
  44850. extra: 1525/1306,
  44851. bottom: 209/1734
  44852. }
  44853. },
  44854. },
  44855. [
  44856. {
  44857. name: "Normal",
  44858. height: math.unit(42, "meters"),
  44859. default: true
  44860. },
  44861. ]
  44862. ))
  44863. characterMakers.push(() => makeCharacter(
  44864. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44865. {
  44866. dressed: {
  44867. height: math.unit(6 + 4/12, "feet"),
  44868. weight: math.unit(520, "lb"),
  44869. name: "Dressed",
  44870. image: {
  44871. source: "./media/characters/someonne/dressed.svg",
  44872. extra: 1020/1010,
  44873. bottom: 178/1198
  44874. }
  44875. },
  44876. undressed: {
  44877. height: math.unit(6 + 4/12, "feet"),
  44878. weight: math.unit(520, "lb"),
  44879. name: "Undressed",
  44880. image: {
  44881. source: "./media/characters/someonne/undressed.svg",
  44882. extra: 1019/1014,
  44883. bottom: 169/1188
  44884. }
  44885. },
  44886. },
  44887. [
  44888. {
  44889. name: "Normal",
  44890. height: math.unit(6 + 4/12, "feet"),
  44891. default: true
  44892. },
  44893. ]
  44894. ))
  44895. characterMakers.push(() => makeCharacter(
  44896. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44897. {
  44898. front: {
  44899. height: math.unit(3, "feet"),
  44900. weight: math.unit(30, "lb"),
  44901. name: "Front",
  44902. image: {
  44903. source: "./media/characters/till/front.svg",
  44904. extra: 892/823,
  44905. bottom: 55/947
  44906. }
  44907. },
  44908. },
  44909. [
  44910. {
  44911. name: "Normal",
  44912. height: math.unit(3, "feet"),
  44913. default: true
  44914. },
  44915. ]
  44916. ))
  44917. characterMakers.push(() => makeCharacter(
  44918. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44919. {
  44920. front: {
  44921. height: math.unit(9 + 8/12, "feet"),
  44922. weight: math.unit(800, "lb"),
  44923. name: "Front",
  44924. image: {
  44925. source: "./media/characters/sydney-heki/front.svg",
  44926. extra: 1360/1300,
  44927. bottom: 22/1382
  44928. }
  44929. },
  44930. back: {
  44931. height: math.unit(9 + 8/12, "feet"),
  44932. weight: math.unit(800, "lb"),
  44933. name: "Back",
  44934. image: {
  44935. source: "./media/characters/sydney-heki/back.svg",
  44936. extra: 1356/1293,
  44937. bottom: 12/1368
  44938. }
  44939. },
  44940. frontDressed: {
  44941. height: math.unit(9 + 8/12, "feet"),
  44942. weight: math.unit(800, "lb"),
  44943. name: "Front-dressed",
  44944. image: {
  44945. source: "./media/characters/sydney-heki/front-dressed.svg",
  44946. extra: 1360/1300,
  44947. bottom: 22/1382
  44948. }
  44949. },
  44950. },
  44951. [
  44952. {
  44953. name: "Normal",
  44954. height: math.unit(9 + 8/12, "feet"),
  44955. default: true
  44956. },
  44957. {
  44958. name: "Macro",
  44959. height: math.unit(500, "feet")
  44960. },
  44961. {
  44962. name: "Megamacro",
  44963. height: math.unit(3.6, "miles")
  44964. },
  44965. ]
  44966. ))
  44967. characterMakers.push(() => makeCharacter(
  44968. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44969. {
  44970. front: {
  44971. height: math.unit(200, "cm"),
  44972. weight: math.unit(250, "lb"),
  44973. name: "Front",
  44974. image: {
  44975. source: "./media/characters/fowler-karlsson/front.svg",
  44976. extra: 897/845,
  44977. bottom: 123/1020
  44978. }
  44979. },
  44980. back: {
  44981. height: math.unit(200, "cm"),
  44982. weight: math.unit(250, "lb"),
  44983. name: "Back",
  44984. image: {
  44985. source: "./media/characters/fowler-karlsson/back.svg",
  44986. extra: 999/944,
  44987. bottom: 26/1025
  44988. }
  44989. },
  44990. dick: {
  44991. height: math.unit(1.92, "feet"),
  44992. weight: math.unit(150, "lb"),
  44993. name: "Dick",
  44994. image: {
  44995. source: "./media/characters/fowler-karlsson/dick.svg"
  44996. }
  44997. },
  44998. },
  44999. [
  45000. {
  45001. name: "Normal",
  45002. height: math.unit(200, "cm"),
  45003. default: true
  45004. },
  45005. {
  45006. name: "Smaller Macro",
  45007. height: math.unit(90, "m")
  45008. },
  45009. {
  45010. name: "Macro",
  45011. height: math.unit(150, "m")
  45012. },
  45013. {
  45014. name: "Bigger Macro",
  45015. height: math.unit(300, "m")
  45016. },
  45017. ]
  45018. ))
  45019. characterMakers.push(() => makeCharacter(
  45020. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45021. {
  45022. side: {
  45023. height: math.unit(8 + 2/12, "feet"),
  45024. weight: math.unit(1, "tonne"),
  45025. name: "Side",
  45026. image: {
  45027. source: "./media/characters/rylide/side.svg",
  45028. extra: 1318/1034,
  45029. bottom: 106/1424
  45030. }
  45031. },
  45032. sitting: {
  45033. height: math.unit(303, "cm"),
  45034. weight: math.unit(1, "tonne"),
  45035. name: "Sitting",
  45036. image: {
  45037. source: "./media/characters/rylide/sitting.svg",
  45038. extra: 1303/1103,
  45039. bottom: 36/1339
  45040. }
  45041. },
  45042. },
  45043. [
  45044. {
  45045. name: "Normal",
  45046. height: math.unit(8 + 2/12, "feet"),
  45047. default: true
  45048. },
  45049. ]
  45050. ))
  45051. characterMakers.push(() => makeCharacter(
  45052. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45053. {
  45054. front: {
  45055. height: math.unit(5 + 10/12, "feet"),
  45056. weight: math.unit(160, "lb"),
  45057. name: "Front",
  45058. image: {
  45059. source: "./media/characters/pudask/front.svg",
  45060. extra: 1616/1590,
  45061. bottom: 161/1777
  45062. }
  45063. },
  45064. },
  45065. [
  45066. {
  45067. name: "Ferret Height",
  45068. height: math.unit(2 + 5/12, "feet")
  45069. },
  45070. {
  45071. name: "Canon Height",
  45072. height: math.unit(5 + 10/12, "feet"),
  45073. default: true
  45074. },
  45075. ]
  45076. ))
  45077. characterMakers.push(() => makeCharacter(
  45078. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45079. {
  45080. front: {
  45081. height: math.unit(3 + 6/12, "feet"),
  45082. weight: math.unit(60, "lb"),
  45083. name: "Front",
  45084. image: {
  45085. source: "./media/characters/ramita/front.svg",
  45086. extra: 1402/1232,
  45087. bottom: 62/1464
  45088. }
  45089. },
  45090. dressed: {
  45091. height: math.unit(3 + 6/12, "feet"),
  45092. weight: math.unit(60, "lb"),
  45093. name: "Dressed",
  45094. image: {
  45095. source: "./media/characters/ramita/dressed.svg",
  45096. extra: 1534/1249,
  45097. bottom: 50/1584
  45098. }
  45099. },
  45100. },
  45101. [
  45102. {
  45103. name: "Normal",
  45104. height: math.unit(3 + 6/12, "feet"),
  45105. default: true
  45106. },
  45107. ]
  45108. ))
  45109. characterMakers.push(() => makeCharacter(
  45110. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45111. {
  45112. front: {
  45113. height: math.unit(8, "feet"),
  45114. name: "Front",
  45115. image: {
  45116. source: "./media/characters/ark/front.svg",
  45117. extra: 772/693,
  45118. bottom: 45/817
  45119. }
  45120. },
  45121. },
  45122. [
  45123. {
  45124. name: "Normal",
  45125. height: math.unit(8, "feet"),
  45126. default: true
  45127. },
  45128. ]
  45129. ))
  45130. characterMakers.push(() => makeCharacter(
  45131. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45132. {
  45133. front: {
  45134. height: math.unit(6, "feet"),
  45135. weight: math.unit(250, "lb"),
  45136. volume: math.unit(5/8, "gallons"),
  45137. name: "Front",
  45138. image: {
  45139. source: "./media/characters/ludwig-horn/front.svg",
  45140. extra: 1782/1635,
  45141. bottom: 96/1878
  45142. }
  45143. },
  45144. back: {
  45145. height: math.unit(6, "feet"),
  45146. weight: math.unit(250, "lb"),
  45147. volume: math.unit(5/8, "gallons"),
  45148. name: "Back",
  45149. image: {
  45150. source: "./media/characters/ludwig-horn/back.svg",
  45151. extra: 1874/1729,
  45152. bottom: 27/1901
  45153. }
  45154. },
  45155. dick: {
  45156. height: math.unit(1.05, "feet"),
  45157. weight: math.unit(15, "lb"),
  45158. volume: math.unit(5/8, "gallons"),
  45159. name: "Dick",
  45160. image: {
  45161. source: "./media/characters/ludwig-horn/dick.svg"
  45162. }
  45163. },
  45164. },
  45165. [
  45166. {
  45167. name: "Small",
  45168. height: math.unit(6, "feet")
  45169. },
  45170. {
  45171. name: "Typical",
  45172. height: math.unit(12, "feet"),
  45173. default: true
  45174. },
  45175. {
  45176. name: "Building",
  45177. height: math.unit(80, "feet")
  45178. },
  45179. {
  45180. name: "Town",
  45181. height: math.unit(800, "feet")
  45182. },
  45183. {
  45184. name: "Kingdom",
  45185. height: math.unit(80000, "feet")
  45186. },
  45187. {
  45188. name: "Planet",
  45189. height: math.unit(8000000, "feet")
  45190. },
  45191. {
  45192. name: "Universe",
  45193. height: math.unit(8000000000, "feet")
  45194. },
  45195. {
  45196. name: "Transcended",
  45197. height: math.unit(8e27, "feet")
  45198. },
  45199. ]
  45200. ))
  45201. characterMakers.push(() => makeCharacter(
  45202. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45203. {
  45204. front: {
  45205. height: math.unit(5, "feet"),
  45206. weight: math.unit(50, "kg"),
  45207. name: "Front",
  45208. image: {
  45209. source: "./media/characters/biot-avery/front.svg",
  45210. extra: 1295/1232,
  45211. bottom: 86/1381
  45212. }
  45213. },
  45214. },
  45215. [
  45216. {
  45217. name: "Normal",
  45218. height: math.unit(5, "feet"),
  45219. default: true
  45220. },
  45221. ]
  45222. ))
  45223. characterMakers.push(() => makeCharacter(
  45224. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45225. {
  45226. front: {
  45227. height: math.unit(6, "feet"),
  45228. name: "Front",
  45229. image: {
  45230. source: "./media/characters/kitsune-kiro/front.svg",
  45231. extra: 1270/1158,
  45232. bottom: 42/1312
  45233. }
  45234. },
  45235. frontAlt: {
  45236. height: math.unit(6, "feet"),
  45237. name: "Front-alt",
  45238. image: {
  45239. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45240. extra: 1130/1081,
  45241. bottom: 36/1166
  45242. }
  45243. },
  45244. },
  45245. [
  45246. {
  45247. name: "Smol",
  45248. height: math.unit(3, "feet")
  45249. },
  45250. {
  45251. name: "Normal",
  45252. height: math.unit(6, "feet"),
  45253. default: true
  45254. },
  45255. ]
  45256. ))
  45257. characterMakers.push(() => makeCharacter(
  45258. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45259. {
  45260. front: {
  45261. height: math.unit(6, "feet"),
  45262. weight: math.unit(125, "lb"),
  45263. name: "Front",
  45264. image: {
  45265. source: "./media/characters/jack-thatcher/front.svg",
  45266. extra: 1474/1370,
  45267. bottom: 26/1500
  45268. }
  45269. },
  45270. back: {
  45271. height: math.unit(6, "feet"),
  45272. weight: math.unit(125, "lb"),
  45273. name: "Back",
  45274. image: {
  45275. source: "./media/characters/jack-thatcher/back.svg",
  45276. extra: 1489/1384,
  45277. bottom: 18/1507
  45278. }
  45279. },
  45280. },
  45281. [
  45282. {
  45283. name: "Normal",
  45284. height: math.unit(6, "feet"),
  45285. default: true
  45286. },
  45287. {
  45288. name: "Macro",
  45289. height: math.unit(75, "feet")
  45290. },
  45291. {
  45292. name: "Macro-er",
  45293. height: math.unit(250, "feet")
  45294. },
  45295. ]
  45296. ))
  45297. characterMakers.push(() => makeCharacter(
  45298. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45299. {
  45300. front: {
  45301. height: math.unit(7, "feet"),
  45302. weight: math.unit(110, "kg"),
  45303. name: "Front",
  45304. image: {
  45305. source: "./media/characters/max-hyper/front.svg",
  45306. extra: 1969/1881,
  45307. bottom: 49/2018
  45308. }
  45309. },
  45310. },
  45311. [
  45312. {
  45313. name: "Normal",
  45314. height: math.unit(7, "feet"),
  45315. default: true
  45316. },
  45317. ]
  45318. ))
  45319. characterMakers.push(() => makeCharacter(
  45320. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45321. {
  45322. front: {
  45323. height: math.unit(5 + 5/12, "feet"),
  45324. weight: math.unit(160, "lb"),
  45325. name: "Front",
  45326. image: {
  45327. source: "./media/characters/spook/front.svg",
  45328. extra: 794/791,
  45329. bottom: 54/848
  45330. }
  45331. },
  45332. back: {
  45333. height: math.unit(5 + 5/12, "feet"),
  45334. weight: math.unit(160, "lb"),
  45335. name: "Back",
  45336. image: {
  45337. source: "./media/characters/spook/back.svg",
  45338. extra: 812/798,
  45339. bottom: 32/844
  45340. }
  45341. },
  45342. },
  45343. [
  45344. {
  45345. name: "Normal",
  45346. height: math.unit(5 + 5/12, "feet"),
  45347. default: true
  45348. },
  45349. ]
  45350. ))
  45351. characterMakers.push(() => makeCharacter(
  45352. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45353. {
  45354. front: {
  45355. height: math.unit(18, "feet"),
  45356. name: "Front",
  45357. image: {
  45358. source: "./media/characters/xeaduulix/front.svg",
  45359. extra: 1380/1166,
  45360. bottom: 110/1490
  45361. }
  45362. },
  45363. back: {
  45364. height: math.unit(18, "feet"),
  45365. name: "Back",
  45366. image: {
  45367. source: "./media/characters/xeaduulix/back.svg",
  45368. extra: 1592/1170,
  45369. bottom: 128/1720
  45370. }
  45371. },
  45372. frontNsfw: {
  45373. height: math.unit(18, "feet"),
  45374. name: "Front (NSFW)",
  45375. image: {
  45376. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45377. extra: 1380/1166,
  45378. bottom: 110/1490
  45379. }
  45380. },
  45381. backNsfw: {
  45382. height: math.unit(18, "feet"),
  45383. name: "Back (NSFW)",
  45384. image: {
  45385. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45386. extra: 1592/1170,
  45387. bottom: 128/1720
  45388. }
  45389. },
  45390. },
  45391. [
  45392. {
  45393. name: "Normal",
  45394. height: math.unit(18, "feet"),
  45395. default: true
  45396. },
  45397. ]
  45398. ))
  45399. characterMakers.push(() => makeCharacter(
  45400. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45401. {
  45402. spreadWings: {
  45403. height: math.unit(20, "feet"),
  45404. name: "Spread Wings",
  45405. image: {
  45406. source: "./media/characters/fledge/spread-wings.svg",
  45407. extra: 693/635,
  45408. bottom: 26/719
  45409. }
  45410. },
  45411. front: {
  45412. height: math.unit(20, "feet"),
  45413. name: "Front",
  45414. image: {
  45415. source: "./media/characters/fledge/front.svg",
  45416. extra: 684/637,
  45417. bottom: 18/702
  45418. }
  45419. },
  45420. frontAlt: {
  45421. height: math.unit(20, "feet"),
  45422. name: "Front (Alt)",
  45423. image: {
  45424. source: "./media/characters/fledge/front-alt.svg",
  45425. extra: 708/664,
  45426. bottom: 13/721
  45427. }
  45428. },
  45429. back: {
  45430. height: math.unit(20, "feet"),
  45431. name: "Back",
  45432. image: {
  45433. source: "./media/characters/fledge/back.svg",
  45434. extra: 718/634,
  45435. bottom: 22/740
  45436. }
  45437. },
  45438. head: {
  45439. height: math.unit(5.55, "feet"),
  45440. name: "Head",
  45441. image: {
  45442. source: "./media/characters/fledge/head.svg"
  45443. }
  45444. },
  45445. headAlt: {
  45446. height: math.unit(5.1, "feet"),
  45447. name: "Head (Alt)",
  45448. image: {
  45449. source: "./media/characters/fledge/head-alt.svg"
  45450. }
  45451. },
  45452. },
  45453. [
  45454. {
  45455. name: "Small",
  45456. height: math.unit(6 + 2/12, "feet")
  45457. },
  45458. {
  45459. name: "Big",
  45460. height: math.unit(20, "feet"),
  45461. default: true
  45462. },
  45463. {
  45464. name: "Giant",
  45465. height: math.unit(100, "feet")
  45466. },
  45467. {
  45468. name: "Macro",
  45469. height: math.unit(200, "feet")
  45470. },
  45471. ]
  45472. ))
  45473. characterMakers.push(() => makeCharacter(
  45474. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45475. {
  45476. front: {
  45477. height: math.unit(1, "meter"),
  45478. name: "Front",
  45479. image: {
  45480. source: "./media/characters/atlas-morenai/front.svg",
  45481. extra: 1275/1043,
  45482. bottom: 19/1294
  45483. }
  45484. },
  45485. back: {
  45486. height: math.unit(1, "meter"),
  45487. name: "Back",
  45488. image: {
  45489. source: "./media/characters/atlas-morenai/back.svg",
  45490. extra: 1141/1001,
  45491. bottom: 25/1166
  45492. }
  45493. },
  45494. },
  45495. [
  45496. {
  45497. name: "Normal",
  45498. height: math.unit(1, "meter"),
  45499. default: true
  45500. },
  45501. {
  45502. name: "Magic-Infused",
  45503. height: math.unit(5, "meters")
  45504. },
  45505. ]
  45506. ))
  45507. characterMakers.push(() => makeCharacter(
  45508. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45509. {
  45510. front: {
  45511. height: math.unit(5, "meters"),
  45512. name: "Front",
  45513. image: {
  45514. source: "./media/characters/cintia/front.svg",
  45515. extra: 1312/1228,
  45516. bottom: 38/1350
  45517. }
  45518. },
  45519. back: {
  45520. height: math.unit(5, "meters"),
  45521. name: "Back",
  45522. image: {
  45523. source: "./media/characters/cintia/back.svg",
  45524. extra: 1260/1166,
  45525. bottom: 98/1358
  45526. }
  45527. },
  45528. frontDick: {
  45529. height: math.unit(5, "meters"),
  45530. name: "Front (Dick)",
  45531. image: {
  45532. source: "./media/characters/cintia/front-dick.svg",
  45533. extra: 1312/1228,
  45534. bottom: 38/1350
  45535. }
  45536. },
  45537. backDick: {
  45538. height: math.unit(5, "meters"),
  45539. name: "Back (Dick)",
  45540. image: {
  45541. source: "./media/characters/cintia/back-dick.svg",
  45542. extra: 1260/1166,
  45543. bottom: 98/1358
  45544. }
  45545. },
  45546. bust: {
  45547. height: math.unit(1.97, "meters"),
  45548. name: "Bust",
  45549. image: {
  45550. source: "./media/characters/cintia/bust.svg",
  45551. extra: 617/565,
  45552. bottom: 0/617
  45553. }
  45554. },
  45555. },
  45556. [
  45557. {
  45558. name: "Normal",
  45559. height: math.unit(5, "meters"),
  45560. default: true
  45561. },
  45562. ]
  45563. ))
  45564. characterMakers.push(() => makeCharacter(
  45565. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45566. {
  45567. side: {
  45568. height: math.unit(100, "feet"),
  45569. name: "Side",
  45570. image: {
  45571. source: "./media/characters/denora/side.svg",
  45572. extra: 875/803,
  45573. bottom: 9/884
  45574. }
  45575. },
  45576. },
  45577. [
  45578. {
  45579. name: "Standard",
  45580. height: math.unit(100, "feet"),
  45581. default: true
  45582. },
  45583. {
  45584. name: "Grand",
  45585. height: math.unit(1000, "feet")
  45586. },
  45587. {
  45588. name: "Conquering",
  45589. height: math.unit(10000, "feet")
  45590. },
  45591. ]
  45592. ))
  45593. characterMakers.push(() => makeCharacter(
  45594. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45595. {
  45596. dressed: {
  45597. height: math.unit(8 + 5/12, "feet"),
  45598. weight: math.unit(700, "lb"),
  45599. name: "Dressed",
  45600. image: {
  45601. source: "./media/characters/kiva/dressed.svg",
  45602. extra: 1102/1055,
  45603. bottom: 60/1162
  45604. }
  45605. },
  45606. nude: {
  45607. height: math.unit(8 + 5/12, "feet"),
  45608. weight: math.unit(700, "lb"),
  45609. name: "Nude",
  45610. image: {
  45611. source: "./media/characters/kiva/nude.svg",
  45612. extra: 1102/1055,
  45613. bottom: 60/1162
  45614. }
  45615. },
  45616. },
  45617. [
  45618. {
  45619. name: "Base Height",
  45620. height: math.unit(8 + 5/12, "feet"),
  45621. default: true
  45622. },
  45623. {
  45624. name: "Macro",
  45625. height: math.unit(100, "feet")
  45626. },
  45627. {
  45628. name: "Max",
  45629. height: math.unit(3280, "feet")
  45630. },
  45631. ]
  45632. ))
  45633. characterMakers.push(() => makeCharacter(
  45634. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45635. {
  45636. front: {
  45637. height: math.unit(6 + 8/12, "feet"),
  45638. weight: math.unit(250, "lb"),
  45639. name: "Front",
  45640. image: {
  45641. source: "./media/characters/ztragon/front.svg",
  45642. extra: 1825/1684,
  45643. bottom: 98/1923
  45644. }
  45645. },
  45646. },
  45647. [
  45648. {
  45649. name: "Normal",
  45650. height: math.unit(6 + 8/12, "feet"),
  45651. default: true
  45652. },
  45653. {
  45654. name: "Macro",
  45655. height: math.unit(80, "feet")
  45656. },
  45657. ]
  45658. ))
  45659. characterMakers.push(() => makeCharacter(
  45660. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45661. {
  45662. front: {
  45663. height: math.unit(10.4, "feet"),
  45664. weight: math.unit(2, "tons"),
  45665. name: "Front",
  45666. image: {
  45667. source: "./media/characters/yesenia/front.svg",
  45668. extra: 1479/1474,
  45669. bottom: 233/1712
  45670. }
  45671. },
  45672. },
  45673. [
  45674. {
  45675. name: "Normal",
  45676. height: math.unit(10.4, "feet"),
  45677. default: true
  45678. },
  45679. ]
  45680. ))
  45681. characterMakers.push(() => makeCharacter(
  45682. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45683. {
  45684. normal: {
  45685. height: math.unit(6 + 1/12, "feet"),
  45686. weight: math.unit(180, "lb"),
  45687. name: "Normal",
  45688. image: {
  45689. source: "./media/characters/leanne-lycheborne/normal.svg",
  45690. extra: 1748/1660,
  45691. bottom: 98/1846
  45692. }
  45693. },
  45694. were: {
  45695. height: math.unit(12, "feet"),
  45696. weight: math.unit(1600, "lb"),
  45697. name: "Were",
  45698. image: {
  45699. source: "./media/characters/leanne-lycheborne/were.svg",
  45700. extra: 1485/1432,
  45701. bottom: 66/1551
  45702. }
  45703. },
  45704. },
  45705. [
  45706. {
  45707. name: "Normal",
  45708. height: math.unit(6 + 1/12, "feet"),
  45709. default: true
  45710. },
  45711. ]
  45712. ))
  45713. characterMakers.push(() => makeCharacter(
  45714. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45715. {
  45716. side: {
  45717. height: math.unit(13, "feet"),
  45718. name: "Side",
  45719. image: {
  45720. source: "./media/characters/kira-tyler/side.svg",
  45721. extra: 693/393,
  45722. bottom: 58/751
  45723. }
  45724. },
  45725. },
  45726. [
  45727. {
  45728. name: "Normal",
  45729. height: math.unit(13, "feet"),
  45730. default: true
  45731. },
  45732. ]
  45733. ))
  45734. characterMakers.push(() => makeCharacter(
  45735. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45736. {
  45737. front: {
  45738. height: math.unit(10.3, "feet"),
  45739. weight: math.unit(150, "lb"),
  45740. name: "Front",
  45741. image: {
  45742. source: "./media/characters/blaze/front.svg",
  45743. extra: 1378/1286,
  45744. bottom: 172/1550
  45745. }
  45746. },
  45747. },
  45748. [
  45749. {
  45750. name: "Normal",
  45751. height: math.unit(10.3, "feet"),
  45752. default: true
  45753. },
  45754. ]
  45755. ))
  45756. characterMakers.push(() => makeCharacter(
  45757. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45758. {
  45759. side: {
  45760. height: math.unit(2, "meters"),
  45761. weight: math.unit(400, "kg"),
  45762. name: "Side",
  45763. image: {
  45764. source: "./media/characters/anu/side.svg",
  45765. extra: 506/394,
  45766. bottom: 18/524
  45767. }
  45768. },
  45769. },
  45770. [
  45771. {
  45772. name: "Humanoid",
  45773. height: math.unit(2, "meters")
  45774. },
  45775. {
  45776. name: "Normal",
  45777. height: math.unit(5, "meters"),
  45778. default: true
  45779. },
  45780. ]
  45781. ))
  45782. characterMakers.push(() => makeCharacter(
  45783. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45784. {
  45785. front: {
  45786. height: math.unit(5 + 5/12, "feet"),
  45787. weight: math.unit(170, "lb"),
  45788. name: "Front",
  45789. image: {
  45790. source: "./media/characters/synx-the-lynx/front.svg",
  45791. extra: 1893/1745,
  45792. bottom: 17/1910
  45793. }
  45794. },
  45795. side: {
  45796. height: math.unit(5 + 5/12, "feet"),
  45797. weight: math.unit(170, "lb"),
  45798. name: "Side",
  45799. image: {
  45800. source: "./media/characters/synx-the-lynx/side.svg",
  45801. extra: 1884/1740,
  45802. bottom: 39/1923
  45803. }
  45804. },
  45805. back: {
  45806. height: math.unit(5 + 5/12, "feet"),
  45807. weight: math.unit(170, "lb"),
  45808. name: "Back",
  45809. image: {
  45810. source: "./media/characters/synx-the-lynx/back.svg",
  45811. extra: 1903/1755,
  45812. bottom: 14/1917
  45813. }
  45814. },
  45815. },
  45816. [
  45817. {
  45818. name: "Normal",
  45819. height: math.unit(5 + 5/12, "feet"),
  45820. default: true
  45821. },
  45822. ]
  45823. ))
  45824. characterMakers.push(() => makeCharacter(
  45825. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45826. {
  45827. back: {
  45828. height: math.unit(15, "feet"),
  45829. name: "Back",
  45830. image: {
  45831. source: "./media/characters/nadezda-fex/back.svg",
  45832. extra: 1695/1481,
  45833. bottom: 25/1720
  45834. }
  45835. },
  45836. },
  45837. [
  45838. {
  45839. name: "Normal",
  45840. height: math.unit(15, "feet"),
  45841. default: true
  45842. },
  45843. {
  45844. name: "Macro",
  45845. height: math.unit(2.5, "miles")
  45846. },
  45847. {
  45848. name: "Goddess",
  45849. height: math.unit(2, "multiverses")
  45850. },
  45851. ]
  45852. ))
  45853. characterMakers.push(() => makeCharacter(
  45854. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45855. {
  45856. front: {
  45857. height: math.unit(216, "cm"),
  45858. name: "Front",
  45859. image: {
  45860. source: "./media/characters/lev/front.svg",
  45861. extra: 1728/1670,
  45862. bottom: 82/1810
  45863. }
  45864. },
  45865. back: {
  45866. height: math.unit(216, "cm"),
  45867. name: "Back",
  45868. image: {
  45869. source: "./media/characters/lev/back.svg",
  45870. extra: 1738/1675,
  45871. bottom: 24/1762
  45872. }
  45873. },
  45874. dressed: {
  45875. height: math.unit(216, "cm"),
  45876. name: "Dressed",
  45877. image: {
  45878. source: "./media/characters/lev/dressed.svg",
  45879. extra: 1397/1351,
  45880. bottom: 73/1470
  45881. }
  45882. },
  45883. head: {
  45884. height: math.unit(0.51, "meter"),
  45885. name: "Head",
  45886. image: {
  45887. source: "./media/characters/lev/head.svg"
  45888. }
  45889. },
  45890. },
  45891. [
  45892. {
  45893. name: "Normal",
  45894. height: math.unit(216, "cm"),
  45895. default: true
  45896. },
  45897. {
  45898. name: "Relatively Macro",
  45899. height: math.unit(80, "meters")
  45900. },
  45901. {
  45902. name: "Megamacro",
  45903. height: math.unit(21600, "meters")
  45904. },
  45905. {
  45906. name: "Megamacro+",
  45907. height: math.unit(64800, "meters")
  45908. },
  45909. ]
  45910. ))
  45911. characterMakers.push(() => makeCharacter(
  45912. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45913. {
  45914. front: {
  45915. height: math.unit(2, "meters"),
  45916. weight: math.unit(80, "kg"),
  45917. name: "Front",
  45918. image: {
  45919. source: "./media/characters/moka/front.svg",
  45920. extra: 1337/1255,
  45921. bottom: 58/1395
  45922. }
  45923. },
  45924. },
  45925. [
  45926. {
  45927. name: "Micro",
  45928. height: math.unit(15, "cm")
  45929. },
  45930. {
  45931. name: "Normal",
  45932. height: math.unit(2, "meters"),
  45933. default: true
  45934. },
  45935. {
  45936. name: "Macro",
  45937. height: math.unit(20, "meters"),
  45938. },
  45939. ]
  45940. ))
  45941. characterMakers.push(() => makeCharacter(
  45942. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45943. {
  45944. front: {
  45945. height: math.unit(9, "feet"),
  45946. weight: math.unit(240, "lb"),
  45947. name: "Front",
  45948. image: {
  45949. source: "./media/characters/kuzco/front.svg",
  45950. extra: 1593/1487,
  45951. bottom: 32/1625
  45952. }
  45953. },
  45954. side: {
  45955. height: math.unit(9, "feet"),
  45956. weight: math.unit(240, "lb"),
  45957. name: "Side",
  45958. image: {
  45959. source: "./media/characters/kuzco/side.svg",
  45960. extra: 1575/1485,
  45961. bottom: 30/1605
  45962. }
  45963. },
  45964. back: {
  45965. height: math.unit(9, "feet"),
  45966. weight: math.unit(240, "lb"),
  45967. name: "Back",
  45968. image: {
  45969. source: "./media/characters/kuzco/back.svg",
  45970. extra: 1603/1514,
  45971. bottom: 14/1617
  45972. }
  45973. },
  45974. },
  45975. [
  45976. {
  45977. name: "Normal",
  45978. height: math.unit(9, "feet"),
  45979. default: true
  45980. },
  45981. ]
  45982. ))
  45983. characterMakers.push(() => makeCharacter(
  45984. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45985. {
  45986. side: {
  45987. height: math.unit(2, "meters"),
  45988. weight: math.unit(300, "kg"),
  45989. name: "Side",
  45990. image: {
  45991. source: "./media/characters/ceruleus/side.svg",
  45992. extra: 1068/974,
  45993. bottom: 126/1194
  45994. }
  45995. },
  45996. },
  45997. [
  45998. {
  45999. name: "Normal",
  46000. height: math.unit(16, "meters"),
  46001. default: true
  46002. },
  46003. ]
  46004. ))
  46005. characterMakers.push(() => makeCharacter(
  46006. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46007. {
  46008. front: {
  46009. height: math.unit(9, "feet"),
  46010. weight: math.unit(500, "kg"),
  46011. name: "Front",
  46012. image: {
  46013. source: "./media/characters/acouya/front.svg",
  46014. extra: 1660/1473,
  46015. bottom: 28/1688
  46016. }
  46017. },
  46018. },
  46019. [
  46020. {
  46021. name: "Normal",
  46022. height: math.unit(9, "feet"),
  46023. default: true
  46024. },
  46025. ]
  46026. ))
  46027. characterMakers.push(() => makeCharacter(
  46028. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46029. {
  46030. front: {
  46031. height: math.unit(5 + 6/12, "feet"),
  46032. weight: math.unit(195, "lb"),
  46033. name: "Front",
  46034. image: {
  46035. source: "./media/characters/vant/front.svg",
  46036. extra: 1396/1320,
  46037. bottom: 20/1416
  46038. }
  46039. },
  46040. back: {
  46041. height: math.unit(5 + 6/12, "feet"),
  46042. weight: math.unit(195, "lb"),
  46043. name: "Back",
  46044. image: {
  46045. source: "./media/characters/vant/back.svg",
  46046. extra: 1396/1320,
  46047. bottom: 20/1416
  46048. }
  46049. },
  46050. maw: {
  46051. height: math.unit(0.75, "feet"),
  46052. name: "Maw",
  46053. image: {
  46054. source: "./media/characters/vant/maw.svg"
  46055. }
  46056. },
  46057. paw: {
  46058. height: math.unit(1.07, "feet"),
  46059. name: "Paw",
  46060. image: {
  46061. source: "./media/characters/vant/paw.svg"
  46062. }
  46063. },
  46064. },
  46065. [
  46066. {
  46067. name: "Micro",
  46068. height: math.unit(0.25, "inches")
  46069. },
  46070. {
  46071. name: "Normal",
  46072. height: math.unit(5 + 6/12, "feet"),
  46073. default: true
  46074. },
  46075. {
  46076. name: "Macro",
  46077. height: math.unit(75, "feet")
  46078. },
  46079. ]
  46080. ))
  46081. characterMakers.push(() => makeCharacter(
  46082. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46083. {
  46084. front: {
  46085. height: math.unit(30, "meters"),
  46086. weight: math.unit(363, "tons"),
  46087. name: "Front",
  46088. image: {
  46089. source: "./media/characters/ahra/front.svg",
  46090. extra: 1914/1814,
  46091. bottom: 46/1960
  46092. }
  46093. },
  46094. },
  46095. [
  46096. {
  46097. name: "Macro",
  46098. height: math.unit(30, "meters"),
  46099. default: true
  46100. },
  46101. ]
  46102. ))
  46103. characterMakers.push(() => makeCharacter(
  46104. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46105. {
  46106. undressed: {
  46107. height: math.unit(2, "m"),
  46108. weight: math.unit(250, "kg"),
  46109. name: "Undressed",
  46110. image: {
  46111. source: "./media/characters/coriander/undressed.svg",
  46112. extra: 1757/1606,
  46113. bottom: 107/1864
  46114. }
  46115. },
  46116. dressed: {
  46117. height: math.unit(2, "m"),
  46118. weight: math.unit(250, "kg"),
  46119. name: "Dressed",
  46120. image: {
  46121. source: "./media/characters/coriander/dressed.svg",
  46122. extra: 1757/1606,
  46123. bottom: 107/1864
  46124. }
  46125. },
  46126. },
  46127. [
  46128. {
  46129. name: "Normal",
  46130. height: math.unit(4, "meters"),
  46131. default: true
  46132. },
  46133. {
  46134. name: "XL",
  46135. height: math.unit(6, "meters")
  46136. },
  46137. {
  46138. name: "XXL",
  46139. height: math.unit(8, "meters")
  46140. },
  46141. ]
  46142. ))
  46143. characterMakers.push(() => makeCharacter(
  46144. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46145. {
  46146. front: {
  46147. height: math.unit(6, "feet"),
  46148. name: "Front",
  46149. image: {
  46150. source: "./media/characters/syrinx/front.svg",
  46151. extra: 1557/1259,
  46152. bottom: 171/1728
  46153. }
  46154. },
  46155. },
  46156. [
  46157. {
  46158. name: "Normal",
  46159. height: math.unit(6 + 3/12, "feet"),
  46160. default: true
  46161. },
  46162. ]
  46163. ))
  46164. characterMakers.push(() => makeCharacter(
  46165. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46166. {
  46167. front: {
  46168. height: math.unit(11 + 6/12, "feet"),
  46169. weight: math.unit(1.5, "tons"),
  46170. name: "Front",
  46171. image: {
  46172. source: "./media/characters/bor/front.svg",
  46173. extra: 1189/1109,
  46174. bottom: 170/1359
  46175. }
  46176. },
  46177. },
  46178. [
  46179. {
  46180. name: "Normal",
  46181. height: math.unit(11 + 6/12, "feet"),
  46182. default: true
  46183. },
  46184. {
  46185. name: "Macro",
  46186. height: math.unit(32 + 9/12, "feet")
  46187. },
  46188. ]
  46189. ))
  46190. characterMakers.push(() => makeCharacter(
  46191. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46192. {
  46193. anthro: {
  46194. height: math.unit(9, "feet"),
  46195. weight: math.unit(2076, "lb"),
  46196. name: "Anthro",
  46197. image: {
  46198. source: "./media/characters/abacus/anthro.svg",
  46199. extra: 1540/1494,
  46200. bottom: 233/1773
  46201. }
  46202. },
  46203. pigeon: {
  46204. height: math.unit(1, "feet"),
  46205. name: "Pigeon",
  46206. image: {
  46207. source: "./media/characters/abacus/pigeon.svg",
  46208. extra: 528/525,
  46209. bottom: 46/574
  46210. }
  46211. },
  46212. },
  46213. [
  46214. {
  46215. name: "Normal",
  46216. height: math.unit(9, "feet"),
  46217. default: true
  46218. },
  46219. ]
  46220. ))
  46221. characterMakers.push(() => makeCharacter(
  46222. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46223. {
  46224. side: {
  46225. height: math.unit(6, "feet"),
  46226. name: "Side",
  46227. image: {
  46228. source: "./media/characters/delkhan/side.svg",
  46229. extra: 1884/1786,
  46230. bottom: 308/2192
  46231. }
  46232. },
  46233. head: {
  46234. height: math.unit(3.38, "feet"),
  46235. name: "Head",
  46236. image: {
  46237. source: "./media/characters/delkhan/head.svg"
  46238. }
  46239. },
  46240. },
  46241. [
  46242. {
  46243. name: "Normal",
  46244. height: math.unit(72, "feet"),
  46245. default: true
  46246. },
  46247. {
  46248. name: "Giant",
  46249. height: math.unit(172, "feet")
  46250. },
  46251. ]
  46252. ))
  46253. characterMakers.push(() => makeCharacter(
  46254. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46255. {
  46256. standing: {
  46257. height: math.unit(6, "feet"),
  46258. name: "Standing",
  46259. image: {
  46260. source: "./media/characters/euchidat/standing.svg",
  46261. extra: 1612/1553,
  46262. bottom: 116/1728
  46263. }
  46264. },
  46265. leaning: {
  46266. height: math.unit(6, "feet"),
  46267. name: "Leaning",
  46268. image: {
  46269. source: "./media/characters/euchidat/leaning.svg",
  46270. extra: 1719/1674,
  46271. bottom: 27/1746
  46272. }
  46273. },
  46274. },
  46275. [
  46276. {
  46277. name: "Normal",
  46278. height: math.unit(175, "feet"),
  46279. default: true
  46280. },
  46281. {
  46282. name: "Megamacro",
  46283. height: math.unit(190, "miles")
  46284. },
  46285. {
  46286. name: "Gigamacro",
  46287. height: math.unit(190000, "miles")
  46288. },
  46289. ]
  46290. ))
  46291. characterMakers.push(() => makeCharacter(
  46292. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46293. {
  46294. front: {
  46295. height: math.unit(6, "feet"),
  46296. weight: math.unit(150, "lb"),
  46297. name: "Front",
  46298. image: {
  46299. source: "./media/characters/rebecca-stack/front.svg",
  46300. extra: 1256/1201,
  46301. bottom: 18/1274
  46302. }
  46303. },
  46304. },
  46305. [
  46306. {
  46307. name: "Normal",
  46308. height: math.unit(5 + 8/12, "feet"),
  46309. default: true
  46310. },
  46311. {
  46312. name: "Demolitionist",
  46313. height: math.unit(200, "feet")
  46314. },
  46315. {
  46316. name: "Out of Control",
  46317. height: math.unit(2, "miles")
  46318. },
  46319. {
  46320. name: "Giga",
  46321. height: math.unit(7200, "miles")
  46322. },
  46323. ]
  46324. ))
  46325. characterMakers.push(() => makeCharacter(
  46326. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46327. {
  46328. front: {
  46329. height: math.unit(6, "feet"),
  46330. weight: math.unit(150, "lb"),
  46331. name: "Front",
  46332. image: {
  46333. source: "./media/characters/jenny-cartwright/front.svg",
  46334. extra: 1384/1376,
  46335. bottom: 58/1442
  46336. }
  46337. },
  46338. },
  46339. [
  46340. {
  46341. name: "Normal",
  46342. height: math.unit(6 + 7/12, "feet"),
  46343. default: true
  46344. },
  46345. {
  46346. name: "Librarian",
  46347. height: math.unit(55, "feet")
  46348. },
  46349. {
  46350. name: "Sightseer",
  46351. height: math.unit(50, "miles")
  46352. },
  46353. {
  46354. name: "Giga",
  46355. height: math.unit(30000, "miles")
  46356. },
  46357. ]
  46358. ))
  46359. characterMakers.push(() => makeCharacter(
  46360. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46361. {
  46362. nude: {
  46363. height: math.unit(8, "feet"),
  46364. weight: math.unit(225, "lb"),
  46365. name: "Nude",
  46366. image: {
  46367. source: "./media/characters/marvy/nude.svg",
  46368. extra: 1900/1683,
  46369. bottom: 89/1989
  46370. }
  46371. },
  46372. dressed: {
  46373. height: math.unit(8, "feet"),
  46374. weight: math.unit(225, "lb"),
  46375. name: "Dressed",
  46376. image: {
  46377. source: "./media/characters/marvy/dressed.svg",
  46378. extra: 1900/1683,
  46379. bottom: 89/1989
  46380. }
  46381. },
  46382. head: {
  46383. height: math.unit(2.85, "feet"),
  46384. name: "Head",
  46385. image: {
  46386. source: "./media/characters/marvy/head.svg"
  46387. }
  46388. },
  46389. },
  46390. [
  46391. {
  46392. name: "Normal",
  46393. height: math.unit(8, "feet"),
  46394. default: true
  46395. },
  46396. ]
  46397. ))
  46398. characterMakers.push(() => makeCharacter(
  46399. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46400. {
  46401. front: {
  46402. height: math.unit(8, "feet"),
  46403. weight: math.unit(250, "lb"),
  46404. name: "Front",
  46405. image: {
  46406. source: "./media/characters/leah/front.svg",
  46407. extra: 1257/1149,
  46408. bottom: 109/1366
  46409. }
  46410. },
  46411. },
  46412. [
  46413. {
  46414. name: "Normal",
  46415. height: math.unit(8, "feet"),
  46416. default: true
  46417. },
  46418. {
  46419. name: "Minimacro",
  46420. height: math.unit(40, "feet")
  46421. },
  46422. {
  46423. name: "Macro",
  46424. height: math.unit(124, "feet")
  46425. },
  46426. {
  46427. name: "Megamacro",
  46428. height: math.unit(850, "feet")
  46429. },
  46430. ]
  46431. ))
  46432. characterMakers.push(() => makeCharacter(
  46433. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46434. {
  46435. side: {
  46436. height: math.unit(13 + 6/12, "feet"),
  46437. weight: math.unit(3200, "lb"),
  46438. name: "Side",
  46439. image: {
  46440. source: "./media/characters/alvir/side.svg",
  46441. extra: 896/589,
  46442. bottom: 26/922
  46443. }
  46444. },
  46445. },
  46446. [
  46447. {
  46448. name: "Normal",
  46449. height: math.unit(13 + 6/12, "feet"),
  46450. default: true
  46451. },
  46452. ]
  46453. ))
  46454. characterMakers.push(() => makeCharacter(
  46455. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46456. {
  46457. front: {
  46458. height: math.unit(5 + 4/12, "feet"),
  46459. weight: math.unit(236, "lb"),
  46460. name: "Front",
  46461. image: {
  46462. source: "./media/characters/zaina-khalil/front.svg",
  46463. extra: 1533/1485,
  46464. bottom: 94/1627
  46465. }
  46466. },
  46467. side: {
  46468. height: math.unit(5 + 4/12, "feet"),
  46469. weight: math.unit(236, "lb"),
  46470. name: "Side",
  46471. image: {
  46472. source: "./media/characters/zaina-khalil/side.svg",
  46473. extra: 1537/1498,
  46474. bottom: 66/1603
  46475. }
  46476. },
  46477. back: {
  46478. height: math.unit(5 + 4/12, "feet"),
  46479. weight: math.unit(236, "lb"),
  46480. name: "Back",
  46481. image: {
  46482. source: "./media/characters/zaina-khalil/back.svg",
  46483. extra: 1546/1494,
  46484. bottom: 89/1635
  46485. }
  46486. },
  46487. },
  46488. [
  46489. {
  46490. name: "Normal",
  46491. height: math.unit(5 + 4/12, "feet"),
  46492. default: true
  46493. },
  46494. ]
  46495. ))
  46496. characterMakers.push(() => makeCharacter(
  46497. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46498. {
  46499. side: {
  46500. height: math.unit(12, "feet"),
  46501. weight: math.unit(4000, "lb"),
  46502. name: "Side",
  46503. image: {
  46504. source: "./media/characters/terry/side.svg",
  46505. extra: 1518/1439,
  46506. bottom: 149/1667
  46507. }
  46508. },
  46509. },
  46510. [
  46511. {
  46512. name: "Normal",
  46513. height: math.unit(12, "feet"),
  46514. default: true
  46515. },
  46516. ]
  46517. ))
  46518. characterMakers.push(() => makeCharacter(
  46519. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46520. {
  46521. front: {
  46522. height: math.unit(12, "feet"),
  46523. weight: math.unit(1500, "lb"),
  46524. name: "Front",
  46525. image: {
  46526. source: "./media/characters/kahea/front.svg",
  46527. extra: 1722/1617,
  46528. bottom: 179/1901
  46529. }
  46530. },
  46531. },
  46532. [
  46533. {
  46534. name: "Normal",
  46535. height: math.unit(12, "feet"),
  46536. default: true
  46537. },
  46538. ]
  46539. ))
  46540. characterMakers.push(() => makeCharacter(
  46541. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46542. {
  46543. demonFront: {
  46544. height: math.unit(36, "feet"),
  46545. name: "Front",
  46546. image: {
  46547. source: "./media/characters/alex-xuria/demon-front.svg",
  46548. extra: 1705/1673,
  46549. bottom: 198/1903
  46550. },
  46551. form: "demon",
  46552. default: true
  46553. },
  46554. demonBack: {
  46555. height: math.unit(36, "feet"),
  46556. name: "Back",
  46557. image: {
  46558. source: "./media/characters/alex-xuria/demon-back.svg",
  46559. extra: 1725/1693,
  46560. bottom: 70/1795
  46561. },
  46562. form: "demon"
  46563. },
  46564. demonHead: {
  46565. height: math.unit(2.14, "meters"),
  46566. name: "Head",
  46567. image: {
  46568. source: "./media/characters/alex-xuria/demon-head.svg"
  46569. },
  46570. form: "demon"
  46571. },
  46572. demonHand: {
  46573. height: math.unit(1.61, "meters"),
  46574. name: "Hand",
  46575. image: {
  46576. source: "./media/characters/alex-xuria/demon-hand.svg"
  46577. },
  46578. form: "demon"
  46579. },
  46580. demonPaw: {
  46581. height: math.unit(1.35, "meters"),
  46582. name: "Paw",
  46583. image: {
  46584. source: "./media/characters/alex-xuria/demon-paw.svg"
  46585. },
  46586. form: "demon"
  46587. },
  46588. demonFoot: {
  46589. height: math.unit(2.2, "meters"),
  46590. name: "Foot",
  46591. image: {
  46592. source: "./media/characters/alex-xuria/demon-foot.svg"
  46593. },
  46594. form: "demon"
  46595. },
  46596. demonCock: {
  46597. height: math.unit(1.74, "meters"),
  46598. name: "Cock",
  46599. image: {
  46600. source: "./media/characters/alex-xuria/demon-cock.svg"
  46601. },
  46602. form: "demon"
  46603. },
  46604. demonTailClosed: {
  46605. height: math.unit(1.47, "meters"),
  46606. name: "Tail (Closed)",
  46607. image: {
  46608. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46609. },
  46610. form: "demon"
  46611. },
  46612. demonTailOpen: {
  46613. height: math.unit(2.85, "meters"),
  46614. name: "Tail (Open)",
  46615. image: {
  46616. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46617. },
  46618. form: "demon"
  46619. },
  46620. incubusFront: {
  46621. height: math.unit(12, "feet"),
  46622. name: "Front",
  46623. image: {
  46624. source: "./media/characters/alex-xuria/incubus-front.svg",
  46625. extra: 1754/1677,
  46626. bottom: 125/1879
  46627. },
  46628. form: "incubus",
  46629. default: true
  46630. },
  46631. incubusBack: {
  46632. height: math.unit(12, "feet"),
  46633. name: "Back",
  46634. image: {
  46635. source: "./media/characters/alex-xuria/incubus-back.svg",
  46636. extra: 1702/1647,
  46637. bottom: 30/1732
  46638. },
  46639. form: "incubus"
  46640. },
  46641. incubusHead: {
  46642. height: math.unit(3.45, "feet"),
  46643. name: "Head",
  46644. image: {
  46645. source: "./media/characters/alex-xuria/incubus-head.svg"
  46646. },
  46647. form: "incubus"
  46648. },
  46649. rabbitFront: {
  46650. height: math.unit(6, "feet"),
  46651. name: "Front",
  46652. image: {
  46653. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46654. extra: 1369/1349,
  46655. bottom: 45/1414
  46656. },
  46657. form: "rabbit",
  46658. default: true
  46659. },
  46660. rabbitSide: {
  46661. height: math.unit(6, "feet"),
  46662. name: "Side",
  46663. image: {
  46664. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46665. extra: 1370/1356,
  46666. bottom: 37/1407
  46667. },
  46668. form: "rabbit"
  46669. },
  46670. rabbitBack: {
  46671. height: math.unit(6, "feet"),
  46672. name: "Back",
  46673. image: {
  46674. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46675. extra: 1375/1358,
  46676. bottom: 43/1418
  46677. },
  46678. form: "rabbit"
  46679. },
  46680. },
  46681. [
  46682. {
  46683. name: "Normal",
  46684. height: math.unit(6, "feet"),
  46685. default: true,
  46686. form: "rabbit"
  46687. },
  46688. {
  46689. name: "Incubus",
  46690. height: math.unit(12, "feet"),
  46691. default: true,
  46692. form: "incubus"
  46693. },
  46694. {
  46695. name: "Demon",
  46696. height: math.unit(36, "feet"),
  46697. default: true,
  46698. form: "demon"
  46699. }
  46700. ],
  46701. {
  46702. "demon": {
  46703. name: "Demon",
  46704. default: true
  46705. },
  46706. "incubus": {
  46707. name: "Incubus",
  46708. },
  46709. "rabbit": {
  46710. name: "Rabbit"
  46711. }
  46712. }
  46713. ))
  46714. characterMakers.push(() => makeCharacter(
  46715. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46716. {
  46717. front: {
  46718. height: math.unit(7 + 5/12, "feet"),
  46719. weight: math.unit(510, "lb"),
  46720. name: "Front",
  46721. image: {
  46722. source: "./media/characters/syrup/front.svg",
  46723. extra: 932/916,
  46724. bottom: 26/958
  46725. }
  46726. },
  46727. },
  46728. [
  46729. {
  46730. name: "Normal",
  46731. height: math.unit(7 + 5/12, "feet"),
  46732. default: true
  46733. },
  46734. {
  46735. name: "Big",
  46736. height: math.unit(50, "feet")
  46737. },
  46738. {
  46739. name: "Macro",
  46740. height: math.unit(300, "feet")
  46741. },
  46742. {
  46743. name: "Megamacro",
  46744. height: math.unit(1, "mile")
  46745. },
  46746. ]
  46747. ))
  46748. characterMakers.push(() => makeCharacter(
  46749. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46750. {
  46751. front: {
  46752. height: math.unit(6 + 9/12, "feet"),
  46753. name: "Front",
  46754. image: {
  46755. source: "./media/characters/zeimne/front.svg",
  46756. extra: 1969/1806,
  46757. bottom: 53/2022
  46758. }
  46759. },
  46760. },
  46761. [
  46762. {
  46763. name: "Normal",
  46764. height: math.unit(6 + 9/12, "feet"),
  46765. default: true
  46766. },
  46767. {
  46768. name: "Giant",
  46769. height: math.unit(550, "feet")
  46770. },
  46771. {
  46772. name: "Mega",
  46773. height: math.unit(3, "miles")
  46774. },
  46775. {
  46776. name: "Giga",
  46777. height: math.unit(250, "miles")
  46778. },
  46779. {
  46780. name: "Tera",
  46781. height: math.unit(1, "AU")
  46782. },
  46783. ]
  46784. ))
  46785. characterMakers.push(() => makeCharacter(
  46786. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46787. {
  46788. front: {
  46789. height: math.unit(5 + 2/12, "feet"),
  46790. name: "Front",
  46791. image: {
  46792. source: "./media/characters/grar/front.svg",
  46793. extra: 1331/1119,
  46794. bottom: 60/1391
  46795. }
  46796. },
  46797. back: {
  46798. height: math.unit(5 + 2/12, "feet"),
  46799. name: "Back",
  46800. image: {
  46801. source: "./media/characters/grar/back.svg",
  46802. extra: 1385/1169,
  46803. bottom: 23/1408
  46804. }
  46805. },
  46806. },
  46807. [
  46808. {
  46809. name: "Normal",
  46810. height: math.unit(5 + 2/12, "feet"),
  46811. default: true
  46812. },
  46813. ]
  46814. ))
  46815. characterMakers.push(() => makeCharacter(
  46816. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46817. {
  46818. front: {
  46819. height: math.unit(13 + 7/12, "feet"),
  46820. weight: math.unit(2200, "lb"),
  46821. name: "Front",
  46822. image: {
  46823. source: "./media/characters/endraya/front.svg",
  46824. extra: 1289/1215,
  46825. bottom: 50/1339
  46826. }
  46827. },
  46828. nude: {
  46829. height: math.unit(13 + 7/12, "feet"),
  46830. weight: math.unit(2200, "lb"),
  46831. name: "Nude",
  46832. image: {
  46833. source: "./media/characters/endraya/nude.svg",
  46834. extra: 1247/1171,
  46835. bottom: 40/1287
  46836. }
  46837. },
  46838. head: {
  46839. height: math.unit(2.6, "feet"),
  46840. name: "Head",
  46841. image: {
  46842. source: "./media/characters/endraya/head.svg"
  46843. }
  46844. },
  46845. slit: {
  46846. height: math.unit(3.4, "feet"),
  46847. name: "Slit",
  46848. image: {
  46849. source: "./media/characters/endraya/slit.svg"
  46850. }
  46851. },
  46852. },
  46853. [
  46854. {
  46855. name: "Normal",
  46856. height: math.unit(13 + 7/12, "feet"),
  46857. default: true
  46858. },
  46859. {
  46860. name: "Macro",
  46861. height: math.unit(200, "feet")
  46862. },
  46863. ]
  46864. ))
  46865. characterMakers.push(() => makeCharacter(
  46866. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46867. {
  46868. front: {
  46869. height: math.unit(1.81, "meters"),
  46870. weight: math.unit(69, "kg"),
  46871. name: "Front",
  46872. image: {
  46873. source: "./media/characters/rodryana/front.svg",
  46874. extra: 2002/1921,
  46875. bottom: 53/2055
  46876. }
  46877. },
  46878. back: {
  46879. height: math.unit(1.81, "meters"),
  46880. weight: math.unit(69, "kg"),
  46881. name: "Back",
  46882. image: {
  46883. source: "./media/characters/rodryana/back.svg",
  46884. extra: 1993/1926,
  46885. bottom: 48/2041
  46886. }
  46887. },
  46888. maw: {
  46889. height: math.unit(0.19769417475, "meters"),
  46890. name: "Maw",
  46891. image: {
  46892. source: "./media/characters/rodryana/maw.svg"
  46893. }
  46894. },
  46895. slit: {
  46896. height: math.unit(0.31631067961, "meters"),
  46897. name: "Slit",
  46898. image: {
  46899. source: "./media/characters/rodryana/slit.svg"
  46900. }
  46901. },
  46902. },
  46903. [
  46904. {
  46905. name: "Normal",
  46906. height: math.unit(1.81, "meters")
  46907. },
  46908. {
  46909. name: "Mini Macro",
  46910. height: math.unit(181, "meters")
  46911. },
  46912. {
  46913. name: "Macro",
  46914. height: math.unit(452, "meters"),
  46915. default: true
  46916. },
  46917. {
  46918. name: "Mega Macro",
  46919. height: math.unit(1.375, "km")
  46920. },
  46921. {
  46922. name: "Giga Macro",
  46923. height: math.unit(13.575, "km")
  46924. },
  46925. ]
  46926. ))
  46927. characterMakers.push(() => makeCharacter(
  46928. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46929. {
  46930. front: {
  46931. height: math.unit(6, "feet"),
  46932. weight: math.unit(1000, "lb"),
  46933. name: "Front",
  46934. image: {
  46935. source: "./media/characters/asaya/front.svg",
  46936. extra: 1460/1200,
  46937. bottom: 71/1531
  46938. }
  46939. },
  46940. },
  46941. [
  46942. {
  46943. name: "Normal",
  46944. height: math.unit(8, "km"),
  46945. default: true
  46946. },
  46947. ]
  46948. ))
  46949. characterMakers.push(() => makeCharacter(
  46950. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46951. {
  46952. front: {
  46953. height: math.unit(3.5, "meters"),
  46954. name: "Front",
  46955. image: {
  46956. source: "./media/characters/sarzu-and-israz/front.svg",
  46957. extra: 1570/1558,
  46958. bottom: 150/1720
  46959. },
  46960. },
  46961. back: {
  46962. height: math.unit(3.5, "meters"),
  46963. name: "Back",
  46964. image: {
  46965. source: "./media/characters/sarzu-and-israz/back.svg",
  46966. extra: 1523/1509,
  46967. bottom: 132/1655
  46968. },
  46969. },
  46970. frontFemale: {
  46971. height: math.unit(3.5, "meters"),
  46972. name: "Front (Female)",
  46973. image: {
  46974. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46975. extra: 1570/1558,
  46976. bottom: 150/1720
  46977. },
  46978. },
  46979. frontHerm: {
  46980. height: math.unit(3.5, "meters"),
  46981. name: "Front (Herm)",
  46982. image: {
  46983. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46984. extra: 1570/1558,
  46985. bottom: 150/1720
  46986. },
  46987. },
  46988. },
  46989. [
  46990. {
  46991. name: "Normal",
  46992. height: math.unit(3.5, "meters"),
  46993. default: true,
  46994. },
  46995. {
  46996. name: "Macro",
  46997. height: math.unit(65.5, "meters"),
  46998. },
  46999. ],
  47000. ))
  47001. characterMakers.push(() => makeCharacter(
  47002. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47003. {
  47004. front: {
  47005. height: math.unit(6, "feet"),
  47006. weight: math.unit(250, "lb"),
  47007. name: "Front",
  47008. image: {
  47009. source: "./media/characters/zenimma/front.svg",
  47010. extra: 1346/1320,
  47011. bottom: 58/1404
  47012. }
  47013. },
  47014. back: {
  47015. height: math.unit(6, "feet"),
  47016. weight: math.unit(250, "lb"),
  47017. name: "Back",
  47018. image: {
  47019. source: "./media/characters/zenimma/back.svg",
  47020. extra: 1324/1308,
  47021. bottom: 44/1368
  47022. }
  47023. },
  47024. dick: {
  47025. height: math.unit(1.44, "feet"),
  47026. name: "Dick",
  47027. image: {
  47028. source: "./media/characters/zenimma/dick.svg"
  47029. }
  47030. },
  47031. },
  47032. [
  47033. {
  47034. name: "Canon Height",
  47035. height: math.unit(66, "miles"),
  47036. default: true
  47037. },
  47038. ]
  47039. ))
  47040. characterMakers.push(() => makeCharacter(
  47041. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47042. {
  47043. nude: {
  47044. height: math.unit(6, "feet"),
  47045. weight: math.unit(150, "lb"),
  47046. name: "Nude",
  47047. image: {
  47048. source: "./media/characters/shavon/nude.svg",
  47049. extra: 1242/1096,
  47050. bottom: 98/1340
  47051. }
  47052. },
  47053. dressed: {
  47054. height: math.unit(6, "feet"),
  47055. weight: math.unit(150, "lb"),
  47056. name: "Dressed",
  47057. image: {
  47058. source: "./media/characters/shavon/dressed.svg",
  47059. extra: 1242/1096,
  47060. bottom: 98/1340
  47061. }
  47062. },
  47063. },
  47064. [
  47065. {
  47066. name: "Macro",
  47067. height: math.unit(255, "feet"),
  47068. default: true
  47069. },
  47070. ]
  47071. ))
  47072. characterMakers.push(() => makeCharacter(
  47073. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47074. {
  47075. front: {
  47076. height: math.unit(6, "feet"),
  47077. name: "Front",
  47078. image: {
  47079. source: "./media/characters/steph/front.svg",
  47080. extra: 1430/1330,
  47081. bottom: 54/1484
  47082. }
  47083. },
  47084. },
  47085. [
  47086. {
  47087. name: "Normal",
  47088. height: math.unit(6, "feet"),
  47089. default: true
  47090. },
  47091. ]
  47092. ))
  47093. characterMakers.push(() => makeCharacter(
  47094. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47095. {
  47096. front: {
  47097. height: math.unit(9, "feet"),
  47098. weight: math.unit(400, "lb"),
  47099. name: "Front",
  47100. image: {
  47101. source: "./media/characters/kil'aman/front.svg",
  47102. extra: 1210/1159,
  47103. bottom: 109/1319
  47104. }
  47105. },
  47106. head: {
  47107. height: math.unit(2.14, "feet"),
  47108. name: "Head",
  47109. image: {
  47110. source: "./media/characters/kil'aman/head.svg"
  47111. }
  47112. },
  47113. maw: {
  47114. height: math.unit(1.21, "feet"),
  47115. name: "Maw",
  47116. image: {
  47117. source: "./media/characters/kil'aman/maw.svg"
  47118. }
  47119. },
  47120. foot: {
  47121. height: math.unit(1.7, "feet"),
  47122. name: "Foot",
  47123. image: {
  47124. source: "./media/characters/kil'aman/foot.svg"
  47125. }
  47126. },
  47127. dick: {
  47128. height: math.unit(2.1, "feet"),
  47129. name: "Dick",
  47130. image: {
  47131. source: "./media/characters/kil'aman/dick.svg"
  47132. }
  47133. },
  47134. },
  47135. [
  47136. {
  47137. name: "Normal",
  47138. height: math.unit(9, "feet")
  47139. },
  47140. {
  47141. name: "Canon Height",
  47142. height: math.unit(10, "miles"),
  47143. default: true
  47144. },
  47145. {
  47146. name: "Maximum",
  47147. height: math.unit(6e9, "miles")
  47148. },
  47149. ]
  47150. ))
  47151. characterMakers.push(() => makeCharacter(
  47152. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47153. {
  47154. front: {
  47155. height: math.unit(90, "feet"),
  47156. weight: math.unit(675000, "lb"),
  47157. name: "Front",
  47158. image: {
  47159. source: "./media/characters/qadan/front.svg",
  47160. extra: 1012/1004,
  47161. bottom: 78/1090
  47162. }
  47163. },
  47164. back: {
  47165. height: math.unit(90, "feet"),
  47166. weight: math.unit(675000, "lb"),
  47167. name: "Back",
  47168. image: {
  47169. source: "./media/characters/qadan/back.svg",
  47170. extra: 1042/1031,
  47171. bottom: 55/1097
  47172. }
  47173. },
  47174. armored: {
  47175. height: math.unit(90, "feet"),
  47176. weight: math.unit(675000, "lb"),
  47177. name: "Armored",
  47178. image: {
  47179. source: "./media/characters/qadan/armored.svg",
  47180. extra: 1047/1037,
  47181. bottom: 48/1095
  47182. }
  47183. },
  47184. },
  47185. [
  47186. {
  47187. name: "Normal",
  47188. height: math.unit(90, "feet"),
  47189. default: true
  47190. },
  47191. ]
  47192. ))
  47193. characterMakers.push(() => makeCharacter(
  47194. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47195. {
  47196. front: {
  47197. height: math.unit(6, "feet"),
  47198. weight: math.unit(225, "lb"),
  47199. name: "Front",
  47200. image: {
  47201. source: "./media/characters/brooke/front.svg",
  47202. extra: 1050/1010,
  47203. bottom: 66/1116
  47204. }
  47205. },
  47206. back: {
  47207. height: math.unit(6, "feet"),
  47208. weight: math.unit(225, "lb"),
  47209. name: "Back",
  47210. image: {
  47211. source: "./media/characters/brooke/back.svg",
  47212. extra: 1053/1013,
  47213. bottom: 41/1094
  47214. }
  47215. },
  47216. dressed: {
  47217. height: math.unit(6, "feet"),
  47218. weight: math.unit(225, "lb"),
  47219. name: "Dressed",
  47220. image: {
  47221. source: "./media/characters/brooke/dressed.svg",
  47222. extra: 1050/1010,
  47223. bottom: 66/1116
  47224. }
  47225. },
  47226. },
  47227. [
  47228. {
  47229. name: "Canon Height",
  47230. height: math.unit(500, "miles"),
  47231. default: true
  47232. },
  47233. ]
  47234. ))
  47235. characterMakers.push(() => makeCharacter(
  47236. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47237. {
  47238. front: {
  47239. height: math.unit(6 + 2/12, "feet"),
  47240. weight: math.unit(210, "lb"),
  47241. name: "Front",
  47242. image: {
  47243. source: "./media/characters/wubs/front.svg",
  47244. extra: 1345/1325,
  47245. bottom: 70/1415
  47246. }
  47247. },
  47248. back: {
  47249. height: math.unit(6 + 2/12, "feet"),
  47250. weight: math.unit(210, "lb"),
  47251. name: "Back",
  47252. image: {
  47253. source: "./media/characters/wubs/back.svg",
  47254. extra: 1296/1275,
  47255. bottom: 58/1354
  47256. }
  47257. },
  47258. },
  47259. [
  47260. {
  47261. name: "Normal",
  47262. height: math.unit(6 + 2/12, "feet"),
  47263. default: true
  47264. },
  47265. {
  47266. name: "Macro",
  47267. height: math.unit(1000, "feet")
  47268. },
  47269. {
  47270. name: "Megamacro",
  47271. height: math.unit(1, "mile")
  47272. },
  47273. ]
  47274. ))
  47275. characterMakers.push(() => makeCharacter(
  47276. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47277. {
  47278. front: {
  47279. height: math.unit(4, "feet"),
  47280. weight: math.unit(120, "lb"),
  47281. name: "Front",
  47282. image: {
  47283. source: "./media/characters/blue/front.svg",
  47284. extra: 1636/1525,
  47285. bottom: 43/1679
  47286. }
  47287. },
  47288. back: {
  47289. height: math.unit(4, "feet"),
  47290. weight: math.unit(120, "lb"),
  47291. name: "Back",
  47292. image: {
  47293. source: "./media/characters/blue/back.svg",
  47294. extra: 1660/1560,
  47295. bottom: 57/1717
  47296. }
  47297. },
  47298. paws: {
  47299. height: math.unit(0.826, "feet"),
  47300. name: "Paws",
  47301. image: {
  47302. source: "./media/characters/blue/paws.svg"
  47303. }
  47304. },
  47305. },
  47306. [
  47307. {
  47308. name: "Micro",
  47309. height: math.unit(3, "inches")
  47310. },
  47311. {
  47312. name: "Normal",
  47313. height: math.unit(4, "feet"),
  47314. default: true
  47315. },
  47316. {
  47317. name: "Femenine Form",
  47318. height: math.unit(14, "feet")
  47319. },
  47320. {
  47321. name: "Werebat Form",
  47322. height: math.unit(18, "feet")
  47323. },
  47324. ]
  47325. ))
  47326. characterMakers.push(() => makeCharacter(
  47327. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47328. {
  47329. female: {
  47330. height: math.unit(7 + 4/12, "feet"),
  47331. weight: math.unit(243, "lb"),
  47332. name: "Female",
  47333. image: {
  47334. source: "./media/characters/kaya/female.svg",
  47335. extra: 975/898,
  47336. bottom: 34/1009
  47337. }
  47338. },
  47339. herm: {
  47340. height: math.unit(7 + 4/12, "feet"),
  47341. weight: math.unit(243, "lb"),
  47342. name: "Herm",
  47343. image: {
  47344. source: "./media/characters/kaya/herm.svg",
  47345. extra: 975/898,
  47346. bottom: 34/1009
  47347. }
  47348. },
  47349. },
  47350. [
  47351. {
  47352. name: "Normal",
  47353. height: math.unit(7 + 4/12, "feet"),
  47354. default: true
  47355. },
  47356. ]
  47357. ))
  47358. characterMakers.push(() => makeCharacter(
  47359. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47360. {
  47361. female: {
  47362. height: math.unit(9 + 4/12, "feet"),
  47363. weight: math.unit(398, "lb"),
  47364. name: "Female",
  47365. image: {
  47366. source: "./media/characters/kassandra/female.svg",
  47367. extra: 908/839,
  47368. bottom: 61/969
  47369. }
  47370. },
  47371. intersex: {
  47372. height: math.unit(9 + 4/12, "feet"),
  47373. weight: math.unit(398, "lb"),
  47374. name: "Intersex",
  47375. image: {
  47376. source: "./media/characters/kassandra/intersex.svg",
  47377. extra: 908/839,
  47378. bottom: 61/969
  47379. }
  47380. },
  47381. },
  47382. [
  47383. {
  47384. name: "Normal",
  47385. height: math.unit(9 + 4/12, "feet"),
  47386. default: true
  47387. },
  47388. ]
  47389. ))
  47390. characterMakers.push(() => makeCharacter(
  47391. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47392. {
  47393. front: {
  47394. height: math.unit(3, "meters"),
  47395. name: "Front",
  47396. image: {
  47397. source: "./media/characters/amy/front.svg",
  47398. extra: 1380/1343,
  47399. bottom: 70/1450
  47400. }
  47401. },
  47402. back: {
  47403. height: math.unit(3, "meters"),
  47404. name: "Back",
  47405. image: {
  47406. source: "./media/characters/amy/back.svg",
  47407. extra: 1380/1347,
  47408. bottom: 66/1446
  47409. }
  47410. },
  47411. },
  47412. [
  47413. {
  47414. name: "Normal",
  47415. height: math.unit(3, "meters"),
  47416. default: true
  47417. },
  47418. ]
  47419. ))
  47420. characterMakers.push(() => makeCharacter(
  47421. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47422. {
  47423. side: {
  47424. height: math.unit(47, "cm"),
  47425. weight: math.unit(10.8, "kg"),
  47426. name: "Side",
  47427. image: {
  47428. source: "./media/characters/alphaschakal/side.svg",
  47429. extra: 1058/568,
  47430. bottom: 62/1120
  47431. }
  47432. },
  47433. back: {
  47434. height: math.unit(78, "cm"),
  47435. weight: math.unit(10.8, "kg"),
  47436. name: "Back",
  47437. image: {
  47438. source: "./media/characters/alphaschakal/back.svg",
  47439. extra: 1102/942,
  47440. bottom: 185/1287
  47441. }
  47442. },
  47443. head: {
  47444. height: math.unit(28, "cm"),
  47445. name: "Head",
  47446. image: {
  47447. source: "./media/characters/alphaschakal/head.svg",
  47448. extra: 696/508,
  47449. bottom: 0/696
  47450. }
  47451. },
  47452. paw: {
  47453. height: math.unit(16, "cm"),
  47454. name: "Paw",
  47455. image: {
  47456. source: "./media/characters/alphaschakal/paw.svg"
  47457. }
  47458. },
  47459. },
  47460. [
  47461. {
  47462. name: "Normal",
  47463. height: math.unit(47, "cm"),
  47464. default: true
  47465. },
  47466. {
  47467. name: "Macro",
  47468. height: math.unit(340, "cm")
  47469. },
  47470. ]
  47471. ))
  47472. characterMakers.push(() => makeCharacter(
  47473. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47474. {
  47475. front: {
  47476. height: math.unit(36, "earths"),
  47477. name: "Front",
  47478. image: {
  47479. source: "./media/characters/ecobyss/front.svg",
  47480. extra: 1282/1215,
  47481. bottom: 11/1293
  47482. }
  47483. },
  47484. back: {
  47485. height: math.unit(36, "earths"),
  47486. name: "Back",
  47487. image: {
  47488. source: "./media/characters/ecobyss/back.svg",
  47489. extra: 1291/1222,
  47490. bottom: 8/1299
  47491. }
  47492. },
  47493. },
  47494. [
  47495. {
  47496. name: "Normal",
  47497. height: math.unit(36, "earths"),
  47498. default: true
  47499. },
  47500. ]
  47501. ))
  47502. characterMakers.push(() => makeCharacter(
  47503. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47504. {
  47505. front: {
  47506. height: math.unit(12, "feet"),
  47507. name: "Front",
  47508. image: {
  47509. source: "./media/characters/vasuk/front.svg",
  47510. extra: 1326/1207,
  47511. bottom: 64/1390
  47512. }
  47513. },
  47514. },
  47515. [
  47516. {
  47517. name: "Normal",
  47518. height: math.unit(12, "feet"),
  47519. default: true
  47520. },
  47521. ]
  47522. ))
  47523. characterMakers.push(() => makeCharacter(
  47524. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47525. {
  47526. side: {
  47527. height: math.unit(100, "feet"),
  47528. name: "Side",
  47529. image: {
  47530. source: "./media/characters/linneaus/side.svg",
  47531. extra: 987/807,
  47532. bottom: 47/1034
  47533. }
  47534. },
  47535. },
  47536. [
  47537. {
  47538. name: "Macro",
  47539. height: math.unit(100, "feet"),
  47540. default: true
  47541. },
  47542. ]
  47543. ))
  47544. characterMakers.push(() => makeCharacter(
  47545. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47546. {
  47547. front: {
  47548. height: math.unit(8, "feet"),
  47549. weight: math.unit(1200, "lb"),
  47550. name: "Front",
  47551. image: {
  47552. source: "./media/characters/nyterious-daligdig/front.svg",
  47553. extra: 1284/1094,
  47554. bottom: 84/1368
  47555. }
  47556. },
  47557. back: {
  47558. height: math.unit(8, "feet"),
  47559. weight: math.unit(1200, "lb"),
  47560. name: "Back",
  47561. image: {
  47562. source: "./media/characters/nyterious-daligdig/back.svg",
  47563. extra: 1301/1121,
  47564. bottom: 129/1430
  47565. }
  47566. },
  47567. mouth: {
  47568. height: math.unit(1.464, "feet"),
  47569. name: "Mouth",
  47570. image: {
  47571. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47572. }
  47573. },
  47574. },
  47575. [
  47576. {
  47577. name: "Small",
  47578. height: math.unit(8, "feet"),
  47579. default: true
  47580. },
  47581. {
  47582. name: "Normal",
  47583. height: math.unit(15, "feet")
  47584. },
  47585. {
  47586. name: "Macro",
  47587. height: math.unit(90, "feet")
  47588. },
  47589. ]
  47590. ))
  47591. characterMakers.push(() => makeCharacter(
  47592. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47593. {
  47594. front: {
  47595. height: math.unit(7 + 4/12, "feet"),
  47596. weight: math.unit(252, "lb"),
  47597. name: "Front",
  47598. image: {
  47599. source: "./media/characters/bandel/front.svg",
  47600. extra: 1946/1775,
  47601. bottom: 26/1972
  47602. }
  47603. },
  47604. back: {
  47605. height: math.unit(7 + 4/12, "feet"),
  47606. weight: math.unit(252, "lb"),
  47607. name: "Back",
  47608. image: {
  47609. source: "./media/characters/bandel/back.svg",
  47610. extra: 1940/1770,
  47611. bottom: 25/1965
  47612. }
  47613. },
  47614. maw: {
  47615. height: math.unit(2.15, "feet"),
  47616. name: "Maw",
  47617. image: {
  47618. source: "./media/characters/bandel/maw.svg"
  47619. }
  47620. },
  47621. stomach: {
  47622. height: math.unit(1.95, "feet"),
  47623. name: "Stomach",
  47624. image: {
  47625. source: "./media/characters/bandel/stomach.svg"
  47626. }
  47627. },
  47628. },
  47629. [
  47630. {
  47631. name: "Normal",
  47632. height: math.unit(7 + 4/12, "feet"),
  47633. default: true
  47634. },
  47635. ]
  47636. ))
  47637. characterMakers.push(() => makeCharacter(
  47638. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47639. {
  47640. front: {
  47641. height: math.unit(10 + 5/12, "feet"),
  47642. weight: math.unit(773.5, "kg"),
  47643. name: "Front",
  47644. image: {
  47645. source: "./media/characters/zed/front.svg",
  47646. extra: 987/941,
  47647. bottom: 52/1039
  47648. }
  47649. },
  47650. },
  47651. [
  47652. {
  47653. name: "Short",
  47654. height: math.unit(5 + 4/12, "feet")
  47655. },
  47656. {
  47657. name: "Average",
  47658. height: math.unit(10 + 5/12, "feet"),
  47659. default: true
  47660. },
  47661. {
  47662. name: "Mini-Macro",
  47663. height: math.unit(24 + 9/12, "feet")
  47664. },
  47665. {
  47666. name: "Macro",
  47667. height: math.unit(249, "feet")
  47668. },
  47669. {
  47670. name: "Mega-Macro",
  47671. height: math.unit(12490, "feet")
  47672. },
  47673. {
  47674. name: "Giga-Macro",
  47675. height: math.unit(24.9, "miles")
  47676. },
  47677. {
  47678. name: "Tera-Macro",
  47679. height: math.unit(24900, "miles")
  47680. },
  47681. {
  47682. name: "Cosmic Scale",
  47683. height: math.unit(38.9, "lightyears")
  47684. },
  47685. {
  47686. name: "Universal Scale",
  47687. height: math.unit(138e12, "lightyears")
  47688. },
  47689. ]
  47690. ))
  47691. characterMakers.push(() => makeCharacter(
  47692. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47693. {
  47694. front: {
  47695. height: math.unit(1561, "inches"),
  47696. name: "Front",
  47697. image: {
  47698. source: "./media/characters/ivan/front.svg",
  47699. extra: 1126/1071,
  47700. bottom: 26/1152
  47701. }
  47702. },
  47703. back: {
  47704. height: math.unit(1561, "inches"),
  47705. name: "Back",
  47706. image: {
  47707. source: "./media/characters/ivan/back.svg",
  47708. extra: 1134/1079,
  47709. bottom: 30/1164
  47710. }
  47711. },
  47712. },
  47713. [
  47714. {
  47715. name: "Normal",
  47716. height: math.unit(1561, "inches"),
  47717. default: true
  47718. },
  47719. ]
  47720. ))
  47721. characterMakers.push(() => makeCharacter(
  47722. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47723. {
  47724. front: {
  47725. height: math.unit(5 + 7/12, "feet"),
  47726. weight: math.unit(150, "lb"),
  47727. name: "Front",
  47728. image: {
  47729. source: "./media/characters/robin-arctic-hare/front.svg",
  47730. extra: 1148/974,
  47731. bottom: 20/1168
  47732. }
  47733. },
  47734. },
  47735. [
  47736. {
  47737. name: "Normal",
  47738. height: math.unit(5 + 7/12, "feet"),
  47739. default: true
  47740. },
  47741. ]
  47742. ))
  47743. characterMakers.push(() => makeCharacter(
  47744. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47745. {
  47746. side: {
  47747. height: math.unit(5, "feet"),
  47748. name: "Side",
  47749. image: {
  47750. source: "./media/characters/birch/side.svg",
  47751. extra: 985/796,
  47752. bottom: 111/1096
  47753. }
  47754. },
  47755. },
  47756. [
  47757. {
  47758. name: "Normal",
  47759. height: math.unit(5, "feet"),
  47760. default: true
  47761. },
  47762. ]
  47763. ))
  47764. characterMakers.push(() => makeCharacter(
  47765. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47766. {
  47767. front: {
  47768. height: math.unit(4, "feet"),
  47769. name: "Front",
  47770. image: {
  47771. source: "./media/characters/rasp/front.svg",
  47772. extra: 561/478,
  47773. bottom: 74/635
  47774. }
  47775. },
  47776. },
  47777. [
  47778. {
  47779. name: "Normal",
  47780. height: math.unit(4, "feet"),
  47781. default: true
  47782. },
  47783. ]
  47784. ))
  47785. characterMakers.push(() => makeCharacter(
  47786. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47787. {
  47788. front: {
  47789. height: math.unit(4 + 6/12, "feet"),
  47790. name: "Front",
  47791. image: {
  47792. source: "./media/characters/agatha/front.svg",
  47793. extra: 947/933,
  47794. bottom: 42/989
  47795. }
  47796. },
  47797. back: {
  47798. height: math.unit(4 + 6/12, "feet"),
  47799. name: "Back",
  47800. image: {
  47801. source: "./media/characters/agatha/back.svg",
  47802. extra: 935/922,
  47803. bottom: 48/983
  47804. }
  47805. },
  47806. },
  47807. [
  47808. {
  47809. name: "Normal",
  47810. height: math.unit(4 + 6 /12, "feet"),
  47811. default: true
  47812. },
  47813. {
  47814. name: "Max Size",
  47815. height: math.unit(500, "feet")
  47816. },
  47817. ]
  47818. ))
  47819. characterMakers.push(() => makeCharacter(
  47820. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47821. {
  47822. side: {
  47823. height: math.unit(30, "feet"),
  47824. name: "Side",
  47825. image: {
  47826. source: "./media/characters/roggy/side.svg",
  47827. extra: 909/643,
  47828. bottom: 63/972
  47829. }
  47830. },
  47831. lounging: {
  47832. height: math.unit(20, "feet"),
  47833. name: "Lounging",
  47834. image: {
  47835. source: "./media/characters/roggy/lounging.svg",
  47836. extra: 643/479,
  47837. bottom: 145/788
  47838. }
  47839. },
  47840. handpaw: {
  47841. height: math.unit(13.1, "feet"),
  47842. name: "Handpaw",
  47843. image: {
  47844. source: "./media/characters/roggy/handpaw.svg"
  47845. }
  47846. },
  47847. footpaw: {
  47848. height: math.unit(15.8, "feet"),
  47849. name: "Footpaw",
  47850. image: {
  47851. source: "./media/characters/roggy/footpaw.svg"
  47852. }
  47853. },
  47854. },
  47855. [
  47856. {
  47857. name: "Menacing",
  47858. height: math.unit(30, "feet"),
  47859. default: true
  47860. },
  47861. ]
  47862. ))
  47863. characterMakers.push(() => makeCharacter(
  47864. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47865. {
  47866. front: {
  47867. height: math.unit(5 + 7/12, "feet"),
  47868. weight: math.unit(135, "lb"),
  47869. name: "Front",
  47870. image: {
  47871. source: "./media/characters/naomi/front.svg",
  47872. extra: 1209/1154,
  47873. bottom: 129/1338
  47874. }
  47875. },
  47876. back: {
  47877. height: math.unit(5 + 7/12, "feet"),
  47878. weight: math.unit(135, "lb"),
  47879. name: "Back",
  47880. image: {
  47881. source: "./media/characters/naomi/back.svg",
  47882. extra: 1252/1190,
  47883. bottom: 23/1275
  47884. }
  47885. },
  47886. },
  47887. [
  47888. {
  47889. name: "Normal",
  47890. height: math.unit(5 + 7 /12, "feet"),
  47891. default: true
  47892. },
  47893. ]
  47894. ))
  47895. characterMakers.push(() => makeCharacter(
  47896. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47897. {
  47898. side: {
  47899. height: math.unit(35, "meters"),
  47900. name: "Side",
  47901. image: {
  47902. source: "./media/characters/kimpi/side.svg",
  47903. extra: 419/382,
  47904. bottom: 63/482
  47905. }
  47906. },
  47907. hand: {
  47908. height: math.unit(8.96, "meters"),
  47909. name: "Hand",
  47910. image: {
  47911. source: "./media/characters/kimpi/hand.svg"
  47912. }
  47913. },
  47914. },
  47915. [
  47916. {
  47917. name: "Normal",
  47918. height: math.unit(35, "meters"),
  47919. default: true
  47920. },
  47921. ]
  47922. ))
  47923. characterMakers.push(() => makeCharacter(
  47924. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47925. {
  47926. front: {
  47927. height: math.unit(4 + 4/12, "feet"),
  47928. name: "Front",
  47929. image: {
  47930. source: "./media/characters/pepper-purrloin/front.svg",
  47931. extra: 1141/1024,
  47932. bottom: 21/1162
  47933. }
  47934. },
  47935. },
  47936. [
  47937. {
  47938. name: "Normal",
  47939. height: math.unit(4 + 4/12, "feet"),
  47940. default: true
  47941. },
  47942. ]
  47943. ))
  47944. characterMakers.push(() => makeCharacter(
  47945. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47946. {
  47947. front: {
  47948. height: math.unit(6 + 2/12, "feet"),
  47949. name: "Front",
  47950. image: {
  47951. source: "./media/characters/raphael/front.svg",
  47952. extra: 1101/962,
  47953. bottom: 59/1160
  47954. }
  47955. },
  47956. },
  47957. [
  47958. {
  47959. name: "Normal",
  47960. height: math.unit(6 + 2/12, "feet"),
  47961. default: true
  47962. },
  47963. ]
  47964. ))
  47965. characterMakers.push(() => makeCharacter(
  47966. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47967. {
  47968. front: {
  47969. height: math.unit(6, "feet"),
  47970. weight: math.unit(150, "lb"),
  47971. name: "Front",
  47972. image: {
  47973. source: "./media/characters/victor-williams/front.svg",
  47974. extra: 1894/1825,
  47975. bottom: 67/1961
  47976. }
  47977. },
  47978. },
  47979. [
  47980. {
  47981. name: "Normal",
  47982. height: math.unit(6, "feet"),
  47983. default: true
  47984. },
  47985. ]
  47986. ))
  47987. characterMakers.push(() => makeCharacter(
  47988. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47989. {
  47990. front: {
  47991. height: math.unit(5 + 8/12, "feet"),
  47992. weight: math.unit(150, "lb"),
  47993. name: "Front",
  47994. image: {
  47995. source: "./media/characters/rachel/front.svg",
  47996. extra: 1902/1787,
  47997. bottom: 46/1948
  47998. }
  47999. },
  48000. },
  48001. [
  48002. {
  48003. name: "Base Height",
  48004. height: math.unit(5 + 8/12, "feet"),
  48005. default: true
  48006. },
  48007. {
  48008. name: "Macro",
  48009. height: math.unit(200, "feet")
  48010. },
  48011. {
  48012. name: "Mega Macro",
  48013. height: math.unit(1, "mile")
  48014. },
  48015. {
  48016. name: "Giga Macro",
  48017. height: math.unit(1500, "miles")
  48018. },
  48019. {
  48020. name: "Tera Macro",
  48021. height: math.unit(8000, "miles")
  48022. },
  48023. {
  48024. name: "Tera Macro+",
  48025. height: math.unit(2e5, "miles")
  48026. },
  48027. ]
  48028. ))
  48029. characterMakers.push(() => makeCharacter(
  48030. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48031. {
  48032. front: {
  48033. height: math.unit(6.5, "feet"),
  48034. name: "Front",
  48035. image: {
  48036. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48037. extra: 860/819,
  48038. bottom: 307/1167
  48039. }
  48040. },
  48041. back: {
  48042. height: math.unit(6.5, "feet"),
  48043. name: "Back",
  48044. image: {
  48045. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48046. extra: 880/837,
  48047. bottom: 395/1275
  48048. }
  48049. },
  48050. sleeping: {
  48051. height: math.unit(2.79, "feet"),
  48052. name: "Sleeping",
  48053. image: {
  48054. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48055. extra: 465/383,
  48056. bottom: 263/728
  48057. }
  48058. },
  48059. maw: {
  48060. height: math.unit(2.52, "feet"),
  48061. name: "Maw",
  48062. image: {
  48063. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48064. }
  48065. },
  48066. },
  48067. [
  48068. {
  48069. name: "Normal",
  48070. height: math.unit(6.5, "feet"),
  48071. default: true
  48072. },
  48073. ]
  48074. ))
  48075. characterMakers.push(() => makeCharacter(
  48076. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48077. {
  48078. front: {
  48079. height: math.unit(5, "feet"),
  48080. name: "Front",
  48081. image: {
  48082. source: "./media/characters/nova-nerium/front.svg",
  48083. extra: 1548/1392,
  48084. bottom: 374/1922
  48085. }
  48086. },
  48087. back: {
  48088. height: math.unit(5, "feet"),
  48089. name: "Back",
  48090. image: {
  48091. source: "./media/characters/nova-nerium/back.svg",
  48092. extra: 1658/1468,
  48093. bottom: 257/1915
  48094. }
  48095. },
  48096. },
  48097. [
  48098. {
  48099. name: "Normal",
  48100. height: math.unit(5, "feet"),
  48101. default: true
  48102. },
  48103. ]
  48104. ))
  48105. characterMakers.push(() => makeCharacter(
  48106. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48107. {
  48108. front: {
  48109. height: math.unit(5 + 4/12, "feet"),
  48110. name: "Front",
  48111. image: {
  48112. source: "./media/characters/ashe-pyriph/front.svg",
  48113. extra: 1935/1747,
  48114. bottom: 60/1995
  48115. }
  48116. },
  48117. },
  48118. [
  48119. {
  48120. name: "Normal",
  48121. height: math.unit(5 + 4/12, "feet"),
  48122. default: true
  48123. },
  48124. ]
  48125. ))
  48126. characterMakers.push(() => makeCharacter(
  48127. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48128. {
  48129. front: {
  48130. height: math.unit(8.7, "feet"),
  48131. name: "Front",
  48132. image: {
  48133. source: "./media/characters/flicker-wisp/front.svg",
  48134. extra: 1835/1613,
  48135. bottom: 449/2284
  48136. }
  48137. },
  48138. side: {
  48139. height: math.unit(8.7, "feet"),
  48140. name: "Side",
  48141. image: {
  48142. source: "./media/characters/flicker-wisp/side.svg",
  48143. extra: 1841/1642,
  48144. bottom: 336/2177
  48145. },
  48146. default: true
  48147. },
  48148. maw: {
  48149. height: math.unit(3.35, "feet"),
  48150. name: "Maw",
  48151. image: {
  48152. source: "./media/characters/flicker-wisp/maw.svg",
  48153. extra: 2338/1506,
  48154. bottom: 0/2338
  48155. }
  48156. },
  48157. ovipositor: {
  48158. height: math.unit(4.95, "feet"),
  48159. name: "Ovipositor",
  48160. image: {
  48161. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48162. }
  48163. },
  48164. egg: {
  48165. height: math.unit(0.385, "feet"),
  48166. weight: math.unit(2, "lb"),
  48167. name: "Egg",
  48168. image: {
  48169. source: "./media/characters/flicker-wisp/egg.svg"
  48170. }
  48171. },
  48172. },
  48173. [
  48174. {
  48175. name: "Normal",
  48176. height: math.unit(8.7, "feet"),
  48177. default: true
  48178. },
  48179. ]
  48180. ))
  48181. characterMakers.push(() => makeCharacter(
  48182. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48183. {
  48184. side: {
  48185. height: math.unit(11, "feet"),
  48186. name: "Side",
  48187. image: {
  48188. source: "./media/characters/faefnul/side.svg",
  48189. extra: 1100/1007,
  48190. bottom: 0/1100
  48191. }
  48192. },
  48193. },
  48194. [
  48195. {
  48196. name: "Normal",
  48197. height: math.unit(11, "feet"),
  48198. default: true
  48199. },
  48200. ]
  48201. ))
  48202. characterMakers.push(() => makeCharacter(
  48203. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48204. {
  48205. front: {
  48206. height: math.unit(6 + 2/12, "feet"),
  48207. name: "Front",
  48208. image: {
  48209. source: "./media/characters/shady/front.svg",
  48210. extra: 502/461,
  48211. bottom: 9/511
  48212. }
  48213. },
  48214. kneeling: {
  48215. height: math.unit(4.6, "feet"),
  48216. name: "Kneeling",
  48217. image: {
  48218. source: "./media/characters/shady/kneeling.svg",
  48219. extra: 1328/1219,
  48220. bottom: 117/1445
  48221. }
  48222. },
  48223. maw: {
  48224. height: math.unit(2, "feet"),
  48225. name: "Maw",
  48226. image: {
  48227. source: "./media/characters/shady/maw.svg"
  48228. }
  48229. },
  48230. },
  48231. [
  48232. {
  48233. name: "Nano",
  48234. height: math.unit(1, "mm")
  48235. },
  48236. {
  48237. name: "Micro",
  48238. height: math.unit(12, "mm")
  48239. },
  48240. {
  48241. name: "Tiny",
  48242. height: math.unit(3, "inches")
  48243. },
  48244. {
  48245. name: "Normal",
  48246. height: math.unit(6 + 2/12, "feet"),
  48247. default: true
  48248. },
  48249. {
  48250. name: "Big",
  48251. height: math.unit(15, "feet")
  48252. },
  48253. {
  48254. name: "Macro",
  48255. height: math.unit(150, "feet")
  48256. },
  48257. {
  48258. name: "Titanic",
  48259. height: math.unit(500, "feet")
  48260. },
  48261. ]
  48262. ))
  48263. characterMakers.push(() => makeCharacter(
  48264. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48265. {
  48266. front: {
  48267. height: math.unit(12, "feet"),
  48268. name: "Front",
  48269. image: {
  48270. source: "./media/characters/fenrir/front.svg",
  48271. extra: 968/875,
  48272. bottom: 22/990
  48273. }
  48274. },
  48275. },
  48276. [
  48277. {
  48278. name: "Big",
  48279. height: math.unit(12, "feet"),
  48280. default: true
  48281. },
  48282. ]
  48283. ))
  48284. characterMakers.push(() => makeCharacter(
  48285. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48286. {
  48287. front: {
  48288. height: math.unit(5 + 4/12, "feet"),
  48289. name: "Front",
  48290. image: {
  48291. source: "./media/characters/makar/front.svg",
  48292. extra: 1181/1112,
  48293. bottom: 78/1259
  48294. }
  48295. },
  48296. },
  48297. [
  48298. {
  48299. name: "Normal",
  48300. height: math.unit(5 + 4/12, "feet"),
  48301. default: true
  48302. },
  48303. ]
  48304. ))
  48305. characterMakers.push(() => makeCharacter(
  48306. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48307. {
  48308. front: {
  48309. height: math.unit(5 + 7/12, "feet"),
  48310. name: "Front",
  48311. image: {
  48312. source: "./media/characters/callow/front.svg",
  48313. extra: 1482/1304,
  48314. bottom: 23/1505
  48315. }
  48316. },
  48317. back: {
  48318. height: math.unit(5 + 7/12, "feet"),
  48319. name: "Back",
  48320. image: {
  48321. source: "./media/characters/callow/back.svg",
  48322. extra: 1484/1296,
  48323. bottom: 25/1509
  48324. }
  48325. },
  48326. },
  48327. [
  48328. {
  48329. name: "Micro",
  48330. height: math.unit(3, "inches"),
  48331. default: true
  48332. },
  48333. {
  48334. name: "Normal",
  48335. height: math.unit(5 + 7/12, "feet")
  48336. },
  48337. ]
  48338. ))
  48339. characterMakers.push(() => makeCharacter(
  48340. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48341. {
  48342. front: {
  48343. height: math.unit(6 + 2/12, "feet"),
  48344. name: "Front",
  48345. image: {
  48346. source: "./media/characters/natel/front.svg",
  48347. extra: 1833/1692,
  48348. bottom: 166/1999
  48349. }
  48350. },
  48351. },
  48352. [
  48353. {
  48354. name: "Normal",
  48355. height: math.unit(6 + 2/12, "feet"),
  48356. default: true
  48357. },
  48358. ]
  48359. ))
  48360. characterMakers.push(() => makeCharacter(
  48361. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48362. {
  48363. front: {
  48364. height: math.unit(1.75, "meters"),
  48365. name: "Front",
  48366. image: {
  48367. source: "./media/characters/misu/front.svg",
  48368. extra: 1690/1558,
  48369. bottom: 234/1924
  48370. }
  48371. },
  48372. back: {
  48373. height: math.unit(1.75, "meters"),
  48374. name: "Back",
  48375. image: {
  48376. source: "./media/characters/misu/back.svg",
  48377. extra: 1762/1618,
  48378. bottom: 146/1908
  48379. }
  48380. },
  48381. frontNude: {
  48382. height: math.unit(1.75, "meters"),
  48383. name: "Front (Nude)",
  48384. image: {
  48385. source: "./media/characters/misu/front-nude.svg",
  48386. extra: 1690/1558,
  48387. bottom: 234/1924
  48388. }
  48389. },
  48390. backNude: {
  48391. height: math.unit(1.75, "meters"),
  48392. name: "Back (Nude)",
  48393. image: {
  48394. source: "./media/characters/misu/back-nude.svg",
  48395. extra: 1762/1618,
  48396. bottom: 146/1908
  48397. }
  48398. },
  48399. frontErect: {
  48400. height: math.unit(1.75, "meters"),
  48401. name: "Front (Erect)",
  48402. image: {
  48403. source: "./media/characters/misu/front-erect.svg",
  48404. extra: 1690/1558,
  48405. bottom: 234/1924
  48406. }
  48407. },
  48408. maw: {
  48409. height: math.unit(0.47, "meters"),
  48410. name: "Maw",
  48411. image: {
  48412. source: "./media/characters/misu/maw.svg"
  48413. }
  48414. },
  48415. head: {
  48416. height: math.unit(0.35, "meters"),
  48417. name: "Head",
  48418. image: {
  48419. source: "./media/characters/misu/head.svg"
  48420. }
  48421. },
  48422. rear: {
  48423. height: math.unit(0.47, "meters"),
  48424. name: "Rear",
  48425. image: {
  48426. source: "./media/characters/misu/rear.svg"
  48427. }
  48428. },
  48429. },
  48430. [
  48431. {
  48432. name: "Normal",
  48433. height: math.unit(1.75, "meters")
  48434. },
  48435. {
  48436. name: "Not good for the people",
  48437. height: math.unit(42, "meters")
  48438. },
  48439. {
  48440. name: "Not good for the neighborhood",
  48441. height: math.unit(135, "meters")
  48442. },
  48443. {
  48444. name: "Bit bigger problem",
  48445. height: math.unit(380, "meters"),
  48446. default: true
  48447. },
  48448. {
  48449. name: "Not good for the city",
  48450. height: math.unit(1.5, "km")
  48451. },
  48452. {
  48453. name: "Not good for the county",
  48454. height: math.unit(5.5, "km")
  48455. },
  48456. {
  48457. name: "Not good for the state",
  48458. height: math.unit(25, "km")
  48459. },
  48460. {
  48461. name: "Not good for the country",
  48462. height: math.unit(125, "km")
  48463. },
  48464. {
  48465. name: "Not good for the continent",
  48466. height: math.unit(2100, "km")
  48467. },
  48468. {
  48469. name: "Not good for the planet",
  48470. height: math.unit(35000, "km")
  48471. },
  48472. {
  48473. name: "Just no",
  48474. height: math.unit(8.5e18, "km")
  48475. },
  48476. ]
  48477. ))
  48478. characterMakers.push(() => makeCharacter(
  48479. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48480. {
  48481. front: {
  48482. height: math.unit(6.5, "feet"),
  48483. name: "Front",
  48484. image: {
  48485. source: "./media/characters/poppy/front.svg",
  48486. extra: 1878/1812,
  48487. bottom: 43/1921
  48488. }
  48489. },
  48490. feet: {
  48491. height: math.unit(1.06, "feet"),
  48492. name: "Feet",
  48493. image: {
  48494. source: "./media/characters/poppy/feet.svg",
  48495. extra: 1083/1083,
  48496. bottom: 87/1170
  48497. }
  48498. },
  48499. },
  48500. [
  48501. {
  48502. name: "Human",
  48503. height: math.unit(6.5, "feet")
  48504. },
  48505. {
  48506. name: "Default",
  48507. height: math.unit(300, "feet"),
  48508. default: true
  48509. },
  48510. {
  48511. name: "Huge",
  48512. height: math.unit(850, "feet")
  48513. },
  48514. {
  48515. name: "Mega",
  48516. height: math.unit(8000, "feet")
  48517. },
  48518. {
  48519. name: "Giga",
  48520. height: math.unit(300, "miles")
  48521. },
  48522. ]
  48523. ))
  48524. characterMakers.push(() => makeCharacter(
  48525. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48526. {
  48527. bipedal: {
  48528. height: math.unit(7, "feet"),
  48529. name: "Bipedal",
  48530. image: {
  48531. source: "./media/characters/zener/bipedal.svg",
  48532. extra: 874/805,
  48533. bottom: 109/983
  48534. }
  48535. },
  48536. quadrupedal: {
  48537. height: math.unit(4.64, "feet"),
  48538. name: "Quadrupedal",
  48539. image: {
  48540. source: "./media/characters/zener/quadrupedal.svg",
  48541. extra: 638/507,
  48542. bottom: 190/828
  48543. }
  48544. },
  48545. cock: {
  48546. height: math.unit(18, "inches"),
  48547. name: "Cock",
  48548. image: {
  48549. source: "./media/characters/zener/cock.svg"
  48550. }
  48551. },
  48552. },
  48553. [
  48554. {
  48555. name: "Normal",
  48556. height: math.unit(7, "feet"),
  48557. default: true
  48558. },
  48559. ]
  48560. ))
  48561. characterMakers.push(() => makeCharacter(
  48562. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48563. {
  48564. nude: {
  48565. height: math.unit(5 + 6/12, "feet"),
  48566. name: "Nude",
  48567. image: {
  48568. source: "./media/characters/charlie-dog/nude.svg",
  48569. extra: 768/734,
  48570. bottom: 26/794
  48571. }
  48572. },
  48573. dressed: {
  48574. height: math.unit(5 + 6/12, "feet"),
  48575. name: "Dressed",
  48576. image: {
  48577. source: "./media/characters/charlie-dog/dressed.svg",
  48578. extra: 768/734,
  48579. bottom: 26/794
  48580. }
  48581. },
  48582. },
  48583. [
  48584. {
  48585. name: "Normal",
  48586. height: math.unit(5 + 6/12, "feet"),
  48587. default: true
  48588. },
  48589. ]
  48590. ))
  48591. characterMakers.push(() => makeCharacter(
  48592. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48593. {
  48594. front: {
  48595. height: math.unit(6 + 4/12, "feet"),
  48596. name: "Front",
  48597. image: {
  48598. source: "./media/characters/ir'istrasz/front.svg",
  48599. extra: 1014/977,
  48600. bottom: 65/1079
  48601. }
  48602. },
  48603. back: {
  48604. height: math.unit(6 + 4/12, "feet"),
  48605. name: "Back",
  48606. image: {
  48607. source: "./media/characters/ir'istrasz/back.svg",
  48608. extra: 1024/992,
  48609. bottom: 34/1058
  48610. }
  48611. },
  48612. },
  48613. [
  48614. {
  48615. name: "Normal",
  48616. height: math.unit(6 + 4/12, "feet"),
  48617. default: true
  48618. },
  48619. ]
  48620. ))
  48621. characterMakers.push(() => makeCharacter(
  48622. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48623. {
  48624. front: {
  48625. height: math.unit(5 + 8/12, "feet"),
  48626. name: "Front",
  48627. image: {
  48628. source: "./media/characters/dee-ditto/front.svg",
  48629. extra: 1874/1785,
  48630. bottom: 68/1942
  48631. }
  48632. },
  48633. back: {
  48634. height: math.unit(5 + 8/12, "feet"),
  48635. name: "Back",
  48636. image: {
  48637. source: "./media/characters/dee-ditto/back.svg",
  48638. extra: 1870/1783,
  48639. bottom: 77/1947
  48640. }
  48641. },
  48642. },
  48643. [
  48644. {
  48645. name: "Normal",
  48646. height: math.unit(5 + 8/12, "feet"),
  48647. default: true
  48648. },
  48649. ]
  48650. ))
  48651. characterMakers.push(() => makeCharacter(
  48652. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48653. {
  48654. front: {
  48655. height: math.unit(7 + 6/12, "feet"),
  48656. name: "Front",
  48657. image: {
  48658. source: "./media/characters/fey/front.svg",
  48659. extra: 995/979,
  48660. bottom: 30/1025
  48661. }
  48662. },
  48663. back: {
  48664. height: math.unit(7 + 6/12, "feet"),
  48665. name: "Back",
  48666. image: {
  48667. source: "./media/characters/fey/back.svg",
  48668. extra: 1079/1008,
  48669. bottom: 5/1084
  48670. }
  48671. },
  48672. dressed: {
  48673. height: math.unit(7 + 6/12, "feet"),
  48674. name: "Dressed",
  48675. image: {
  48676. source: "./media/characters/fey/dressed.svg",
  48677. extra: 995/979,
  48678. bottom: 30/1025
  48679. }
  48680. },
  48681. },
  48682. [
  48683. {
  48684. name: "Normal",
  48685. height: math.unit(7 + 6/12, "feet"),
  48686. default: true
  48687. },
  48688. ]
  48689. ))
  48690. characterMakers.push(() => makeCharacter(
  48691. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48692. {
  48693. standing: {
  48694. height: math.unit(17, "feet"),
  48695. name: "Standing",
  48696. image: {
  48697. source: "./media/characters/aster/standing.svg",
  48698. extra: 1798/1598,
  48699. bottom: 117/1915
  48700. }
  48701. },
  48702. },
  48703. [
  48704. {
  48705. name: "Normal",
  48706. height: math.unit(17, "feet"),
  48707. default: true
  48708. },
  48709. {
  48710. name: "Homewrecker",
  48711. height: math.unit(95, "feet")
  48712. },
  48713. {
  48714. name: "Planet Devourer",
  48715. height: math.unit(1008000, "miles")
  48716. },
  48717. ]
  48718. ))
  48719. characterMakers.push(() => makeCharacter(
  48720. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48721. {
  48722. front: {
  48723. height: math.unit(6 + 5/12, "feet"),
  48724. weight: math.unit(265, "lb"),
  48725. name: "Front",
  48726. image: {
  48727. source: "./media/characters/devon-childs/front.svg",
  48728. extra: 1795/1721,
  48729. bottom: 41/1836
  48730. }
  48731. },
  48732. side: {
  48733. height: math.unit(6 + 5/12, "feet"),
  48734. weight: math.unit(265, "lb"),
  48735. name: "Side",
  48736. image: {
  48737. source: "./media/characters/devon-childs/side.svg",
  48738. extra: 1812/1738,
  48739. bottom: 30/1842
  48740. }
  48741. },
  48742. back: {
  48743. height: math.unit(6 + 5/12, "feet"),
  48744. weight: math.unit(265, "lb"),
  48745. name: "Back",
  48746. image: {
  48747. source: "./media/characters/devon-childs/back.svg",
  48748. extra: 1808/1735,
  48749. bottom: 23/1831
  48750. }
  48751. },
  48752. hand: {
  48753. height: math.unit(1.464, "feet"),
  48754. name: "Hand",
  48755. image: {
  48756. source: "./media/characters/devon-childs/hand.svg"
  48757. }
  48758. },
  48759. foot: {
  48760. height: math.unit(1.6, "feet"),
  48761. name: "Foot",
  48762. image: {
  48763. source: "./media/characters/devon-childs/foot.svg"
  48764. }
  48765. },
  48766. },
  48767. [
  48768. {
  48769. name: "Micro",
  48770. height: math.unit(7, "cm")
  48771. },
  48772. {
  48773. name: "Normal",
  48774. height: math.unit(6 + 5/12, "feet"),
  48775. default: true
  48776. },
  48777. {
  48778. name: "Macro",
  48779. height: math.unit(154, "feet")
  48780. },
  48781. ]
  48782. ))
  48783. characterMakers.push(() => makeCharacter(
  48784. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48785. {
  48786. front: {
  48787. height: math.unit(6, "feet"),
  48788. weight: math.unit(180, "lb"),
  48789. name: "Front",
  48790. image: {
  48791. source: "./media/characters/lydemox-vir/front.svg",
  48792. extra: 1632/1435,
  48793. bottom: 58/1690
  48794. }
  48795. },
  48796. frontSFW: {
  48797. height: math.unit(6, "feet"),
  48798. weight: math.unit(180, "lb"),
  48799. name: "Front (SFW)",
  48800. image: {
  48801. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48802. extra: 1632/1435,
  48803. bottom: 58/1690
  48804. }
  48805. },
  48806. back: {
  48807. height: math.unit(6, "feet"),
  48808. weight: math.unit(180, "lb"),
  48809. name: "Back",
  48810. image: {
  48811. source: "./media/characters/lydemox-vir/back.svg",
  48812. extra: 1593/1408,
  48813. bottom: 31/1624
  48814. }
  48815. },
  48816. paw: {
  48817. height: math.unit(1.85, "feet"),
  48818. name: "Paw",
  48819. image: {
  48820. source: "./media/characters/lydemox-vir/paw.svg"
  48821. }
  48822. },
  48823. dick: {
  48824. height: math.unit(1.8, "feet"),
  48825. name: "Dick",
  48826. image: {
  48827. source: "./media/characters/lydemox-vir/dick.svg"
  48828. }
  48829. },
  48830. },
  48831. [
  48832. {
  48833. name: "Macro",
  48834. height: math.unit(100, "feet"),
  48835. default: true
  48836. },
  48837. {
  48838. name: "Teramacro",
  48839. height: math.unit(1, "earth")
  48840. },
  48841. {
  48842. name: "Planetary",
  48843. height: math.unit(20, "earths")
  48844. },
  48845. ]
  48846. ))
  48847. characterMakers.push(() => makeCharacter(
  48848. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48849. {
  48850. front: {
  48851. height: math.unit(15 + 8/12, "feet"),
  48852. weight: math.unit(1237, "kg"),
  48853. name: "Front",
  48854. image: {
  48855. source: "./media/characters/mia/front.svg",
  48856. extra: 1573/1446,
  48857. bottom: 58/1631
  48858. }
  48859. },
  48860. },
  48861. [
  48862. {
  48863. name: "Small",
  48864. height: math.unit(9 + 5/12, "feet")
  48865. },
  48866. {
  48867. name: "Normal",
  48868. height: math.unit(15 + 8/12, "feet"),
  48869. default: true
  48870. },
  48871. ]
  48872. ))
  48873. characterMakers.push(() => makeCharacter(
  48874. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48875. {
  48876. front: {
  48877. height: math.unit(10 + 6/12, "feet"),
  48878. weight: math.unit(1.3, "tons"),
  48879. name: "Front",
  48880. image: {
  48881. source: "./media/characters/mr-graves/front.svg",
  48882. extra: 1779/1695,
  48883. bottom: 198/1977
  48884. }
  48885. },
  48886. },
  48887. [
  48888. {
  48889. name: "Normal",
  48890. height: math.unit(10 + 6 /12, "feet"),
  48891. default: true
  48892. },
  48893. ]
  48894. ))
  48895. characterMakers.push(() => makeCharacter(
  48896. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48897. {
  48898. dressedFront: {
  48899. height: math.unit(5 + 8/12, "feet"),
  48900. weight: math.unit(125, "lb"),
  48901. name: "Dressed (Front)",
  48902. image: {
  48903. source: "./media/characters/jess/dressed-front.svg",
  48904. extra: 1176/1152,
  48905. bottom: 42/1218
  48906. }
  48907. },
  48908. dressedSide: {
  48909. height: math.unit(5 + 8/12, "feet"),
  48910. weight: math.unit(125, "lb"),
  48911. name: "Dressed (Side)",
  48912. image: {
  48913. source: "./media/characters/jess/dressed-side.svg",
  48914. extra: 1204/1190,
  48915. bottom: 6/1210
  48916. }
  48917. },
  48918. nudeFront: {
  48919. height: math.unit(5 + 8/12, "feet"),
  48920. weight: math.unit(125, "lb"),
  48921. name: "Nude (Front)",
  48922. image: {
  48923. source: "./media/characters/jess/nude-front.svg",
  48924. extra: 1176/1152,
  48925. bottom: 42/1218
  48926. }
  48927. },
  48928. nudeSide: {
  48929. height: math.unit(5 + 8/12, "feet"),
  48930. weight: math.unit(125, "lb"),
  48931. name: "Nude (Side)",
  48932. image: {
  48933. source: "./media/characters/jess/nude-side.svg",
  48934. extra: 1204/1190,
  48935. bottom: 6/1210
  48936. }
  48937. },
  48938. organsFront: {
  48939. height: math.unit(2.83799342105, "feet"),
  48940. name: "Organs (Front)",
  48941. image: {
  48942. source: "./media/characters/jess/organs-front.svg"
  48943. }
  48944. },
  48945. organsSide: {
  48946. height: math.unit(2.64225290474, "feet"),
  48947. name: "Organs (Side)",
  48948. image: {
  48949. source: "./media/characters/jess/organs-side.svg"
  48950. }
  48951. },
  48952. digestiveTractFront: {
  48953. height: math.unit(2.8106580871, "feet"),
  48954. name: "Digestive Tract (Front)",
  48955. image: {
  48956. source: "./media/characters/jess/digestive-tract-front.svg"
  48957. }
  48958. },
  48959. digestiveTractSide: {
  48960. height: math.unit(2.54365045014, "feet"),
  48961. name: "Digestive Tract (Side)",
  48962. image: {
  48963. source: "./media/characters/jess/digestive-tract-side.svg"
  48964. }
  48965. },
  48966. respiratorySystemFront: {
  48967. height: math.unit(1.11196233456, "feet"),
  48968. name: "Respiratory System (Front)",
  48969. image: {
  48970. source: "./media/characters/jess/respiratory-system-front.svg"
  48971. }
  48972. },
  48973. respiratorySystemSide: {
  48974. height: math.unit(0.89327966297, "feet"),
  48975. name: "Respiratory System (Side)",
  48976. image: {
  48977. source: "./media/characters/jess/respiratory-system-side.svg"
  48978. }
  48979. },
  48980. urinaryTractFront: {
  48981. height: math.unit(1.16126356186, "feet"),
  48982. name: "Urinary Tract (Front)",
  48983. image: {
  48984. source: "./media/characters/jess/urinary-tract-front.svg"
  48985. }
  48986. },
  48987. urinaryTractSide: {
  48988. height: math.unit(1.20910039627, "feet"),
  48989. name: "Urinary Tract (Side)",
  48990. image: {
  48991. source: "./media/characters/jess/urinary-tract-side.svg"
  48992. }
  48993. },
  48994. reproductiveOrgansFront: {
  48995. height: math.unit(0.48422591566, "feet"),
  48996. name: "Reproductive Organs (Front)",
  48997. image: {
  48998. source: "./media/characters/jess/reproductive-organs-front.svg"
  48999. }
  49000. },
  49001. reproductiveOrgansSide: {
  49002. height: math.unit(0.61553314481, "feet"),
  49003. name: "Reproductive Organs (Side)",
  49004. image: {
  49005. source: "./media/characters/jess/reproductive-organs-side.svg"
  49006. }
  49007. },
  49008. breastsFront: {
  49009. height: math.unit(0.47690395121, "feet"),
  49010. name: "Breasts (Front)",
  49011. image: {
  49012. source: "./media/characters/jess/breasts-front.svg"
  49013. }
  49014. },
  49015. breastsSide: {
  49016. height: math.unit(0.30556998307, "feet"),
  49017. name: "Breasts (Side)",
  49018. image: {
  49019. source: "./media/characters/jess/breasts-side.svg"
  49020. }
  49021. },
  49022. heartFront: {
  49023. height: math.unit(0.53011022622, "feet"),
  49024. name: "Heart (Front)",
  49025. image: {
  49026. source: "./media/characters/jess/heart-front.svg"
  49027. }
  49028. },
  49029. heartSide: {
  49030. height: math.unit(0.51790695213, "feet"),
  49031. name: "Heart (Side)",
  49032. image: {
  49033. source: "./media/characters/jess/heart-side.svg"
  49034. }
  49035. },
  49036. earsAndNoseFront: {
  49037. height: math.unit(0.29385483995, "feet"),
  49038. name: "Ears and Nose (Front)",
  49039. image: {
  49040. source: "./media/characters/jess/ears-and-nose-front.svg"
  49041. }
  49042. },
  49043. earsAndNoseSide: {
  49044. height: math.unit(0.18109658741, "feet"),
  49045. name: "Ears and Nose (Side)",
  49046. image: {
  49047. source: "./media/characters/jess/ears-and-nose-side.svg"
  49048. }
  49049. },
  49050. },
  49051. [
  49052. {
  49053. name: "Normal",
  49054. height: math.unit(5 + 8/12, "feet"),
  49055. default: true
  49056. },
  49057. ]
  49058. ))
  49059. characterMakers.push(() => makeCharacter(
  49060. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49061. {
  49062. front: {
  49063. height: math.unit(6, "feet"),
  49064. weight: math.unit(6.64467e-7, "grams"),
  49065. name: "Front",
  49066. image: {
  49067. source: "./media/characters/wimpering/front.svg",
  49068. extra: 597/587,
  49069. bottom: 34/631
  49070. }
  49071. },
  49072. },
  49073. [
  49074. {
  49075. name: "Micro",
  49076. height: math.unit(0.4, "mm"),
  49077. default: true
  49078. },
  49079. ]
  49080. ))
  49081. characterMakers.push(() => makeCharacter(
  49082. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49083. {
  49084. front: {
  49085. height: math.unit(5 + 2/12, "feet"),
  49086. weight: math.unit(110, "lb"),
  49087. name: "Front",
  49088. image: {
  49089. source: "./media/characters/keltre/front.svg",
  49090. extra: 1099/1057,
  49091. bottom: 22/1121
  49092. }
  49093. },
  49094. back: {
  49095. height: math.unit(5 + 2/12, "feet"),
  49096. weight: math.unit(110, "lb"),
  49097. name: "Back",
  49098. image: {
  49099. source: "./media/characters/keltre/back.svg",
  49100. extra: 1095/1053,
  49101. bottom: 17/1112
  49102. }
  49103. },
  49104. dressed: {
  49105. height: math.unit(5 + 2/12, "feet"),
  49106. weight: math.unit(110, "lb"),
  49107. name: "Dressed",
  49108. image: {
  49109. source: "./media/characters/keltre/dressed.svg",
  49110. extra: 1099/1057,
  49111. bottom: 22/1121
  49112. }
  49113. },
  49114. winter: {
  49115. height: math.unit(5 + 2/12, "feet"),
  49116. weight: math.unit(110, "lb"),
  49117. name: "Winter",
  49118. image: {
  49119. source: "./media/characters/keltre/winter.svg",
  49120. extra: 1099/1057,
  49121. bottom: 22/1121
  49122. }
  49123. },
  49124. head: {
  49125. height: math.unit(1.61 * 0.86, "feet"),
  49126. name: "Head",
  49127. image: {
  49128. source: "./media/characters/keltre/head.svg",
  49129. extra: 534/421,
  49130. bottom: 0/534
  49131. }
  49132. },
  49133. hand: {
  49134. height: math.unit(1.3 * 0.86, "feet"),
  49135. name: "Hand",
  49136. image: {
  49137. source: "./media/characters/keltre/hand.svg"
  49138. }
  49139. },
  49140. foot: {
  49141. height: math.unit(1.8 * 0.86, "feet"),
  49142. name: "Foot",
  49143. image: {
  49144. source: "./media/characters/keltre/foot.svg"
  49145. }
  49146. },
  49147. },
  49148. [
  49149. {
  49150. name: "Fine",
  49151. height: math.unit(1, "inch")
  49152. },
  49153. {
  49154. name: "Dimnutive",
  49155. height: math.unit(4, "inches")
  49156. },
  49157. {
  49158. name: "Tiny",
  49159. height: math.unit(1, "foot")
  49160. },
  49161. {
  49162. name: "Small",
  49163. height: math.unit(3, "feet")
  49164. },
  49165. {
  49166. name: "Normal",
  49167. height: math.unit(5 + 2/12, "feet"),
  49168. default: true
  49169. },
  49170. ]
  49171. ))
  49172. characterMakers.push(() => makeCharacter(
  49173. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49174. {
  49175. front: {
  49176. height: math.unit(6 + 2/12, "feet"),
  49177. name: "Front",
  49178. image: {
  49179. source: "./media/characters/nox/front.svg",
  49180. extra: 1917/1830,
  49181. bottom: 74/1991
  49182. }
  49183. },
  49184. back: {
  49185. height: math.unit(6 + 2/12, "feet"),
  49186. name: "Back",
  49187. image: {
  49188. source: "./media/characters/nox/back.svg",
  49189. extra: 1896/1815,
  49190. bottom: 21/1917
  49191. }
  49192. },
  49193. head: {
  49194. height: math.unit(1.1, "feet"),
  49195. name: "Head",
  49196. image: {
  49197. source: "./media/characters/nox/head.svg",
  49198. extra: 874/704,
  49199. bottom: 0/874
  49200. }
  49201. },
  49202. tattoo: {
  49203. height: math.unit(0.729, "feet"),
  49204. name: "Tattoo",
  49205. image: {
  49206. source: "./media/characters/nox/tattoo.svg"
  49207. }
  49208. },
  49209. },
  49210. [
  49211. {
  49212. name: "Normal",
  49213. height: math.unit(6 + 2/12, "feet")
  49214. },
  49215. {
  49216. name: "Gigamacro",
  49217. height: math.unit(2, "earths"),
  49218. default: true
  49219. },
  49220. {
  49221. name: "Cosmic",
  49222. height: math.unit(867, "yottameters")
  49223. },
  49224. ]
  49225. ))
  49226. characterMakers.push(() => makeCharacter(
  49227. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49228. {
  49229. front: {
  49230. height: math.unit(6, "feet"),
  49231. weight: math.unit(150, "lb"),
  49232. name: "Front",
  49233. image: {
  49234. source: "./media/characters/caspian/front.svg",
  49235. extra: 1443/1359,
  49236. bottom: 0/1443
  49237. }
  49238. },
  49239. back: {
  49240. height: math.unit(6, "feet"),
  49241. weight: math.unit(150, "lb"),
  49242. name: "Back",
  49243. image: {
  49244. source: "./media/characters/caspian/back.svg",
  49245. extra: 1379/1309,
  49246. bottom: 0/1379
  49247. }
  49248. },
  49249. head: {
  49250. height: math.unit(0.9, "feet"),
  49251. name: "Head",
  49252. image: {
  49253. source: "./media/characters/caspian/head.svg",
  49254. extra: 692/492,
  49255. bottom: 0/692
  49256. }
  49257. },
  49258. headAlt: {
  49259. height: math.unit(0.95, "feet"),
  49260. name: "Head (Alt)",
  49261. image: {
  49262. source: "./media/characters/caspian/head-alt.svg",
  49263. extra: 668/508,
  49264. bottom: 0/668
  49265. }
  49266. },
  49267. hand: {
  49268. height: math.unit(0.8, "feet"),
  49269. name: "Hand",
  49270. image: {
  49271. source: "./media/characters/caspian/hand.svg"
  49272. }
  49273. },
  49274. paw: {
  49275. height: math.unit(0.95, "feet"),
  49276. name: "Paw",
  49277. image: {
  49278. source: "./media/characters/caspian/paw.svg"
  49279. }
  49280. },
  49281. },
  49282. [
  49283. {
  49284. name: "Normal",
  49285. height: math.unit(162, "feet"),
  49286. default: true
  49287. },
  49288. ]
  49289. ))
  49290. characterMakers.push(() => makeCharacter(
  49291. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49292. {
  49293. front: {
  49294. height: math.unit(6, "feet"),
  49295. name: "Front",
  49296. image: {
  49297. source: "./media/characters/myra-aisling/front.svg",
  49298. extra: 1268/1166,
  49299. bottom: 73/1341
  49300. }
  49301. },
  49302. back: {
  49303. height: math.unit(6, "feet"),
  49304. name: "Back",
  49305. image: {
  49306. source: "./media/characters/myra-aisling/back.svg",
  49307. extra: 1249/1149,
  49308. bottom: 79/1328
  49309. }
  49310. },
  49311. dressed: {
  49312. height: math.unit(6, "feet"),
  49313. name: "Dressed",
  49314. image: {
  49315. source: "./media/characters/myra-aisling/dressed.svg",
  49316. extra: 1290/1189,
  49317. bottom: 47/1337
  49318. }
  49319. },
  49320. hand: {
  49321. height: math.unit(1.1, "feet"),
  49322. name: "Hand",
  49323. image: {
  49324. source: "./media/characters/myra-aisling/hand.svg"
  49325. }
  49326. },
  49327. paw: {
  49328. height: math.unit(1.23, "feet"),
  49329. name: "Paw",
  49330. image: {
  49331. source: "./media/characters/myra-aisling/paw.svg"
  49332. }
  49333. },
  49334. },
  49335. [
  49336. {
  49337. name: "Normal",
  49338. height: math.unit(160, "feet"),
  49339. default: true
  49340. },
  49341. ]
  49342. ))
  49343. characterMakers.push(() => makeCharacter(
  49344. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49345. {
  49346. front: {
  49347. height: math.unit(6, "feet"),
  49348. name: "Front",
  49349. image: {
  49350. source: "./media/characters/tenley-sidero/front.svg",
  49351. extra: 1365/1276,
  49352. bottom: 47/1412
  49353. }
  49354. },
  49355. back: {
  49356. height: math.unit(6, "feet"),
  49357. name: "Back",
  49358. image: {
  49359. source: "./media/characters/tenley-sidero/back.svg",
  49360. extra: 1383/1283,
  49361. bottom: 35/1418
  49362. }
  49363. },
  49364. dressed: {
  49365. height: math.unit(6, "feet"),
  49366. name: "Dressed",
  49367. image: {
  49368. source: "./media/characters/tenley-sidero/dressed.svg",
  49369. extra: 1364/1275,
  49370. bottom: 42/1406
  49371. }
  49372. },
  49373. head: {
  49374. height: math.unit(1.47, "feet"),
  49375. name: "Head",
  49376. image: {
  49377. source: "./media/characters/tenley-sidero/head.svg",
  49378. extra: 610/490,
  49379. bottom: 0/610
  49380. }
  49381. },
  49382. },
  49383. [
  49384. {
  49385. name: "Normal",
  49386. height: math.unit(154, "feet"),
  49387. default: true
  49388. },
  49389. ]
  49390. ))
  49391. characterMakers.push(() => makeCharacter(
  49392. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49393. {
  49394. front: {
  49395. height: math.unit(5, "inches"),
  49396. name: "Front",
  49397. image: {
  49398. source: "./media/characters/mallory/front.svg",
  49399. extra: 1919/1678,
  49400. bottom: 29/1948
  49401. }
  49402. },
  49403. hand: {
  49404. height: math.unit(0.73, "inches"),
  49405. name: "Hand",
  49406. image: {
  49407. source: "./media/characters/mallory/hand.svg"
  49408. }
  49409. },
  49410. paw: {
  49411. height: math.unit(0.68, "inches"),
  49412. name: "Paw",
  49413. image: {
  49414. source: "./media/characters/mallory/paw.svg"
  49415. }
  49416. },
  49417. },
  49418. [
  49419. {
  49420. name: "Small",
  49421. height: math.unit(5, "inches"),
  49422. default: true
  49423. },
  49424. ]
  49425. ))
  49426. characterMakers.push(() => makeCharacter(
  49427. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49428. {
  49429. naked: {
  49430. height: math.unit(6, "feet"),
  49431. name: "Naked",
  49432. image: {
  49433. source: "./media/characters/mab/naked.svg",
  49434. extra: 1855/1757,
  49435. bottom: 208/2063
  49436. }
  49437. },
  49438. outside: {
  49439. height: math.unit(6, "feet"),
  49440. name: "Outside",
  49441. image: {
  49442. source: "./media/characters/mab/outside.svg",
  49443. extra: 1855/1757,
  49444. bottom: 208/2063
  49445. }
  49446. },
  49447. party: {
  49448. height: math.unit(6, "feet"),
  49449. name: "Party",
  49450. image: {
  49451. source: "./media/characters/mab/party.svg",
  49452. extra: 1855/1757,
  49453. bottom: 208/2063
  49454. }
  49455. },
  49456. },
  49457. [
  49458. {
  49459. name: "Normal",
  49460. height: math.unit(165, "feet"),
  49461. default: true
  49462. },
  49463. ]
  49464. ))
  49465. characterMakers.push(() => makeCharacter(
  49466. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49467. {
  49468. front: {
  49469. height: math.unit(12, "feet"),
  49470. weight: math.unit(4000, "lb"),
  49471. name: "Front",
  49472. image: {
  49473. source: "./media/characters/winter/front.svg",
  49474. extra: 1286/943,
  49475. bottom: 112/1398
  49476. }
  49477. },
  49478. frontNsfw: {
  49479. height: math.unit(12, "feet"),
  49480. weight: math.unit(4000, "lb"),
  49481. name: "Front (NSFW)",
  49482. image: {
  49483. source: "./media/characters/winter/front-nsfw.svg",
  49484. extra: 1286/943,
  49485. bottom: 112/1398
  49486. }
  49487. },
  49488. dick: {
  49489. height: math.unit(3.79, "feet"),
  49490. name: "Dick",
  49491. image: {
  49492. source: "./media/characters/winter/dick.svg"
  49493. }
  49494. },
  49495. },
  49496. [
  49497. {
  49498. name: "Big",
  49499. height: math.unit(12, "feet"),
  49500. default: true
  49501. },
  49502. ]
  49503. ))
  49504. characterMakers.push(() => makeCharacter(
  49505. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49506. {
  49507. front: {
  49508. height: math.unit(4.1, "inches"),
  49509. name: "Front",
  49510. image: {
  49511. source: "./media/characters/alto/front.svg",
  49512. extra: 736/627,
  49513. bottom: 90/826
  49514. }
  49515. },
  49516. },
  49517. [
  49518. {
  49519. name: "Normal",
  49520. height: math.unit(4.1, "inches"),
  49521. default: true
  49522. },
  49523. ]
  49524. ))
  49525. characterMakers.push(() => makeCharacter(
  49526. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49527. {
  49528. sitting: {
  49529. height: math.unit(3, "feet"),
  49530. name: "Sitting",
  49531. image: {
  49532. source: "./media/characters/ratstrid-v/sitting.svg",
  49533. extra: 355/310,
  49534. bottom: 136/491
  49535. }
  49536. },
  49537. },
  49538. [
  49539. {
  49540. name: "Normal",
  49541. height: math.unit(3, "feet"),
  49542. default: true
  49543. },
  49544. ]
  49545. ))
  49546. characterMakers.push(() => makeCharacter(
  49547. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49548. {
  49549. back: {
  49550. height: math.unit(6, "feet"),
  49551. weight: math.unit(350, "lb"),
  49552. name: "Back",
  49553. image: {
  49554. source: "./media/characters/siz/back.svg",
  49555. extra: 1449/1274,
  49556. bottom: 13/1462
  49557. }
  49558. },
  49559. },
  49560. [
  49561. {
  49562. name: "Over-Overcompressed",
  49563. height: math.unit(8, "feet")
  49564. },
  49565. {
  49566. name: "Overcompressed",
  49567. height: math.unit(32, "feet")
  49568. },
  49569. {
  49570. name: "Compressed",
  49571. height: math.unit(128, "feet"),
  49572. default: true
  49573. },
  49574. {
  49575. name: "Half-Compressed",
  49576. height: math.unit(512, "feet")
  49577. },
  49578. {
  49579. name: "Quarter-Compressed",
  49580. height: math.unit(2048, "feet")
  49581. },
  49582. {
  49583. name: "Uncompressed?",
  49584. height: math.unit(8192, "feet")
  49585. },
  49586. ]
  49587. ))
  49588. characterMakers.push(() => makeCharacter(
  49589. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49590. {
  49591. front: {
  49592. height: math.unit(5 + 9/12, "feet"),
  49593. weight: math.unit(150, "lb"),
  49594. name: "Front",
  49595. image: {
  49596. source: "./media/characters/ven/front.svg",
  49597. extra: 1372/1320,
  49598. bottom: 73/1445
  49599. }
  49600. },
  49601. side: {
  49602. height: math.unit(5 + 9/12, "feet"),
  49603. weight: math.unit(1150, "lb"),
  49604. name: "Side",
  49605. image: {
  49606. source: "./media/characters/ven/side.svg",
  49607. extra: 1119/1070,
  49608. bottom: 42/1161
  49609. },
  49610. default: true
  49611. },
  49612. },
  49613. [
  49614. {
  49615. name: "Normal",
  49616. height: math.unit(5 + 9/12, "feet"),
  49617. default: true
  49618. },
  49619. ]
  49620. ))
  49621. characterMakers.push(() => makeCharacter(
  49622. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49623. {
  49624. front: {
  49625. height: math.unit(12, "feet"),
  49626. weight: math.unit(1000, "kg"),
  49627. name: "Front",
  49628. image: {
  49629. source: "./media/characters/maple/front.svg",
  49630. extra: 1193/1081,
  49631. bottom: 22/1215
  49632. }
  49633. },
  49634. },
  49635. [
  49636. {
  49637. name: "Compressed",
  49638. height: math.unit(7, "feet")
  49639. },
  49640. {
  49641. name: "Normal",
  49642. height: math.unit(12, "feet"),
  49643. default: true
  49644. },
  49645. ]
  49646. ))
  49647. characterMakers.push(() => makeCharacter(
  49648. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49649. {
  49650. front: {
  49651. height: math.unit(9, "feet"),
  49652. weight: math.unit(1500, "lb"),
  49653. name: "Front",
  49654. image: {
  49655. source: "./media/characters/nora/front.svg",
  49656. extra: 1348/1286,
  49657. bottom: 218/1566
  49658. }
  49659. },
  49660. erect: {
  49661. height: math.unit(9, "feet"),
  49662. weight: math.unit(11500, "lb"),
  49663. name: "Erect",
  49664. image: {
  49665. source: "./media/characters/nora/erect.svg",
  49666. extra: 1488/1433,
  49667. bottom: 133/1621
  49668. }
  49669. },
  49670. },
  49671. [
  49672. {
  49673. name: "Normal",
  49674. height: math.unit(9, "feet"),
  49675. default: true
  49676. },
  49677. ]
  49678. ))
  49679. characterMakers.push(() => makeCharacter(
  49680. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49681. {
  49682. front: {
  49683. height: math.unit(25, "feet"),
  49684. weight: math.unit(27500, "lb"),
  49685. name: "Front",
  49686. image: {
  49687. source: "./media/characters/north-caudin/front.svg",
  49688. extra: 1184/1082,
  49689. bottom: 23/1207
  49690. }
  49691. },
  49692. },
  49693. [
  49694. {
  49695. name: "Compressed",
  49696. height: math.unit(10, "feet")
  49697. },
  49698. {
  49699. name: "Normal",
  49700. height: math.unit(25, "feet"),
  49701. default: true
  49702. },
  49703. ]
  49704. ))
  49705. characterMakers.push(() => makeCharacter(
  49706. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49707. {
  49708. front: {
  49709. height: math.unit(9, "feet"),
  49710. weight: math.unit(1250, "lb"),
  49711. name: "Front",
  49712. image: {
  49713. source: "./media/characters/merrian/front.svg",
  49714. extra: 2393/2304,
  49715. bottom: 40/2433
  49716. }
  49717. },
  49718. },
  49719. [
  49720. {
  49721. name: "Normal",
  49722. height: math.unit(9, "feet"),
  49723. default: true
  49724. },
  49725. ]
  49726. ))
  49727. characterMakers.push(() => makeCharacter(
  49728. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49729. {
  49730. front: {
  49731. height: math.unit(9, "feet"),
  49732. weight: math.unit(1000, "lb"),
  49733. name: "Front",
  49734. image: {
  49735. source: "./media/characters/hazel/front.svg",
  49736. extra: 2351/2298,
  49737. bottom: 38/2389
  49738. }
  49739. },
  49740. },
  49741. [
  49742. {
  49743. name: "Normal",
  49744. height: math.unit(9, "feet"),
  49745. default: true
  49746. },
  49747. ]
  49748. ))
  49749. characterMakers.push(() => makeCharacter(
  49750. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49751. {
  49752. front: {
  49753. height: math.unit(13, "feet"),
  49754. weight: math.unit(3200, "lb"),
  49755. name: "Front",
  49756. image: {
  49757. source: "./media/characters/emma/front.svg",
  49758. extra: 2263/2029,
  49759. bottom: 68/2331
  49760. }
  49761. },
  49762. },
  49763. [
  49764. {
  49765. name: "Normal",
  49766. height: math.unit(13, "feet"),
  49767. default: true
  49768. },
  49769. ]
  49770. ))
  49771. characterMakers.push(() => makeCharacter(
  49772. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49773. {
  49774. front: {
  49775. height: math.unit(11 + 9/12, "feet"),
  49776. weight: math.unit(2500, "lb"),
  49777. name: "Front",
  49778. image: {
  49779. source: "./media/characters/ilumina/front.svg",
  49780. extra: 2248/2209,
  49781. bottom: 164/2412
  49782. }
  49783. },
  49784. },
  49785. [
  49786. {
  49787. name: "Normal",
  49788. height: math.unit(11 + 9/12, "feet"),
  49789. default: true
  49790. },
  49791. ]
  49792. ))
  49793. characterMakers.push(() => makeCharacter(
  49794. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49795. {
  49796. front: {
  49797. height: math.unit(8 + 10/12, "feet"),
  49798. weight: math.unit(1350, "lb"),
  49799. name: "Front",
  49800. image: {
  49801. source: "./media/characters/moonshine/front.svg",
  49802. extra: 2395/2288,
  49803. bottom: 40/2435
  49804. }
  49805. },
  49806. },
  49807. [
  49808. {
  49809. name: "Normal",
  49810. height: math.unit(8 + 10/12, "feet"),
  49811. default: true
  49812. },
  49813. ]
  49814. ))
  49815. characterMakers.push(() => makeCharacter(
  49816. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49817. {
  49818. front: {
  49819. height: math.unit(14, "feet"),
  49820. weight: math.unit(3400, "lb"),
  49821. name: "Front",
  49822. image: {
  49823. source: "./media/characters/aletia/front.svg",
  49824. extra: 1185/1052,
  49825. bottom: 21/1206
  49826. }
  49827. },
  49828. },
  49829. [
  49830. {
  49831. name: "Compressed",
  49832. height: math.unit(8, "feet")
  49833. },
  49834. {
  49835. name: "Normal",
  49836. height: math.unit(14, "feet"),
  49837. default: true
  49838. },
  49839. ]
  49840. ))
  49841. characterMakers.push(() => makeCharacter(
  49842. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49843. {
  49844. front: {
  49845. height: math.unit(17, "feet"),
  49846. weight: math.unit(6500, "lb"),
  49847. name: "Front",
  49848. image: {
  49849. source: "./media/characters/deidra/front.svg",
  49850. extra: 1201/1081,
  49851. bottom: 16/1217
  49852. }
  49853. },
  49854. },
  49855. [
  49856. {
  49857. name: "Compressed",
  49858. height: math.unit(9 + 6/12, "feet")
  49859. },
  49860. {
  49861. name: "Normal",
  49862. height: math.unit(17, "feet"),
  49863. default: true
  49864. },
  49865. ]
  49866. ))
  49867. characterMakers.push(() => makeCharacter(
  49868. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49869. {
  49870. front: {
  49871. height: math.unit(7 + 4/12, "feet"),
  49872. weight: math.unit(280, "lb"),
  49873. name: "Front",
  49874. image: {
  49875. source: "./media/characters/freki-yrmori/front.svg",
  49876. extra: 1286/1182,
  49877. bottom: 29/1315
  49878. }
  49879. },
  49880. maw: {
  49881. height: math.unit(0.9, "feet"),
  49882. name: "Maw",
  49883. image: {
  49884. source: "./media/characters/freki-yrmori/maw.svg"
  49885. }
  49886. },
  49887. },
  49888. [
  49889. {
  49890. name: "Normal",
  49891. height: math.unit(7 + 4/12, "feet"),
  49892. default: true
  49893. },
  49894. {
  49895. name: "Macro",
  49896. height: math.unit(38.5, "meters")
  49897. },
  49898. ]
  49899. ))
  49900. characterMakers.push(() => makeCharacter(
  49901. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49902. {
  49903. side: {
  49904. height: math.unit(47.2, "meters"),
  49905. weight: math.unit(10000, "tons"),
  49906. name: "Side",
  49907. image: {
  49908. source: "./media/characters/aetherios/side.svg",
  49909. extra: 2363/642,
  49910. bottom: 221/2584
  49911. }
  49912. },
  49913. top: {
  49914. height: math.unit(240, "meters"),
  49915. weight: math.unit(10000, "tons"),
  49916. name: "Top",
  49917. image: {
  49918. source: "./media/characters/aetherios/top.svg"
  49919. }
  49920. },
  49921. bottom: {
  49922. height: math.unit(240, "meters"),
  49923. weight: math.unit(10000, "tons"),
  49924. name: "Bottom",
  49925. image: {
  49926. source: "./media/characters/aetherios/bottom.svg"
  49927. }
  49928. },
  49929. head: {
  49930. height: math.unit(38.6, "meters"),
  49931. name: "Head",
  49932. image: {
  49933. source: "./media/characters/aetherios/head.svg",
  49934. extra: 1335/1112,
  49935. bottom: 0/1335
  49936. }
  49937. },
  49938. front: {
  49939. height: math.unit(29, "meters"),
  49940. name: "Front",
  49941. image: {
  49942. source: "./media/characters/aetherios/front.svg",
  49943. extra: 1266/953,
  49944. bottom: 158/1424
  49945. }
  49946. },
  49947. maw: {
  49948. height: math.unit(16.37, "meters"),
  49949. name: "Maw",
  49950. image: {
  49951. source: "./media/characters/aetherios/maw.svg",
  49952. extra: 748/637,
  49953. bottom: 0/748
  49954. },
  49955. extraAttributes: {
  49956. preyCapacity: {
  49957. name: "Capacity",
  49958. power: 3,
  49959. type: "volume",
  49960. base: math.unit(1000, "people")
  49961. },
  49962. tongueSize: {
  49963. name: "Tongue Size",
  49964. power: 2,
  49965. type: "area",
  49966. base: math.unit(21, "m^2")
  49967. }
  49968. }
  49969. },
  49970. forepaw: {
  49971. height: math.unit(18, "meters"),
  49972. name: "Forepaw",
  49973. image: {
  49974. source: "./media/characters/aetherios/forepaw.svg"
  49975. }
  49976. },
  49977. hindpaw: {
  49978. height: math.unit(23, "meters"),
  49979. name: "Hindpaw",
  49980. image: {
  49981. source: "./media/characters/aetherios/hindpaw.svg"
  49982. }
  49983. },
  49984. genitals: {
  49985. height: math.unit(42, "meters"),
  49986. name: "Genitals",
  49987. image: {
  49988. source: "./media/characters/aetherios/genitals.svg"
  49989. }
  49990. },
  49991. },
  49992. [
  49993. {
  49994. name: "Normal",
  49995. height: math.unit(47.2, "meters"),
  49996. default: true
  49997. },
  49998. {
  49999. name: "Macro",
  50000. height: math.unit(160, "meters")
  50001. },
  50002. {
  50003. name: "Mega",
  50004. height: math.unit(1.87, "km")
  50005. },
  50006. {
  50007. name: "Giga",
  50008. height: math.unit(40000, "km")
  50009. },
  50010. {
  50011. name: "Stellar",
  50012. height: math.unit(158000000, "km")
  50013. },
  50014. {
  50015. name: "Cosmic",
  50016. height: math.unit(9.46e12, "km")
  50017. },
  50018. ]
  50019. ))
  50020. characterMakers.push(() => makeCharacter(
  50021. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50022. {
  50023. front: {
  50024. height: math.unit(5 + 4/12, "feet"),
  50025. weight: math.unit(80, "lb"),
  50026. name: "Front",
  50027. image: {
  50028. source: "./media/characters/mizu-gieeg/front.svg",
  50029. extra: 850/709,
  50030. bottom: 52/902
  50031. }
  50032. },
  50033. back: {
  50034. height: math.unit(5 + 4/12, "feet"),
  50035. weight: math.unit(80, "lb"),
  50036. name: "Back",
  50037. image: {
  50038. source: "./media/characters/mizu-gieeg/back.svg",
  50039. extra: 882/745,
  50040. bottom: 25/907
  50041. }
  50042. },
  50043. },
  50044. [
  50045. {
  50046. name: "Normal",
  50047. height: math.unit(5 + 4/12, "feet"),
  50048. default: true
  50049. },
  50050. ]
  50051. ))
  50052. characterMakers.push(() => makeCharacter(
  50053. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50054. {
  50055. front: {
  50056. height: math.unit(6, "feet"),
  50057. name: "Front",
  50058. image: {
  50059. source: "./media/characters/roselle-st-papier/front.svg",
  50060. extra: 1430/1280,
  50061. bottom: 37/1467
  50062. }
  50063. },
  50064. back: {
  50065. height: math.unit(6, "feet"),
  50066. name: "Back",
  50067. image: {
  50068. source: "./media/characters/roselle-st-papier/back.svg",
  50069. extra: 1491/1296,
  50070. bottom: 23/1514
  50071. }
  50072. },
  50073. ear: {
  50074. height: math.unit(1.26, "feet"),
  50075. name: "Ear",
  50076. image: {
  50077. source: "./media/characters/roselle-st-papier/ear.svg"
  50078. }
  50079. },
  50080. },
  50081. [
  50082. {
  50083. name: "Normal",
  50084. height: math.unit(150, "feet"),
  50085. default: true
  50086. },
  50087. ]
  50088. ))
  50089. characterMakers.push(() => makeCharacter(
  50090. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50091. {
  50092. front: {
  50093. height: math.unit(1, "inches"),
  50094. name: "Front",
  50095. image: {
  50096. source: "./media/characters/valargent/front.svg",
  50097. extra: 1825/1694,
  50098. bottom: 62/1887
  50099. }
  50100. },
  50101. back: {
  50102. height: math.unit(1, "inches"),
  50103. name: "Back",
  50104. image: {
  50105. source: "./media/characters/valargent/back.svg",
  50106. extra: 1775/1682,
  50107. bottom: 88/1863
  50108. }
  50109. },
  50110. },
  50111. [
  50112. {
  50113. name: "Micro",
  50114. height: math.unit(1, "inch"),
  50115. default: true
  50116. },
  50117. ]
  50118. ))
  50119. characterMakers.push(() => makeCharacter(
  50120. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50121. {
  50122. front: {
  50123. height: math.unit(3.4, "meters"),
  50124. name: "Front",
  50125. image: {
  50126. source: "./media/characters/zarina/front.svg",
  50127. extra: 1733/1425,
  50128. bottom: 93/1826
  50129. }
  50130. },
  50131. squatting: {
  50132. height: math.unit(2.14, "meters"),
  50133. name: "Squatting",
  50134. image: {
  50135. source: "./media/characters/zarina/squatting.svg",
  50136. extra: 1073/788,
  50137. bottom: 63/1136
  50138. }
  50139. },
  50140. back: {
  50141. height: math.unit(2.14, "meters"),
  50142. name: "Back",
  50143. image: {
  50144. source: "./media/characters/zarina/back.svg",
  50145. extra: 1128/885,
  50146. bottom: 0/1128
  50147. }
  50148. },
  50149. },
  50150. [
  50151. {
  50152. name: "Normal",
  50153. height: math.unit(3.4, "meters"),
  50154. default: true
  50155. },
  50156. {
  50157. name: "Big",
  50158. height: math.unit(5, "meters")
  50159. },
  50160. {
  50161. name: "Macro",
  50162. height: math.unit(110, "meters")
  50163. },
  50164. ]
  50165. ))
  50166. characterMakers.push(() => makeCharacter(
  50167. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50168. {
  50169. front: {
  50170. height: math.unit(7, "feet"),
  50171. name: "Front",
  50172. image: {
  50173. source: "./media/characters/ventus-astro-fox/front.svg",
  50174. extra: 1792/1623,
  50175. bottom: 28/1820
  50176. }
  50177. },
  50178. back: {
  50179. height: math.unit(7, "feet"),
  50180. name: "Back",
  50181. image: {
  50182. source: "./media/characters/ventus-astro-fox/back.svg",
  50183. extra: 1789/1620,
  50184. bottom: 31/1820
  50185. }
  50186. },
  50187. outfit: {
  50188. height: math.unit(7, "feet"),
  50189. name: "Outfit",
  50190. image: {
  50191. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50192. extra: 1054/925,
  50193. bottom: 15/1069
  50194. }
  50195. },
  50196. head: {
  50197. height: math.unit(1.12, "feet"),
  50198. name: "Head",
  50199. image: {
  50200. source: "./media/characters/ventus-astro-fox/head.svg",
  50201. extra: 866/504,
  50202. bottom: 0/866
  50203. }
  50204. },
  50205. hand: {
  50206. height: math.unit(1, "feet"),
  50207. name: "Hand",
  50208. image: {
  50209. source: "./media/characters/ventus-astro-fox/hand.svg"
  50210. }
  50211. },
  50212. paw: {
  50213. height: math.unit(1.5, "feet"),
  50214. name: "Paw",
  50215. image: {
  50216. source: "./media/characters/ventus-astro-fox/paw.svg"
  50217. }
  50218. },
  50219. },
  50220. [
  50221. {
  50222. name: "Normal",
  50223. height: math.unit(7, "feet"),
  50224. default: true
  50225. },
  50226. {
  50227. name: "Macro",
  50228. height: math.unit(200, "feet")
  50229. },
  50230. {
  50231. name: "Cosmic",
  50232. height: math.unit(3, "universes")
  50233. },
  50234. ]
  50235. ))
  50236. characterMakers.push(() => makeCharacter(
  50237. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50238. {
  50239. front: {
  50240. height: math.unit(3, "meters"),
  50241. weight: math.unit(7000, "lb"),
  50242. name: "Front",
  50243. image: {
  50244. source: "./media/characters/core-t/front.svg",
  50245. extra: 5729/4941,
  50246. bottom: 1129/6858
  50247. }
  50248. },
  50249. },
  50250. [
  50251. {
  50252. name: "Big",
  50253. height: math.unit(3, "meters"),
  50254. default: true
  50255. },
  50256. ]
  50257. ))
  50258. characterMakers.push(() => makeCharacter(
  50259. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50260. {
  50261. normal: {
  50262. height: math.unit(6 + 6/12, "feet"),
  50263. weight: math.unit(275, "lb"),
  50264. name: "Front",
  50265. image: {
  50266. source: "./media/characters/cadbunny/normal.svg",
  50267. extra: 1129/947,
  50268. bottom: 93/1222
  50269. },
  50270. default: true,
  50271. form: "normal"
  50272. },
  50273. gigantamax: {
  50274. height: math.unit(26, "feet"),
  50275. weight: math.unit(16000, "lb"),
  50276. name: "Front",
  50277. image: {
  50278. source: "./media/characters/cadbunny/gigantamax.svg",
  50279. extra: 1133/944,
  50280. bottom: 90/1223
  50281. },
  50282. default: true,
  50283. form: "gigantamax"
  50284. },
  50285. },
  50286. [
  50287. {
  50288. name: "Normal",
  50289. height: math.unit(6 + 6/12, "feet"),
  50290. default: true,
  50291. form: "normal"
  50292. },
  50293. {
  50294. name: "Small",
  50295. height: math.unit(26, "feet"),
  50296. default: true,
  50297. form: "gigantamax"
  50298. },
  50299. {
  50300. name: "Large",
  50301. height: math.unit(78, "feet"),
  50302. form: "gigantamax"
  50303. },
  50304. ],
  50305. {
  50306. "normal": {
  50307. name: "Normal",
  50308. default: true
  50309. },
  50310. "gigantamax": {
  50311. name: "Gigantamax"
  50312. }
  50313. }
  50314. ))
  50315. characterMakers.push(() => makeCharacter(
  50316. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50317. {
  50318. anthroFront: {
  50319. height: math.unit(8, "feet"),
  50320. weight: math.unit(300, "lb"),
  50321. name: "Front",
  50322. image: {
  50323. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50324. extra: 1272/1176,
  50325. bottom: 53/1325
  50326. },
  50327. form: "anthro",
  50328. default: true
  50329. },
  50330. feralSide: {
  50331. height: math.unit(4, "feet"),
  50332. weight: math.unit(250, "lb"),
  50333. name: "Side",
  50334. image: {
  50335. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50336. extra: 731/621,
  50337. bottom: 0/731
  50338. },
  50339. form: "feral",
  50340. default: true
  50341. },
  50342. },
  50343. [
  50344. {
  50345. name: "Regular",
  50346. height: math.unit(8, "feet"),
  50347. form: "anthro"
  50348. },
  50349. {
  50350. name: "Macro",
  50351. height: math.unit(250, "feet"),
  50352. form: "anthro",
  50353. default: true
  50354. },
  50355. {
  50356. name: "Regular",
  50357. height: math.unit(4, "feet"),
  50358. form: "feral"
  50359. },
  50360. {
  50361. name: "Macro",
  50362. height: math.unit(125, "feet"),
  50363. form: "feral",
  50364. default: true
  50365. },
  50366. ],
  50367. {
  50368. "anthro": {
  50369. name: "Anthro",
  50370. default: true
  50371. },
  50372. "feral": {
  50373. name: "Feral",
  50374. },
  50375. }
  50376. ))
  50377. characterMakers.push(() => makeCharacter(
  50378. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50379. {
  50380. front: {
  50381. height: math.unit(11 + 10/12, "feet"),
  50382. weight: math.unit(1587, "kg"),
  50383. name: "Front",
  50384. image: {
  50385. source: "./media/characters/maple-javira-dragon/front.svg",
  50386. extra: 1136/744,
  50387. bottom: 73/1209
  50388. }
  50389. },
  50390. side: {
  50391. height: math.unit(11 + 10/12, "feet"),
  50392. weight: math.unit(1587, "kg"),
  50393. name: "Side",
  50394. image: {
  50395. source: "./media/characters/maple-javira-dragon/side.svg",
  50396. extra: 712/505,
  50397. bottom: 17/729
  50398. }
  50399. },
  50400. head: {
  50401. height: math.unit(8.05, "feet"),
  50402. name: "Head",
  50403. image: {
  50404. source: "./media/characters/maple-javira-dragon/head.svg",
  50405. extra: 1420/1344,
  50406. bottom: 0/1420
  50407. }
  50408. },
  50409. },
  50410. [
  50411. {
  50412. name: "Normal",
  50413. height: math.unit(11 + 10/12, "feet"),
  50414. default: true
  50415. },
  50416. ]
  50417. ))
  50418. characterMakers.push(() => makeCharacter(
  50419. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50420. {
  50421. front: {
  50422. height: math.unit(117, "cm"),
  50423. weight: math.unit(50, "kg"),
  50424. name: "Front",
  50425. image: {
  50426. source: "./media/characters/sonia-wyverntail/front.svg",
  50427. extra: 708/592,
  50428. bottom: 25/733
  50429. }
  50430. },
  50431. },
  50432. [
  50433. {
  50434. name: "Normal",
  50435. height: math.unit(117, "cm"),
  50436. default: true
  50437. },
  50438. ]
  50439. ))
  50440. characterMakers.push(() => makeCharacter(
  50441. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50442. {
  50443. front: {
  50444. height: math.unit(6 + 5/12, "feet"),
  50445. name: "Front",
  50446. image: {
  50447. source: "./media/characters/micah/front.svg",
  50448. extra: 1758/1546,
  50449. bottom: 214/1972
  50450. }
  50451. },
  50452. },
  50453. [
  50454. {
  50455. name: "Normal",
  50456. height: math.unit(6 + 5/12, "feet"),
  50457. default: true
  50458. },
  50459. ]
  50460. ))
  50461. characterMakers.push(() => makeCharacter(
  50462. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50463. {
  50464. front: {
  50465. height: math.unit(5 + 10/12, "feet"),
  50466. weight: math.unit(220, "lb"),
  50467. name: "Front",
  50468. image: {
  50469. source: "./media/characters/zarya/front.svg",
  50470. extra: 593/572,
  50471. bottom: 50/643
  50472. }
  50473. },
  50474. back: {
  50475. height: math.unit(5 + 10/12, "feet"),
  50476. weight: math.unit(220, "lb"),
  50477. name: "Back",
  50478. image: {
  50479. source: "./media/characters/zarya/back.svg",
  50480. extra: 603/582,
  50481. bottom: 38/641
  50482. }
  50483. },
  50484. },
  50485. [
  50486. {
  50487. name: "Normal",
  50488. height: math.unit(5 + 10/12, "feet"),
  50489. default: true
  50490. },
  50491. ]
  50492. ))
  50493. characterMakers.push(() => makeCharacter(
  50494. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50495. {
  50496. front: {
  50497. height: math.unit(7.5, "feet"),
  50498. name: "Front",
  50499. image: {
  50500. source: "./media/characters/sven-hatisson/front.svg",
  50501. extra: 917/857,
  50502. bottom: 42/959
  50503. }
  50504. },
  50505. back: {
  50506. height: math.unit(7.5, "feet"),
  50507. name: "Back",
  50508. image: {
  50509. source: "./media/characters/sven-hatisson/back.svg",
  50510. extra: 903/856,
  50511. bottom: 15/918
  50512. }
  50513. },
  50514. },
  50515. [
  50516. {
  50517. name: "Base Height",
  50518. height: math.unit(7.5, "feet")
  50519. },
  50520. {
  50521. name: "Usual Height",
  50522. height: math.unit(13.5, "feet"),
  50523. default: true
  50524. },
  50525. {
  50526. name: "Smaller Macro",
  50527. height: math.unit(85, "feet")
  50528. },
  50529. {
  50530. name: "Moderate Macro",
  50531. height: math.unit(320, "feet")
  50532. },
  50533. {
  50534. name: "Large Macro",
  50535. height: math.unit(1000, "feet")
  50536. },
  50537. {
  50538. name: "Largest Size",
  50539. height: math.unit(2, "miles")
  50540. },
  50541. ]
  50542. ))
  50543. characterMakers.push(() => makeCharacter(
  50544. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50545. {
  50546. side: {
  50547. height: math.unit(1.8, "meters"),
  50548. weight: math.unit(275, "kg"),
  50549. name: "Side",
  50550. image: {
  50551. source: "./media/characters/terra/side.svg",
  50552. extra: 1273/1147,
  50553. bottom: 0/1273
  50554. }
  50555. },
  50556. },
  50557. [
  50558. {
  50559. name: "Normal",
  50560. height: math.unit(16.2, "meters"),
  50561. default: true
  50562. },
  50563. ]
  50564. ))
  50565. characterMakers.push(() => makeCharacter(
  50566. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50567. {
  50568. borzoiFront: {
  50569. height: math.unit(6 + 9/12, "feet"),
  50570. name: "Front",
  50571. image: {
  50572. source: "./media/characters/rae/borzoi-front.svg",
  50573. extra: 1161/1098,
  50574. bottom: 31/1192
  50575. },
  50576. form: "borzoi",
  50577. default: true
  50578. },
  50579. werewolfFront: {
  50580. height: math.unit(8 + 7/12, "feet"),
  50581. name: "Front",
  50582. image: {
  50583. source: "./media/characters/rae/werewolf-front.svg",
  50584. extra: 1411/1334,
  50585. bottom: 127/1538
  50586. },
  50587. form: "werewolf",
  50588. default: true
  50589. },
  50590. },
  50591. [
  50592. {
  50593. name: "Normal",
  50594. height: math.unit(6 + 9/12, "feet"),
  50595. default: true,
  50596. form: "borzoi"
  50597. },
  50598. {
  50599. name: "Normal",
  50600. height: math.unit(8 + 7/12, "feet"),
  50601. default: true,
  50602. form: "werewolf"
  50603. },
  50604. ],
  50605. {
  50606. "borzoi": {
  50607. name: "Borzoi",
  50608. default: true
  50609. },
  50610. "werewolf": {
  50611. name: "Werewolf",
  50612. },
  50613. }
  50614. ))
  50615. characterMakers.push(() => makeCharacter(
  50616. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50617. {
  50618. front: {
  50619. height: math.unit(8 + 7/12, "feet"),
  50620. weight: math.unit(482, "lb"),
  50621. name: "Front",
  50622. image: {
  50623. source: "./media/characters/kit/front.svg",
  50624. extra: 1247/1103,
  50625. bottom: 41/1288
  50626. }
  50627. },
  50628. back: {
  50629. height: math.unit(8 + 7/12, "feet"),
  50630. weight: math.unit(482, "lb"),
  50631. name: "Back",
  50632. image: {
  50633. source: "./media/characters/kit/back.svg",
  50634. extra: 1252/1123,
  50635. bottom: 21/1273
  50636. }
  50637. },
  50638. paw: {
  50639. height: math.unit(1.46, "feet"),
  50640. name: "Paw",
  50641. image: {
  50642. source: "./media/characters/kit/paw.svg"
  50643. }
  50644. },
  50645. },
  50646. [
  50647. {
  50648. name: "Normal",
  50649. height: math.unit(2.61, "meters"),
  50650. default: true
  50651. },
  50652. {
  50653. name: "\"Tall\"",
  50654. height: math.unit(8.21, "meters")
  50655. },
  50656. {
  50657. name: "Tall",
  50658. height: math.unit(19.6, "meters")
  50659. },
  50660. {
  50661. name: "Very Tall",
  50662. height: math.unit(57.91, "meters")
  50663. },
  50664. {
  50665. name: "Semi-Macro",
  50666. height: math.unit(138.64, "meters")
  50667. },
  50668. {
  50669. name: "Macro",
  50670. height: math.unit(831.99, "meters")
  50671. },
  50672. {
  50673. name: "EX-Macro",
  50674. height: math.unit(96451121, "meters")
  50675. },
  50676. {
  50677. name: "S1-Omnipotent",
  50678. height: math.unit(4.42074e+9, "meters")
  50679. },
  50680. {
  50681. name: "S2-Omnipotent",
  50682. height: math.unit(9.42074e+17, "meters")
  50683. },
  50684. {
  50685. name: "Omnipotent",
  50686. height: math.unit(4.23112e+24, "meters")
  50687. },
  50688. {
  50689. name: "Hypergod",
  50690. height: math.unit(5.05176e+27, "meters")
  50691. },
  50692. {
  50693. name: "Hypergod-EX",
  50694. height: math.unit(9.45532e+49, "meters")
  50695. },
  50696. {
  50697. name: "Hypergod-SP",
  50698. height: math.unit(9.45532e+195, "meters")
  50699. },
  50700. ]
  50701. ))
  50702. characterMakers.push(() => makeCharacter(
  50703. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50704. {
  50705. side: {
  50706. height: math.unit(0.6, "meters"),
  50707. weight: math.unit(24, "kg"),
  50708. name: "Side",
  50709. image: {
  50710. source: "./media/characters/celeste/side.svg",
  50711. extra: 810/517,
  50712. bottom: 53/863
  50713. }
  50714. },
  50715. },
  50716. [
  50717. {
  50718. name: "Velociraptor",
  50719. height: math.unit(0.6, "meters"),
  50720. default: true
  50721. },
  50722. {
  50723. name: "Utahraptor",
  50724. height: math.unit(1.8, "meters")
  50725. },
  50726. {
  50727. name: "Gallimimus",
  50728. height: math.unit(4.0, "meters")
  50729. },
  50730. {
  50731. name: "Large",
  50732. height: math.unit(20, "meters")
  50733. },
  50734. {
  50735. name: "Planetary",
  50736. height: math.unit(50, "megameters")
  50737. },
  50738. {
  50739. name: "Stellar",
  50740. height: math.unit(1.5, "gigameters")
  50741. },
  50742. {
  50743. name: "Galactic",
  50744. height: math.unit(100, "exameters")
  50745. },
  50746. ]
  50747. ))
  50748. characterMakers.push(() => makeCharacter(
  50749. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50750. {
  50751. front: {
  50752. height: math.unit(6, "feet"),
  50753. weight: math.unit(210, "lb"),
  50754. name: "Front",
  50755. image: {
  50756. source: "./media/characters/glacia/front.svg",
  50757. extra: 958/901,
  50758. bottom: 45/1003
  50759. }
  50760. },
  50761. },
  50762. [
  50763. {
  50764. name: "Macro",
  50765. height: math.unit(1000, "meters"),
  50766. default: true
  50767. },
  50768. ]
  50769. ))
  50770. characterMakers.push(() => makeCharacter(
  50771. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50772. {
  50773. front: {
  50774. height: math.unit(4, "meters"),
  50775. name: "Front",
  50776. image: {
  50777. source: "./media/characters/giri/front.svg",
  50778. extra: 966/894,
  50779. bottom: 21/987
  50780. }
  50781. },
  50782. },
  50783. [
  50784. {
  50785. name: "Normal",
  50786. height: math.unit(4, "meters"),
  50787. default: true
  50788. },
  50789. ]
  50790. ))
  50791. characterMakers.push(() => makeCharacter(
  50792. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50793. {
  50794. back: {
  50795. height: math.unit(4, "feet"),
  50796. weight: math.unit(37, "lb"),
  50797. name: "Back",
  50798. image: {
  50799. source: "./media/characters/tin/back.svg",
  50800. extra: 845/780,
  50801. bottom: 28/873
  50802. }
  50803. },
  50804. },
  50805. [
  50806. {
  50807. name: "Normal",
  50808. height: math.unit(4, "feet"),
  50809. default: true
  50810. },
  50811. ]
  50812. ))
  50813. characterMakers.push(() => makeCharacter(
  50814. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50815. {
  50816. front: {
  50817. height: math.unit(25, "feet"),
  50818. name: "Front",
  50819. image: {
  50820. source: "./media/characters/cadenza-vivace/front.svg",
  50821. extra: 1842/1578,
  50822. bottom: 30/1872
  50823. }
  50824. },
  50825. },
  50826. [
  50827. {
  50828. name: "Macro",
  50829. height: math.unit(25, "feet"),
  50830. default: true
  50831. },
  50832. ]
  50833. ))
  50834. characterMakers.push(() => makeCharacter(
  50835. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50836. {
  50837. front: {
  50838. height: math.unit(10, "feet"),
  50839. weight: math.unit(625, "kg"),
  50840. name: "Front",
  50841. image: {
  50842. source: "./media/characters/zain/front.svg",
  50843. extra: 1682/1498,
  50844. bottom: 223/1905
  50845. }
  50846. },
  50847. back: {
  50848. height: math.unit(10, "feet"),
  50849. weight: math.unit(625, "kg"),
  50850. name: "Back",
  50851. image: {
  50852. source: "./media/characters/zain/back.svg",
  50853. extra: 1814/1657,
  50854. bottom: 152/1966
  50855. }
  50856. },
  50857. head: {
  50858. height: math.unit(10, "feet"),
  50859. weight: math.unit(625, "kg"),
  50860. name: "Head",
  50861. image: {
  50862. source: "./media/characters/zain/head.svg",
  50863. extra: 1059/762,
  50864. bottom: 0/1059
  50865. }
  50866. },
  50867. },
  50868. [
  50869. {
  50870. name: "Normal",
  50871. height: math.unit(10, "feet"),
  50872. default: true
  50873. },
  50874. ]
  50875. ))
  50876. characterMakers.push(() => makeCharacter(
  50877. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50878. {
  50879. front: {
  50880. height: math.unit(6 + 5/12, "feet"),
  50881. weight: math.unit(750, "lb"),
  50882. name: "Front",
  50883. image: {
  50884. source: "./media/characters/ruchex/front.svg",
  50885. extra: 877/820,
  50886. bottom: 17/894
  50887. },
  50888. extraAttributes: {
  50889. "width": {
  50890. name: "Width",
  50891. power: 1,
  50892. type: "length",
  50893. base: math.unit(4.757, "feet")
  50894. },
  50895. }
  50896. },
  50897. },
  50898. [
  50899. {
  50900. name: "Normal",
  50901. height: math.unit(6 + 5/12, "feet"),
  50902. default: true
  50903. },
  50904. ]
  50905. ))
  50906. characterMakers.push(() => makeCharacter(
  50907. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50908. {
  50909. dressedFront: {
  50910. height: math.unit(191, "cm"),
  50911. weight: math.unit(80, "kg"),
  50912. name: "Front",
  50913. image: {
  50914. source: "./media/characters/buster/dressed-front.svg",
  50915. extra: 1022/973,
  50916. bottom: 69/1091
  50917. }
  50918. },
  50919. dressedBack: {
  50920. height: math.unit(191, "cm"),
  50921. weight: math.unit(80, "kg"),
  50922. name: "Back",
  50923. image: {
  50924. source: "./media/characters/buster/dressed-back.svg",
  50925. extra: 1018/970,
  50926. bottom: 55/1073
  50927. }
  50928. },
  50929. nudeFront: {
  50930. height: math.unit(191, "cm"),
  50931. weight: math.unit(80, "kg"),
  50932. name: "Front (Nude)",
  50933. image: {
  50934. source: "./media/characters/buster/nude-front.svg",
  50935. extra: 1022/973,
  50936. bottom: 69/1091
  50937. }
  50938. },
  50939. nudeBack: {
  50940. height: math.unit(191, "cm"),
  50941. weight: math.unit(80, "kg"),
  50942. name: "Back (Nude)",
  50943. image: {
  50944. source: "./media/characters/buster/nude-back.svg",
  50945. extra: 1018/970,
  50946. bottom: 55/1073
  50947. }
  50948. },
  50949. dick: {
  50950. height: math.unit(2.59, "feet"),
  50951. name: "Dick",
  50952. image: {
  50953. source: "./media/characters/buster/dick.svg"
  50954. }
  50955. },
  50956. ass: {
  50957. height: math.unit(1.2, "feet"),
  50958. name: "Ass",
  50959. image: {
  50960. source: "./media/characters/buster/ass.svg"
  50961. }
  50962. },
  50963. },
  50964. [
  50965. {
  50966. name: "Normal",
  50967. height: math.unit(191, "cm"),
  50968. default: true
  50969. },
  50970. ]
  50971. ))
  50972. characterMakers.push(() => makeCharacter(
  50973. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  50974. {
  50975. side: {
  50976. height: math.unit(8.1, "feet"),
  50977. weight: math.unit(3500, "lb"),
  50978. name: "Side",
  50979. image: {
  50980. source: "./media/characters/sonya/side.svg",
  50981. extra: 1730/1317,
  50982. bottom: 86/1816
  50983. }
  50984. },
  50985. },
  50986. [
  50987. {
  50988. name: "Normal",
  50989. height: math.unit(8.1, "feet"),
  50990. default: true
  50991. },
  50992. ]
  50993. ))
  50994. characterMakers.push(() => makeCharacter(
  50995. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  50996. {
  50997. front: {
  50998. height: math.unit(6, "feet"),
  50999. weight: math.unit(150, "lb"),
  51000. name: "Front",
  51001. image: {
  51002. source: "./media/characters/cadence-andrysiak/front.svg",
  51003. extra: 1164/1121,
  51004. bottom: 60/1224
  51005. }
  51006. },
  51007. back: {
  51008. height: math.unit(6, "feet"),
  51009. weight: math.unit(150, "lb"),
  51010. name: "Back",
  51011. image: {
  51012. source: "./media/characters/cadence-andrysiak/back.svg",
  51013. extra: 1200/1165,
  51014. bottom: 9/1209
  51015. }
  51016. },
  51017. dressed: {
  51018. height: math.unit(6, "feet"),
  51019. weight: math.unit(150, "lb"),
  51020. name: "Dressed",
  51021. image: {
  51022. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51023. extra: 1164/1121,
  51024. bottom: 60/1224
  51025. }
  51026. },
  51027. },
  51028. [
  51029. {
  51030. name: "Micro",
  51031. height: math.unit(1, "mm")
  51032. },
  51033. {
  51034. name: "Normal",
  51035. height: math.unit(6, "feet"),
  51036. default: true
  51037. },
  51038. ]
  51039. ))
  51040. characterMakers.push(() => makeCharacter(
  51041. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51042. {
  51043. front: {
  51044. height: math.unit(60, "inches"),
  51045. weight: math.unit(16, "lb"),
  51046. preyCapacity: math.unit(80, "liters"),
  51047. name: "Front",
  51048. image: {
  51049. source: "./media/characters/penny-lynx/front.svg",
  51050. extra: 1959/1769,
  51051. bottom: 49/2008
  51052. }
  51053. },
  51054. },
  51055. [
  51056. {
  51057. name: "Nokia",
  51058. height: math.unit(2, "inches")
  51059. },
  51060. {
  51061. name: "Desktop",
  51062. height: math.unit(24, "inches")
  51063. },
  51064. {
  51065. name: "TV",
  51066. height: math.unit(60, "inches")
  51067. },
  51068. {
  51069. name: "Jumbotron",
  51070. height: math.unit(12, "feet")
  51071. },
  51072. {
  51073. name: "Billboard",
  51074. height: math.unit(48, "feet"),
  51075. default: true
  51076. },
  51077. {
  51078. name: "IMAX",
  51079. height: math.unit(96, "feet")
  51080. },
  51081. {
  51082. name: "SINGULARITY",
  51083. height: math.unit(864938, "miles")
  51084. },
  51085. ]
  51086. ))
  51087. characterMakers.push(() => makeCharacter(
  51088. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51089. {
  51090. front: {
  51091. height: math.unit(5 + 4/12, "feet"),
  51092. weight: math.unit(230, "lb"),
  51093. name: "Front",
  51094. image: {
  51095. source: "./media/characters/sukebe/front.svg",
  51096. extra: 2130/2038,
  51097. bottom: 90/2220
  51098. }
  51099. },
  51100. back: {
  51101. height: math.unit(3.48, "feet"),
  51102. weight: math.unit(230, "lb"),
  51103. name: "Back",
  51104. image: {
  51105. source: "./media/characters/sukebe/back.svg",
  51106. extra: 1670/1604,
  51107. bottom: 0/1670
  51108. }
  51109. },
  51110. },
  51111. [
  51112. {
  51113. name: "Normal",
  51114. height: math.unit(5 + 4/12, "feet"),
  51115. default: true
  51116. },
  51117. ]
  51118. ))
  51119. characterMakers.push(() => makeCharacter(
  51120. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51121. {
  51122. front: {
  51123. height: math.unit(6, "feet"),
  51124. name: "Front",
  51125. image: {
  51126. source: "./media/characters/nylla/front.svg",
  51127. extra: 1868/1699,
  51128. bottom: 97/1965
  51129. }
  51130. },
  51131. back: {
  51132. height: math.unit(6, "feet"),
  51133. name: "Back",
  51134. image: {
  51135. source: "./media/characters/nylla/back.svg",
  51136. extra: 1889/1712,
  51137. bottom: 93/1982
  51138. }
  51139. },
  51140. frontNsfw: {
  51141. height: math.unit(6, "feet"),
  51142. name: "Front (NSFW)",
  51143. image: {
  51144. source: "./media/characters/nylla/front-nsfw.svg",
  51145. extra: 1868/1699,
  51146. bottom: 97/1965
  51147. },
  51148. extraAttributes: {
  51149. "dickLength": {
  51150. name: "Dick Length",
  51151. power: 1,
  51152. type: "length",
  51153. base: math.unit(1.4, "feet")
  51154. },
  51155. "cumVolume": {
  51156. name: "Cum Volume",
  51157. power: 3,
  51158. type: "volume",
  51159. base: math.unit(100, "mL")
  51160. },
  51161. }
  51162. },
  51163. backNsfw: {
  51164. height: math.unit(6, "feet"),
  51165. name: "Back (NSFW)",
  51166. image: {
  51167. source: "./media/characters/nylla/back-nsfw.svg",
  51168. extra: 1889/1712,
  51169. bottom: 93/1982
  51170. }
  51171. },
  51172. maw: {
  51173. height: math.unit(2.10, "feet"),
  51174. name: "Maw",
  51175. image: {
  51176. source: "./media/characters/nylla/maw.svg"
  51177. }
  51178. },
  51179. paws: {
  51180. height: math.unit(2.06, "feet"),
  51181. name: "Paws",
  51182. image: {
  51183. source: "./media/characters/nylla/paws.svg"
  51184. }
  51185. },
  51186. muzzle: {
  51187. height: math.unit(0.61, "feet"),
  51188. name: "Muzzle",
  51189. image: {
  51190. source: "./media/characters/nylla/muzzle.svg"
  51191. }
  51192. },
  51193. sheath: {
  51194. height: math.unit(1.305, "feet"),
  51195. name: "Sheath",
  51196. image: {
  51197. source: "./media/characters/nylla/sheath.svg"
  51198. }
  51199. },
  51200. },
  51201. [
  51202. {
  51203. name: "Micro",
  51204. height: math.unit(7.5, "inches")
  51205. },
  51206. {
  51207. name: "Normal",
  51208. height: math.unit(7, "feet"),
  51209. default: true
  51210. },
  51211. {
  51212. name: "Macro",
  51213. height: math.unit(60, "feet")
  51214. },
  51215. {
  51216. name: "Mega",
  51217. height: math.unit(200, "feet")
  51218. },
  51219. ]
  51220. ))
  51221. characterMakers.push(() => makeCharacter(
  51222. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51223. {
  51224. front: {
  51225. height: math.unit(10, "feet"),
  51226. weight: math.unit(2300, "lb"),
  51227. name: "Front",
  51228. image: {
  51229. source: "./media/characters/hunt3r/front.svg",
  51230. extra: 1909/1742,
  51231. bottom: 46/1955
  51232. }
  51233. },
  51234. },
  51235. [
  51236. {
  51237. name: "Normal",
  51238. height: math.unit(10, "feet"),
  51239. default: true
  51240. },
  51241. ]
  51242. ))
  51243. characterMakers.push(() => makeCharacter(
  51244. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51245. {
  51246. dressed: {
  51247. height: math.unit(11, "feet"),
  51248. weight: math.unit(18500, "lb"),
  51249. preyCapacity: math.unit(9, "people"),
  51250. name: "Dressed",
  51251. image: {
  51252. source: "./media/characters/cylphis/dressed.svg",
  51253. extra: 1028/1003,
  51254. bottom: 75/1103
  51255. },
  51256. },
  51257. undressed: {
  51258. height: math.unit(11, "feet"),
  51259. weight: math.unit(18500, "lb"),
  51260. preyCapacity: math.unit(9, "people"),
  51261. name: "Undressed",
  51262. image: {
  51263. source: "./media/characters/cylphis/undressed.svg",
  51264. extra: 1028/1003,
  51265. bottom: 75/1103
  51266. }
  51267. },
  51268. full: {
  51269. height: math.unit(11, "feet"),
  51270. weight: math.unit(18500 + 150*9, "lb"),
  51271. preyCapacity: math.unit(9, "people"),
  51272. name: "Full",
  51273. image: {
  51274. source: "./media/characters/cylphis/full.svg",
  51275. extra: 1028/1003,
  51276. bottom: 75/1103
  51277. }
  51278. },
  51279. },
  51280. [
  51281. {
  51282. name: "Small",
  51283. height: math.unit(8, "feet")
  51284. },
  51285. {
  51286. name: "Normal",
  51287. height: math.unit(11, "feet"),
  51288. default: true
  51289. },
  51290. ]
  51291. ))
  51292. characterMakers.push(() => makeCharacter(
  51293. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51294. {
  51295. front: {
  51296. height: math.unit(2 + 7/12, "feet"),
  51297. name: "Front",
  51298. image: {
  51299. source: "./media/characters/orishan/front.svg",
  51300. extra: 1058/1023,
  51301. bottom: 23/1081
  51302. }
  51303. },
  51304. back: {
  51305. height: math.unit(2 + 7/12, "feet"),
  51306. name: "Back",
  51307. image: {
  51308. source: "./media/characters/orishan/back.svg",
  51309. extra: 1058/1023,
  51310. bottom: 23/1081
  51311. }
  51312. },
  51313. },
  51314. [
  51315. {
  51316. name: "Micro",
  51317. height: math.unit(2, "cm")
  51318. },
  51319. {
  51320. name: "Normal",
  51321. height: math.unit(2 + 7/12, "feet"),
  51322. default: true
  51323. },
  51324. ]
  51325. ))
  51326. characterMakers.push(() => makeCharacter(
  51327. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51328. {
  51329. front: {
  51330. height: math.unit(3, "meters"),
  51331. weight: math.unit(508, "kg"),
  51332. name: "Front",
  51333. image: {
  51334. source: "./media/characters/seranis/front.svg",
  51335. extra: 1478/1454,
  51336. bottom: 41/1519
  51337. }
  51338. },
  51339. },
  51340. [
  51341. {
  51342. name: "Normal",
  51343. height: math.unit(3, "meters"),
  51344. default: true
  51345. },
  51346. {
  51347. name: "Macro",
  51348. height: math.unit(108, "meters")
  51349. },
  51350. {
  51351. name: "Megamacro",
  51352. height: math.unit(1250, "meters")
  51353. },
  51354. ]
  51355. ))
  51356. //characters
  51357. function makeCharacters() {
  51358. const results = [];
  51359. characterMakers.forEach(character => {
  51360. results.push(character());
  51361. });
  51362. return results;
  51363. }